 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

 @font-face {
    font-family: 'Sofia Pro';
    src: url('fonts/SofiaPro-Bold.eot');
    src: url('fonts/SofiaPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/SofiaPro-Bold.woff2') format('woff2'),
        url('fonts/SofiaPro-Bold.woff') format('woff'),
        url('fonts/SofiaPro-Bold.ttf') format('truetype'),
        url('fonts/SofiaPro-Bold.svg#SofiaPro-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('fonts/SofiaPro-Medium.eot');
    src: url('fonts/SofiaPro-Medium.eot?#iefix') format('embedded-opentype'),
        url('fonts/SofiaPro-Medium.woff2') format('woff2'),
        url('fonts/SofiaPro-Medium.woff') format('woff'),
        url('fonts/SofiaPro-Medium.ttf') format('truetype'),
        url('fonts/SofiaPro-Medium.svg#SofiaPro-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('fonts/SofiaPro-Regular.eot');
    src: url('fonts/SofiaPro-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/SofiaPro-Regular.woff2') format('woff2'),
        url('fonts/SofiaPro-Regular.woff') format('woff'),
        url('fonts/SofiaPro-Regular.ttf') format('truetype'),
        url('fonts/SofiaPro-Regular.svg#SofiaPro-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('fonts/fonts/SofiaPro-SemiBold.eot');
    src: url('fonts/fonts/SofiaPro-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('fonts/fonts/SofiaPro-SemiBold.woff2') format('woff2'),
        url('fonts/fonts/SofiaPro-SemiBold.woff') format('woff'),
        url('fonts/fonts/SofiaPro-SemiBold.ttf') format('truetype'),
        url('fonts/fonts/SofiaPro-SemiBold.svg#SofiaPro-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}



/*==BASIC-SETUP==*/
body {
  font-family: 'Sofia Pro';
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  background: #fff;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
  margin-bottom: 0;
}

/* scroll-bar */
.scrolltotop {
  width: 40px;
  height: 40px;
  border-radius: 100px 100px 0 0;
  background: #333333;
  text-align: center;
  padding-top: 8px;
  font-size: 20px;
  color: #ffffff;
  position: fixed;
  right: 8px;
  bottom: 10px;
  display: none;
  transition: 0.2s all ease;
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {
  color: #fff;
  background: rgba(51, 51, 51, 0.7);
}

/*==THIS IS START==*/
.header-area {
  padding: 17px 0;
  background: #ffffff;

}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.main-nav ul li {
  margin-right: 64px;
}

.main-nav ul li:last-child {
  margin-right: 0;
}

.main-nav ul li a {
   font-weight: 400;
   font-size: 20px;
   letter-spacing: -0.02em;
   color: #10828D;
}

.main-nav ul li:last-child a {
  font-weight: 500;
  font-size: 16px;
  color: #F8F8FA;
  background: #0C4C52;
  border-radius: 10px;
  display: inline-block;
  padding: 14px 20px;
  transition: 0.2s all ease;
}

.main-nav ul li:last-child a:hover {
  opacity: 0.8;
}

.logo img {
  max-width: 187px;
}


/* MOBIL-MENU-START*/
.sidebar-menu {
  backdrop-filter: blur(15px);
  width: 250px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -250px;
  overflow-y: auto;
  transition: 0.6s ease;
  transition-property: left;
  background: #191A15;
  z-index: 20;
}

.sidebar-menu::-webkit-scrollbar {
  width: 0px;
}

.sidebar-menu.active {
  left: 0;
}

.menu-wrap {
  margin-top: 10px;
}

.menu-item a {
  display: block;
  padding: 5px 9px;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.menu-item:last-child a {
  font-weight: 500;
  font-size: 15px;
  color: #F8F8FA;
  background: #0C4C52;
  border-radius: 10px;
  display: inline-block;
  padding: 8px 15px;
  margin-left: 10px;
  margin-top: 5px;
}

.menu-header {
  background: #ffffff;
  padding: 15px 8px;
  border-right: 3px solid #E6F1F2;
}

.close-icon {
  width: 25px;
  height: 25px;
  display: block;
  position: relative;
  cursor: pointer;
}

.close-icon::before,
.close-icon::after {
  content: '';
  background: #191A15;
  position: absolute;
  height: 100%;
  width: 4px;
  border-radius: 3px;
}

.close-icon::before {
  transform: rotate(45deg);
}

.close-icon::after {
  transform: rotate(-45deg);
}

.menu-btn {
  width: 40px;
  cursor: pointer;
  margin-left: auto;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 4px;
  background: #191A15;
  border-radius: 10px;
  margin: 5px 0 0 0;
}

.mobil-brand img {
  max-width: 115px;
}

/* MOBIL-MENU-END*/

/* hero-area-start */
.hero-area {
  background: #10828D;
  padding-left: calc((100% - 1305px) / 2);
}

.hero-left p {
  font-weight: 400;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.64);
}

.hero-left h2 {
  font-weight: 700;
  font-size: 64px;
  color: #ffffff;
}

.hero-left h4 {
  font-weight: 500;
  font-size: 32px;
  color: #ffffff;
}

.hero-left a {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  display: inline-block;
  padding: 16px 30px;
  background: linear-gradient(0deg, #0C4C52, #0C4C52), #10828D;
  border-radius: 40px;
  transition: 0.2s all ease;
  margin-top: 24px;
}

.hero-left a:hover {
  opacity: 0.8;
}

.hero-right img {
  width: 100%;
}

/* hero-area-end */

/* clients-area-start */

.clients-area {
  padding: 32px 0 58px 0;
  background: #ffffff;
}

.clients-main {
  max-width: 1110px;
  margin: auto;
}

.clients-main p {
  font-weight: 400;
  color: #18191F;
  font-size: 24px;
  text-align: center;
}

.clients-logo  {
  margin-top: 24px;
}

.clients-logo ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.clients-logo ul li {
  margin-right: 54px;
}

.clients-logo ul li:last-child {
  margin-right: 0;
}

.clients-logo ul li a img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.achievment-area {
  padding-top: 86px;
}

.achievment-main {
  max-width: 1110px;
  margin: auto;
}

.achievment-left h3 {
  font-weight: 700;
  font-size: 48px;
  color: #18191F;
}

.achievment-left p {
  font-weight: 400;
  font-size: 16px;
  color: #18191F;
  margin-top: 8px;
}

.achievment-inner {
  display: flex;
  align-items: center;
}

.achievment-inner-img img {
  max-width: 48px;
  margin-right: 16px;
}

.achievment-inner-cnt h5 {
  font-weight: 700;
  font-size: 24px;
  color: #18191F;
}

.achievment-inner-cnt p {
  font-weight: 400;
  font-size: 16px;
  color: #18191F;
}

.achievment-right1 {
  margin-top: 35px;
}

/* clients-area-end */

/* earn-area-start */
.earn-area {
  padding: 1px 0 64px 0;
  background: #ffffff;
}

.earn-main {
  max-width: 1200px;
  margin: auto;
  background: #E6F1F2;
  border-radius: 20px;
  padding: 59px 25px 0 80px;
}

.earn-left h2 {
  font-weight: 700;
  font-size: 44px;
  color: #191A15;
  margin-top: 32px;
}

.earn-lft-im1 img {
  max-width: 138px;
}

.earn-lft-img2 img {
  max-width: 168px;
  margin-top: 24px;
}

.earn-right1 img {
  max-width: 597px;
  width: 100%;
  display: block;
  margn-left: auto;
}

.earn-main2 {
  padding: 80px 60px 0 80px;
}

.earn-main3 {
  padding: 80px 60px 0 80px;
}

.earn-right2 img {
  max-width: 476px;
  width: 100%;
  display: block;
  margin-left: auto;
}

.earn-right3 img {
  max-width: 488px;
  width: 100%;
  display: block;
  margin-left: auto;
}

/* earn-area-end */

/* money-area-start */
.money-lft-itm1 img {
  max-width: 112px;
  border-radius: 27px;
}

/* money-area-end */

/* soon-area-start */
.soon-lft-itm1 img {
  max-width: 250px;
}

.soon-left {
  max-width: 400px;
}

/* soon-area-end */

/* benifit-area-start */

.benifit-area {
  background: #ffffff;
  padding: 1px 0 64px 0;
}

.benifit-main {
  max-width: 1200px;
  margin: auto;
}

.benifit-left {
  max-width: 429px;
}

.benifit-left h3 {
  font-weight: 700;
  font-size: 48px;
  color: #191A15;
}

.benifit-right img {
  max-width: 100%;
}

.benifit-list {
  margin-top: 24px;
}

.benifit-list ul li {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #191A15;
  display: flex;
  margin-top: 30px;
}

.benifit-list ul li:first-child {
   margin-top: 0;
}

.benifit-list ul li span i {
  width: 32px;
  height: 32px;
  background: #11557A;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 12px;
  margin-right: 20px;
}

/* benifit-area-end */

/* frequently-start */
.frequently-area {
  padding: 1px 0 64px 0;
  background: #ffffff;
}

.frequently-left {
  max-width: 377px;
}

.frequently-left h3 {
  font-weight: 700;
  font-size: 48px;
  color: #191A15;
}

.frequently-main {
  max-width: 1200px;
}

.accordion-container .accordion-title {
  position: relative;
  padding: 30px 10px 15px 10px;
  font-weight: 600;
  font-size: 28px;
  cursor: pointer;
  color: #2E3142;
  border-bottom: 2px solid #ECECF1;
  display: flex;
  align-items: center;
}

.accordion-container .accordion-title span {

  font-weight: 700;
  font-size: 48px;
  color: #10828D;
  margin-right: 40px;
}

.accordion-container .accordion-title:first-child {
  padding-top: 0;
}

.accordion-container .accordion-title:active,
.accordion-title.open {
  border-bottom: none;
  padding-bottom: 0;
}

.accordion-container .accordion-title::before {
  content: "\f107";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 15px;
  transition: all .3s ease-in-out;
  font-size: 18px;
  transform: translateY(-50%);
}

.accordion-container .accordion-title::after {
  display: none;
}

.accordion-container .accordion-title.open::before {
  transform: rotate(180deg);
}

.accordion-container .accordion-title.open::after {
  opacity: 0;
}

.accordion-content p {
  font-family: 'Inter', sans-serif;
  padding: 9px 15px 20px 105px;
  border-bottom: 2px solid #ECECF1;
  font-weight: 400;
  font-size: 16px;
  color: #738393;
}

/* frequently-end */

/* touch-area-start */
.touch-area {
  padding: 1px 0 89px 0;
}

.touch-main {
  background: #10828D;
  border-radius: 16px;
  padding: 35px 80px;
  max-width: 1200px;
  margin: auto;
}

.touch-left h3 {
  font-weight: 500;
  font-size: 44px;
  color: #ffffff;
}

.touch-left a {
  font-weight: 500;
  font-size: 16px;
  color: #F8F8FA;
  background: #0C4C52;
  border-radius: 10px;
  display: inline-block;
  padding: 14px 20px;
  transition: 0.2s all ease;
  margin-top: 12px;
}

.touch-left a:hover {
  opacity: 0.8;
}

.touch-right {
  text-align: right;
}

.touch-right img {
  max-width: 166px;
}

/* touch-area-end */

/* footer-area-start */
.footer-area {
  background: #0B0D17;
  padding: 24px 0;
}

.footer-cnt p {
  font-weight: 400;
  font-size: 14px;
  color: #D9DBE1;
}

/* footer-area-end */

@media screen and (min-width: 1250px) and (max-width: 1450px) {

  .header-area {
    padding: 17px 70px;
  }

  .hero-area {
    padding-left: 70px;
  }

  .benifit-area {
    padding: 1px 70px 64px 70px;
  }

  .frequently-area {
    padding: 1px 70px 64px 70px;
  }

  .frequently-left h3 {
    font-size: 45px;
  }

  .earn-area {
    padding: 1px 70px 64px 70px;
  }

  .touch-area {
    padding: 1px 70px 89px 70px;
  }

  .achievment-main {
    max-width: 1050px;
  }

  .clients-main {
    max-width: 1050px;
  }


  
} 