
/*=======  COMMON CSS  =======*/

@import url('https://fonts.googleapis.com/css2?family=Kaisei+Tokumin&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.kaisei-tokumin-regular {
  font-family: "Kaisei Tokumin", serif;
  font-weight: 400;
  font-style: normal;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #917047;
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 575px) {
  body {
    font-size: 16px;
  }
}

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

img {
  max-width: 100%;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
.slick-initialized .slick-slide:focus,
.btn:focus,
select:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input,
textarea,
button,
select {
  border: none;
}

input,
textarea,
select {
  width: 100%;
  background-color: #fff;
  padding: 0 25px;
  height: 55px;
  font-weight: 700;
  font-size: 15px;
  color: #616161;
}

textarea {
  height: 90px;
  padding-top: 20px;
  resize: none;
}

::-webkit-input-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

::-webkit-scrollbar {
  background-color: #ccc;
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #AF875F;
}

.input-group {
  position: relative;
}

.input-group input,
.input-group textarea,
.input-group select {
  padding-right: 50px;
}

.input-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.input-group select::-ms-expand {
  display: none;
}

.input-group .icon {
  position: absolute;
  right: 25px;
  font-size: 14px;
  color: #3ab9fe;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.input-group.textarea .icon {
  top: 20px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.slick-slide img {
  display: inline-block;
}

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

i,
span,
a {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Kaisei Tokumin", serif;
  font-weight: 500;
  margin: 0px;
}

h1,
h1 a,
h2,
h2 a,
h3,
h3 a,
h4,
h4 a,
h5,
h5 a,
h6,
h6 a {
  color: #917047;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

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

p {
  margin: 0px;
}

a {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a, a:hover {
  color: #3ab9fe;
}

/*=======  Common Classes  =======*/
.main-btn {
    line-height: 55px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    padding: 0 30px;
    background-color: #AF875F;
    color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    position: relative;
    z-index: 2;
}
.main-btn:hover{
    color: #fff;
    background-color: #917047;
}
.main-btn i {
    font-size: 22px;
    margin-right: 5px;
    transform: translate(0px, 2px);
}
.main-btn-4 {
    background: transparent;
    border: 2px #fff solid;
    color: #fff;
    line-height: 52px;
}
.main-btn-4:hover {
    border: 2px #917047 solid;
    color: #fff;
}





@media (max-width: 1199px) {
  .main-btn {
    padding: 0 40px;
    font-size: 16px;
    line-height: 60px;
  }
}

@media (max-width: 575px) {
  .main-btn {
    padding: 0 35px;
    font-size: 14px;
    line-height: 60px;
  }
}


@media (max-width: 1199px) {
  .view-moore-btn .main-btn {
    padding: 0 35px;
  }
}

.bg-img-c {
  background-size: cover;
  background-position: center;
  background-color: #979797;
}

.section-title .title-tag {
  font-size: 20px;
  font-weight: 700;
  color: #3ab9fe;
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .section-title .title-tag {
    font-size: 18px;
  }
}

.section-title .title-tag::before, .section-title .title-tag::after {
  position: absolute;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #3ab9fe;
  content: '';
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

.section-title .title-tag::after {
  left: auto;
  right: 0;
}

.section-title.left-border .title-tag {
  padding-left: 45px;
}

.section-title.left-border .title-tag::before {
  display: block;
}

.section-title.both-border .title-tag {
  padding: 0 45px;
}

.section-title.both-border .title-tag::before, .section-title.both-border .title-tag::after {
  display: block;
}

.section-title .title {
    font-size: 40px;
    line-height: 1.2;
}

@media (max-width: 1199px) {
  .section-title .title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .section-title .title {
    font-size: 34px;
  }
.main-btn-4 {
    line-height: 55px;
    margin-top: 15px;
    padding: 0 25px;
    margin-left: 0px;
}
.cta-wrap {
    padding: 60px 0 100px !important;
}

}

@media (max-width: 575px) {
  .section-title .title {
    font-size: 28px;
  }
}

@media (max-width: 399px) {
  .section-title .title {
    font-size: 24px;
  }
}

.section-gap {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .section-gap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.section-gap-bottom {
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .section-gap-bottom {
    padding-bottom: 20px;
  }
}

.section-gap-top {
  padding-top: 130px;
}

@media (max-width: 991px) {
  .section-gap-top {
    padding-top: 100px;
  }
}

.grey-bg {
  background-color: #f5f5f5;
}

@media (min-width: 1600px) {
  .container-1600 {
    max-width: 1600px;
  }
}

@media (min-width: 1600px) {
  .container-fluid.p-70 {
    padding-left: 70px;
    padding-right: 70px;
  }
}

@media (max-width: 399px) {
  .row .col-tiny-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

.line-bottom {
  border-bottom: 2px solid #e9e9e9;
}

.line-top {
  border-top: 2px solid #e9e9e9;
}

.client-slider .slick-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}


/*=======  Utilitis =======*/
.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 60px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

/*=======  Animations  =======*/
@-webkit-keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
@keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}

@-webkit-keyframes sk-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0);
    transform: perspective(140px) rotateX(0);
    opacity: 1;
  }
  100%,
  90% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0);
    transform: perspective(140px) rotateX(0);
    opacity: 1;
  }
  100%,
  90% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

/*======= Header =======*/
header .header-nav {
  position: relative;
  background-color: #fff;
}

@media (max-width: 575px) {
  header .header-nav {
    top: 0;
  }
}

header .header-nav .nav-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .header-nav .nav-container .navbar-toggler {
  border: 1px solid #3ab9fe;
  background-color: transparent;
  cursor: pointer;
  display: none;
  padding: 15px;
  margin-left: 30px;
}

header .header-nav .nav-container .navbar-toggler span {
  position: relative;
  background-color: #3ab9fe;
  border-radius: 0;
  display: block;
  height: 3px;
  margin-top: 5px;
  padding: 0;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  width: 30px;
  cursor: pointer;
  display: block;
}

header .header-nav .nav-container .navbar-toggler span:first-child {
  margin-top: 0;
}

header .header-nav .nav-container .navbar-toggler.active span:nth-of-type(1) {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
          transform: rotate3d(0, 0, 1, 45deg);
  top: 8px;
}

header .header-nav .nav-container .navbar-toggler.active span:nth-of-type(2) {
  opacity: 0;
}

header .header-nav .nav-container .navbar-toggler.active span:nth-of-type(3) {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
          transform: rotate3d(0, 0, 1, -45deg);
  top: -8px;
}

header .header-nav .nav-container .navbar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 12;
  display: none;
}

