@font-face {
  font-family: "HDI Gerling Bold";
  src: url("fonts/hdi-gerlingsans-bold-webfont.woff2") format("woff2"),
    url("fonts/hdi-gerlingsans-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HDI Gerling Light";
  src: url("fonts/hdi-gerlingsans-light-webfont.woff2") format("woff2"),
    url("fonts/hdi-gerlingsans-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HDI Gerling";
  src: url("fonts/hdi-gerlingsans-regular-webfont.woff2") format("woff2"),
    url("fonts/hdi-gerlingsans-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HDI Gerling Cond Bold";
  src: url("fonts/hdi-gerlingsanscond-bold-webfont.woff2") format("woff2"),
    url("fonts/hdi-gerlingsanscond-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HDI Gerling Cond Light";
  src: url("fonts/hdi-gerlingsanscond-light-webfont.woff2") format("woff2"),
    url("fonts/hdi-gerlingsanscond-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HDI Gerling Cond";
  src: url("fonts/hdi-gerlingsanscond-regular-webfont.woff2") format("woff2"),
    url("fonts/hdi-gerlingsanscond-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* 
    
    ###### Base ######
    
*/
:root {
  --cb-heading-color: #285ffc;
  --cb-text-color: #5b5b5b;
  --cb-border-color: #285ffc;
}
body {
  font-family: "HDI Gerling";
  font-size: 1em;
  color: #5b5b5b;
  background-color: #f4f4f4;
}
a {
  text-decoration: none;
}
.e-rounded {
  border-radius: 30px;
  padding: 16px 32px 20px;
}
.e-rounded:focus {
  outline: none;
  box-shadow: none;
  border-color: none;
}
.e-rounded.form-control {
  border-radius: 15px;
  padding: 23px 32px 22px;
  border: 2px solid #eaeaea;
}
section h1 {
  text-align: center;
  color: var(--cb-heading-color);
  font-size: 2.4em;
  margin-bottom: 32px;
}
section h1 span {
  font-family: "HDI Gerling Bold";
  color: #003960;
}
/* 
    
    ###### Header ######
    
*/
header {
  margin-top: 30px;
}
.navbar-nav .nav-link {
  color: var(--cb-text-color);
  font-size: 1.3em;
}
.contact-us-btn {
  border: 1px solid var(--cb-heading-color);
  color: var(--cb-text-color);
  text-align: center;
  font-family: "HDI Gerling";
  font-size: 1em;
  transition: all 0.2s ease-in-out;
}
.contact-us-btn:hover {
  color: #fff;
  background-color: var(--cb-heading-color);
}
.hero-text-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-text-wrap .hero-title {
  width: 100%;
  margin-bottom: 16px;
}
.hero-text-wrap .hero-title h1 {
  font-family: "HDI Gerling";
  font-size: 4em;
  color: var(--cb-heading-color);
  margin-bottom: 0;
}
.hero-text-wrap .hero-title h2 {
  font-family: "HDI Gerling Cond Bold";
  font-size: 5.2em;
  color: #003960;
  line-height: 1;
}
.hero-text-wrap p {
  font-family: "HDI Gerling";
  font-size: 1.1em;
}
.hero-text-wrap .hero-links {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.hero-text-wrap .hero-links .hero-app-links,
.download-app .app-stores {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-text-wrap .hero-links .hero-app-links a,
.download-app .app-stores a {
  width: 50%;
  margin: 0 10px;
}
.hero-text-wrap .hero-links .hero-qr {
  width: 100px;
  margin-top: 25px;
}
header .mobile-menu-btn {
  width: 30px;
  height: 30px;
  overflow: hidden;
  display: none;
  transition: 300ms all;
}
header .mobile-menu-btn img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
}
.logo {
  width: 200px;
}
#mobile-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  right: 100%;
  transition: 300ms all;
  top: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.33);
}
#mobile-menu .content {
  width: 70%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
#mobile-menu .content .mobile-logo {
  width: 85%;
  height: 75px;
  overflow: hidden;
  margin: 20px auto;
}
#mobile-menu .content .mobile-logo img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
}
#mobile-menu .content .mobile-menu ul {
  list-style: none;
  padding-left: 15px;
}
#mobile-menu .content .mobile-menu ul li a {
  width: 100%;
  display: inline-flex;
  padding: 15px 10px;
  color: var(--cb-heading-color);
}
#mobile-menu .content .mobile-menu ul li:hover {
  margin-left: 5px;
}
#mobile-menu .content .mobile-mega-menu .mobile-mega-detail {
  height: 0;
  overflow: hidden;
  transition: 300ms all;
}
#mobile-menu .content .mobile-mega-menu .mobile-mega-detail ul li {
  margin-top: 5px;
  margin-right: 40px;
  margin-bottom: 0 !important;
  transition: 300ms all;
}
#mobile-menu .content .mobile-mega-menu .mobile-mega-detail ul li a {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 100%;
  display: inline-flex;
  padding: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background-color: #0047b9;
}
#mobile-menu .mobile-close-btn {
  width: 50px;
  height: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  position: absolute;
  top: 20px;
  left: calc(70% + 20px);
  transition: 300ms all;
}
#mobile-menu .mobile-close-btn img {
  width: 30px;
  height: 30px;
  object-position: center;
  object-fit: contain;
}
#mobile-menu .mobile-close-btn:hover {
  opacity: 0.5;
}

