/* Main Colors */
/* Auto Gradient */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rubik", sans-serif;
  font-family: "Poppins", sans-serif;
}

.box {
  max-width: 1320px;
  margin: 0 auto;
}

a:hover {
  text-decoration: none;
}

.Btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #58cfe6;
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  color: #050a30;
  border: none;
}

.Btn:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #58cfe6;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}

.Btn:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.Btn span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}

.Btn:hover span {
  color: #fff;
  -webkit-animation: scaleUp 0.3s ease-in-out;
          animation: scaleUp 0.3s ease-in-out;
}

@-webkit-keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.login {
  background-color: #070e33;
  color: #fff;
}

.contact-us {
  margin-top: 35px;
}
.contact-us button {
  position: relative;
  font-size: 14px;
  letter-spacing: 3px;
  height: 3em;
  padding: 0 3em;
  border: none;
  background-color: #c41b54;
  color: #fff;
  text-transform: uppercase;
  overflow: hidden;
  border-radius: 5px;
}
.contact-us button::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  height: 0px;
  width: 100%;
  background: rgb(196, 27, 84);
  background: linear-gradient(90deg, rgb(196, 27, 84) 20%, rgb(124, 7, 46) 100%);
  transition: 0.2s;
}
.contact-us button .label {
  position: relative;
}
.contact-us button .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3em;
  width: 3em;
  position: absolute;
  top: 3em;
  right: 0;
  opacity: 0;
  transition: 0.4s;
}
.contact-us button:hover::before {
  height: 100%;
}
.contact-us button:hover .icon {
  top: 0;
  opacity: 1;
}

.heading-secondary {
  text-align: center;
  text-transform: capitalize;
  color: rgb(6, 86, 167);
  font-size: 38px;
  font-weight: 600;
}

.apply-top {
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 1;
}
.apply-top button {
  background-color: #ff4754;
  color: #fff;
}
.apply-top button span {
  gap: 5px;
  justify-content: center;
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}
.apply-top button span i {
  font-size: 20px;
}

header {
  font-weight: 500;
  top: 0;
  background-color: #09114e;
  padding-top: 10px;
  background: linear-gradient(to right, #101013 0%, #101013 65%, #0656a7 65%, #0656a7 100%);
  width: 100%;
  position: relative;
  z-index: 99999;
}

.logo {
  max-width: 90px;
}
.logo img {
  max-width: 100%;
}

.navbar {
  align-items: center;
  display: flex;
  flex-direction: row;
  padding: 4px 50px;
}
.navbar ul {
  list-style: none;
}
.navbar .user-icon {
  margin-left: 20px;
}
.navbar .user-icon a button {
  border: none;
  border-radius: 50px;
  padding: 5px;
  background: none;
}
.navbar .user-icon a i {
  color: #fff;
  font-size: 2px;
  font-size: 34px;
}
.navbar .account {
  display: flex;
}
.navbar .account ul li {
  list-style: none;
}

/* Menu */
.hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  outline: none;
  height: 30px;
  position: relative;
  width: 30px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: inline-block;
  }
}
.hamburger-line {
  height: 3px;
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  width: 100%;
  background: #0656a7;
}
.hamburger-line-top {
  top: 5px;
}
.menu-active .hamburger-line-top {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}
.hamburger-line-middle {
  top: 50%;
  transform: translatey(-50%);
}
.menu-active .hamburger-line-middle {
  left: 50%;
  opacity: 0;
  width: 0;
}
.hamburger-line-bottom {
  bottom: 5px;
}
.menu-active .hamburger-line-bottom {
  bottom: 50%;
  transform: rotate(-45deg) translatey(50%);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 50px;
  align-items: center;
  margin: 0;
  padding: 0;
  transition: all 0.25s ease-in;
}
@media screen and (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translatex(-100%);
    text-align: center;
    height: 100vh;
    background-color: #070e33;
    color: #fff;
  }
  .menu-active .nav-menu {
    transform: translatey(0%);
    opacity: 1;
  }
}
.nav-menu .menu-item a {
  display: block;
  line-height: 30px;
  text-decoration: none;
  text-transform: capitalize;
  font-weight: 400;
  color: #fff;
  font-size: 17px;
}
.nav-menu .menu-item a:hover {
  color: #1c9ceb;
}
@media screen and (max-width: 768px) {
  .nav-menu .menu-item a {
    font-size: 20px;
    margin: 8px;
  }
}

.sub-nav {
  border: 1px solid #ccc;
  display: none;
  position: absolute;
  padding: 5px 5px;
  list-style: none;
  width: 230px;
}
@media screen and (max-width: 768px) {
  .sub-nav {
    position: relative;
    width: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
  }
}

.nav__link:hover + .sub-nav {
  display: block;
}

.sub-nav:hover {
  display: block;
}

.hero-section {
  margin-bottom: 55px;
  background: linear-gradient(to right, #101013 0%, #101013 65%, #0656a7 65%, #0656a7 100%);
}
.hero-section .hero-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 60px;
  padding-bottom: 60px;
  padding: 100px 0px;
  display: flex;
  gap: 50px;
}
.hero-section .hero-text {
  color: #fff;
}
.hero-section .hero-text h1 {
  margin-bottom: 30px;
  font-size: 52px;
  width: 90%;
  font-weight: 700;
  letter-spacing: 1.8px;
}
.hero-section .hero-text h1 span {
  color: #58cfe6;
}
.hero-section .hero-text p {
  width: 80%;
}
.hero-section .hero-text .key-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
  width: 90%;
}
.hero-section .hero-text .key-features .icons {
  background-color: #070e33;
  border-radius: 12px;
  padding: 15px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #58cfe6;
}
.hero-section .hero-text .key-features .icons i {
  font-size: 42px;
}
.hero-section .hero-img {
  z-index: 4;
  position: relative;
}
.hero-section .hero-img img {
  z-index: 12;
  border-radius: 10px;
  max-width: 480px;
}
.hero-section .hero-img::before {
  content: "";
  position: absolute;
  top: 12%;
  right: -10%;
  width: 80%;
  height: 80%;
  z-index: -1;
  border-radius: 10px;
}

