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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.wrapper {
  font-family: "Archivo", Arial, Helvetica, sans-serif;
  font-weight: 400;
  background: #fff;
}
.wrapper .grid {
  margin: 0 auto;
  padding: 0 10px;
}
.wrapper header {
  position: relative;
  padding: 0 10px;
  background: #FFF;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 930px) {
  .wrapper header {
    padding: 0 16px 10px;
  }
}
.wrapper header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1270px;
  margin: 0 auto;
  gap: 10px;
}
.wrapper header .header-inner .inner-nav-wrap {
  display: flex;
  gap: 20px;
}
.wrapper header .header-inner .inner-nav-wrap .navbar-mobile {
  background: #FFF;
  box-shadow: 4px 0px 10px 0px rgba(0, 0, 0, 0.11);
  width: 295px;
  height: 100vh;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  padding-left: 18px;
  z-index: 9999;
}
@media only screen and (min-width: 930px) {
  .wrapper header .header-inner .inner-nav-wrap .navbar-mobile {
    display: none !important;
  }
}
.wrapper header .header-inner .inner-nav-wrap .navbar-mobile ul.main-nav-list {
  overflow: hidden;
  list-style-type: none;
  margin: 0;
  padding: 79px 10px 0 0;
}
.wrapper header .header-inner .inner-nav-wrap .navbar-mobile ul.main-nav-list li {
  display: block;
  margin: 0;
  width: 100%;
  margin-bottom: 20px;
}
.wrapper header .header-inner .inner-nav-wrap .navbar-mobile ul.main-nav-list li a {
  color: #1A1A1A;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  transition: all 0.5s;
  text-transform: capitalize;
  font-weight: 400;
}
.wrapper header .header-inner .inner-nav-wrap .navbar-mobile ul.main-nav-list li.active a {
  color: #0060DF;
  font-weight: 600;
}
.wrapper header .header-inner .inner-nav-wrap .hamburger {
  margin: 0;
  position: relative;
  z-index: 99;
  cursor: pointer;
  top: 18px;
  height: 24px;
}
@media only screen and (min-width: 930px) {
  .wrapper header .header-inner .inner-nav-wrap .hamburger {
    display: none !important;
  }
}
.wrapper header .header-inner .inner-nav-wrap .hamburger .line {
  width: 22px;
  height: 4px;
  background: #70787d;
  margin: 3px auto;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
.wrapper header .header-inner .inner-nav-wrap .hamburger.isactive .line:nth-child(2) {
  opacity: 0;
}
.wrapper header .header-inner .inner-nav-wrap .hamburger.isactive .line:nth-child(1) {
  transform: translateY(1px) rotate(45deg);
  height: 2px;
}
.wrapper header .header-inner .inner-nav-wrap .hamburger.isactive .line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
  height: 2px;
}
.wrapper header .header-inner .inner-nav-wrap .navbar-mobile.active {
  display: block;
  animation: fade 0.5s;
}
@keyframes fade {
  from {
    transform: translateX(-200px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}
.wrapper header .header-inner .inner-nav-wrap .mobile-menu-dropdown {
  outline: none;
  border: 0;
  background: transparent;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 23px;
}
.wrapper header .header-inner .inner-nav-wrap .mobile-menu-dropdown svg {
  transform: rotate(180deg);
}
.wrapper header .header-inner .inner-nav-wrap .mobile-menu-dropdown.active svg {
  transform: rotate(0deg);
}
.wrapper header .header-inner .inner-nav-wrap .mobile-menu-panel {
  max-height: 0;
  overflow: hidden;
}
.wrapper header .header-inner .inner-nav-wrap ul.product-list li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #000;
  text-align: center;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
  cursor: pointer;
}
.wrapper header .header-inner .inner-nav-wrap ul.product-list li:last-child {
  margin: 0;
}
@media only screen and (max-width: 930px) {
  .wrapper header .header-inner .inner-nav-wrap .logo-wrap {
    padding: 9px 0;
  }
}
.wrapper header .header-inner .inner-nav-wrap .logo-wrap img {
  width: 173.76px;
  height: 43.44px;
  vertical-align: bottom;
}
@media only screen and (max-width: 930px) {
  .wrapper header .header-inner .inner-nav-wrap .logo-wrap img {
    width: 130.57px;
    height: 32.83px;
  }
}
@media only screen and (max-width: 930px) {
  .wrapper header .header-inner nav.desktop-nav {
    display: none;
  }
}
.wrapper header .header-inner nav.desktop-nav ul {
  display: flex;
  gap: 50px;
  align-items: center;
}
@media only screen and (max-width: 1105px) {
  .wrapper header .header-inner nav.desktop-nav ul {
    gap: 30px;
  }
}
.wrapper header .header-inner nav.desktop-nav ul li {
  position: relative;
  color: #1A1A1A;
  font-size: 14px;
  line-height: normal;
  cursor: pointer;
}
.wrapper header .header-inner nav.desktop-nav ul li a {
  color: inherit;
  padding: 25px 0;
}
.wrapper header .header-inner nav.desktop-nav ul li a:hover {
  color: #F36F0F;
}
.wrapper header .header-inner nav.desktop-nav ul li:nth-child(2) {
  font-weight: 400;
}
.wrapper header .header-inner nav.desktop-nav ul li.active {
  color: #F36F0F;
  font-weight: 600;
}
.wrapper header .header-inner nav.desktop-nav ul li:nth-child(3) .dropdown-content {
  font-weight: 400;
}
.wrapper header .header-inner nav.desktop-nav ul li:nth-child(3) .dropdown-content div a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wrapper header .header-inner nav.desktop-nav ul li:nth-child(3) .dropdown-content div a span {
  line-height: 0;
}
.wrapper header .header-inner nav.desktop-nav ul li:nth-child(4) {
  background-size: 8px auto;
  padding: 25px 0;
  border-radius: 4px;
  padding-right: 30px;
}
.wrapper header .header-inner nav.desktop-nav ul li:nth-child(4)::after {
  content: "";
  margin-left: 10px;
  position: absolute;
  display: block;
  content: "\f107";
  font-family: FontAwesome;
  position: absolute;
  right: 12px;
  font-weight: normal;
  font-style: normal;
  margin: 0px 0px 0px 10px;
  text-decoration: none;
  top: 27px;
}
.wrapper header .header-inner nav.desktop-nav ul li:nth-child(4):hover {
  color: #F36F0F;
}
.wrapper header .header-inner nav.desktop-nav ul li:nth-child(4) .dropdown-content {
  display: none;
  position: absolute;
  border-radius: 4px;
  border: 1px solid #F5F5F5;
  background: #FFF;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.12);
  min-width: 175px;
  z-index: 1;
  top: 64px;
  left: -30px;
}
.wrapper header .header-inner nav.desktop-nav ul li:nth-child(4) .dropdown-content div {
  color: black;
  padding: 12px 13px;
}
.wrapper header .header-inner nav.desktop-nav ul li:nth-child(4) .dropdown-content div:hover {
  color: #F36F0F;
}
.wrapper header .header-inner nav.desktop-nav ul li:nth-child(4) .dropdown-content div a {
  color: #1A1A1A;
  text-decoration: none;
  display: flex;
  padding: 0;
  font-size: 14px;
}
.wrapper header .header-inner nav.desktop-nav ul li:nth-child(4) .dropdown-content div a:hover {
  color: #F36F0F;
}
.wrapper header .header-inner nav.desktop-nav ul li:nth-child(4):hover .dropdown-content {
  display: block;
}
.wrapper header .header-inner input.desktop-search {
  max-width: 300px;
  height: 40px;
  border-radius: 50px;
  border: 1px solid #C6C6C6;
  background: transparent;
  width: 100%;
  padding: 0 20px 0 42px;
  outline: none;
  white-space: nowrap;
  overflow: hidden;
  color: #1A1A1A;
  text-overflow: ellipsis;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  background: url(../images/search-icon.png) 15px center no-repeat;
}
.wrapper header .header-inner input.desktop-search::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #C6C6C6;
}
.wrapper header .header-inner input.desktop-search::-moz-placeholder { /* Firefox 19+ */
  color: #C6C6C6;
}
.wrapper header .header-inner input.desktop-search:-ms-input-placeholder { /* IE 10+ */
  color: #C6C6C6;
}
.wrapper header .header-inner input.desktop-search:-moz-placeholder { /* Firefox 18- */
  color: #C6C6C6;
}
@media only screen and (max-width: 930px) {
  .wrapper header .header-inner input.desktop-search {
    display: none;
  }
}
.wrapper header .header-inner .mobile-search-btn {
  cursor: pointer;
}
.wrapper header .header-inner .mobile-search-btn .close-icon {
  display: none;
}
@media only screen and (min-width: 930px) {
  .wrapper header .header-inner .mobile-search-btn {
    display: none !important;
  }
}
.wrapper header .header-inner .mobile-search-btn.active .close-icon {
  display: block;
}
.wrapper header .header-inner .mobile-search-btn.active .search-icon {
  display: none;
}
.wrapper header .header-inner .mobile-search {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  padding: 18px 16px;
  border-radius: 0px 0px 4px 4px;
  border: 1px solid #F5F5F5;
  background: #FFF;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.12);
  z-index: 9;
}
@media only screen and (min-width: 930px) {
  .wrapper header .header-inner .mobile-search {
    display: none !important;
  }
}
.wrapper header .header-inner .mobile-search .mobile-search-inner {
  position: relative;
}
.wrapper header .header-inner .mobile-search .mobile-search-inner input {
  border-radius: 4px;
  border: 1px solid #C4C4C4;
  height: 40px;
  width: 100%;
  padding: 0 50px 0 10px;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: no-wrap;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  color: #000;
}
.wrapper header .header-inner .mobile-search .mobile-search-inner input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #70787D;
}
.wrapper header .header-inner .mobile-search .mobile-search-inner input::-moz-placeholder { /* Firefox 19+ */
  color: #70787D;
}
.wrapper header .header-inner .mobile-search .mobile-search-inner input:-ms-input-placeholder { /* IE 10+ */
  color: #70787D;
}
.wrapper header .header-inner .mobile-search .mobile-search-inner input:-moz-placeholder { /* Firefox 18- */
  color: #70787D;
}
.wrapper header .header-inner .mobile-search .mobile-search-inner button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border-radius: 0px 4px 4px 0px;
  background: #4862EB;
  width: 42px;
  height: 40px;
  outline: none;
  border: 0;
  cursor: pointer;
}
.wrapper header .header-inner .mobile-search.active {
  display: block;
}
.wrapper .banner {
  background: linear-gradient(299deg, #FFF 0%, #E1E7FC 100%);
}
.wrapper .banner .cont-wrap {
  position: relative;
  overflow: hidden;
}
.wrapper .banner .cont-wrap .cont-wrap-inner {
  padding: 169px 0 120px 0;
  position: relative;
}
@media only screen and (max-width: 930px) {
  .wrapper .banner .cont-wrap .cont-wrap-inner {
    padding-top: 40px;
    padding-bottom: 33px;
  }
}
.wrapper .banner .cont-wrap .cont-wrap-inner .grid {
  display: flex;
  gap: 20px;
  max-width: 1290px;
}
@media only screen and (max-width: 1024px) {
  .wrapper .banner .cont-wrap .cont-wrap-inner .grid {
    flex-direction: column;
    padding: 0;
    text-align: center;
  }
}
.wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left {
  flex: 1;
}
.wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-right img {
  max-width: 658px;
  height: auto;
  width: 100%;
  transform: translateY(-30px);
}
@media only screen and (max-width: 930px) {
  .wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-right img {
    transform: unset;
  }
}
.wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left {
  min-width: 580px;
}
@media only screen and (max-width: 1024px) {
  .wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 930px) {
  .wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left {
    z-index: 1;
    min-width: auto;
  }
}
.wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left h1 {
  color: #192C63;
  font-size: 44px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1200px) {
  .wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 930px) {
  .wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left h1 {
    font-size: 30px;
    line-height: normal;
    max-width: 348px;
    margin: 0 auto 10px;
  }
}
.wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left h2 {
  color: #5D6B91;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 25px;
  max-width: 492px;
}
@media only screen and (max-width: 1024px) {
  .wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left h2 {
    margin: 0 auto 14px;
  }
}
@media only screen and (max-width: 930px) {
  .wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left h2 {
    font-size: 14px;
    line-height: 20px;
    margin: 0 auto 15px;
    max-width: 330px;
  }
}
.wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left .ff-cta {
  overflow: hidden;
  width: 280px;
  height: auto;
  background: transparent;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #FFF;
  text-align: center;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  transition: transform 420ms;
  cursor: pointer;
  margin-bottom: 8px;
}
.wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left .ff-cta img {
  width: 100%;
  height: auto;
}
.wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left .cta-banner {
  width: 238px;
  height: auto;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1024px) {
  .wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left .cta-banner {
    margin: 0 auto 8px;
  }
}
@media only screen and (max-width: 930px) {
  .wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left .cta-banner {
    width: 216px;
    height: 60px;
    margin-bottom: 15px;
  }
  .wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left .cta-banner img {
    width: 138px;
  }
}
.wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left p.cta-disclaimer {
  color: #5D6B91;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  max-width: 371px;
}
@media only screen and (max-width: 1024px) {
  .wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left p.cta-disclaimer {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 930px) {
  .wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left p.cta-disclaimer {
    font-size: 12px;
    max-width: 328px;
  }
}
.wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left p.cta-disclaimer a {
  text-decoration: underline;
}
.wrapper .banner .cont-wrap .cont-wrap-inner .grid .cont-wrap-inner-left p.cta-disclaimer a:hover {
  text-decoration: none;
}
.wrapper .features {
  padding: 80px 0;
}
@media only screen and (max-width: 930px) {
  .wrapper .features {
    padding: 40px 0;
  }
}
.wrapper .features h3 {
  color: #192C63;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 930px) {
  .wrapper .features h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.wrapper .features .feat-list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 930px) {
  .wrapper .features .feat-list {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}
.wrapper .features .feat-list li {
  display: flex;
  flex-direction: column;
  width: 349px;
  height: 340px;
  text-align: center;
  justify-content: space-between;
}
@media only screen and (max-width: 930px) {
  .wrapper .features .feat-list li {
    height: auto;
    gap: 15px;
  }
}
.wrapper .features .feat-list li .text-wrap {
  order: 2;
}
.wrapper .features .feat-list li .text-wrap h4 {
  color: #192C63;
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 12px;
}
@media only screen and (max-width: 930px) {
  .wrapper .features .feat-list li .text-wrap h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.wrapper .features .feat-list li .text-wrap p {
  color: #5D6B91;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
@media only screen and (max-width: 930px) {
  .wrapper .features .feat-list li .text-wrap p {
    color: #5E6C91;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 150% */
  }
}
.wrapper .features .feat-list li .img-wrap {
  width: 230px;
  order: 1;
  margin: 0 auto;
}
@media only screen and (max-width: 930px) {
  .wrapper .features .feat-list li .img-wrap {
    width: 178px;
  }
}
.wrapper .features .feat-list li .img-wrap img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media only screen and (max-width: 930px) {
  .wrapper .features .feat-list li .img-wrap img {
    width: 200px;
  }
}
.wrapper .features .feat-list li:nth-child(2) .img-wrap {
  width: 238px;
}
@media only screen and (max-width: 930px) {
  .wrapper .features .feat-list li:nth-child(2) .img-wrap {
    width: 131px;
  }
}
.wrapper .features .feat-list li:nth-child(3) .img-wrap {
  width: 252px;
}
@media only screen and (max-width: 930px) {
  .wrapper .features .feat-list li:nth-child(3) .img-wrap {
    width: 190px;
  }
}
.wrapper .choose-us {
  padding: 85px 0 234px 0;
  background: linear-gradient(299deg, #E1E7FC 0%, #FFF 100%);
}
@media only screen and (max-width: 930px) {
  .wrapper .choose-us {
    padding-top: 40px;
    padding-bottom: 111px;
  }
}
.wrapper .choose-us h3 {
  color: #192C63;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 48px;
}
@media only screen and (max-width: 930px) {
  .wrapper .choose-us h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.wrapper .choose-us .choose-list {
  display: flex;
  justify-content: space-between;
  text-align: center;
  max-width: 1028px;
  margin: 0 auto;
}
@media only screen and (max-width: 930px) {
  .wrapper .choose-us .choose-list {
    flex-direction: column;
    gap: 40px;
  }
}
.wrapper .choose-us .choose-list .icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
}
@media only screen and (max-width: 930px) {
  .wrapper .choose-us .choose-list .icon-wrap {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
  }
}
.wrapper .choose-us .choose-list .icon-wrap svg {
  width: 42px;
  height: auto;
}
.wrapper .choose-us .choose-list .icon-wrap svg path {
  fill: #3563E9;
}
@media only screen and (max-width: 930px) {
  .wrapper .choose-us .choose-list .icon-wrap svg {
    width: 26px;
  }
}
.wrapper .choose-us .choose-list h4 {
  color: #192C63;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 12px;
}
@media only screen and (max-width: 930px) {
  .wrapper .choose-us .choose-list h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.wrapper .choose-us .choose-list p {
  color: #5E6C91;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  max-width: 283px;
}
@media only screen and (max-width: 930px) {
  .wrapper .choose-us .choose-list p {
    font-size: 12px;
    line-height: 18px;
    margin: 0 auto;
  }
}
.wrapper .cta-sec {
  margin-top: -150px;
}
@media only screen and (max-width: 930px) {
  .wrapper .cta-sec {
    margin-top: -76px;
  }
}
.wrapper .cta-sec .cta-sec-inner {
  text-align: center;
  max-width: 1028px;
  margin: 0 auto;
  padding: 98px 20px 102px;
  border-radius: 30px;
  background: #182B60 url(../images/cta-sec-bg.png) center no-repeat;
  background-size: cover;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 930px) {
  .wrapper .cta-sec .cta-sec-inner {
    padding: 40px 14px;
    border-radius: 10px;
  }
}
.wrapper .cta-sec .cta-sec-inner h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  max-width: 636px;
  margin: 0 auto 16px;
}
@media only screen and (max-width: 930px) {
  .wrapper .cta-sec .cta-sec-inner h3 {
    font-size: 20px;
    line-height: 24px;
    max-width: 300px;
  }
}
.wrapper .cta-sec .cta-sec-inner .ff-cta {
  overflow: hidden;
  width: 280px;
  height: auto;
  background: transparent;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #FFF;
  text-align: center;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  transition: transform 420ms;
  cursor: pointer;
  margin: 0 auto;
}
.wrapper .cta-sec .cta-sec-inner .ff-cta img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 930px) {
  .wrapper .cta-sec .cta-sec-inner .ff-cta {
    width: 266px;
    height: 66px;
  }
  .wrapper .cta-sec .cta-sec-inner .ff-cta img {
    width: 152.188px;
  }
}
.wrapper .quest-sec {
  text-align: center;
  padding: 80px 0;
}
@media only screen and (max-width: 930px) {
  .wrapper .quest-sec {
    padding: 50px 0;
  }
}
.wrapper .quest-sec h3 {
  margin-bottom: 12px;
  color: #192C63;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
@media only screen and (max-width: 930px) {
  .wrapper .quest-sec h3 {
    font-size: 24px;
  }
}
.wrapper .quest-sec ul.acord-list {
  display: flex;
  flex-direction: column;
}
.wrapper .quest-sec ul.acord-list li.acord-list-cont {
  max-width: 761px;
  width: 100%;
  position: relative;
  margin: 0 auto;
  background: #021434;
  border-bottom: 2px solid #DADADA;
}
.wrapper .quest-sec ul.acord-list li.acord-list-cont .accordion {
  position: relative;
  cursor: pointer;
  padding: 12px 70px 16px 0;
  width: 100%;
  border: 0;
  text-align: left;
  outline: none;
  transition: 0.4s;
  background: #fff;
  color: #192C63;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  min-height: 56px;
}
@media only screen and (max-width: 930px) {
  .wrapper .quest-sec ul.acord-list li.acord-list-cont .accordion {
    padding: 11px 40px 11px 0;
    min-height: 65px;
    font-size: 14px;
  }
}
.wrapper .quest-sec ul.acord-list li.acord-list-cont .accordion.active {
  border-bottom: 0 !important;
}
.wrapper .quest-sec ul.acord-list li.acord-list-cont .accordion:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../images/accordion-arrow.png) center no-repeat;
  width: 28px;
  height: 28px;
}
@media only screen and (max-width: 930px) {
  .wrapper .quest-sec ul.acord-list li.acord-list-cont .accordion:after {
    width: 20px;
    height: 20px;
    background-size: 10px;
  }
}
.wrapper .quest-sec ul.acord-list li.acord-list-cont .panel {
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  text-align: left;
}
@media only screen and (max-width: 930px) {
  .wrapper .quest-sec ul.acord-list li.acord-list-cont .panel {
    padding-left: 0;
  }
}
.wrapper .quest-sec ul.acord-list li.acord-list-cont .panel p, .wrapper .quest-sec ul.acord-list li.acord-list-cont .panel ol {
  padding-bottom: 24px;
  color: #627A87;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media only screen and (max-width: 930px) {
  .wrapper .quest-sec ul.acord-list li.acord-list-cont .panel p, .wrapper .quest-sec ul.acord-list li.acord-list-cont .panel ol {
    padding-bottom: 15px;
    font-size: 12px;
    line-height: 20px;
  }
}
.wrapper .quest-sec ul.acord-list li.acord-list-cont .panel ol {
  padding: 0 0 24px 18px;
}
@media only screen and (max-width: 930px) {
  .wrapper .quest-sec ul.acord-list li.acord-list-cont .panel ol {
    padding-bottom: 15px;
  }
}
.wrapper footer {
  background: #E1E8FD;
  padding: 32px 0;
  text-align: center;
}
.wrapper footer p {
  color: #192C63;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  max-width: 793px;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 930px) {
  .wrapper footer p {
    font-size: 10px;
    margin-bottom: 15px;
  }
}
.wrapper footer .footer-links {
  color: #192C63;
  display: flex;
  justify-content: center;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  gap: 10px;
}
@media only screen and (max-width: 930px) {
  .wrapper footer .footer-links {
    font-size: 10px;
    flex-wrap: wrap;
  }
}
.wrapper footer .footer-links li {
  position: relative;
}
.wrapper footer .footer-links li a:hover {
  text-decoration: underline;
}
.wrapper footer .footer-links li::after {
  position: absolute;
  content: "/";
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
}
.wrapper footer .footer-links li:last-child::after {
  display: none;
}/*# sourceMappingURL=product-chrome-v1.css.map */