/* 
    
    ###### Nasıl Çalışır ######
    
*/
.how-it-works-wrap {
  margin-bottom: 60px;
}
.how-it-works-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 30px;
  padding: 22px;
  background-color: #fff;
  border: 2px solid #eaeaea;
}
.how-it-works-box .box-icon {
  width: 85px;
  height: 85px;
  margin-bottom: 16px;
}
.how-it-works-box .box-icon.small {
  width: 70px;
}
.how-it-works-box .box-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.how-it-works-box p {
  color: #3f3f3f;
  font-size: 1em;
  margin-bottom: 0;
  text-align: center;
}
.how-it-works-box p span {
  display: block;
  font-family: "HDI Gerling Bold";
  font-size: 1.5em;
}
.discover-box {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 32px;
}
.discover-box .discover-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 16px;
}
.discover-box .discover-icon.w2 {
  width: 55px;
  height: 50px;
}
.discover-box .discover-icon.small {
  width: 40px;
  height: 40px;
}
.discover-box .discover-icon img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
}
.discover-box h2 {
  font-size: 1.4em;
  color: var(--cb-heading-color);
}
.discover-box p {
  font-family: "HDI Gerling";
  margin-bottom: 0;
}

.download-our-app {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  background: rgb(0, 57, 96);
  background: linear-gradient(
    to right,
    rgba(0, 57, 96, 1) 0%,
    rgba(0, 93, 139, 1) 100%
  );
}
.download-app {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.download-app .app-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
}
.download-app .app-desc {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.download-app .app-desc h1 {
  font-family: "HDI Gerling";
  font-size: 2.2em;
  margin-bottom: 0;
}
.download-app .app-desc h2 {
  font-family: "HDI Gerling Bold";
  font-size: 3em;
}
.download-app .app-desc h1,
.download-app .app-desc h2 {
  color: #fff;
}
.download-app .app-stores {
  width: 70%;
}

.application-wrap {
  width: 100%;
  background-color: #f4f4f4;
  padding: 100px 0 30px;
}
.application-banner {
  width: 100%;
  height: 350px;
  margin-bottom: 30px;
  position: relative;
}
.application-banner .image {
  margin-top: -50px;
}
.application-banner h2 {
  width: 50%;
  font-family: "HDI Gerling";
  font-size: 2.1em;
  color: #fff;
  position: absolute;
  top: 80px;
  right: 0;
}
.application-banner h2 span {
  font-family: "HDI Gerling Bold";
  font-size: 1.5em;
}
.application-wrap h3 {
  text-align: center;
  font-family: "HDI Gerling Bold";
  font-size: 2.2em;
  color: #003960;
}
.e-application-send {
  border: none;
  outline: none;
  padding: 18px 90px 19px;
  font-family: "HDI Gerling";
  font-size: 1.4em;
  color: #fff;
  background: #003960;
  border-radius: 50px;
}

.payten-section {
  width: 100%;
  margin-bottom: 50px;
  padding: 40px 0;
  position: relative;
}
.payten-section::before {
  width: 100%;
  height: 420px;
  content: "";
  background: url(../images/kilit.png) right center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 70px;
}
.payten-section:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: inherit;
  z-index: -1;
  top: 0;
  transform-origin: left top;
  transform: skewY(-3deg);
  background: rgb(0, 57, 96);
  background: linear-gradient(
    to right,
    rgba(0, 57, 96, 1) 0%,
    rgba(0, 93, 139, 1) 100%
  );
}

.slanted-div:after {
  bottom: 0;
  transform-origin: left bottom;
  transform: skewY(3deg);
}
.payten-section .image-box {
  position: relative;
  margin-bottom: 30px;
}
.payten-section .image-box img {
  width: 50%;
}