footer {
  background: #070e33;
  color: #fff;
}

.wrapper {
  margin: 0 auto;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #eaeff4;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1000%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='%230e2a47'%3e%3c/rect%3e%3cpath d='M0%2c543.117C99.634%2c532.794%2c179.836%2c464.281%2c258.626%2c402.43C330.951%2c345.654%2c393.461%2c280.524%2c437.403%2c199.755C483.883%2c114.32%2c547.273%2c18.289%2c518.091%2c-74.49C488.741%2c-167.802%2c369.185%2c-192.062%2c294.35%2c-255.056C233.782%2c-306.04%2c193.762%2c-380.109%2c120.214%2c-409.41C42.991%2c-440.176%2c-42.607%2c-439.437%2c-123.807%2c-421.649C-209.124%2c-402.959%2c-286.689%2c-362.756%2c-352.878%2c-305.771C-427.101%2c-241.87%2c-500.737%2c-170.283%2c-525.762%2c-75.593C-552.067%2c23.94%2c-533.886%2c130.668%2c-493.218%2c225.245C-451.986%2c321.133%2c-383.258%2c403.299%2c-295.523%2c459.843C-207.719%2c516.432%2c-103.904%2c553.882%2c0%2c543.117' fill='%230b2239'%3e%3c/path%3e%3cpath d='M1440 1170.0259999999998C1554.796 1159.222 1660.378 1116.04 1759.6190000000001 1057.337 1862.088 996.7239999999999 1958.272 926.357 2021.973 825.778 2091.9049999999997 715.361 2183.849 582.079 2138.181 459.617 2090.982 333.05 1912.22 325.861 1804.936 243.781 1725.6689999999999 183.13600000000002 1676.992 94.404 1592.141 41.855999999999995 1483.477-25.438999999999965 1370.47-129.09799999999996 1245.404-102.73500000000001 1120.973-76.50599999999997 1066.769 68.57499999999999 988.802 169.034 915.236 263.822 833.115 352.361 802.216 468.3 768.876 593.398 757.084 729.6030000000001 807.639 848.789 858.76 969.309 962.511 1062.08 1079.228 1121.3719999999998 1189.651 1177.466 1316.691 1181.6309999999999 1440 1170.0259999999998' fill='%23113255'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1000'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: cover;
}