header .header-nav .nav-container .navbar-close .cross-wrap {
  width: 26px;
  height: 26px;
  cursor: pointer;
  position: relative;
}

header .header-nav .nav-container .navbar-close .cross-wrap span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 6px;
  background: #fff;
}

header .header-nav .nav-container .navbar-close .cross-wrap span:first-child {
  top: 12px;
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

header .header-nav .nav-container .navbar-close .cross-wrap span:last-child {
  bottom: 12px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

header .header-nav .nav-container .menu-items {
  position: relative;
}

header .header-nav .nav-container .menu-items ul li {
  display: inline-block;
}

header .header-nav .nav-container .menu-items ul li.has-submemu {
  position: relative;
}

header .header-nav .nav-container .menu-items ul li.has-submemu::after {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  content: '\f107';
  position: absolute;
  right: 5px;
  top: 51%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 1599px) {
  header .header-nav .nav-container .menu-items ul li.has-submemu::after {
    right: -4px;
  }
}

header .header-nav .nav-container .menu-items ul li a {
  color: #14212b;
  padding: 0 15px;
  margin: 0 15px;
  line-height: 100px;
  position: relative;
  font-weight: 500;
  font-family: 'Barlow Condensed', sans-serif;
}

@media (max-width: 1599px) {
  header .header-nav .nav-container .menu-items ul li a {
    padding: 0 10px;
    margin: 0 5px;
  }
}

@media (max-width: 1199px) {
  header .header-nav .nav-container .menu-items ul li a {
    margin: 0 5px;
    padding: 0 6px;
    font-size: 16px;
  }
}

header .header-nav .nav-container .menu-items ul li a:hover {
  color: #3ab9fe;
}

header .header-nav .nav-container .menu-items ul li .submenu {
  position: absolute;
  left: 0;
  top: 110%;
  width: 200px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  height: auto;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

header .header-nav .nav-container .menu-items ul li .submenu li {
  display: block;
}

header .header-nav .nav-container .menu-items ul li .submenu li a {
  display: block;
  padding: 8px 30px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0;
  margin: 0 0;
  line-height: 30px !important;
  color: #616161;
}

header .header-nav .nav-container .menu-items ul li .submenu li a:hover {
  background-color: #3ab9fe;
  color: #fff !important;
}

header .header-nav .nav-container .menu-items ul li .submenu li .submenu {
  left: 100%;
  top: 50%;
}

header .header-nav .nav-container .menu-items ul li .submenu li:hover .submenu {
  top: 0;
}

header .header-nav .nav-container .menu-items ul li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

header .header-nav .nav-container .menu-items ul li .dd-trigger {
  display: none;
}

header .header-nav .nav-container .offcanvas-toggler {
  background-color: #3ab9fe;
  cursor: pointer;
  border-radius: 5px;
  height: 65px;
  width: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.site-logo{
   padding: 50px 0;
}

header.header-three {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 999;
}

@media (min-width: 1800px) {
  header.header-three .container-fluid {
    max-width: 1780px;
  }
}

header.header-three .header-nav {
  background-color: transparent;
}
.quize-btn-header{
    position: absolute;
    right: 0;
}


/*======= Banner =======*/
.banner-section {
  position: relative;
  overflow: hidden;
}

.banner-section .single-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  font-size: 22px;
  line-height: 1.5;
  color: #fff;
  padding: 90px 0;
}

@media (max-width: 991px) {
  .banner-section .single-banner {
    padding: 200px 0;
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .banner-section .single-banner {
    padding: 150px 0;
  }
}

@media (max-width: 399px) {
  .banner-section .single-banner {
    padding: 130px 0;
  }
}

/*.banner-section .single-banner::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: #14212b;
  opacity: 0.65;
  z-index: -2;
}*/

.banner-section .single-banner .banner-content h1 {
    color: #222;
    font-size: 62px;
    line-height: 1.1;
}
.banner-content h4 {
    font-weight: 400;
    padding-top: 20px;
}


@media (max-width: 1199px) {
  .banner-section .single-banner .banner-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .banner-section .single-banner .banner-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .banner-section .single-banner .banner-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .banner-section .single-banner .banner-content h1 {
    font-size: 32px;
  }
}

@media (max-width: 399px) {
  .banner-section .single-banner .banner-content h1 {
    font-size: 28px;
  }
}

.banner-section .single-banner .banner-content .promo-text {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  letter-spacing: 3px;
  margin-bottom: 30px;
  position: relative;
  padding-left: 45px;
}

.banner-section .single-banner .banner-content .promo-text::before {
  position: absolute;
  left: 8px;
  top: 50%;
  -webkit-transform: rotate(-25deg) translateY(-50%);
          transform: rotate(-25deg) translateY(-50%);
  content: '';
  background-color: #222;
  height: 20px;
  width: 20px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 0);
}

@media (max-width: 991px) {
  .banner-section .single-banner .banner-content .promo-text {
    font-size: 16px;
    letter-spacing: 10px;
  }
}

@media (max-width: 767px) {
  .banner-section .single-banner .banner-content .promo-text {
    font-size: 15px;
    letter-spacing: 8px;
  }
}

@media (max-width: 575px) {
  .banner-section .single-banner .banner-content .promo-text {
    font-size: 14px;
    letter-spacing: 4px;
    padding-left: 30px;
  }
}

@media (max-width: 399px) {
  .banner-section .single-banner .banner-content .promo-text {
    letter-spacing: 2px;
  }
}

.banner-section .single-banner .banner-content .btn-wrap {
  margin-top: 40px;
}

.banner-section .single-banner .banner-content .btn-wrap li {
  display: inline-block;
  margin-right: 10px;
  margin-top: 10px;
}

@media (max-width: 575px) {
  .banner-section .single-banner .banner-content .btn-wrap li {
    margin-right: 5px;
  }
}

.banner-section .single-banner .banner-content p {
    margin-top: 35px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: justify;
}

.banner-section .single-banner .banner-shapes > div {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #3ab9fe;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 0);
  z-index: -1;
}

.banner-section .single-banner .banner-shapes .one {
  width: 345px;
  height: 425px;
  opacity: 0.57;
}

@media (max-width: 1599px) {
  .banner-section .single-banner .banner-shapes .one {
    width: 185px;
    height: 265px;
  }
}

@media (max-width: 1199px) {
  .banner-section .single-banner .banner-shapes .one {
    width: 165px;
    height: 245px;
  }
}

.banner-section .single-banner .banner-shapes .two {
  width: 520px;
  height: 650px;
  opacity: 0.37;
}

@media (max-width: 1599px) {
  .banner-section .single-banner .banner-shapes .two {
    width: 320px;
    height: 450px;
  }
}

@media (max-width: 991px) {
  .banner-section .single-banner .banner-shapes .two {
    width: 270px;
    height: 390px;
  }
}

@media (max-width: 399px) {
  .banner-section .single-banner .banner-shapes .two {
    display: none;
  }
}

.banner-section .single-banner .banner-shapes .three {
  width: 745px;
  height: 835px;
  opacity: 0.25;
}

@media (max-width: 1599px) {
  .banner-section .single-banner .banner-shapes .three {
    width: 450px;
    height: 480px;
  }
}

@media (max-width: 991px) {
  .banner-section .single-banner .banner-shapes .three {
    width: 365px;
    height: 540px;
  }
}

@media (max-width: 399px) {
  .banner-section .single-banner .banner-shapes .three {
    display: none;
  }
}

.banner-section .single-banner .banner-shapes .four {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  height: 285px;
  width: 270px;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: 0.65;
}

@media (max-width: 1599px) {
  .banner-section .single-banner .banner-shapes .four {
    height: 230px;
    width: 220px;
  }
}

@media (max-width: 575px) {
  .banner-section .single-banner .banner-shapes .four {
    height: 130px;
    width: 155px;
  }
}

.banner-section .search-wrap {
  position: absolute;
  right: 45px;
  z-index: 2;
  bottom: -35px;
}

@media (max-width: 575px) {
  .banner-section .search-wrap {
    right: 20px;
    bottom: -25px;
  }
}

.banner-section .search-wrap .search-icon {
  position: relative;
  width: 90px;
  height: 90px;
  line-height: 90px;
  color: #14212b;
  border-radius: 50%;
  background-color: #fff;
  font-size: 20px;
  text-align: center;
}

@media (max-width: 575px) {
  .banner-section .search-wrap .search-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}

.banner-section .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 70px;
  background-color: transparent;
  color: #fff;
  font-size: 50px;
  opacity: 0.3;
  line-height: 1;
  z-index: 2;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
}

@media (max-width: 1199px) {
  .banner-section .slick-arrow {
    font-size: 40px;
    left: 40px;
  }
}

@media (max-width: 767px) {
  .banner-section .slick-arrow {
    font-size: 35px;
    left: 15px;
  }
}

.banner-section .slick-arrow.next-arrow {
  left: auto;
  right: 70px;
}

@media (max-width: 1199px) {
  .banner-section .slick-arrow.next-arrow {
    right: 40px;
  }
}

@media (max-width: 767px) {
  .banner-section .slick-arrow.next-arrow {
    right: 15px;
  }
}

.banner-section .slick-arrow:hover {
  opacity: 1;
}

.banner-section.banner-section-two .single-banner {
  padding-bottom: 220px;
  padding-top: 365px;
}

@media (max-width: 767px) {
  .banner-section.banner-section-two .single-banner {
    padding-top: 220px;
    padding-bottom: 150px;
  }
}

.banner-section.banner-section-two .single-banner::before {
  background: radial-gradient(circle, rgba(1, 12, 21, 0.5) 0%, rgba(1, 12, 21, 0.9) 88%);
  background: -webkit-radial-gradient(circle, rgba(1, 12, 21, 0.5) 0%, rgba(1, 12, 21, 0.9) 88%);
  opacity: 1;
}

.banner-section.banner-section-two .single-banner::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/lines/09.png);
  background-repeat: no-repeat;
  background-position: right bottom;
}