.payten-section .image-box:after {
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background-color: #fff;
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
}
.payten-section .text-box p {
  font-family: "HDI Gerling Cond";
  font-size: 2.4em;
  color: #fff;
}
.payten-section .text-box p span {
  font-family: "HDI Gerling Cond Bold";
}
.faq-wrap {
  width: 100%;
}
.accordion-item:first-of-type .accordion-button.collapsed,
.accordion-item:last-of-type .accordion-button.collapsed,
.accordion-button,
.accordion-item {
  border-radius: 20px !important;
  color: #3f3f3f;
  border-color: #eaeaea;
}
.accordion-button {
  box-shadow: none !important;
  background-color: transparent !important;
  font-size: 1.1rem;
  position: relative;
}
.accordion-button:focus {
  border-color: #eaeaea;
  outline: 0;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  color: var(--cb-heading-color);
}
.accordion-button:before {
  width: 96%;
  height: 2px;
  background-color: transparent;
  content: "";
  position: absolute;
  bottom: 0;
  left: 2%;
  z-index: 1;
}
.accordion-button:not(.collapsed):before {
  background-color: #d1d1d1;
}
.accordion-item {
  margin-bottom: 20px;
}

footer {
  padding: 80px 0 20px;
}
footer h3 {
  font-family: "HDI Gerling Bold";
  padding-left: 50px;
  font-size: 1.6em;
  color: #003960;
  margin-bottom: 30px;
}
footer .icon-box {
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer .icon-box .f-icon {
  min-width: 25px;
  min-height: 25px;
  margin-right: 15px;
}
footer .icon-box a,
footer a {
  font-size: 1.1em;
  color: #5b5b5b;
}
footer a:hover {
  color: #5b5b5b;
}
footer .f-logo {
  width: 100%;
  padding: 0 50px;
  margin-bottom: 30px;
}
footer .f-socials {
  width: 100%;
  display: flex;
  justify-content: center;
}
footer .f-socials .f-social-icon {
  width: 70px;
  height: 70px;
  margin-right: 20px;
}
footer .f-app-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .f-app-icons a {
  width: 210px;
  display: block;
  margin-bottom: 30px;
}

@media only screen and (max-width: 992px) {
  header {
    margin-top: 130px;
  }
  header .navbar {
    display: none;
  }
  header .mobile-menu-btn {
    display: block !important;
  }
  .mobile-sticky {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px 15px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 7;
    background-color: #fff;
  }
  .logo {
    width: 200px;
  }
  .hero-text-wrap .hero-title h1 {
    font-size: 3.5em;
  }
  .hero-text-wrap .hero-title h2 {
    font-size: 3.3em;
  }
  .hero-text-wrap .hero-links .hero-app-links {
    width: 75%;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .hero-text-wrap .hero-links .hero-app-links a,
  .download-app .app-stores a {
    width: 70%;
  }
  .hero-text-wrap .hero-links .hero-qr {
    width: 85px;
  }
  .how-it-works-box {
    margin-bottom: 25px;
  }
  .discover-box {
    width: 100%;
  }
  .download-app .app-desc h1,
  .download-app .app-desc h2 {
    text-shadow: 1px 1px #fff;
  }
  .download-app-image {
    margin-top: 30px;
  }
  .application-banner {
    height: 390px;
    padding: 20px 40px 40px;
    margin-top: 50px;
  }
  .application-banner:after {
    width: 220px;
    height: 70%;
    right: 0;
  }

  .payten-section:before {
    background: url(../images/kilit.png) center center no-repeat;
    background-size: 80% 80%;
  }

  .payten-section {
    height: 630px;
    margin-top: 60px;
    margin-bottom: 90px;
  }
  .payten-section .container {
    text-align: center;
  }
  .payten-section::before {
    top: auto;
    bottom: -80px;
    right: 0;
  }
  .payten-section .text-box p {
    font-size: 2em;
  }
  .f-app-icons {
    flex-direction: row !important;
    justify-content: center;
  }
  .f-app-icons a {
    margin-right: 25px;
  }
  .f-app-icons a:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 575px) {
  .testimonial-swiper .swiper-button-next {
    left: auto;
    right: 0;
  }
  footer {
    padding-top: 40px;
  }
  footer .icon-box .f-icon {
    width: 20px;
  }
  .application-wrap {
    padding-top: 20px;
    padding-bottom: 0;
  }
  .application-banner {
    height: 230px;
    padding: 0;
    margin: 80px 0 40px;
  }
  .application-banner h2 {
    font-size: 1.4em;
    top: 55px;
    right: 0;
  }
  .application-wrap h3 {
    font-size: 1.6em;
  }
}
@media only screen and (max-width: 375px) {
  .application-banner {
    height: 340px;
  }
}