.log-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.log-container h2 {
  position: relative;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.log-container h2::after {
  position: absolute;
  content: "";
  left: 45%;
  bottom: 0;
  width: 45px;
  height: 2px;
  background: #666666;
}
.log-container p {
  margin: 0 0 20px 0;
  text-align: left;
  color: #666666;
  font-size: 15px;
}
.log-container p a {
  color: #44c7f5;
  font-size: 14px;
  text-decoration: none;
}
.log-container .col-left,
.log-container .col-right {
  position: relative;
  padding: 45px;
  width: 70%;
}
.log-container .col-left {
  margin-right: 2px;
  background: #ffffff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 11px;
}
@media (max-width: 575.98px) {
  .log-container .container {
    flex-direction: column;
  }
  .log-container .wrapper {
    padding: 10px;
  }
  .log-container .col-left,
.log-container .col-right {
    width: 100%;
    margin: 0;
    padding: 30px;
    -webkit-clip-path: none;
    clip-path: none;
    width: 95%;
  }
  .log-container .col-right {
    padding-top: 0;
  }
}
.log-container .login-form,
.log-container .login-social {
  position: relative;
  width: 100%;
}
.log-container .login-social {
  padding-top: 30px;
  border-top: 1px solid rgba(102, 102, 102, 0.3647058824);
}
.log-container .login-social .btn {
  color: #fff;
  width: 100%;
  margin-top: 10px;
}
.log-container .login-form input {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0;
  outline: none;
  border: 1px solid;
  border-color: #0656a7;
  font-size: 16px;
  padding: 10px 10px;
  border-radius: 0px;
}
.log-container .forgot {
  margin-top: 10px;
  text-align: end;
}
.log-container .forgot a {
  text-align: end;
  color: #0656a7;
}
.log-container .Btn {
  width: 100%;
  border-radius: 0px;
  padding: 5px;
}
.log-container .btn:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.log-container .btn.btn-go {
  background: #cf2c1f;
}
.log-container .btn.btn-fb {
  background: #4064ac;
}
.log-container .btn.btn-tw {
  background: #1c9ceb;
}
.log-container label {
  position: relative;
  display: block;
}
.log-container label input {
  border-radius: 0.2rem;
  border: 2px solid rgba(122, 122, 122, 0.337254902);
  transition: border-color 0.2s;
  padding: 6px auto;
  margin-bottom: 25px;
}
.log-container label input:focus {
  border-color: #ff4754;
}
.log-container label p {
  color: #f9f9f9;
  font-size: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  margin-left: 10px;
  transition: top 0.2s, font-size 0.2s, color 0.2s;
}
.log-container label .password-icon {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
  width: 1.2rem;
  transition: color 0.2s;
}
.log-container label .password-icon .feather-eye-off {
  display: none;
}
.log-container label .password-icon:hover {
  cursor: pointer;
  color: #ff4754;
}
.log-container label input:not(:-moz-placeholder-shown) + p {
  top: 0%;
  background-color: #fff;
  font-size: 0.9rem;
  color: #ff4754;
}
.log-container label input:not(:-ms-input-placeholder) + p {
  top: 0%;
  background-color: #fff;
  font-size: 0.9rem;
  color: #ff4754;
}
.log-container label input:focus + p,
.log-container label input:not(:placeholder-shown) + p {
  top: 0%;
  background-color: #fff;
  font-size: 0.9rem;
  color: #ff4754;
}
.log-container label input:not(:focus) + p {
  color: rgba(122, 122, 122, 0.337254902);
}
.log-container .checkbox {
  margin-bottom: 20px;
}
.log-container .checkbox p {
  margin-bottom: 8px;
}
.log-container .checkbox label {
  display: inline-block;
}
.log-container .checkbox .female {
  margin-left: 10px;
}
.log-container input[type=checkbox] {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 4px;
}
.log-container .new-register {
  text-align: center;
  margin-top: 26px;
}

.register-wrapper {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1440' height='494' preserveAspectRatio='none' viewBox='0 0 1440 494'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1000%26quot%3b)' fill='none'%3e%3crect width='1440' height='494' x='0' y='0' fill='%230e2a47'%3e%3c/rect%3e%3cpath d='M8 494L502 0L658 0L164 494z' fill='url(%23SvgjsLinearGradient1001)'%3e%3c/path%3e%3cpath d='M374.8 494L868.8 0L1068.3 0L574.3 494z' fill='url(%23SvgjsLinearGradient1001)'%3e%3c/path%3e%3cpath d='M693.6 494L1187.6 0L1400.6 0L906.6 494z' fill='url(%23SvgjsLinearGradient1001)'%3e%3c/path%3e%3cpath d='M1395 494L901 0L805 0L1299 494z' fill='url(%23SvgjsLinearGradient1002)'%3e%3c/path%3e%3cpath d='M1069.2 494L575.2 0L287.20000000000005 0L781.2 494z' fill='url(%23SvgjsLinearGradient1002)'%3e%3c/path%3e%3cpath d='M788.4 494L294.4 0L168.39999999999998 0L662.4 494z' fill='url(%23SvgjsLinearGradient1002)'%3e%3c/path%3e%3cpath d='M1162.573782295745 494L1440 216.5737822957451L1440 494z' fill='url(%23SvgjsLinearGradient1001)'%3e%3c/path%3e%3cpath d='M0 494L277.4262177042549 494L 0 216.5737822957451z' fill='url(%23SvgjsLinearGradient1002)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1000'%3e%3crect width='1440' height='494' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='0%25' y1='100%25' x2='100%25' y2='0%25' id='SvgjsLinearGradient1001'%3e%3cstop stop-color='rgba(15%2c 70%2c 185%2c 0.2)' offset='0'%3e%3c/stop%3e%3cstop stop-opacity='0' stop-color='rgba(15%2c 70%2c 185%2c 0.2)' offset='0.66'%3e%3c/stop%3e%3c/linearGradient%3e%3clinearGradient x1='100%25' y1='100%25' x2='0%25' y2='0%25' id='SvgjsLinearGradient1002'%3e%3cstop stop-color='rgba(15%2c 70%2c 185%2c 0.2)' offset='0'%3e%3c/stop%3e%3cstop stop-opacity='0' stop-color='rgba(15%2c 70%2c 185%2c 0.2)' offset='0.66'%3e%3c/stop%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");
}

footer {
  /** footer-bottom **/
}
footer section {
  padding: 0px 0;
  min-height: 100vh;
}
footer a,
footer a:hover,
footer a:focus,
footer a:active {
  text-decoration: none;
  outline: none;
}
footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .main-footer {
  position: relative;
  background: #1e2129;
}
footer .footer-content {
  position: relative;
  padding: 65px 0px 50px 0px;
}
footer .footer-content:before {
  position: absolute;
  content: "";
  background: url(https://i.ibb.co/jyRLrBZ/world-map.png);
  width: 744px;
  height: 365px;
  top: 50px;
  right: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  animation-name: float-bob;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob;
  -moz-animation-duration: 30s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob;
  -ms-animation-duration: 30s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob;
  -o-animation-duration: 30s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}
footer .footer-content .logo-widget {
  position: relative;
  margin-top: -5px;
}
footer .footer-content .logo-widget .footer-social li {
  position: relative;
  display: inline-block;
  margin-right: 9px;
}
footer .footer-content .logo-widget .footer-social li:last-child {
  margin-right: 0px;
}
footer .footer-content .logo-widget .footer-social li a {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  background: #2e3138;
  color: #9ea0a9;
  text-align: center;
  border-radius: 50%;
}
footer .footer-content .logo-widget .footer-social li a:hover {
  color: #ffffff;
  background: #ff5e14;
}
footer .footer-content .logo-widget .logo-box {
  margin-bottom: 25px;
}
footer .footer-content .logo-widget .text p {
  color: #9ea0a9;
  margin-bottom: 32px;
}
footer .footer-content .footer-title {
  position: relative;
  font-size: 20px;
  line-height: 35px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 27px;
}
footer .footer-content .service-widget .list li {
  display: block;
  margin-bottom: 12px;
}
footer .footer-content .service-widget .list li a {
  position: relative;
  display: inline-block;
  color: #9ea0a9;
}
footer .footer-content .service-widget .list li a:hover {
  color: #ff5e14;
}
footer .footer-content .contact-widget p {
  color: #9ea0a9;
  margin-bottom: 15px;
}
footer .footer-content .contact-widget {
  margin-left: 90px;
}
footer .footer-content .contact-widget .footer-title {
  margin-bottom: 29px;
}
footer .footer-bottom {
  position: relative;
  background: #13151a;
  padding: 25px 0px 22px 0px;
}
footer .footer-bottom .copyright,
footer .footer-bottom .copyright a,
footer .footer-bottom .footer-nav li a {
  position: relative;
  color: #9ea0a9;
}
footer .footer-bottom .copyright a:hover,
footer .footer-bottom .footer-nav li a:hover {
  color: #ff5e14;
}
footer .footer-bottom .footer-nav {
  position: relative;
  text-align: right;
}
footer .footer-bottom .footer-nav li {
  position: relative;
  display: inline-block;
  margin-left: 29px;
}
footer .footer-bottom .footer-nav li:first-child {
  margin-left: 0px;
}
footer .footer-bottom .footer-nav li:before {
  position: absolute;
  content: "";
  background: #9ea0a9;
  width: 1px;
  height: 14px;
  top: 7px;
  left: -18px;
}
footer .footer-bottom .footer-nav li:first-child:before {
  display: none;
}
footer .logo-box img {
  max-width: 150px;
}

.emp-profile {
  padding: 3%;
  margin-top: 3%;
  margin-bottom: 3%;
  border-radius: 10px;
  background: #fff;
  padding: 35px 40px;
  max-width: 1100px;
  margin: 60px auto;
  padding-top: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.profile-main {
  padding: 2px;
}

.emp-profile input {
  background-color: rgb(247, 244, 244);
}

.Profile-img {
  position: relative;
  display: flex;
  gap: 30px;
}

.Edite .Profile-img {
  position: relative;
  display: flex;
  align-items: center;
}

.Profile-img img {
  width: 110px;
  height: 100%;
  border-radius: 10px;
}

.Profile-img .file {
  position: absolute;
  overflow: hidden;
  bottom: 0%;
  left: 0%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  border-radius: 0;
  font-size: 13px;
  background: rgba(33, 37, 41, 0.7215686275);
  border-radius: 10px;
}

.Profile-img .file input {
  position: absolute;
  opacity: 0;
  right: 0;
  top: 0;
}

.profile-head {
  background-color: #1f425e;
  padding: 20px;
  border-radius: 10px;
}

.profile-head h5 {
  color: #fff;
}

.profile-head h6 {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}

.profile-edit-btn {
  border: none;
  border-radius: 1.5rem;
  padding: 7px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgb(108, 117, 125);
  cursor: pointer;
  transition: all 0.4s ease;
  background: #070e33;
  color: rgb(255, 255, 255);
}

.profile-edit-btn:hover,
.profile-edit-btn:active {
  background: #ff2e63;
  color: #fff;
}

.profile-head .nav-tabs {
  margin-bottom: 5%;
}

.profile-head .nav-tabs .nav-link {
  font-weight: 600;
  border: none;
}

.profile-head .nav-tabs .nav-link.active {
  border: none;
  border-bottom: 2px solid #0062cc;
}

.profile-tab p {
  font-weight: 600;
  color: #444;
  margin-bottom: 0px;
  font-weight: 500;
  color: rgb(68, 68, 68);
  margin-bottom: 0px;
  font-size: 16px;
}

.profile-tab .row {
  background: #f4f6f8;
  margin-bottom: 10px;
  align-items: center;
  padding: 7px;
}

.profile-head {
  display: grid;
  grid-template-columns: 2fr auto;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 5px;
}

.Edite-btns a {
  text-decoration: none;
  margin-right: 10px;
}

.profile-headings {
  border-bottom: 1px solid;
  margin-bottom: 15px;
  margin-top: 25px;
  color: #0656a7;
}

.profile-headings h5 {
  color: #0656a7;
  font-size: 16px;
}

.profile-pic {
  display: flex;
}

.Edite .register-table {
  margin-top: 0px;
  background: rgb(255, 255, 255);
  max-width: 200%;
  width: 180%;
}

@media screen and (max-width: 990px) {
  .profile-edit-btn {
    margin-bottom: 15px;
  }
  .family-gallery {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 620px) {
  .profile-edit-btn {
    font-size: 12px;
  }
  .profile-head {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 5px;
  }
  .profile-headings {
    margin-top: 12px;
  }
  .profile-tab .profile-headings {
    margin-top: 22px;
  }
  .profile-tab p {
    margin-top: 2px;
    font-size: 13px;
  }
  .profile-tab label {
    font-size: 12px;
  }
  .Edite-btns {
    text-align: start;
  }
  .family-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .profile-head h6 {
    color: rgb(60, 60, 60);
    font-weight: 400;
    font-size: 11px;
  }
  .profile-head h5 {
    color: rgb(51, 51, 51);
    font-size: 15px;
  }
  .dropdown-items {
    display: block;
    box-shadow: none;
  }
}
.features-app {
  margin-bottom: 70px;
}
.features-app .top {
  text-align: center;
  margin-bottom: 50px;
}
.features-app .top h2 {
  color: #0656a7;
  font-size: 38px;
  font-weight: 700;
}
.features-app .features-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  flex-wrap: wrap;
}
.features-app .features-box .card {
  border: none;
  background: #0656a7;
  color: #fff;
  padding: 22px;
  cursor: pointer;
  transition: 0.4s ease;
}
.features-app .features-box .card:hover {
  transform: translate(0px, -10px);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.features-app .features-box .card p {
  font-weight: 400;
  font-size: 13px;
  margin-bottom: 30px;
  color: #f2f2f2;
  margin-top: 10px;
}
.features-app .features-box .card h4 {
  font-size: 24px;
  text-transform: capitalize;
  color: #ffd401;
}
.features-app .features-box .card i {
  color: #ffd401;
  font-weight: 500;
  font-size: 46px;
  margin-bottom: 24px;
}

.latest-blog {
  margin-top: 70px;
}
.latest-blog .top-intro {
  margin-top: 10px;
  text-align: center;
  color: #0656a7;
}
.latest-blog h2 {
  margin-bottom: 45px;
  color: rgb(33, 37, 41);
}
.latest-blog .blog-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.latest-blog .card {
  background: rgba(68, 137, 255, 0.13);
  border-radius: 5px;
  padding-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0);
}
.latest-blog .card:hover {
  background: rgba(68, 137, 255, 0.18);
}
.latest-blog .card-image {
  background-color: rgb(236, 236, 236);
  width: 100%;
  border-radius: 6px 6px 0 0;
}
.latest-blog .card-image img {
  max-width: 100%;
}
.latest-blog .category {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: rgb(63, 121, 230);
  padding: 11px 12px 0px 10px;
  display: flex;
  justify-content: space-between;
}
.latest-blog .category span {
  font-size: 13px;
}
.latest-blog .category span:first-child {
  background: #0656a7;
  color: #fff;
  padding: 3px;
  font-size: 11px;
}
.latest-blog .category:hover {
  cursor: pointer;
}
.latest-blog .heading {
  font-weight: 600;
  color: rgb(52, 51, 51);
  padding: 11px;
  padding-top: 12px;
  font-size: 18px;
}
.latest-blog .heading:hover {
  cursor: pointer;
}
.latest-blog .author {
  color: gray;
  font-weight: 400;
  font-size: 11px;
  padding-top: 20px;
}
.latest-blog .name {
  font-weight: 600;
}
.latest-blog .name:hover {
  cursor: pointer;
}

.apply-now {
  padding: 25px;
}
.apply-now .box {
  display: flex;
  gap: 60px;
  align-items: center;
}
.apply-now .box img {
  max-width: 100%;
  width: 500px;
}
.apply-now .box .texts h3 {
  font-size: 36px;
  text-transform: capitalize;
  font-weight: 700;
}
.apply-now .box .texts p {
  margin: 30px 0px;
}

.testimonial-section {
  margin: 80px 0px;
  margin-bottom: 0px;
}
.testimonial-section h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
  font-size: 36px;
  text-transform: capitalize;
  font-weight: 500;
  position: relative;
}
.testimonial-section h2::after {
  position: absolute;
  content: "";
  width: 10%;
  height: 2px;
  background-color: red;
  bottom: -20%;
  left: 45%;
}

.testimonial {
  width: 100%;
  padding: 70px 0px;
  padding-top: 50px;
  background-color: #14213d;
  background-image: linear-gradient(to bottom, #14213d, rgba(20, 33, 61, 0.537254902)), url("../imgs/testi.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: #14213d;
}
.testimonial-slide {
  padding: 20px;
}
.testimonial_box-top {
  background-color: #e5e5e5;
  padding: 22px 10px;
  padding-bottom: 21px;
  border-radius: 15px;
  display: flex;
  position: relative;
  box-shadow: 5px 5px 20px rgba(229, 229, 229, 0.301);
}
.testimonial_box-icon {
  margin-top: -12px;
  padding-right: 20px;
}
.testimonial_box-icon i {
  font-size: 35px;
  color: rgba(20, 33, 61, 0.9058823529);
}
.testimonial_box-text p {
  color: #1e2129;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 0;
}
.testimonial_box-text .rating {
  margin-top: 10px;
}
.testimonial_box-text .rating i {
  color: #0656a7;
  font-size: 18px;
}
.testimonial_box-shape {
  position: absolute;
  bottom: -10px;
  left: 50px;
  width: 20px;
  height: 20px;
  background-color: #e5e5e5;
  transform: rotateZ(45deg);
}
.testimonial_box-bottom {
  padding-top: 35px;
  padding-left: 25px;
}
.testimonial_box-profile {
  display: flex;
}
.testimonial_box-img {
  display: flex;
  justify-content: center;
}
.testimonial_box-img img {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  border: 2px solid #e5e5e5;
}
.testimonial_box-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 20px;
}
.testimonial_box-name h4 {
  font-size: 17px;
  line-height: 25px;
  color: #e5e5e5;
  margin-bottom: 0;
  font-weight: 400;
}
.testimonial_box-job p {
  color: #e5e5e5;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 20px;
  font-weight: 300;
  margin-bottom: 0;
  margin-top: 5px;
}

.slick-dots li button:before {
  font-size: 15px;
  color: #e5e5e5;
}

.FAQ-home {
  margin: 70px 0px;
  /* Tab Accordian */
  /* .titleWrapper.active{
      background: #fff;
  } */
  /* Collapse Icon */
}
.FAQ-home img {
  max-width: 100%;
}
.FAQ-home .box {
  display: grid;
  grid-template-columns: 40fr 60fr;
}
.FAQ-home .container-inner {
  padding: 30px 0;
  background: #f2f2f2;
}
.FAQ-home .section-title {
  padding: 10px 30px;
}
.FAQ-home .section-title h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 26px;
  color: #0656a7;
}
.FAQ-home .tab-container {
  padding: 20px 30px;
}
.FAQ-home h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
.FAQ-home ul li,
.FAQ-home p {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
}
.FAQ-home .tab-accordian p {
  margin-top: 0;
}
.FAQ-home .tab-accordian {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #ccc;
  background: transparent;
  background: #fff;
  margin-bottom: 20px;
  overflow: hidden;
  border-bottom: 2px solid #050a30;
}
.FAQ-home .titleWrapper {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  transition: background-color 0.8s linear;
}
.FAQ-home .desWrapper {
  background: #fff;
  max-height: 500px;
  display: none;
  padding: 0px 20px;
  transition: max-height 1s ease-in;
}
.FAQ-home .collapse-icon {
  position: relative;
}
.FAQ-home .collapse-icon .acc-close {
  height: 20px;
  border-left: 2px solid #0656a7;
  transition: all 0.5s ease-in-out;
  transform: rotate(-90deg);
  opacity: 1;
}
.FAQ-home .collapse-icon .acc-open {
  width: 19px;
  position: absolute;
  border-top: 2px solid #0656a7;
  transition: all 0.5s ease-in-out;
  transform: rotate(90deg);
  top: 43%;
  right: -8px;
}
.FAQ-home .titleWrapper.active .collapse-icon {
  transition: all 0.5s ease-in-out;
  transform: rotate(180deg);
}
.FAQ-home .titleWrapper.inactive .collapse-icon {
  transition: all 0.5s ease-in-out;
  transform: rotate(-180deg);
}
.FAQ-home .titleWrapper.active .collapse-icon .acc-open {
  opacity: 0;
}

.loan-process-form {
  margin: 110px 0px;
  margin-top: 40px;
}
.loan-process-form h2 {
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  color: #0656a7;
  position: relative;
}
.loan-process-form h2::before {
  content: "";
  position: absolute;
  left: 15%;
  bottom: 17px;
  width: 20%;
  height: 4px;
  z-index: -1;
  border-radius: 5px;
  background-color: #0062cc;
}
.loan-process-form h2::after {
  content: "";
  position: absolute;
  right: 15%;
  bottom: 17px;
  border-radius: 5px;
  width: 20%;
  height: 4px;
  z-index: -1;
  background-color: #0062cc;
}
.loan-process-form h3 {
  border-bottom: 3px solid #0656a7;
  text-transform: capitalize;
  color: #0656a7;
  margin-top: 22px;
  padding-left: 20px;
  margin-bottom: 20px;
  display: block;
  padding-bottom: 7px;
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}
.loan-process-form .bottom {
  margin-bottom: 20px;
}
.loan-process-form .file-size {
  margin-bottom: 20px;
  display: block;
  color: #777;
  font-size: 13px;
  margin-top: 10px;
}
.loan-process-form .loan-form {
  max-width: 80%;
  margin: 0 auto;
  padding: 50px 20px;
  padding-top: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 11px 0 rgba(178, 183, 189, 0.24), 0 0.5px 2.5px 0 rgba(213, 218, 223, 0.8);
}
.loan-process-form .loan-form input,
.loan-process-form .loan-form select {
  margin-bottom: 35px;
  background-color: #fff;
  outline: 2px solid rgba(0, 0, 0, 0);
  outline-offset: 2px;
  border-radius: 6px;
  border: 2px solid #dfdfdf;
  border-bottom: 3px solid #0656a7;
}
.loan-process-form .loan-form textarea:focus,
.loan-process-form .loan-form input:focus,
.loan-process-form .loan-form select:focus {
  border: 2px solid #0656a7;
}
.loan-process-form .loan-form svg {
  height: 18px;
  width: 18px;
  color: red;
}
.loan-process-form .loan-form .form-control:focus {
  box-shadow: none;
}
.loan-process-form .loan-form input[type=file] {
  border: 2px solid rgba(108, 92, 231, 0);
  height: 50px;
  border-radius: 3px;
  background-color: #f2f2f2;
  transition: 1s;
  margin-bottom: 0px;
  color: #fff;
  color: #777;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.loan-process-form .loan-form input[type=file]::-webkit-file-upload-button {
  border: none;
  padding: 0.2em 0.4em;
  border-radius: 0.2em;
  background-color: rgba(6, 87, 167, 0.7215686275);
  -webkit-transition: 1s;
  transition: 1s;
  color: #fff;
}
.loan-process-form .loan-form input[type=file]::file-selector-button {
  border: none;
  padding: 0.2em 0.4em;
  border-radius: 0.2em;
  background-color: rgba(6, 87, 167, 0.7215686275);
  transition: 1s;
  color: #fff;
}
.loan-process-form .loan-form .control-label {
  margin-bottom: 11px;
  color: rgba(7, 7, 77, var(--tw-text-opacity));
  text-transform: capitalize;
  font-weight: 500;
  color: #0656a7;
  text-transform: uppercase;
  display: inline-block;
  font-size: 16px;
}
.loan-process-form .loan-form .control-label span {
  font-size: 12px;
  color: #c41b54;
}
.loan-process-form .loan-form .form-check {
  margin-top: 16px;
}
.loan-process-form .loan-form .form-check label {
  font-size: 17px;
  padding-left: 0px !important;
}
.loan-process-form .loan-form .documents {
  padding: 10px 30px;
}
.loan-process-form .loan-form select {
  width: 100%;
  padding: 10px;
}
.loan-process-form .loan-form .cntr {
  margin-top: 0px;
  margin-bottom: 18px;
}
.loan-process-form .loan-form .btn-radio {
  cursor: pointer;
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}
.loan-process-form .loan-form .btn-radio:not(:first-child) {
  margin-left: 20px;
}
@media screen and (max-width: 480px) {
  .loan-process-form .loan-form .btn-radio {
    display: block;
    float: none;
  }
  .loan-process-form .loan-form .btn-radio:not(:first-child) {
    margin-left: 0;
    margin-top: 15px;
  }
}
.loan-process-form .loan-form .btn-radio svg {
  fill: none;
  vertical-align: middle;
}
.loan-process-form .loan-form .btn-radio svg circle {
  stroke-width: 2;
  stroke: #c8ccd4;
}
.loan-process-form .loan-form .btn-radio svg path {
  stroke: #008fff;
}
.loan-process-form .loan-form .btn-radio svg path.inner {
  stroke-width: 6;
  stroke-dasharray: 19;
  stroke-dashoffset: 19;
}
.loan-process-form .loan-form .btn-radio svg path.outer {
  stroke-width: 2;
  stroke-dasharray: 57;
  stroke-dashoffset: 57;
}
.loan-process-form .loan-form .btn-radio input {
  display: none;
}
.loan-process-form .loan-form .btn-radio input:checked + svg path {
  transition: all 0.4s ease;
}
.loan-process-form .loan-form .btn-radio input:checked + svg path.inner {
  stroke-dashoffset: 38;
  transition-delay: 0.3s;
}
.loan-process-form .loan-form .btn-radio input:checked + svg path.outer {
  stroke-dashoffset: 0;
}
.loan-process-form .loan-form .btn-radio span {
  display: inline-block;
  vertical-align: middle;
}
.loan-process-form .shop-phots {
  background-color: rgba(31, 66, 94, 0.0549019608);
  margin-bottom: 30px;
  padding: 10px;
  text-align: center;
}
.loan-process-form .shop-phots .control-label {
  font-size: 19px;
  margin-bottom: 18px;
}
.loan-process-form .shop-phots .file-size {
  margin-bottom: 5px;
}
.loan-process-form .shop-phots .loan-process-form .loan-form input[type=file] {
  width: 100% !important;
  background-color: #fff;
}
.loan-process-form .shop-phots div {
  align-items: center;
  justify-content: center;
  width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 610px) {
  .loan-process-form .loan-form {
    max-width: 95%;
  }
  .loan-process-form {
    margin: 20px 0px;
  }
  .loan-process-form h2 {
    font-size: 26px;
    margin-top: 40px;
  }
  .loan-process-form .loan-form .control-label {
    font-size: 14px;
  }
  .loan-process-form .loan-form .btn-radio {
    font-size: 13px;
  }
  .loan-process-form .loan-form .btn-radio svg {
    width: 17px;
  }
  .loan-process-form .loan-form select {
    font-size: 14px;
  }
  .loan-process-form .loan-form input[type=file] {
    font-size: 12px;
  }
  .loan-process-form .loan-form .form-check label {
    font-size: 14px;
  }
  .loan-process-form .Btn span {
    font-size: 11px;
  }
}
.wave-group {
  position: relative;
  padding-right: 0px;
}

.wave-group .input {
  padding: 9px 10px;
  display: block;
  width: 100%;
  font-size: 15px;
  border: none;
  border: 1px solid #515151;
  border: 1px solid rgb(204, 204, 204);
  background: transparent;
  border-radius: 2px;
}

.wave-group .input:focus {
  outline: none;
}

.wave-group .label {
  color: #666;
  font-size: 14px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 26px;
  top: 10px;
  display: flex;
  background-color: transparent;
}

.wave-group span {
  transition: 0.3s ease all;
  transition-delay: calc(var(--index) * 0.05s);
}

.wave-group .input:focus ~ label span,
.wave-group .input:valid ~ label span {
  transform: translateY(-22px);
  font-size: 14px;
  color: #0656a7;
  background-color: #fff;
}

.wave-group .bar {
  position: relative;
  display: block;
  width: 200px;
}

.wave-group .bar:before {
  left: 50%;
}

.wave-group .bar:after {
  right: 50%;
}

.wave-group .input:focus ~ .bar:before,
.wave-group .input:focus ~ .bar:after {
  width: 50%;
}

.blog-detail {
  margin: 70px 0px;
}
.blog-detail .blog-header {
  text-align: center;
  margin-bottom: 50px;
}
.blog-detail .blog-header .blog-title h1 {
  margin-bottom: 30px;
  margin-top: 10px;
  font-size: 35px;
  font-weight: 600;
}
.blog-detail .blog-header .blog-title .short-intro {
  font-weight: 400;
  font-size: 18px;
  width: 65%;
  margin: 0 auto;
}
.blog-detail .blog-header .blog-title .author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  text-align: start;
}
.blog-detail .blog-header .blog-title .author h5 {
  font-weight: 500;
  margin-bottom: 2px;
}
.blog-detail .blog-contetn {
  max-width: 80%;
  margin: 0 auto;
}
.blog-detail .blog-contetn h3 {
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
}
.blog-detail .blog-contetn p {
  line-height: 1.6;
  font-size: 17px;
  color: #333;
}
.blog-detail .blog-contetn img {
  margin: 50px auto;
  max-width: 50%;
  display: block;
}
.blog-detail .blog-contetn h4 {
  margin: 30px 0px 20px 0px;
  font-size: 24px;
}
.blog-detail img {
  max-width: 100%;
}