@media (max-width: 575px) {
  .banner-section.banner-section-two .single-banner::after {
    background-size: 300px;
  }
}

@media (max-width: 991px) {
  .banner-section.banner-section-two .single-banner p br {
    display: none;
  }
}

.banner-section.banner-section-two .slick-arrow {
  visibility: visible;
}

.banner-section.banner-section-three .single-banner {
  padding-top: 230px;
  padding-bottom: 150px;
  background-color: #f5f5f5;
  color: #616161;
}

@media (max-width: 991px) {
  .banner-section.banner-section-three .single-banner {
    padding-top: 190px;
  }
}

.banner-section.banner-section-three .single-banner::before {
  display: none;
}

.banner-section.banner-section-three .single-banner .banner-content h1 {
  color: #fff;
}

@media (max-width: 1599px) {
  .banner-section.banner-section-three .single-banner .banner-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 1199px) {
  .banner-section.banner-section-three .single-banner .banner-content h1 {
    font-size: 55px;
  }
}

@media (max-width: 991px) {

.banner-section.banner-section-three .single-banner .banner-content h1 {
    font-size: 30px;
    line-height: 40px;
}


}

@media (max-width: 991px) {
  .banner-section.banner-section-three .single-banner .banner-content .btn-wrap li {
    margin-right: 5px;
  }
}


