* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .customsvg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        z-index: 0;
    }

    .customsvg svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 170px;
        z-index: 0;
        transform: rotateY(180deg);
    }

    .customsvg .shape-fill {
        fill: #065381;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
            Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    }

    .main-container {
        padding: 10px;
    }

    /* CARDS */

    .cards {
        display: block;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .cardsub {
        margin: 00px;
        padding: 20px;
        width: 100%;
        height: 200px;
        display: grid;
        grid-template-rows: 20px 50px 1fr 50px;
        border-radius: 10px;
        box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
        transition: all 0.2s;
    }

    .cardsub:hover {
        box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
        transform: scale(1.01);
    }

    .card__link,
    .card__exit,
    .card__icon {
        position: relative;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.9);
    }

    .card__link::after {
        position: absolute;
        top: 25px;
        left: 0;
        content: "";
        width: 0%;
        height: 3px;
        background-color: rgba(255, 255, 255, 0.6);
        transition: all 0.5s;
    }

    .card__link:hover::after {
        width: 100%;
    }

    .card__exit {
        grid-row: 1/2;
        justify-self: end;
    }

    .card__icon {
        grid-row: 2/3;
        font-size: 20px;
    }

    .card__title {

        font-weight: 400;
        color: #ffffff;
        z-index: 999;
    }

    .card__apply {
        grid-row: 4/5;
        align-self: center;
    }

    /* CARD BACKGROUNDS */

    .card-1 {
        background: radial-gradient(#1fe4f5, #3fbafe);
    }

    .card-2 {
        background: radial-gradient(#fbc1cc, #fa99b2);
    }

    .card-3 {
        background: radial-gradient(#76b2fe, #b69efe);
    }

    .card-4 {
        background: radial-gradient(#60efbc, #58d5c9);
    }

    .card-5 {
        background: radial-gradient(#f588d8, #c0a3e5);
    }

    /* RESPONSIVE */

    @media (max-width: 1600px) {
        .cards {
            justify-content: center;
        }
    }
.icons {
	font-size: 24px;
	color: #065381;
	margin:25px 0px 0px 0px;
}

.icon-div {
	width: 30%;
	height: 100px !important;
}

.bt {
	text-decoration: none !important;
	text-align: center;
	background: #fff;

	width: 110%;
	height: 100px;
	/*border: 2px solid #68a4fe;*/
	display: inline-block;
	color: #000;
    
	margin-left: -10px;
	margin-right: -10px;
	font-family: Merriweather, 'Helvetica Neue', Arial, sans-serif;
	margin-bottom: 10px;
	border-radius: 8px;
	box-shadow: 3px 2px 4px #065381;
}

.bt:hover .btn-text {

	color: #17202A !important;
}

.bt:hover {
	box-shadow: 3px 3px 7px #333;
	color: #fcf15b !important;

}

.btn-text {
	font-weight: 600;
	padding: 0px;
	word-break: break-word;
	word-wrap: break-word;
	white-space: normal;
	color: #444;
	font-size: 28px;
}    
.loader {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 55px);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  perspective: 700px;
}

.inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;  
}

.inner.one {
  left: 0%;
  top: 0%;
  animation: rotate-one 1s linear infinite;
  border-bottom: 6px solid #065381;
}

.inner.two {
  right: 0%;
  top: 0%;
  animation: rotate-two 1s linear infinite;
  border-right: 6px solid #065381;
}

.inner.three {
  right: 0%;
  bottom: 0%;
  animation: rotate-three 1s linear infinite;
  border-top: 6px solid #065381;
}

@keyframes rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
  .btnp{
      background:#065381;
      color:#fff;
  }
    html {


      --bgColorMenu: #1d1d27;
      --duration: .7s;

    }

    .bodyclass {

      margin: 0;
      display: flex;
      height: 100vh;
      overflow: hidden;
      align-items: center;
      justify-content: center;
      background-color: #ffb457;
      -webkit-tap-highlight-color: transparent;
      transition: background-color var(--duration);

    }

    .menu {

      margin: 0;
      display: flex;
      /* Works well with 100% width  */
      width: 100%;
      font-size: 1.5em;
      padding: 0 2.85em;
      position: relative;
      align-items: center;
      justify-content: center;
      background-color: var(--bgColorMenu);

    }

    .menu__item {

      all: unset;
      flex-grow: 1;
      z-index: 100;
      display: flex;
      flex-direction:column;
      cursor: pointer;
      position: relative;
      border-radius: 50%;
      align-items: center;
      will-change: transform;
      justify-content: center;
      padding: 0.55em 0 0.85em;
      transition: transform var(--timeOut, var(--duration));

    }

    .menu__item::before {

      content: "";
      z-index: -1;
      width: 4.2em;
      height: 4.2em;
      border-radius: 50%;
      position: absolute;
      transform: scale(0);
      transition: background-color var(--duration), transform var(--duration);

    }


    .menu__item.active {

      transform: translate3d(0, -.8em, 0);

    }

    .menu__item.active::before {

      transform: scale(1);
      background-color: var(--bgColorItem);

    }

    .icon {

      width: 2.6em;
      height: 2.6em;
      stroke: white;
      fill: transparent;
      stroke-width: 1pt;
      stroke-miterlimit: 10;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 400;

    }

    .menu__item.active .icon {

      animation: strok 1.5s reverse;

    }

    @keyframes strok {
      100% {
        stroke-dashoffset: 400;
      }
    }

    .menu__border {

      left: 0;
      bottom: 99%;
      width: 10.9em;
      height: 2.4em;
      position: absolute;
      clip-path: url(#menu);
      will-change: transform;
      background-color: var(--bgColorMenu);
      transition: transform var(--timeOut, var(--duration));

    }

    .svg-container {

      width: 0;
      height: 0;
    }


    @media screen and (max-width: 50em) {
      .menu {
        font-size: .8em;
      }
    }

    .ions {
      font-size: 15px !important;
    }

    .sectionsvg {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 70px;

    }

    .wave {
      background-image: url('img/wave.svg');
    }

    .custom-shape-divider-top-1663157575 {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
    }

    .custom-shape-divider-top-1663157575 svg {
      position: relative;
      display: block;
      width: calc(100% + 1.3px);
      height: 85px;
      transform: rotateY(180deg);
    }

    .custom-shape-divider-top-1663157575 .shape-fill {
      fill: #0D6EFD;
    }

    /** For mobile devices **/
    @media (max-width: 767px) {
      .custom-shape-divider-top-1663157575 svg {
        width: calc(157% + 1.3px);
        height: 53px;
      }

      .back-fade {
        background: rgba(255, 255, 255, .3);

        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 9999;
      }
    }
     .float {
		position: fixed;
		padding:10px;
		bottom: 80px;
		right: 40px;
		border-radius: 8px;
		text-align: center;
		box-shadow: 2px 2px 3px #999;
	}

	.my-float {
		font-size: 22px;
		margin-top: 25px;
	}

  #snackbar {
    visibility: hidden;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    margin-left: -125px;
    /* Divide value of min-width by 2 */
    background-color: #333;
    /* Black background color */
    color: #fff;
    /* White text color */
    text-align: center;
    /* Centered text */
    border-radius: 2px;
    /* Rounded borders */
    padding: 16px;
    /* Padding */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 1;
    /* Add a z-index if needed */
    left: 50%;
    /* Center the snackbar */
    bottom: 80px;
    /* 30px from the bottom */
  }

  /* Show the snackbar when clicking on a button (class added with JavaScript) */
  #snackbar.show {
    visibility: visible;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }

  /* Animations to fade the snackbar in and out */
  @-webkit-keyframes fadein {
    from {
      bottom: 0;
      opacity: 0;
    }

    to {
      bottom: 80px;
      opacity: 1;
    }
  }

  @keyframes fadein {
    from {
      bottom: 0;
      opacity: 0;
    }

    to {
      bottom: 80px;
      opacity: 1;
    }
  }

  @-webkit-keyframes fadeout {
    from {
      bottom: 80px;
      opacity: 1;
    }

    to {
      bottom: 0;
      opacity: 0;
    }
  }

  @keyframes fadeout {
    from {
      bottom: 80px;
      opacity: 1;
    }

    to {
      bottom: 0;
      opacity: 0;
    }
  }
  .back-fade {
		background: rgba(255, 255, 255, .5);

		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 9999;
    }