.News-Signup {
  margin-top: 50px;
}
.News-Signup .Signup__text {
  text-align: center;
  margin: 0 auto 25px;
  font-family: "Montserrat", sans-serif;
  color: #6d6d6d;
  letter-spacing: 0.5px;
  font-size: 1em;
  line-height: 1.5em;
  width: 90%;
}
.News-Signup .Signup__form {
  display: flex;
  justify-content: center;
}
@media (max-width: 540px) {
  .News-Signup .Signup__form {
    display: block;
  }
}
.News-Signup input {
  border: 2px solid #6d6d6d;
  border-radius: 3px;
  padding: 15px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
  margin-right: 10px;
  color: #6d6d6d;
  transition: border 0.3s, box-shadow 0.3s;
  width: 90%;
  max-width: 300px;
}
@media (max-width: 540px) {
  .News-Signup input {
    display: block;
    margin: 0 auto 25px;
  }
}
.News-Signup input:focus {
  outline: none;
  border: 2px solid #db4646;
  box-shadow: inset 1px 1px 2px 0 #c9c9c9;
}
.News-Signup .Signup__button {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  background: #db4646;
  border: 2px solid #db4646;
  border-radius: 3px;
  letter-spacing: 0.5px;
  padding: 0 40px;
}

.blog-footer {
  margin-top: 30px;
  border-top: 2px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-footer .blog-tags {
  margin-top: 20px;
}
.blog-footer .blog-tags .tag {
  color: #363a45;
  border: 2px solid #363a45;
  padding: 5px;
  display: inline-block;
  border-radius: 50px;
  min-width: 90px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}
.blog-footer .blog-actions button {
  color: #363a45;
  border: 2px solid #363a45;
  padding: 5px 25px;
  display: inline-block;
  border-radius: 10px;
  background: none;
  margin-top: 20px;
}

.more-blogs {
  margin-bottom: 80px;
}

.FAQ-main {
  margin: 80px 0px;
  margin-top: 0px;
}
.FAQ-main .faq-header {
  text-align: center;
  background-color: rgba(0, 140, 247, 0.3882352941);
  padding: 40px;
  padding-top: 65px;
  padding-bottom: 80px;
  background: linear-gradient(to bottom, rgba(7, 81, 138, 0.7882352941), rgba(20, 33, 61, 0.84)), url("../imgs/faqbg.jpg");
}
.FAQ-main .faq-header h6 {
  color: #fff;
}
.FAQ-main .faq-header h2 {
  margin-bottom: 30px;
  font-weight: 700;
  color: #fff;
  font-size: 40px;
}
.FAQ-main .faq-header p {
  color: #fff;
}
.FAQ-main .faq-header .search-bar form {
  margin: 0 auto;
}
.FAQ-main .faq-header {
  /* styling of whole input container */
  /* styling of Input */
  /* styling of animated border */
  /* Hover on Input */
  /* here is code of animated border */
  /* styling of close button */
  /* == you can click the close button to remove text == */
  /* close button shown when typing */
  /* sizing svg icons */
}
.FAQ-main .faq-header .form button {
  border: none;
  background: none;
  color: #8b8ba7;
}
.FAQ-main .faq-header .form {
  --timing: 0.3s;
  --width-of-input: 40%;
  --height-of-input: 40px;
  --border-height: 2px;
  --input-bg: #eee;
  --border-color: #2f2ee9;
  --border-radius: 30px;
  --after-border-radius: 1px;
  position: relative;
  width: var(--width-of-input);
  height: var(--height-of-input);
  display: flex;
  align-items: center;
  padding-inline: 0.8em;
  border-radius: var(--border-radius);
  transition: border-radius 0.5s ease;
  background: var(--input-bg, #fff);
  color: #222;
}
.FAQ-main .faq-header .input {
  font-size: 0.9rem;
  background-color: transparent;
  width: 100%;
  height: 100%;
  padding-inline: 0.5em;
  padding-block: 0.7em;
  border: none;
}
.FAQ-main .faq-header .form:before {
  content: "";
  position: absolute;
  background: var(--border-color);
  transform: scaleX(0);
  transform-origin: center;
  width: 100%;
  height: var(--border-height);
  left: 0;
  bottom: 0;
  border-radius: 1px;
  transition: transform var(--timing) ease;
}
.FAQ-main .faq-header .form:focus-within {
  border-radius: var(--after-border-radius);
}
.FAQ-main .faq-header input:focus {
  outline: none;
}
.FAQ-main .faq-header .form:focus-within:before {
  transform: scale(1);
}
.FAQ-main .faq-header .reset {
  border: none;
  background: none;
  opacity: 0;
  visibility: hidden;
}
.FAQ-main .faq-header input:not(:-moz-placeholder-shown) ~ .reset {
  opacity: 1;
  visibility: visible;
}
.FAQ-main .faq-header input:not(:-ms-input-placeholder) ~ .reset {
  opacity: 1;
  visibility: visible;
}
.FAQ-main .faq-header input:not(:placeholder-shown) ~ .reset {
  opacity: 1;
  visibility: visible;
}
.FAQ-main .faq-header .form svg {
  width: 18px;
  margin-right: 8px;
  margin-top: 0px;
}
.FAQ-main .FAQ-home {
  max-width: 70%;
  margin: 0 auto;
  margin-top: 40px;
}
.FAQ-main .FAQ-home .container-inner {
  background-color: transparent;
  margin-bottom: 0px;
  padding-top: 0px;
}
.FAQ-main .FAQ-home .container-inner h4 {
  text-align: center;
  color: #0062cc;
  font-weight: 600;
}
.FAQ-main .FAQ-home .titleWrapper {
  background: rgb(255, 249, 249);
  border: none;
  background-color: #fff;
}
.FAQ-main .FAQ-home .tab-accordian {
  border: 2px solid #e3e3e3;
  border-radius: 6px;
  border-bottom: 3px solid #0062cc;
}
.FAQ-main .FAQ-home .tab-accordian p {
  margin-top: 17px;
  margin-bottom: 25px;
}

.contact-form {
  /* single-line text, checkbox, and button */
}
.contact-form .box {
  margin: 60px auto;
  background-color: #fff;
  padding: 40px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
}
.contact-form h2 {
  text-align: center;
  font-weight: 600;
  color: #0656a7;
}
.contact-form p {
  text-align: center;
}
.contact-form label {
  display: block;
  margin: 1em 0 0.2em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 7px 15px;
  font-size: 17px;
  background-color: #fbfbfb;
  border: none;
  background-color: rgb(245, 245, 245);
  border-bottom: solid 2px #0062cc;
  resize: vertical;
  margin-bottom: 30px;
}
.contact-form textarea {
  min-height: 180px;
}
.contact-form option {
  color: blue;
  background: lavenderBlush;
}
.contact-form label {
  color: #0656a7;
  font-size: 15px;
  margin-bottom: 8px;
}
.contact-form input[type=checkbox] {
  display: inline;
  width: auto;
  color: red;
}
.contact-form input[type=submit] {
  background: #0656a7;
  margin: 1em 0 0;
  color: white;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease-out;
}
.contact-form input[type=submit]:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.contact-form textarea:focus,
.contact-form input:focus {
  outline: none;
}
@media screen and (min-width: 600px) {
  .contact-form {
    /*  make the form 2 columns */
  }
  .contact-form form:after {
    content: "";
    display: block;
    clear: both;
  }
  .contact-form .column {
    width: 50%;
    padding: 1em;
    float: left;
  }
}/*# sourceMappingURL=main.css.map */