@media (max-width: 1199px) {
  .banner-section.banner-section-three .single-banner .banner-content .btn-wrap li .main-btn {
    padding: 0 30px;
  }
}

@media (max-width: 991px) {
  .banner-section.banner-section-three .single-banner .banner-content .btn-wrap li .main-btn {
    padding: 0 20px;
    font-size: 14px;
  }
}

.banner-section.banner-section-three .single-banner .banner-content .promo-text {
  color: #3ab9fe;
  letter-spacing: 0;
  font-size: 24px;
  font-weight: 600;
  font-family: "Source Sans Pro", sans-serif;
  text-transform: capitalize;
  padding-left: 60px;
}

@media (max-width: 991px) {
  .banner-section.banner-section-three .single-banner .banner-content .promo-text {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.banner-section.banner-section-three .single-banner .banner-content .promo-text::before {
  -webkit-clip-path: none;
          clip-path: none;
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  width: 40px;
  height: 3px;
  background-color: #3ab9fe;
}

.banner-section.banner-section-three .single-banner .banner-shapes > div {
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  background-color: #3ab9fe;
  -webkit-clip-path: none;
          clip-path: none;
  z-index: -1;
  height: 1030px;
  width: 1030px;
  border-radius: 50%;
  opacity: 0.08;
}

@media (max-width: 1599px) {
  .banner-section.banner-section-three .single-banner .banner-shapes > div {
    width: 900px;
    height: 900px;
  }
}

@media (max-width: 1199px) {
  .banner-section.banner-section-three .single-banner .banner-shapes > div {
    height: 750px;
    width: 750px;
  }
}

@media (max-width: 991px) {
  .banner-section.banner-section-three .single-banner .banner-shapes > div {
    height: 650px;
    width: 650px;
  }
}

@media (max-width: 767px) {
  .banner-section.banner-section-three .single-banner .banner-shapes > div {
    height: 500px;
    width: 500px;
  }
}

.banner-section.banner-section-three .single-banner .banner-shapes .one {
  top: -147px;
  right: -34px;
}

.banner-section.banner-section-three .single-banner .banner-shapes .two {
  top: -134px;
  right: -174px;
}

.banner-section.banner-section-three .single-banner .banner-shapes .three {
  top: -185px;
  right: -335px;
}

.banner-section.banner-section-three .single-banner .banner-line {
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  .banner-section.banner-section-three .single-banner .banner-line {
    max-width: 220px;
  }
}

@media (max-width: 767px) {
  .banner-section.banner-section-three .single-banner .banner-line {
    left: auto;
    right: 0;
  }
}

@media (max-width: 767px) {
  .banner-section.banner-section-three .single-banner .banner-line img {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
}

.about-text-three p{
   text-align: justify;
}

/*=======  Cta Css  =======*/
.cta-wrap {
    /* background-color: #af875f63; */
    position: relative;
    padding: 60px 0;
    z-index: 2;
    border-radius: 20px;
    background: linear-gradient(to right, rgba(248, 245, 239, 1) 0%, rgba(203, 161, 114, 0.6) 100%);
}

.cta-wrap.mt-negative {
  margin-top: -60px;
}

.cta-wrap:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    background: url(../img/cat-img.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.app-box form{
    margin-top: 20px;
}
.app-box form input[type=search] {
    border: 1px #917047 solid;
    font-weight: 500;
    border-radius: 7px;
}
.app-box form button {
    border: 1px #917047 solid;
    font-weight: 500;
    border-radius: 7px;
    background: #917047;
    color: #fff;
    font-size: 14px;
    padding: 14px 40px;
    margin-top: 15px;
}
.app-box form button:hover{
    border: 1px #917047 solid;
    background: #917047;
    color: #fff;
    
}
.about-tile-gallery img{
    border-radius: 30px;
}

.cta-aection-full {
    padding: 60px 0;
    background-size: cover !important;
    background-position: right center !important;
    background-repeat: no-repeat !important;
}
.cta-aection-full .cta-content h2 {
    color: #fff;
    font-size: 52px;
}

.story-box {
    background: #EBE8E3;
    padding: 150px 35px 60px 35px;
    border-radius: 30px;
    position: relative;
    margin-top: 130px;
}
.story-box img{
    width: 250px;
    height: 250px;
    border-radius: 50%;
}
.story-box-img {
    position: absolute;
    top: -120px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.cta-bottom {
    padding: 60px 0;
}
.cta-wrap-bottom h2 {
    color: #fff;
    line-height: 1.3 !important;
}
.about-section-bg-after{
    position: relative;
    z-index: 1;  
}
/*.about-section-bg-after:after {
    position: absolute;
    content: "";
    right: 0;
    top: -100px;
    width: 440px;
    height: 400px;
    background: url(../img/lip-shadow.png);
    z-index: -1;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}*/
.story-bg-after{
    position: relative;
    z-index: 1;  
}
/*.story-bg-after:after {
    position: absolute;
    content: "";
    left: 0;
    top: 210px;
    width: 360px;
    height: 290px;
    background: url(../img/lip-shadow-left.png);
    z-index: -1;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}*/
.footer-stikcy-btn{
    position: relative;
    display: none;
}
.cta-content-contact h3 {
    font-size: 32px !important;
}
.cta-content-contact-btn .main-btn i {
    font-size: 17px;
}
.cta-content-contact{
    padding-left: 50px;
}
.cta-content-contact-btn{
    padding-right: 50px;
}





@media (max-width: 767px) {
  
.cta-aection-full .cta-content h2 {
    font-size: 30px;
}
.about-tile-gallery{
    margin-bottom: 40px;
}
.about-section-bg-after:after{
    display: none;
}
.app-box{
    margin-bottom: 40px;
}
.site-logo {
    max-width: 60%;
}
.quize-btn-header .main-btn {
    padding: 0 16px;
    font-size: 13px;
    line-height: 39px;
}
.footer-stikcy-btn{
    display: block !important;
}
.footer-stikcy-btn .footer-stikcy-btn-box {
    position: fixed;
    bottom: 15px;
    z-index: 11;
    left: 0;
    right: 0;
    width: 100%;
    top: auto;
    margin: 0 auto;
    text-align: center;
}
.footer-stikcy-btn-box a{
    padding: 0 30px;
    font-size: 13px;
    line-height: 48px;
}
/*.banner-content .btn-wrap li:nth-child(2){
    display: none !important;
}*/
.cta-bottom {
    padding: 60px 0 80px 0;
}
.footer-stikcy-btn-box{
    display: none;
}
.footer-stikcy-fixed{
    display: block !important;
}
.banner-section.banner-section-three .single-banner .banner-content .btn-wrap li {
    margin-right: 5px;
    width: 100%;
    text-align: center;
}
.banner-section.banner-section-three .single-banner .banner-content .btn-wrap li a{
    width: 100%;
}
.cta-content-contact-btn{
    padding: 30px 30px 0 30px;
}
.cta-content-contact{
    padding: 30px 30px 0 30px;
}
.app-box form input[type=search] {
    font-size: 13px;
    padding: 0 15px;
}


}