body {
  margin: 0px;
}

.site-header {
  width: 100%;
  transition: all 1s ease;
  background-color: white;
  position: fixed;
  z-index: 998;
  top: 0px;
}

.site-header .site-logo {
  max-width: 205px;
  width: 100%;
}

.site-header .site-logo img {
  width: 100%;
}

.site-header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 50px;
  /* transition: all 500ms ease; */
}

.site-header .navbar .btn-area .btn-green {
  margin-right: 40px;
}

.site-header .navbar .btn-area .header-nav-link:hover {
  text-decoration: underline;
}

.site-header .mobile-menu-icon {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}

.site-header .navbar-collapse ul {
  padding: 0;
  list-style: none;
  grid-column-gap: 0;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
}

.site-header .navbar-collapse ul li a {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 13px;
  color: #0B182E;
  text-decoration: none;
  padding: 19px 20px;
  transition: 0.3s;
}

.site-header .navbar-collapse ul li a:hover {
  color: #02a37a;
  transition: all .3s linear 0s;
}

.site-header .navbar-collapse ul li .btn-green {
  color: white;
  margin: 0px 20px;
  padding: 19px 32px;
}

.site-header .navbar-collapse ul li .btn-green:hover {
  color: #2C423D;
  background-color: transparent;
}

.site-header .navbar-collapse ul li.active a {
  font-weight: 800;
  text-decoration-line: underline;
}

.site-header .navbar-collapse ul li:last-child a {
  padding-right: 0;
}

.site-header .navbar-collapse ul li:first-child a {
  padding-left: 0;
}

.site-header .navbar-collapse ul .btn-green a {
  color: white;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
}

.site-header .navbar-collapse ul .btn-green:hover a {
  text-decoration: none;
  color: #0B182E;
}

@media only screen and (max-width: 1600px) {
  .site-header .navbar-collapse ul li a {
    padding: 19px 17px;
  }

  .site-header .navbar-collapse ul li .btn-green {
    margin: 0px 17px;
  }
}

@media only screen and (max-width: 1200px) {
  .site-header .navbar-collapse ul li a {
    padding: 16px 12px;
  }

  .site-header .navbar-collapse ul li .btn-green {
    margin: 0px 8px;
    padding: 16px 12px;
  }
}

.site-header.active {
  background-color: #E7F0EF;
  box-shadow: 10px 55px 44px rgba(0, 0, 0, 0.04);
  transition: all 1s ease;
}

.site-header.active .navbar {
  padding: 25px 50px;
}

.site-header.active .navbar-collapse {
  margin-top: 0;
}

@media only screen and (max-width: 1200px) {
  .site-header .navbar {
    padding: 35px 30px;
  }

  .site-header .site-logo {
    max-width: 160px;
  }

  .site-header.active .navbar, .site-header.active-fixed .navbar {
    padding: 28px 30px;
  }
}

@media only screen and (max-width: 991px) {
  .site-header .mobile-menu-icon {
    display: block;
  }

  .site-header .navbar-collapse {
    display: none;
  }

  .site-header .navbar {
    padding: 20px;
    flex-wrap: wrap;
  }

  .site-header.collapsed {
    background-color: #E7F0EF;
    overflow: hidden;
    height: 100%;
  }

  .site-header.collapsed .navbar {
    overflow-y: hidden;
  }

  .site-header.collapsed .navbar-collapse.show {
    display: block;
    height: calc(100vh - 138px);
    margin: 30px 0px 60px;
    overflow-y: auto;
    width: 100%;
  }

  .site-header.collapsed .navbar-collapse.show ul {
    grid-auto-flow: unset;
    display: block;
    text-align: left;
    width: 100%;
    overflow: hidden;
  }

  .site-header.collapsed .navbar-collapse.show ul li {
    border-bottom: 1px solid rgba(142, 142, 142, 0.16);
    position: relative;
  }

  .site-header.collapsed .navbar-collapse.show ul li a {
    padding: 20px 0;
    display: block;
    color: #0B182E;
    font-weight: 500;
    font-size: 16px;
    line-height: 115%;
  }

  .site-header.collapsed .navbar-collapse.show ul li a:hover {
    color: #02a37a;
  }

  .site-header.collapsed .navbar-collapse.show ul li.active a {
    font-weight: 800;
    text-decoration-line: underline;
  }

  .site-header.collapsed .navbar-collapse.show ul li:last-child {
    border-bottom: none;
  }

  .site-header.collapsed .navbar-collapse.show ul .big-mobile-button {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    margin: 0;
    z-index: 1;
    text-align: center;
    border-radius: 0px;
  }

  .site-header.collapsed .navbar-collapse.show ul .big-mobile-button .btn-green {
    color: white;
    margin: 0;
    padding: 16px 12px;
    border-radius: 0px;
  }

  .site-header.collapsed .navbar-collapse.show ul .big-mobile-button .btn-green:hover {
    border: 2px solid #2C423D;
    color: #0B182E;
  }

  .site-header.active .navbar {
    padding: 20px;
    flex-wrap: wrap;
    overflow-y: hidden;
  }
}

.menu-icon {
  display: grid;
  place-items: center;
  height: 30px;
  width: 30px;
  position: relative;
  cursor: pointer;
  padding: 20px;
}

.menu-icon .line-1,
.menu-icon .line-2,
.menu-icon .line-3 {
  width: 30px;
  height: 2px;
  background: #0B182E;
  display: block;
  transition: all 0.3s ease-in-out;
}

.menu-icon.active .line-1 {
  transform-origin: center center;
  transform: rotate(-45deg) translate(-9px, 12px);
}

.menu-icon.active .line-2 {
  transform: translateX(10px);
  opacity: 0;
}

.menu-icon.active .line-3 {
  transform-origin: center center;
  transform: rotate(45deg) translate(-2px, -5px);
}

.menu-icon .line-1,
.menu-icon .line-2 {
  justify-self: end;
}

footer .footer-top {
  background-color: #0B182E;
  padding: 100px 0px;
}

footer .footer-top .footer-logo-area {
  display: block;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 35px;
}

footer .footer-top .footer-logo-area .footer-logo {
  max-width: 205px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

footer .footer-top .footer-logo-area .footer-logo img {
  width: 100%;
}

footer .footer-top .footer-menu-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .footer-top .footer-menu-area .footer-navbar ul {
  padding: 0;
  list-style: none;
  display: grid;
  grid-auto-flow: column;
}

footer .footer-top .footer-menu-area .footer-navbar ul li a {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 30px;
  color: white;
  text-decoration: none;
  padding: 20px 35px;
  transition: 0.3s;
}

footer .footer-top .footer-menu-area .footer-navbar ul li a:hover {
  color: #04a27a;
  transition: all .3s linear 0s;
}

footer .footer-top .footer-menu-area .footer-navbar ul li:first-child a {
  padding: 20px 35px 20px 0px;
}

footer .footer-top .footer-menu-area .social-icons ul {
  grid-column-gap: 16px;
  display: grid;
  grid-auto-flow: column;
}

footer .footer-top .footer-menu-area .social-icons ul li {
  max-width: 20px;
  max-height: 20px;
  transition: transform .2s;
}

footer .footer-top .footer-menu-area .social-icons ul li:hover img {
  transform: scale(1.2);
}

footer .footer-top .footer-menu-area .social-icons ul li img {
  height: 100%;
  width: 100%;
  transition: transform .2s;
}

footer .footer-bottom {
  background-color: white;
  padding: 20px 0px;
}

footer .footer-bottom .footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .footer-bottom .footer-bottom-inner .footer-bottom-left p {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 30px;
  color: rgba(11, 24, 46, 0.5);
}

footer .footer-bottom .footer-bottom-inner .footer-bottom-right ul {
  display: flex;
  align-items: center;
}

footer .footer-bottom .footer-bottom-inner .footer-bottom-right ul li a {
  color: rgba(11, 24, 46, 0.5);
  text-decoration: none;
  font-weight: normal;
  font-size: 13px;
  line-height: 30px;
  padding: 10px;
}

footer .footer-bottom .footer-bottom-inner .footer-bottom-right ul li a:hover {
  color: #2C423D;
}

footer .footer-bottom .footer-bottom-inner .footer-bottom-right ul li:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: 0px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: rgba(11, 24, 46, 0.5);
}

footer .footer-bottom .footer-bottom-inner .footer-bottom-right ul li:last-child:after {
  content: unset;
}

@media only screen and (max-width: 1200px) {
  footer .footer-top {
    padding: 70px 0px;
  }

  footer .footer-top .footer-menu-area .footer-navbar ul li a {
    padding: 10px 20px;
  }
}

@media only screen and (max-width: 991px) {
  footer .footer-top {
    padding: 50px 0px;
  }

  footer .footer-top .footer-logo-area {
    padding-bottom: 35px;
    margin-bottom: 30px;
  }

  footer .footer-top .footer-menu-area {
    flex-direction: column;
  }

  footer .footer-top .footer-menu-area .footer-navbar {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 767px) {
  footer .footer-top .footer-logo-area {
    margin-bottom: 20px;
  }

  footer .footer-top .footer-logo-area .footer-logo {
    max-width: 190px;
  }

  footer .footer-top .footer-menu-area {
    display: block;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }

  footer .footer-top .footer-menu-area .footer-navbar {
    margin: 0;
  }

  footer .footer-top .footer-menu-area .footer-navbar ul {
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  footer .footer-top .footer-menu-area .footer-navbar ul li a {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 8px 20px;
  }

  footer .footer-top .footer-menu-area .footer-navbar ul li:first-child a {
    padding: 8px 20px;
  }

  footer .footer-top .footer-menu-area .social-icons {
    max-width: 200px;
    margin: 20px auto 0px;
  }

  footer .footer-top .footer-menu-area .social-icons ul {
    grid-column-gap: 30px;
    display: flex;
    grid-auto-flow: unset;
    align-items: center;
    justify-content: center;
  }

  footer .footer-top .footer-menu-area .social-icons ul li {
    max-width: 27px;
    max-height: 27px;
  }

  footer .footer-bottom {
    padding: 20px 0px 25px;
  }

  footer .footer-bottom .footer-bottom-inner {
    display: block;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }

  footer .footer-bottom .footer-bottom-inner .footer-bottom-right {
    margin-top: 5px;
  }

  footer .footer-bottom .footer-bottom-inner .footer-bottom-right ul {
    justify-content: center;
  }
}

@media only screen and (max-width: 450px) {
  footer .footer-bottom .footer-bottom-inner .footer-bottom-right ul li::after {
    margin: 0px 4px;
  }

  footer .footer-bottom .footer-bottom-inner .footer-bottom-right ul li a {
    padding: 10px 3px;
  }
}

@media only screen and (max-width: 374px) {
  footer .footer-bottom .footer-bottom-inner .footer-bottom-right ul {
    display: block;
    text-align: center;
  }
}

.btn {
  border: 0;
  border-radius: 0px;
  padding: 19px 34px;
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background-color 300ms;
}

.btn-green {
  background-color: #2C423D;
  color: white;
  border: 2px solid transparent;
  border-radius: 6px;
}

.btn-green:hover {
  color: #2C423D;
  border: 2px solid #2C423D;
  background-color: transparent;
}

.btn-green:focus-visible, .btn-green:focus {
  outline: none;
  border: none;
}

.btn-white:hover {
  background-color: white;
}

.btn-white:focus-visible, .btn-white:focus {
  outline: none;
  border: none;
}

.btn-grey {
  color: #2C423D;
  background: rgba(44, 66, 61, 0.16);
  border-radius: 6px;
  border: none;
}

.btn-grey:hover {
  border: none;
  background: #2C423D;
  color: white;
}

.btn-grey:focus-visible, .btn-grey:focus {
  outline: none;
  border: none;
}

@media only screen and (max-width: 1200px) {
  .btn {
    padding: 16px 20px;
  }
}

/* Typographical Elements
--------------------------------------------- */
p {
  margin: 0;
  padding: 0;
}

a:focus,
a:focus-visible {
  outline: none;
  border: none;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

ol.li-style li::before,
ul.li-style li::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #2C423D;
  border-radius: 50px;
  content: "";
  margin-right: 7px;
  vertical-align: middle;
}

ol.li-style-black li::before,
ul.li-style-black li::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #000;
  border-radius: 50px;
  content: "";
  margin-right: 7px;
  vertical-align: middle;
}

a:focus-visible, a:focus,
img:focus-visible,
img:focus,
div:focus-visible,
div:focus {
  outline: none;
}

li {
  list-style-type: none;
}

li.li-style::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #2C423D;
  border-radius: 50px;
  content: "";
  margin-right: 7px;
  vertical-align: middle;
}

li.li-style-black::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #000;
  border-radius: 50px;
  content: "";
  margin-right: 7px;
  vertical-align: middle;
}

b,
strong {
  font-weight: 700;
}

blockquote,
cite,
em,
i {
  font-style: italic;
}

mark {
  background: #ddd;
  color: #333;
}

blockquote {
  margin: 30px;
}

.wrap {
  max-width: 1220px;
  margin: 0 auto;
}

@media only screen and (max-width: 1600px) {
  .wrap {
    max-width: 1100px;
  }
}

@media only screen and (max-width: 1200px) {
  .wrap {
    max-width: 900px;
  }
}

@media only screen and (max-width: 991px) {
  .wrap {
    max-width: 700px;
    padding: 0px 20px;
  }
}

.container {
  max-width: 1146px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .container {
    max-width: 900px;
  }
}

@media only screen and (max-width: 991px) {
  .container {
    max-width: 700px;
    padding: 0px 20px;
  }
}

.inner-container {
  max-width: 764px;
  margin: 0 auto;
}

body {
  font-family: "Epilogue", sans-serif;
  font-weight: normal;
}

/* Headings
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Epilogue", sans-serif;
  font-weight: bold;
  line-height: 1em;
  margin: 0 0 20px;
}

.title-center {
  display: block;
  text-align: center;
}

.title-center .title {
  margin-bottom: 30px;
}

@media only screen and (max-width: 1200px) {
  .title-center .title {
    margin-bottom: 20px;
  }
}

.title-left {
  text-align: left;
}

.title-left .sub-description {
  margin: 0px 0px 52px;
  text-align: left;
  max-width: 65%;
}

.title-left .title {
  margin: 13px 0px 26px;
  max-width: 60%;
}

@media only screen and (max-width: 767px) {
  .title-left {
    padding: 0px 20px;
  }

  .title-left .title {
    margin: 5px 0px 20px;
    max-width: 100%;
  }

  .title-left .sub-description {
    margin: 0px 0px 28px;
    max-width: 100%;
  }
}

.title {
  font-family: "Tenor Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 40px;
  line-height: 140%;
  color: #2C423D;
  text-transform: capitalize;
}

@media only screen and (max-width: 767px) {
  .title {
    font-size: 34px;
    line-height: 140%;
  }
}

.small-title {
  font-family: Epilogue;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 30px;
  letter-spacing: 0.25em;
  color: #AB6E54;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .small-title {
    font-size: 12px;
  }
}

.sub-description {
  font-family: Epilogue;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 170%;
  color: rgba(44, 66, 61, 0.7);
  max-width: 50%;
  margin: 0 auto;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .sub-description {
    max-width: 100%;
  }
}

.read-more-less-text-mobile {
  display: none;
}

.button {
  display: block;
  text-align: center;
  margin-top: 50px;
}

.button .btn-green {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .button .btn-green {
    display: block;
    margin: 0 20px;
  }
}

.desc-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desc-action .sub-description {
  margin: 0;
  max-width: 65%;
}

@media only screen and (max-width: 767px) {
  .desc-action .sub-description {
    max-width: 100%;
  }
}

.desc-action .title {
  max-width: 60%;
}

@media only screen and (max-width: 767px) {
  .desc-action .title {
    max-width: 100%;
  }
}

.row {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  grid-row-gap: 20px;
  grid-column-gap: 20px;
}

@media only screen and (max-width: 1200px) {
  .row {
    grid-template-columns: auto auto;
  }
}

@media only screen and (max-width: 991px) {
  .row {
    grid-row-gap: 15px;
    grid-column-gap: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .row {
    display: block;
    grid-template-columns: none;
  }
}

.slick-dots {
  bottom: -35px;
}

.slick-dots li {
  background-color: #2c423d;
  border-radius: 50px;
  height: 10px;
  opacity: .2;
  width: 10px;
}

.slick-dots li button:before {
  font-size: 0;
}

.slick-dots li.slick-active {
  background-color: #2C423D;
  opacity: 1;
}

.slick-prev, .slick-next {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px 20px;
  height: 76px;
  width: 76px;
  position: absolute;
  border: 2px solid transparent;
}

.slick-prev::before, .slick-next::before {
  content: none;
}

.slick-next {
  background-color: #2C423D;
  background-image: url("../../images/next-arrow.svg");
  right: 0;
  bottom: -38px;
  left: unset;
  top: unset;
  z-index: 11;
  border-left: none;
}

.slick-next:hover, .slick-next:focus {
  background-color: #516a65;
  background-image: url("../../images/next-arrow.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 12px 20px;
  border: 2px solid transparent;
  border-left: none;
}

.slick-prev {
  background-color: transparent;
  background-image: url("../../images/prev-arrow.svg");
  left: unset;
  right: 76px;
  bottom: -38px;
  top: unset;
  z-index: 11;
  border: 2px solid transparent;
  border-right: none;
}

.slick-prev:hover, .slick-prev:focus {
  background-color: white;
  background-image: url("../../images/prev-arrow.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 12px 20px;
  border: 2px solid #2C423D;
  border-right: none;
}

.inner-container {
  max-width: 1186px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .inner-container {
    max-width: 930px;
    padding: 0px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .inner-container {
    padding: 0px;
  }
}

.desktop-button {
  display: block;
}

.mobile-button {
  display: none;
}

.banner-section-border {
  display: block;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 20px;
  background-color: #FFFFFF;
}

.banner-section-border::before {
  content: "";
  background-image: url("../../images/show-case-banner-border.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: bottom;
  position: absolute;
  height: 20px;
  width: 100%;
  z-index: 0;
  bottom: 0px;
  left: 0px;
}

.video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.video-shade{
  background-color: white;
  opacity: .5;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
}

#hero-video-bg {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;

}

@media (max-width: 900px) {
  #hero-video-bg {
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) {
  .banner-section-border::before {
    width: calc(100% - 80px);
    left: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .desktop-button {
    display: none;
  }

  .mobile-button {
    display: block;
    margin: 0 auto;
    margin-top: 100px;
    text-align: center;
    width: calc(100% - 40px);
  }

  .mobile-button .btn-green {
    display: block;
  }

  .read-more-less-text-desktop {
    display: none;
  }

  .read-more-less-text-mobile {
    display: block;
    font-family: Epilogue;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 170%;
    color: #2C423D;
    max-width: 100%;
    margin: 0 auto;
    opacity: 0.7;
  }

  .read-more-less-text-mobile a {
    font-weight: 600;
    color: #2C423D;
    text-transform: capitalize;
  }

  .read-more-less-text-mobile .more {
    display: none;
  }

  .read-more-less-text-mobile.read-more-show .desc-small-text, .read-more-less-text-mobile.read-more-show .dots {
    display: none;
  }

  .read-more-less-text-mobile.read-more-show .more {
    display: block;
  }

  .banner-section-border::before {
    content: unset;
  }
}

.newsletter-form-area {
  display: block;
  text-align: center;
  max-width: 645px;
  margin: 60px auto 0px;
}

.newsletter-form-area form {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.newsletter-form-area form input[type="email"] {
  padding: 23px 32px 24px;
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 170%;
  outline: none;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: calc(100% - 76px);
}

.newsletter-form-area form input[type="submit"] {
  font-size: 0;
  color: transparent;
  background-color: #2C423D;
  height: 76px;
  width: 76px;
  outline: none;
  border: 2px solid transparent;
  background-image: url("../../images/white-arrow-icon.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 8px auto;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form-area form input[type="submit"]:hover {
  font-size: 0;
  background-image: url("../../images/green-right-arrow.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 8px auto;
  background-color: transparent;
  height: 76px;
  width: 76px;
  outline: none;
  border: 2px solid #2C423D;
  cursor: pointer;
  transition: all .3s linear 0s;
}

@media only screen and (max-width: 1200px) {
  .newsletter-form-area {
    margin: 40px auto 0px;
  }
}

@media only screen and (max-width: 767px) {
  .newsletter-form-area {
    margin: 20px auto 0px;
  }

  .newsletter-form-area form input[type="email"] {
    width: calc(100% - 66px);
    padding: 19px 25px 18px;
  }

  .newsletter-form-area form input[type="submit"] {
    height: 66px;
    width: 66px;
  }

  .newsletter-form-area form input[type="submit"]:hover {
    height: 66px;
    width: 66px;
  }
}

::-webkit-input-placeholder {
  /* Edge */
  color: rgba(44, 66, 61, 0.7);
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(44, 66, 61, 0.7);
}

::placeholder {
  color: rgba(44, 66, 61, 0.7);
}

.banner-section {
  /* background-image: url("../../images/banner-image.jpg"); */
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  height: calc(100vh - 110px);
  margin-top: 110px;
  position: relative;
  overflow: hidden;
}

.banner-section .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  min-height: 100vh;
  position: relative;
}

.banner-section .scroll-down {
  display: flex;
  justify-content: flex-end;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: Epilogue;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #0B182E;
  position: absolute;
  bottom: 50px;
  right: 50px;
}

.banner-section .scroll-down img {
  width: 16px;
  margin-top: 22px;
}

.banner-section .banner-content {
  width: 610px;
  padding: 126px 0px;
  position: relative;
  z-index: 3;
}

.banner-section .banner-content::before {
  content: "";
  background: #fff;
  opacity: 0.36;
  filter: blur(100px);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.banner-section .banner-content .banner-title {
  font-family: "Tenor Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 54px;
  line-height: 125%;
  text-transform: uppercase;
  color: #0B182E;
}

.banner-section .banner-content .banner-details {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: rgba(11, 24, 46, 0.9);
  line-height: 170%;
  margin: 18px 0px 40px;
}

.banner-section .banner-content .banner-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

.banner-section .banner-content .banner-buttons a {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  color: #0B182E;
  text-decoration: none;
}

.banner-section .banner-content .banner-buttons a:hover {
  text-decoration: underline;
}

.banner-section .banner-content .banner-buttons .btn-green {
  margin-right: 40px;
  color: white;
  text-decoration: none;
}

.banner-section .banner-content .banner-buttons .btn-green:hover {
  color: #2C423D;
  background-color: transparent;
  text-decoration: none;
}

.banner-section .banner-content .read-more-less-text-mobile {
  color: #0B182E;
  opacity: 0.9;
  margin: 20px;
}

.banner-section .mobile-play-button {
  display: none;
}

.banner-section .play-button {
  position: absolute;
  top: 42%;
  right: 13%;
  border-radius: 50%;
  border: 2px solid #2C423D;
  padding: 5px;
  height: 74px;
  width: 74px;
}

.banner-section .play-button .play-btn-bg {
  background-color: #2C423D;
  border-radius: 50%;
  display: block;
  height: 100%;
  width: 100%;
}

.banner-section .play-button .play-btn-bg img {
  width: 19px;
  margin: 25px 25px 28px 30px;
}

.banner-section .play-button:hover {
  transform: scale(1.05);
}

@media only screen and (max-width: 1600px) {
  .banner-section {
    background-position: 80% center;
  }
}

@media only screen and (max-width: 1200px) {
  .banner-section {
    background-size: cover;
    height: calc(100vh - 102px);
    margin-top: 102px;
  }

  .banner-section .banner-content {
    width: 540px;
  }

  .banner-section .banner-content .banner-title {
    font-size: 44px;
  }
}

@media only screen and (max-width: 991px) {
  .banner-section {
    background-position: left center;
    height: calc(100vh - 72px);
    margin-top: 72px;
  }

  .banner-section .banner-content {
    width: 65%;
  }

  .banner-section .banner-content .banner-title {
    font-size: 40px;
  }

  .banner-section .play-button {
    right: 8%;
  }
}

@media only screen and (max-width: 767px) {
  .banner-section {
    background-position: 35% center;
    z-index: 0;
  }

  .banner-section::before {
    content: "";
    background: #fff;
    opacity: 0.6;
    filter: blur(100px);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .banner-section .wrap {
    box-sizing: border-box;
    padding: 0px;
  }

  .banner-section .scroll-down {
    display: none;
  }

  .banner-section .play-button {
    display: none;
  }

  .banner-section .mobile-play-button {
    display: inline-block;
    margin-bottom: 30px;
    height: 66px;
    width: 66px;
    border-radius: 50%;
    border: 2px solid #2C423D;
    padding: 5px;
  }

  .banner-section .mobile-play-button .play-btn-bg {
    background-color: #2C423D;
    border-radius: 50%;
    display: block;
    height: 100%;
    width: 100%;
  }

  .banner-section .mobile-play-button .play-btn-bg img {
    width: 19px;
    margin: 20px 20px 20px 25px;
  }

  .banner-section .mobile-play-button:hover {
    transform: scale(1.05);
  }

  .banner-section .banner-content {
    width: 100%;
    display: block;
    text-align: center;
    box-sizing: border-box;
    padding: 126px 0px 50px;
  }

  .banner-section .banner-content .banner-details,
  .banner-section .banner-content .banner-title {
    padding: 0 20px;
  }

  .banner-section .banner-content::before {
    content: unset;
  }

  .banner-section .banner-content .banner-buttons {
    display: block;
    width: 100%;
    padding: 0 20px;
  }

  .banner-section .banner-content .banner-buttons .btn-green {
    display: block;
    margin: 0px 0px 30px;
  }
}

.newsletter-section {
  background-color: #F3F7F7;
  padding: 155px 0px 120px;
}

@media only screen and (max-width: 1200px) {
  .newsletter-section {
    padding: 120px 0px 100px;
  }
}

@media only screen and (max-width: 991px) {
  .newsletter-section {
    padding: 100px 0px 80px;
  }
}

@media only screen and (max-width: 767px) {
  .newsletter-section {
    padding: 80px 0px 50px;
  }
}

.lets-connect-section {
  position: relative;
  background: linear-gradient(180deg, #fff, #fff 82%, #f3f7f7 0, #f3f7f7);
}

.lets-connect-section .title-center .sub-description {
  max-width: 450px;
}

.lets-connect-section .social-icons {
  margin: 42px 0px;
}

.lets-connect-section .social-icons ul {
  grid-column-gap: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lets-connect-section .social-icons ul li {
  max-width: 24px;
  max-height: 24px;
  transition: transform .2s;
}

.lets-connect-section .social-icons ul li:hover img {
  transform: scale(1.2);
}

.lets-connect-section .social-icons ul li img {
  height: 100%;
  width: 100%;
  transition: transform .2s;
}

.lets-connect-section .column .column-image {
  height: 100%;
  overflow: hidden;
}

.lets-connect-section .column .column-image img {
  height: 100%;
  width: 100%;
  transition: .5s ease-in-out;
}

.lets-connect-section .column .column-image a:hover img {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.lets-connect-section .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.lets-connect-section .slick-slide img {
  display: block;
  text-align: center;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .lets-connect-section {
    background: linear-gradient(180deg, #fff, #fff 87%, #f3f7f7 0, #f3f7f7);
  }

  .lets-connect-section .social-icons {
    margin: 30px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .lets-connect-section {
    background: linear-gradient(180deg, #fff, #fff 72%, #f3f7f7 0, #f3f7f7);
  }

  .lets-connect-section .slick-dots {
    bottom: -50px;
  }

  .lets-connect-section .title-center .sub-description {
    max-width: 100%;
  }
}

.get-ready-section.slick-dotted.slick-slider {
  margin: 0;
}

.get-ready-section {
  display: flex;
  position: relative;
}

.get-ready-section::after {
  content: "";
  background-image: url("../../images/bg-image.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.get-ready-section h5 {
  font-family: Epilogue;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 1px;
  color: white;
  margin: 34px 0px 48px;
}

@media only screen and (max-width: 991px) {
  .get-ready-section h5 {
    margin: 25px 0px 45px;
  }
}

.get-ready-section .btn-green {
  z-index: 1;
}

.get-ready-section .slick-dots {
  bottom: 40px;
  z-index: 111;
}

.get-ready-section .get-ready-left,
.get-ready-section .get-ready-right {
  position: relative;
  width: 50%;
}

.get-ready-section .get-ready-left img,
.get-ready-section .get-ready-right img {
  height: 100%;
  width: 100%;
}

.get-ready-section .get-ready-left .right-content,
.get-ready-section .get-ready-left .left-content,
.get-ready-section .get-ready-right .right-content,
.get-ready-section .get-ready-right .left-content {
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 30px;
  right: 50%;
  z-index: 11;
  transform: translate(50%, -50%);
}

@media only screen and (max-width: 1200px) {

  .get-ready-section .get-ready-left .right-content,
  .get-ready-section .get-ready-left .left-content,
  .get-ready-section .get-ready-right .right-content,
  .get-ready-section .get-ready-right .left-content {
    bottom: -15px;
  }
}

@media only screen and (max-width: 991px) {

  .get-ready-section .get-ready-left .right-content,
  .get-ready-section .get-ready-left .left-content,
  .get-ready-section .get-ready-right .right-content,
  .get-ready-section .get-ready-right .left-content {
    bottom: -30px;
  }
}

.get-ready-section .get-ready-left .right-content img,
.get-ready-section .get-ready-left .left-content img,
.get-ready-section .get-ready-right .right-content img,
.get-ready-section .get-ready-right .left-content img {
  height: 62px;
  width: auto;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .get-ready-section::after {
    content: unset;
  }

  .get-ready-section .slick-dots {
    bottom: 30px;
  }

  .get-ready-section .slick-dots li {
    background-color: #c9c4ba;
  }

  .get-ready-section .slick-dots li.slick-active {
    background-color: #fff;
  }

  .get-ready-section .get-ready-right,
  .get-ready-section .get-ready-left {
    position: relative;
    z-index: 2;
  }

  .get-ready-section .get-ready-right::after,
  .get-ready-section .get-ready-left::after {
    content: "";
    background-image: url("../../images/mobile-bg-image.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
  }

  .get-ready-section .get-ready-right img,
  .get-ready-section .get-ready-left img {
    height: 660px;
    width: 100%;
    object-fit: cover;
  }

  .get-ready-section .get-ready-right .right-content,
  .get-ready-section .get-ready-right .left-content,
  .get-ready-section .get-ready-left .right-content,
  .get-ready-section .get-ready-left .left-content {
    position: static;
    z-index: 2;
    transform: unset;
    display: flex;
    margin-top: -260px;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    margin-bottom: 70px;
  }

  .get-ready-section .get-ready-right .btn-green,
  .get-ready-section .get-ready-left .btn-green {
    display: block;
    margin: 0 40px;
  }

  .get-ready-section h5 {
    margin: 25px 40px;
  }
}

@media only screen and (max-width: 420px) {

  .get-ready-section .get-ready-right .right-content,
  .get-ready-section .get-ready-right .left-content,
  .get-ready-section .get-ready-left .right-content,
  .get-ready-section .get-ready-left .left-content {
    margin-top: -285px;
  }
}

.meet-our-team {
  background-color: white;
  padding: 0px 0px 130px;
}

.meet-our-team .row {
  margin-top: 60px;
  grid-row-gap: 55px;
  grid-column-gap: 80px;
}

.meet-our-team .team-details {
  margin-top: 30px;
}

.meet-our-team .team-details .name {
  font-family: "Tenor Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #2C423D;
  margin-bottom: 12px;
}

.meet-our-team .team-details .designation {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  color: #BCBDBF;
}

@media only screen and (max-width: 1200px) {
  .meet-our-team {
    padding: 0px 0px 100px;
  }

  .meet-our-team .row {
    margin-top: 40px;
    grid-template-columns: auto auto auto;
  }
}

@media only screen and (max-width: 991px) {
  .meet-our-team {
    padding: 0px 0px 80px;
  }

  .meet-our-team .row {
    grid-row-gap: 40px;
    grid-column-gap: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .meet-our-team {
    padding: 0px 0px 50px;
  }

  .meet-our-team .title-center {
    padding: 0px 20px;
  }

  .meet-our-team .row {
    display: block;
    grid-template-columns: none;
  }

  .meet-our-team .row .column {
    text-align: center;
    margin: 0 24px;
  }

  .meet-our-team .row .column img {
    margin: 0 auto;
  }

  .meet-our-team .slick-dotted.slick-slider {
    margin-bottom: 60px;
  }
}

.start-template-section {
  padding: 0px 0px 150px;
  position: relative;
  background: linear-gradient(180deg, #f3f7f7, #f3f7f7 44%, #fff 0, #fff);
}

.start-template-section .title-left .title {
  max-width: 100%;
}

.start-template-section .slick-prev {
  top: -90px;
  right: 96px;
  bottom: unset;
}

.start-template-section .slick-next {
  top: -90px;
  right: 20px;
  bottom: unset;
}

.start-template-section .title-left .sub-description {
  max-width: 530px;
}

.start-template-section .start-template-slide-inner {
  margin: 0px 13px;
}

.start-template-section .start-template-slide .start-usf-link {
  font-family: "Tenor Sans", sans-serif;
  font-style: normal;
  display: block;
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  color: #2C423D;
  margin: 24px 0px 9px;
  text-decoration: none;
}

.start-template-section .start-template-slide .start-usf-link:focus, .start-template-section .start-template-slide .start-usf-link:focus-visible {
  outline: none;
}

.start-template-section .start-template-slide .start-usf-link:hover {
  text-decoration: underline;
}

.start-template-section .start-template-slide h6 {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 30px;
  margin: 0px;
  color: rgba(44, 66, 61, 0.5);
}

.start-template-section .start-template-slide a:focus-visible, .start-template-section .start-template-slide a:focus {
  outline: none;
}

.start-template-section .start-template-slide .template-image {
  background-color: #fff;
  margin: 10px;
  position: relative;
}

.start-template-section .start-template-slide .template-image:focus-visible, .start-template-section .start-template-slide .template-image:focus {
  outline: none;
}

.start-template-section .start-template-slide .template-image::before {
  content: "";
  background-image: url(../../images/who-we-serve-border.jpg);
  background-size: contain;
  background-repeat: repeat;
  position: absolute;
  background-position: center center;
  top: -10px;
  left: -10px;
  height: calc(100% + 20px);
  width: calc(100% + 20px);
  z-index: -1;
}

.start-template-section .start-template-slide .template-image img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.start-template-section .start-template-slide .template-image img:focus-visible, .start-template-section .start-template-slide .template-image img:focus {
  outline: none;
}

@media only screen and (max-width: 1200px) {
  .start-template-section {
    padding: 0px 0px 120px;
    background: linear-gradient(180deg, #f3f7f7, #f3f7f7 46%, #fff 0, #fff);
  }
}

@media only screen and (max-width: 991px) {
  .start-template-section {
    padding: 0px 0px 80px;
    background: linear-gradient(180deg, #f3f7f7, #f3f7f7 52%, #fff 0, #fff);
  }
}

@media only screen and (max-width: 767px) {
  .start-template-section {
    padding: 0px 0px 50px;
    background: #fff;
  }

  .start-template-section .start-template-slide-inner {
    margin: 0px 6px;
  }

  .start-template-section .title-left .sub-description {
    max-width: 100%;
  }

  .start-template-section .container {
    padding: 0;
  }

  .start-template-section .start-template-slide {
    text-align: center;
  }

  .start-template-section .start-template-slide .start-usf-link {
    font-size: 20px;
    line-height: 23px;
  }

  .start-template-section .slick-dotted.slick-slider {
    margin-bottom: 65px;
  }

  .start-template-section .slick-dots {
    bottom: -37px;
  }

  .start-template-section img {
    margin: 0 auto;
  }
}

.latest-work-section {
  padding: 130px 0px 150px;
  position: relative;
  background: linear-gradient(180deg, #fff, #fff 63%, #F3F7F7 0, #F3F7F7);
}

.latest-work-section .title-left {
  padding: 0px 0px 0px 24px;
}

.latest-work-section .title-left .title {
  max-width: 700px;
}

.latest-work-section .title-left .desc-action .desktop-button {
  width: 150px;
}

.latest-work-section .title-left .desc-action .sub-description {
  max-width: 740px;
  width: 100%;
}

.latest-work-section .slick-prev {
  background-color: white;
  border: 2px solid white;
  border-right: none;
}

.latest-work-section .slick-prev:hover {
  border: 2px solid #2C423D;
  border-right: none;
}

.latest-work-section .work-slider {
  position: relative;
  z-index: 0;
  margin: 80px 24px 0;
}

.latest-work-section .work-slider::before {
  content: "";
  background-image: url(../../images/latest-work-border.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom left;
  position: absolute;
  bottom: -24px;
  left: -24px;
  height: calc(100% - 24px);
  width: calc(100% - 24px);
  z-index: 0;
}

.latest-work-section .work-slider::after {
  content: "";
  background-image: url(../../images/latest-work-border.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top right;
  position: absolute;
  top: -24px;
  right: -24px;
  height: calc(100% - 24px);
  width: calc(100% - 24px);
  z-index: -1;
}

.latest-work-section .work-slider .work-item {
  position: relative;
  margin: 0px 2px;
}

.latest-work-section .work-slider .work-item img {
  width: 100%;
}

.latest-work-section .work-slider .work-content {
  display: flex;
  background: #2C423D;
  width: 280px;
  padding: 23px 10px 23px 30px;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.latest-work-section .work-slider .work-content h5 {
  font-family: Tenor Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  color: #FFFFFF;
  text-align: center;
  margin: 0px 14px 0px 0px;
}

.latest-work-section .work-slider .work-content a {
  font-family: Epilogue;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  outline: none;
  margin-top: 2px;
}

.latest-work-section .work-slider .work-content a:hover, .latest-work-section .work-slider .work-content a:focus-visible, .latest-work-section .work-slider .work-content a:focus {
  text-decoration: underline;
  outline: none;
}

@media only screen and (max-width: 1200px) {
  .latest-work-section {
    padding: 100px 0px 120px;
  }

  .latest-work-section .title-left .title {
    max-width: 650px;
  }

  .latest-work-section .title-left .desc-action .sub-description {
    max-width: 620px;
  }
}

@media only screen and (max-width: 991px) {
  .latest-work-section {
    padding: 80px 0px 100px;
  }

  .latest-work-section .title-left .title {
    max-width: 500px;
  }

  .latest-work-section .title-left .desc-action .sub-description {
    max-width: 500px;
  }

  .latest-work-section .work-slider {
    margin: 60px 12px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .latest-work-section {
    padding: 50px 0px 50px;
  }

  .latest-work-section .title-left {
    padding: 0px 20px;
  }

  .latest-work-section .title-left .title {
    max-width: 100%;
  }

  .latest-work-section .title-left .desc-action .sub-description {
    max-width: 100%;
  }

  .latest-work-section .slick-dots {
    bottom: -50px;
  }

  .latest-work-section .mobile-button {
    margin-top: 80px;
  }

  .latest-work-section .container {
    padding: 0;
  }

  .latest-work-section .work-slider {
    margin: 40px 0px 0px;
  }

  .latest-work-section .work-slider::before {
    bottom: -12px;
    left: -12px;
    height: calc(100% - 12px);
    width: calc(100% - 12px);
    background-size: cover;
  }

  .latest-work-section .work-slider::after {
    top: -12px;
    right: 0;
    height: calc(100% - 12px);
    width: calc(100% - 12px);
    background-size: cover;
  }

  .latest-work-section .work-slider .work-item {
    margin: 0;
  }

  .latest-work-section .work-slider .work-content {
    width: 100%;
    margin-top: 0;
    padding: 18px 0px;
    justify-content: center;
  }

  .latest-work-section .work-slider .work-content h5 {
    margin-right: 10px;
  }

  .latest-work-section .slick-dots {
    bottom: -55px;
  }
}

.handles-your-creation {
  padding: 0px 0px 150px;
  position: relative;
  background: linear-gradient(180deg, #fff, #fff 48%, #F3F7F7 0, #F3F7F7);
}

.handles-your-creation .title-center .sub-description {
  max-width: 605px;
}

.handles-your-creation .slick-prev {
  background-color: white;
  border: 2px solid white;
  border-right: none;
}

.handles-your-creation .slick-prev:hover {
  border: 2px solid #2C423D;
  border-right: none;
}

.handles-your-creation .button {
  margin-top: 85px;
}

.handles-your-creation .creation-slider {
  margin-top: 80px;
  position: relative;
}

.handles-your-creation .creation-slider::before {
  content: "";
  background-image: url(../../images/creation-border.png);
  background-size: contain;
  position: absolute;
  background-repeat: repeat;
  background-position: center center;
  top: -35px;
  left: -35px;
  height: calc(100% + 70px);
  width: calc(100% + 70px);
  z-index: 0;
}

.handles-your-creation .creation-slider .creation-item {
  position: relative;
}

.handles-your-creation .creation-slider .creation-item img {
  width: 100%;
  height: 100%;
}

.handles-your-creation .creation-slider .creation-item .creation-content {
  width: 50%;
  padding: 40px;
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.handles-your-creation .creation-slider .creation-item .creation-content h5 {
  font-family: "Tenor Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  color: #2C423D;
  margin: 0px 0px 25px;
  text-align: left;
}

.handles-your-creation .creation-slider .creation-item .creation-content p {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 175%;
  color: rgba(0, 0, 0, 0.7);
  text-align: left;
}

.handles-your-creation .creation-slider .creation-item .creation-content .creator-details {
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.handles-your-creation .creation-slider .creation-item .creation-content .creator-details img {
  width: 48px;
}

.handles-your-creation .creation-slider .creation-item .creation-content .creator-details .creator-name {
  margin-left: 16px;
}

.handles-your-creation .creation-slider .creation-item .creation-content .creator-details .creator-name h5 {
  font-size: 18px;
  margin: 0px;
}

.handles-your-creation .creation-slider .creation-item .creation-content .creator-details .creator-name p {
  font-size: 14px;
  line-height: 30px;
  color: rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 1200px) {
  .handles-your-creation {
    padding: 0px 0px 120px;
  }

  .handles-your-creation .creation-slider .creation-item .creation-content {
    padding: 30px;
  }

  .handles-your-creation .creation-slider .creation-item .creation-content .creator-details {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .handles-your-creation {
    padding: 0px 0px 80px;
  }

  .handles-your-creation .button {
    margin-top: 60px;
  }

  .handles-your-creation .creation-slider {
    margin-top: 60px;
  }

  .handles-your-creation .creation-slider::before {
    top: -20px;
    left: -20px;
    height: calc(100% + 40px);
    width: calc(100% + 40px);
  }

  .handles-your-creation .creation-slider .creation-item .creation-content {
    padding: 22px;
  }

  .handles-your-creation .creation-slider .creation-item .creation-content .creator-details {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .handles-your-creation {
    padding: 0px 0px 50px;
    background: #fff;
  }

  .handles-your-creation .container {
    padding: 0;
  }

  .handles-your-creation .title-center {
    padding: 0px 20px;
  }

  .handles-your-creation .button {
    margin-top: 70px;
  }

  .handles-your-creation .creation-slider {
    margin-top: 45px;
  }

  .handles-your-creation .creation-slider::before {
    content: unset;
  }

  .handles-your-creation .creation-slider .slick-dots {
    bottom: -50px;
  }

  .handles-your-creation .creation-slider .creation-item {
    padding: 20px 0px;
    background-image: url(../../images/creation-border.png);
  }

  .handles-your-creation .creation-slider .creation-item .creation-content {
    width: auto;
    text-align: center;
    position: static;
  }

  .handles-your-creation .creation-slider .creation-item .creation-content img {
    height: auto;
  }

  .handles-your-creation .creation-slider .creation-item .creation-content .creator-details {
    justify-content: center;
  }
}

.featured-section {
  padding: 120px 0px;
  position: relative;
  background: linear-gradient(180deg, #f3f7f7, #f3f7f7 55%, #fff 0, #fff);
}

.featured-section .button {
  margin-top: 85px;
}

.featured-section .title-left .sub-description {
  margin: 0px 0px 95px;
  max-width: 580px;
}

.featured-section .featured-slider {
  position: relative;
  z-index: 0;
  margin: 60px 12px 0px;
}

.featured-section .featured-slider .slick-prev,
.featured-section .featured-slider .slick-next {
  top: -135px;
}

.featured-section .featured-slider::before {
  content: "";
  background-image: url(../../images/creation-border.png);
  background-size: contain;
  background-repeat: repeat;
  position: absolute;
  background-position: center center;
  top: -35px;
  left: -35px;
  height: calc(100% + 70px);
  width: calc(100% + 70px);
  z-index: 0;
}

.featured-section .featured-slider .featured-item {
  position: relative;
}

.featured-section .featured-slider .featured-item img {
  width: 100%;
  height: 100%;
}

.featured-section .featured-slider .featured-item .featured-content {
  background-color: white;
  padding: 40px;
  width: 40%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.featured-section .featured-slider .featured-item .featured-content img {
  width: 62px;
}

.featured-section .featured-slider .featured-item .featured-content h5 {
  font-family: "Tenor Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  color: #2C423D;
  margin: 20px 0px 18px;
}

.featured-section .featured-slider .featured-item .featured-content p {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 175%;
  color: rgba(0, 0, 0, 0.7);
}

@media only screen and (max-width: 1200px) {
  .featured-section {
    padding: 100px 0px;
    background: linear-gradient(180deg, #f3f7f7, #f3f7f7 56%, #fff 0, #fff);
  }

  .featured-section .featured-slider .featured-item .featured-content {
    padding: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .featured-section {
    padding: 80px 0px;
    background: linear-gradient(180deg, #f3f7f7, #f3f7f7 44%, #fff 0, #fff);
  }

  .featured-section .title-left .sub-description {
    margin: 0px 0px 60px;
    max-width: 530px;
  }

  .featured-section .button {
    margin-top: 60px;
  }

  .featured-section .featured-slider::before {
    top: -20px;
    left: -20px;
    height: calc(100% + 40px);
    width: calc(100% + 40px);
  }

  .featured-section .featured-slider .slick-prev,
  .featured-section .featured-slider .slick-next {
    top: -100px;
  }
}

@media only screen and (max-width: 767px) {
  .featured-section {
    padding: 50px 0px;
  }

  .featured-section .container {
    padding: 0;
  }

  .featured-section .title-left .sub-description {
    margin: 0px 0px 50px;
    max-width: 100%;
  }

  .featured-section .button {
    margin-top: 70px;
  }

  .featured-section .slick-dots {
    bottom: -50px;
  }

  .featured-section .featured-slider {
    margin: 45px 0px 0px;
  }

  .featured-section .featured-slider::before {
    content: unset;
  }

  .featured-section .featured-slider .featured-item {
    padding: 20px 0px;
    background-image: url(../../images/creation-border.png);
  }

  .featured-section .featured-slider .featured-item .featured-content {
    width: auto;
    position: static;
    padding: 20px;
  }
}

.explore-blog-section {
  position: relative;
  background: linear-gradient(180deg, #fff, #fff 38%, #f3f7f7 0, #F3F7F7);
}

.explore-blog-section .title-left .sub-description {
  max-width: 580px;
}

.explore-blog-section .slick-prev {
  top: -90px;
  right: 85px;
  bottom: unset;
}

.explore-blog-section .slick-next {
  top: -90px;
  right: 9px;
  bottom: unset;
}

.explore-blog-section .explore-mobile-slider {
  display: none;
}

.explore-blog-section .explore-blog-slider .slick-slide>div {
  margin: 0px 18px;
}

.explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner {
  display: inline-block;
  position: relative;
  width: 46%;
}

.explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner:nth-child(1), .explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner:nth-child(2) {
  margin-bottom: 40px;
}

.explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner:nth-child(1), .explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner:nth-child(3) {
  margin-right: 36px;
}

.explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner:nth-child(3), .explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner:nth-child(4) {
  margin-bottom: 5px;
}

.explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner .explore-blog-img {
  position: relative;
}

.explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner .explore-blog-img img {
  position: relative;
  max-width: 100%;
  width: 100%;
}

.explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner .explore-blog-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../../images/explore-blog-bg-img.jpg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: auto;
  z-index: -1;
  right: -10px;
  bottom: -10px;
}

.explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner .explore-blog-text {
  width: 497px;
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner .explore-blog-text a {
  font-family: "Tenor Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  display: flex;
  align-items: flex-end;
  color: #FFFFFF;
  margin: 0px;
  text-decoration: none;
}

.explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner .explore-blog-text a:focus-visible, .explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner .explore-blog-text a:focus {
  outline: none;
}

.explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner .explore-blog-text a:hover {
  text-decoration: underline;
}

.explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner .explore-blog-text h6 {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 30px;
  color: #BCBDBF;
  margin: 0px;
}

.explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner .category-sticky {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 133px;
  height: 52px;
  background: #FFFFFF;
  border-radius: 0px;
}

.explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner .category-sticky a {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 30px;
  display: flex;
  align-items: center;
  text-align: right;
  letter-spacing: 0.25em;
  padding: 11px 21px;
  text-transform: uppercase;
  color: #2C423D;
  text-decoration: none;
}

.explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner .category-sticky a:hover {
  color: #FFFFFF;
  background: #2C423D;
}

@media only screen and (max-width: 1200px) {
  .explore-blog-section {
    background: linear-gradient(180deg, #fff, #fff 40%, #f3f7f7 0, #F3F7F7);
  }

  .explore-blog-section .explore-blog-slider .slick-slide>div {
    margin: 0px 11px 0px 16px;
  }

  .explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner {
    width: 47%;
  }

  .explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner:nth-child(1), .explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner:nth-child(3) {
    margin-right: 8px;
  }

  .explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner .explore-blog-text {
    width: 380px;
  }

  .explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner .explore-blog-img {
    position: relative;
  }

  .explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner .explore-blog-img::before {
    right: -12px;
    top: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .explore-blog-section {
    background: linear-gradient(180deg, #fff, #fff 42%, #f3f7f7 0, #F3F7F7);
  }

  .explore-blog-section .title-left .sub-description {
    max-width: 530px;
  }

  .explore-blog-section .explore-blog-slider .slick-slide>div {
    margin: 0px 23px 0px 0px;
  }

  .explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner {
    width: 46%;
  }

  .explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner:nth-child(1), .explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner:nth-child(3) {
    margin-right: 28px;
  }

  .explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner .explore-blog-text {
    width: 295px;
    left: 15px;
    bottom: 15px;
  }

  .explore-blog-section .explore-blog-slider .explore-blog-slide .explore-blog-inner .explore-blog-text a {
    font-size: 18px;
    line-height: normal;
  }
}

@media only screen and (max-width: 767px) {
  .explore-blog-section {
    background: linear-gradient(180deg, #fff, #fff 48%, #f3f7f7 0, #F3F7F7);
  }

  .explore-blog-section .container {
    padding: 0;
  }

  .explore-blog-section .title-left {
    padding: 0px 20px;
  }

  .explore-blog-section .title-left .sub-description {
    max-width: 100%;
  }

  .explore-blog-section .button {
    margin: 50px 20px 0px;
  }

  .explore-blog-section .button .btn-green {
    display: block;
    margin: 0;
  }

  .explore-blog-section .explore-blog-slider {
    display: none;
  }

  .explore-blog-section .explore-mobile-slider {
    display: block;
    position: relative;
  }

  .explore-blog-section .explore-mobile-slider .explore-mobile-slide {
    display: block;
    position: relative;
  }

  .explore-blog-section .explore-mobile-slider .explore-mobile-slide .explore-blog-inner {
    width: 75%;
    margin: 0 auto;
  }

  .explore-blog-section .explore-mobile-slider .explore-mobile-slide .explore-blog-inner .explore-blog-img {
    position: relative;
  }

  .explore-blog-section .explore-mobile-slider .explore-mobile-slide .explore-blog-inner .explore-blog-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../../images/explore-blog-bg-img.jpg);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 100%;
    z-index: -1;
    right: -10px;
    bottom: -10px;
  }

  .explore-blog-section .explore-mobile-slider .explore-mobile-slide .explore-blog-inner .explore-blog-img img {
    margin: 0 auto;
    position: relative;
    max-width: 100%;
    width: 100%;
  }

  .explore-blog-section .explore-mobile-slider .explore-mobile-slide .explore-blog-inner .explore-blog-text {
    width: 100%;
    position: static;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
  }

  .explore-blog-section .explore-mobile-slider .explore-mobile-slide .explore-blog-inner .explore-blog-text a {
    font-family: "Tenor Sans", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    line-height: 26px;
    display: flex;
    align-items: flex-end;
    margin: 0px;
    color: #0B182E;
    text-decoration: none;
  }

  .explore-blog-section .explore-mobile-slider .explore-mobile-slide .explore-blog-inner .explore-blog-text a:focus-visible, .explore-blog-section .explore-mobile-slider .explore-mobile-slide .explore-blog-inner .explore-blog-text a:focus {
    outline: none;
  }

  .explore-blog-section .explore-mobile-slider .explore-mobile-slide .explore-blog-inner .explore-blog-text a:hover {
    text-decoration: underline;
  }

  .explore-blog-section .explore-mobile-slider .explore-mobile-slide .explore-blog-inner .explore-blog-text h6 {
    font-family: "Epilogue", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 30px;
    margin: 0px;
    color: #2C423D;
    opacity: 0.5;
    padding-top: 8px;
  }

  .explore-blog-section .explore-mobile-slider .explore-mobile-slide .explore-blog-inner .category-sticky {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 133px;
    height: 52px;
    background: #FFFFFF;
    border-radius: 0px;
  }

  .explore-blog-section .explore-mobile-slider .explore-mobile-slide .explore-blog-inner .category-sticky a {
    font-family: "Epilogue", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 30px;
    display: flex;
    align-items: center;
    text-align: right;
    letter-spacing: 0.25em;
    padding: 11px 21px;
    text-transform: uppercase;
    color: #2C423D;
    text-decoration: none;
  }

  .explore-blog-section .explore-mobile-slider .explore-mobile-slide .explore-blog-inner .category-sticky a:hover {
    color: #FFFFFF;
    background: #2C423D;
  }

  .explore-blog-section .slick-dots {
    bottom: -30px;
  }
}

@media only screen and (max-width: 576px) {
  .explore-blog-section {
    background: linear-gradient(180deg, #fff, #fff 44%, #f3f7f7 0, #F3F7F7);
  }

  .explore-blog-section .explore-mobile-slider .slick-slide>div {
    margin: 0px 20px 0px 0px;
  }

  .explore-blog-section .explore-mobile-slider .explore-mobile-slide .explore-blog-inner {
    width: 90%;
    margin: 0px;
  }

  .explore-blog-section .explore-mobile-slider .explore-mobile-slide .explore-blog-inner .explore-blog-img {
    position: relative;
  }

  .explore-blog-section .explore-mobile-slider .explore-mobile-slide .explore-blog-inner .explore-blog-img::before {
    right: -12px;
    top: 12px;
  }

  .explore-blog-section .explore-mobile-slider .explore-mobile-slide .explore-blog-inner .explore-blog-text {
    width: 100%;
  }
}

@media only screen and (max-width: 420px) {
  .explore-blog-section .title-left {
    padding: 0px 17px;
  }
}

.buildlane-work-section {
  position: relative;
  padding: 0px 0px 130px;
  background: linear-gradient(180deg, #F3F7F7, #F3F7F7 48%, #fff 0, #fff);
}

.buildlane-work-section .slick-prev, .buildlane-work-section .slick-next {
  top: -90px;
  bottom: unset;
}

.buildlane-work-section .title-left .title {
  max-width: 630px;
}

.buildlane-work-section .title-left .sub-description {
  max-width: 740px;
}

.buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content {
  display: flex;
  align-items: flex-start;
  margin: 0px 5px;
}

.buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .left-content {
  background-color: white;
  width: 22%;
  padding: 40px;
  margin-top: 50px;
}

.buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .left-content span {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  color: #2C423D;
  background-color: rgba(44, 66, 61, 0.16);
  border-radius: 50%;
  height: 66px;
  width: 66px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .left-content h5 {
  font-family: "Tenor Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 23px;
  color: #2C423D;
  margin: 22px 0px;
}

.buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .left-content p {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 170%;
  color: #2C423D;
}

.buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .left-content .button {
  margin-top: 20px;
}

.buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .left-content .button .btn-green {
  display: block;
}

.buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .right-content {
  width: 78%;
  position: relative;
  padding: 15px 0px 160px;
}

.buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .right-content::before {
  content: "";
  background-image: url(../../images/computer-bg-image1.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: -5px;
  left: 0;
}

.buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .right-content img {
  width: 100%;
  height: auto;
}

.buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .right-content img:focus-visible, .buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .right-content img:focus {
  outline: none;
}

@media only screen and (max-width: 1200px) {
  .buildlane-work-section {
    padding: 0px 0px 100px;
    background: linear-gradient(180deg, #F3F7F7, #F3F7F7 59%, #fff 0, #fff);
  }

  .buildlane-work-section .title-left .sub-description {
    max-width: 630px;
  }

  .buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .right-content {
    padding: 10px 0px 120px;
  }
}

@media only screen and (max-width: 991px) {
  .buildlane-work-section {
    padding: 0px 0px 70px;
    background: linear-gradient(180deg, #F3F7F7, #F3F7F7 63%, #fff 0, #fff);
  }

  .buildlane-work-section .title-left .sub-description {
    max-width: 540px;
  }

  .buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .left-content {
    padding: 25px;
    margin-top: 20px;
  }

  .buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .right-content {
    padding: 10px 0px 110px;
  }

  .buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .right-content::before {
    background-position: top center;
    top: 2px;
  }
}

@media only screen and (max-width: 767px) {
  .buildlane-work-section {
    padding: 0px 0px 50px;
    background: linear-gradient(180deg, #F3F7F7, #F3F7F7 55%, #fff 0, #fff);
  }

  .buildlane-work-section .title-left {
    padding: 0px;
    margin-bottom: 25px;
  }

  .buildlane-work-section .title-left .sub-description,
  .buildlane-work-section .title-left .title {
    max-width: 100%;
  }

  .buildlane-work-section .button .btn-green {
    margin: 0;
  }

  .buildlane-work-section .mobile-button {
    width: 100%;
    margin-top: 65px;
  }

  .buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content {
    align-items: center;
    flex-direction: column;
  }

  .buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .left-content {
    width: auto;
    padding: 25px;
    margin: 0 20px -8px;
  }

  .buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .left-content .button {
    display: none;
  }

  .buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .right-content {
    width: 100%;
    padding: 10px 0px 120px;
  }

  .buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .right-content::after {
    left: 0;
    top: 5px;
    width: 100%;
  }
}

@media only screen and (max-width: 580px) {
  .buildlane-work-section {
    background: linear-gradient(180deg, #F3F7F7, #F3F7F7 58%, #fff 0, #fff);
  }

  .buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .right-content {
    padding: 5px 0px 90px;
  }
}

@media only screen and (max-width: 450px) {
  .buildlane-work-section {
    background: linear-gradient(180deg, #F3F7F7, #F3F7F7 67%, #fff 0, #fff);
  }

  .buildlane-work-section .buildlane-work-slider .buildlane-work-item .work-content .right-content {
    padding: 5px 0px 65px;
  }
}

#hero-video {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: auto;
  max-width: 80%;
}

@media only screen and (max-width: 1300px) {
  .fancybox-container .fancybox-content {
    height: auto;
  }

  .fancybox-container .fancybox-content iframe {
    height: 480px;
    margin: 0 auto;
    width: 960px;
  }
}

@media only screen and (max-width: 1200px) {
  .fancybox-container .fancybox-content {
    height: auto;
  }

  .fancybox-container .fancybox-content iframe {
    height: 371px;
    margin: 0 auto;
    width: 743px;
  }
}

@media only screen and (max-width: 991px) {
  .fancybox-container .fancybox-content {
    width: 98%;
  }
}

@media only screen and (max-width: 767px) {
  .fancybox-container .fancybox-content iframe {
    height: 200px;
    margin: 0 auto;
    width: 300px;
  }
}

.cms-banner-section {
  background-color: #F3F7F7;
  background-image: url("../../images/about-us-banner.jpg");
  background-repeat: no-repeat;
  background-position: top 0px center;
  position: relative;
  z-index: 1;
  background-size: 100% 100%;
  height: calc(100vh - 110px);
  margin: 110px 0px 20px;
}

.cms-banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  mix-blend-mode: overlay;
}

.cms-banner-section::after {
  content: "";
  background-image: url("../../images/about-banner-border.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  bottom: -20px;
  left: 40px;
  height: 20px;
  width: calc(100% - 80px);
  z-index: -1;
}

.cms-banner-section .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  height: auto;
}

.cms-banner-section .read-more-less-text-mobile {
  display: block;
  font-family: Epilogue;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 170%;
  color: #2C423D;
  max-width: 100%;
  margin: 0 auto;
  opacity: 0.7;
}

.cms-banner-section .read-more-less-text-mobile a {
  font-weight: 600;
  color: #2C423D;
  text-transform: capitalize;
}

.cms-banner-section .read-more-less-text-mobile .more {
  display: none;
}

.cms-banner-section .read-more-less-text-mobile.read-more-show .desc-small-text, .cms-banner-section .read-more-less-text-mobile.read-more-show .dots {
  display: none;
}

.cms-banner-section .read-more-less-text-mobile.read-more-show .more {
  display: block;
}

.cms-banner-section .scroll-div {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
}

.cms-banner-section .scroll-down-center {
  text-decoration: none;
  padding: 60px 70px;
  display: block;
  color: #0B182E;
  position: relative;
  z-index: 0;
}

.cms-banner-section .scroll-down-center::after {
  content: "";
  background: #FFFFFF;
  opacity: 0.7;
  filter: blur(100px);
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 156px;
  height: 156px;
  transform: translate(-50%, 0%);
  z-index: -1;
}

.cms-banner-section .scroll-down-center img {
  width: 16px;
  height: auto;
}

.cms-banner-section .banner-center-content {
  text-align: center;
  width: 470px;
  margin: 0 auto;
  padding: 126px 0px;
  position: relative;
}

.cms-banner-section .banner-center-content::before {
  content: "";
  background: #fff;
  opacity: 0.3;
  filter: blur(100px);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.cms-banner-section .banner-center-content .banner-title {
  font-family: "Tenor Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 54px;
  line-height: 125%;
  text-transform: uppercase;
  color: #2C423D;
  margin: 0;
}

.cms-banner-section .banner-center-content .banner-details {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: #2C423D;
  line-height: 170%;
  margin: 25px 0px;
  opacity: 1;
}

.cms-banner-section .banner-center-content .banner-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

@media only screen and (max-width: 1200px) {
  .cms-banner-section {
    height: calc(100vh - 102px);
    margin: 102px 0px 20px;
  }

  .cms-banner-section .banner-center-content {
    width: 50%;
  }
}

@media only screen and (max-width: 991px) {
  .cms-banner-section {
    background-position: 40% center;
    height: calc(100vh - 72px);
    margin: 72px 0px 20px;
  }

  .cms-banner-section .banner-center-content .banner-title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .cms-banner-section {
    background-image: url("../../images/mobile-about-us-banner.jpg");
    background-position: center;
    margin: 0;
    z-index: 0;
  }

  .cms-banner-section::after {
    content: unset;
  }

  .cms-banner-section .wrap {
    box-sizing: border-box;
  }

  .cms-banner-section .scroll-down-center {
    display: none;
  }

  .cms-banner-section .banner-center-content {
    width: 100%;
    display: block;
    text-align: center;
    box-sizing: border-box;
  }

  .cms-banner-section .banner-center-content::before {
    opacity: 0.7;
  }

  .cms-banner-section .banner-center-content .banner-details {
    margin: 25px 0px;
  }

  .cms-banner-section .banner-center-content .banner-title {
    margin: 0;
  }

  .cms-banner-section .banner-center-content .read-more-less-text-mobile {
    color: rgba(11, 24, 46, 0.9);
    opacity: 1;
    margin: 25px 0px;
  }

  .cms-banner-section .banner-center-content .read-more-less-text-mobile span,
  .cms-banner-section .banner-center-content .read-more-less-text-mobile a {
    opacity: 1;
    color: rgba(11, 24, 46, 0.9);
  }

  .cms-banner-section .banner-center-content .banner-buttons {
    display: block;
    width: 100%;
    padding: 0 0px;
  }

  .cms-banner-section .banner-center-content .banner-buttons .btn-green {
    display: block;
    margin: 0px;
  }
}

.our-mission {
  padding: 124px 0px 135px;
}

.our-mission .mission-content {
  padding: 120px 160px;
  background-color: #F3F7F7;
  position: relative;
  margin: 24px;
}

.our-mission .mission-content::before {
  content: "";
  background-image: url(../../images/creation-border.png);
  background-size: 100%;
  position: absolute;
  background-repeat: repeat;
  background-position: center center;
  top: -24px;
  left: -24px;
  height: calc(100% + 48px);
  width: calc(100% + 48px);
  z-index: -1;
}

.our-mission .mission-content .sub-description {
  max-width: 100%;
}

.our-mission .mission-content .button {
  margin-top: 30px;
}

@media only screen and (max-width: 1200px) {
  .our-mission {
    padding: 120px 0px 120px;
  }

  .our-mission .mission-content {
    padding: 100px 80px;
  }
}

@media only screen and (max-width: 991px) {
  .our-mission {
    padding: 100px 0px 100px;
  }

  .our-mission .mission-content {
    padding: 80px 40px;
  }
}

@media only screen and (max-width: 767px) {
  .our-mission {
    padding: 50px 0px;
  }

  .our-mission .container {
    padding: 0;
  }

  .our-mission .mission-content {
    margin: 12px;
    padding: 20px;
  }

  .our-mission .mission-content::before {
    background-size: auto;
    top: -12px;
    left: -12px;
    height: calc(100% + 24px);
    width: calc(100% + 24px);
  }

  .our-mission .button .btn-green {
    margin: 0px;
  }
}

.who-we-serve {
  padding: 0px 0px 150px;
}

.who-we-serve .slick-prev {
  background-color: white;
  border: 2px solid white;
  border-right: none;
  right: 78px;
}

.who-we-serve .slick-prev:hover {
  border: 2px solid #2C423D;
  border-right: none;
}

.who-we-serve .slick-next {
  right: 2px;
}

.who-we-serve .button {
  margin-top: 75px;
}

.who-we-serve .work-slider {
  position: relative;
  z-index: 0;
  margin: 80px 0 0;
}

.who-we-serve .work-slider::before {
  content: "";
  background-image: url(../../images/who-we-serve-border.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom left;
  position: absolute;
  bottom: -24px;
  left: -24px;
  height: calc(100% - 50px);
  width: calc(100% - 90px);
  z-index: 0;
}

.who-we-serve .work-slider::after {
  content: "";
  background-image: url(../../images/who-we-serve-border.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top right;
  position: absolute;
  top: -24px;
  right: -24px;
  height: calc(100% - 24px);
  width: calc(100% - 45px);
  z-index: -1;
}

.who-we-serve .work-slider .work-item {
  position: relative;
  margin: 0px 2px;
}

.who-we-serve .work-slider .work-item img {
  width: 100%;
}

.who-we-serve .work-slider .work-content {
  width: 504px;
  padding: 40px 32px;
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.who-we-serve .work-slider .work-content h5 {
  font-family: "Tenor Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  color: #2C423D;
  margin: 0px 0px 25px;
}

.who-we-serve .work-slider .work-content p {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 175%;
  color: rgba(0, 0, 0, 0.7);
}

@media only screen and (max-width: 1200px) {
  .who-we-serve {
    padding: 0px 0px 120px;
  }

  .who-we-serve .work-slider {
    margin: 80px 24px 24px;
  }

  .who-we-serve .work-slider .work-content {
    padding: 30px 25px;
  }

  .who-we-serve .button {
    margin-top: 65px;
  }
}

@media only screen and (max-width: 991px) {
  .who-we-serve {
    padding: 0px 0px 90px;
  }

  .who-we-serve .work-slider {
    margin: 50px 24px 24px;
  }

  .who-we-serve .work-slider .work-content {
    padding: 22px;
    width: 400px;
  }
}

@media only screen and (max-width: 767px) {
  .who-we-serve {
    padding: 0px 0px 50px;
  }

  .who-we-serve .title-center {
    padding: 0px 20px;
  }

  .who-we-serve .slick-dots {
    bottom: -50px;
  }

  .who-we-serve .button {
    margin-top: 80px;
  }

  .who-we-serve .container {
    padding: 0;
  }

  .who-we-serve .work-slider {
    margin: 30px 0px 0px;
  }

  .who-we-serve .work-slider::before, .who-we-serve .work-slider::after {
    content: unset;
  }

  .who-we-serve .work-slider .work-item {
    position: relative;
    margin: 12px 0px;
    z-index: 0;
  }

  .who-we-serve .work-slider .work-item::before {
    content: "";
    background-image: url(../../images/who-we-serve-border.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom left;
    position: absolute;
    bottom: -12px;
    left: 0;
    height: calc(100% - 0px);
    width: calc(100% - 30px);
    z-index: -1;
  }

  .who-we-serve .work-slider .work-item::after {
    content: "";
    background-image: url(../../images/who-we-serve-border.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    position: absolute;
    top: -12px;
    right: 0;
    height: 100%;
    width: calc(100% - 30px);
    z-index: -1;
  }

  .who-we-serve .work-slider .work-content {
    width: auto;
    text-align: center;
    position: static;
    margin-top: 0;
    justify-content: center;
  }

  .who-we-serve .work-slider .work-content h5 {
    margin-right: 10px;
  }

  .who-we-serve .slick-dots {
    bottom: -55px;
  }
}

.buildlane-story {
  padding: 150px 0px 0px;
}

.buildlane-story .buildlane-content {
  display: flex;
  align-items: center;
}

.buildlane-story .buildlane-content .left-content {
  position: relative;
  max-width: 700px;
  width: 100%;
  box-sizing: border-box;
  margin: 24px 0px;
}

.buildlane-story .buildlane-content .left-content::before {
  content: "";
  background-image: url(../../images/buildlane-story-border.jpg);
  background-size: 100%;
  position: absolute;
  background-repeat: repeat;
  background-position: center center;
  top: -24px;
  left: -24px;
  height: calc(100% + 48px);
  width: calc(100% - 40px);
  z-index: -1;
}

.buildlane-story .buildlane-content .left-content .left-image {
  width: 100%;
  height: auto;
}

.buildlane-story .buildlane-content .left-content .left-image img {
  width: 100%;
}

.buildlane-story .buildlane-content .right-content {
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
  margin-left: 120px;
}

.buildlane-story .buildlane-content .right-content .top-content {
  max-width: 520px;
  margin: 0;
}

.buildlane-story .buildlane-content .right-content .top-content .sub-description {
  display: block;
  text-align: left;
  max-width: 100%;
}

.buildlane-story .buildlane-content .right-content .top-content .button {
  margin-top: 25px;
  text-align: left;
}

.buildlane-story .buildlane-content .right-content .bottom-content {
  max-width: 480px;
  margin: 50px 0 0;
}

.buildlane-story .buildlane-content .right-content .bottom-content .featured-content {
  background: #F3F7F7;
  border-radius: 6px;
  padding: 40px;
}

.buildlane-story .buildlane-content .right-content .bottom-content .featured-content img {
  width: 62px;
}

.buildlane-story .buildlane-content .right-content .bottom-content .featured-content h5 {
  font-family: "Tenor Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  color: #2C423D;
  margin: 20px 0px 18px;
}

.buildlane-story .buildlane-content .right-content .bottom-content .featured-content p {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 175%;
  color: rgba(0, 0, 0, 0.7);
}

.buildlane-story .buildlane-content .right-content .read-more-less-text-mobile {
  display: block;
  font-family: Epilogue;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 170%;
  color: #2C423D;
  max-width: 100%;
  margin: 0 auto;
  opacity: 0.7;
}

.buildlane-story .buildlane-content .right-content .read-more-less-text-mobile a {
  font-weight: 600;
  color: #2C423D;
  text-transform: capitalize;
}

.buildlane-story .buildlane-content .right-content .read-more-less-text-mobile .more {
  display: none;
}

.buildlane-story .buildlane-content .right-content .read-more-less-text-mobile.read-more-show .desc-small-text, .buildlane-story .buildlane-content .right-content .read-more-less-text-mobile.read-more-show .dots {
  display: none;
}

.buildlane-story .buildlane-content .right-content .read-more-less-text-mobile.read-more-show .more {
  display: block;
}

@media only screen and (min-width: 1464px) {
  .buildlane-story .buildlane-content .right-content {
    margin-left: 160px;
    width: 100%;
    max-width: 600px;
  }

  .buildlane-story .buildlane-content .right-content .top-content {
    margin: 0;
    max-width: 100%;
  }

  .buildlane-story .buildlane-content .right-content .bottom-content {
    margin: 0;
    margin-top: 60px;
  }

  .buildlane-story .buildlane-content .left-content {
    width: 100%;
    max-width: 50%;
  }
}

@media only screen and (max-width: 1200px) {
  .buildlane-story {
    padding: 120px 0px 0px;
  }

  .buildlane-story .buildlane-content .right-content {
    margin-left: 40px;
  }

  .buildlane-story .buildlane-content .right-content .top-content {
    max-width: 440px;
    margin: 0;
  }

  .buildlane-story .buildlane-content .right-content .bottom-content {
    margin-top: 30px;
    max-width: 420px;
  }

  .buildlane-story .buildlane-content .right-content .bottom-content .featured-content {
    padding: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .buildlane-story {
    padding: 80px 0px 0px;
  }

  .buildlane-story .buildlane-content {
    justify-content: center;
    flex-direction: column;
  }

  .buildlane-story .buildlane-content .left-content {
    width: 100%;
  }

  .buildlane-story .buildlane-content .right-content {
    margin-top: 50px;
    width: 100%;
    margin-left: 0px;
  }

  .buildlane-story .buildlane-content .right-content .top-content {
    margin: 0 auto;
  }

  .buildlane-story .buildlane-content .right-content .bottom-content {
    margin: 30px auto 0;
  }
}

@media only screen and (max-width: 767px) {
  .buildlane-story {
    padding: 50px 0px 0px;
  }

  .buildlane-story .buildlane-content .right-content {
    width: 100%;
  }

  .buildlane-story .buildlane-content .right-content .top-content {
    padding: 0px 20px;
    width: auto;
    max-width: 100%;
  }

  .buildlane-story .buildlane-content .right-content .top-content .button {
    text-align: center;
  }

  .buildlane-story .buildlane-content .right-content .top-content .button .btn-green {
    margin: 0;
  }

  .buildlane-story .buildlane-content .right-content .top-content .sub-description {
    display: none;
  }

  .buildlane-story .buildlane-content .right-content .bottom-content {
    width: auto;
    max-width: 100%;
    padding: 0px 20px;
  }

  .buildlane-story .buildlane-content .right-content .bottom-content .featured-content {
    padding: 20px;
  }

  .buildlane-story .buildlane-content .left-content {
    margin: 12px 0px;
  }

  .buildlane-story .buildlane-content .left-content::before {
    top: -12px;
    left: -12px;
    height: calc(100% + 24px);
    width: calc(100% - 20px);
  }
}

.people-behind-buildlane {
  padding: 0px 0px 150px;
}

.people-behind-buildlane .behind-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.people-behind-buildlane .behind-content .behind-left-content {
  width: 52%;
}

.people-behind-buildlane .behind-content .behind-left-content .behind-details {
  max-width: 450px;
  margin: 0 90px 0 auto;
}

.people-behind-buildlane .behind-content .behind-left-content .behind-details .sub-description {
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.people-behind-buildlane .behind-content .behind-left-content .behind-details .desktop-button {
  text-align: left;
  margin-top: 25px;
}

.people-behind-buildlane .behind-content .behind-left-content .behind-details .desktop-button .btn-green {
  display: inline-block;
}

.people-behind-buildlane .behind-content .behind-right-content {
  width: 48.6%;
  position: relative;
  margin: 24px 0px 24px 0px;
  box-sizing: border-box;
}

.people-behind-buildlane .behind-content .behind-right-content::before {
  content: "";
  background-image: url(../../images/buildlane-story-border.jpg);
  background-size: 100%;
  position: absolute;
  background-repeat: repeat;
  background-position: center center;
  top: -24px;
  right: 0;
  height: calc(100% + 48px);
  width: calc(100% - 60px);
  z-index: -1;
}

.people-behind-buildlane .behind-content .behind-right-content .people-slider .people-slide .people-image {
  position: relative;
  max-width: 100%;
  margin: 0;
  height: auto;
}

.people-behind-buildlane .behind-content .behind-right-content .people-slider .people-slide .people-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.people-behind-buildlane .behind-content .behind-right-content .people-slider .people-slide .people-image .people-details {
  text-align: left;
  position: absolute;
  bottom: 34px;
  left: 40px;
}

.people-behind-buildlane .behind-content .behind-right-content .people-slider .people-slide .people-image .people-details .name {
  font-family: "Tenor Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  color: white;
  margin-bottom: 12px;
}

.people-behind-buildlane .behind-content .behind-right-content .people-slider .people-slide .people-image .people-details .designation {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 30px;
  color: #04A27A;
}

.people-behind-buildlane .behind-content .behind-right-content .people-slider .slick-prev {
  background-color: white;
}

@media only screen and (min-width: 1464px) {
  .people-behind-buildlane .behind-content .behind-left-content .behind-details {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1200px) {
  .people-behind-buildlane {
    padding: 0px 0px 100px;
  }

  .people-behind-buildlane .behind-content .behind-left-content .behind-details {
    padding: 0px 40px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 991px) {
  .people-behind-buildlane {
    padding: 0px 0px 80px;
  }

  .people-behind-buildlane .behind-content {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .people-behind-buildlane .behind-content .behind-left-content {
    margin-bottom: 50px;
    width: 100%;
  }

  .people-behind-buildlane .behind-content .behind-left-content .behind-details {
    max-width: 100%;
    padding: 0px 40px;
  }

  .people-behind-buildlane .behind-content .behind-right-content {
    width: 100%;
  }

  .people-behind-buildlane .behind-content .behind-right-content::before {
    width: calc(100% - 40px);
  }

  .people-behind-buildlane .behind-content .behind-right-content .people-slider .people-slide .people-image {
    max-width: 100%;
    max-height: 100%;
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  .people-behind-buildlane {
    padding: 0px 0px 60px;
  }

  .people-behind-buildlane .slick-dotted.slick-slider {
    margin-bottom: 0px;
  }

  .people-behind-buildlane .behind-content .mobile-button {
    margin-top: 60px;
  }

  .people-behind-buildlane .behind-content .behind-left-content {
    margin-bottom: 35px;
  }

  .people-behind-buildlane .behind-content .behind-left-content .behind-details {
    padding: 0px 20px;
  }

  .people-behind-buildlane .behind-content .behind-right-content {
    margin: 12px 0px 12px 0px;
  }

  .people-behind-buildlane .behind-content .behind-right-content::before {
    top: -12px;
    right: 0;
    height: calc(100% + 24px);
    width: calc(100% - 20px);
    background-size: cover;
  }

  .people-behind-buildlane .behind-content .behind-right-content .people-slider .people-slide .people-image .people-details {
    bottom: 15px;
    left: 20px;
  }

  .people-behind-buildlane .behind-content .behind-right-content .people-slider .slick-dots {
    bottom: -55px;
  }
}

.faq-page .cms-banner-section {
  background-image: url("../../images/faq-banner.jpg");
  background-position: top 0px center;
  background-size: 100% 100%;
  height: calc(100vh - 110px);
  margin: 110px 0px 20px;
}

.faq-page .cms-banner-section::after {
  content: unset;
}

.faq-page .cms-banner-section::before {
  background: rgba(0, 0, 0, 0.7);
}

.faq-page .cms-banner-section .banner-section-border::before {
  background-image: url("../../images/faq-banner-border.png");
}

.faq-page .cms-banner-section .faq-center {
  text-decoration: none;
  color: #0B182E;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-page .cms-banner-section .faq-center img {
  width: 16px;
  margin-top: 22px;
}

.faq-page .cms-banner-section .banner-center-content {
  text-align: center;
  width: 64%;
  padding: 126px 0px;
}

.faq-page .cms-banner-section .banner-center-content::before {
  opacity: 0.8;
}

.faq-page .cms-banner-section .banner-center-content .banner-title {
  font-family: "Tenor Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 54px;
  line-height: 125%;
  text-transform: uppercase;
  color: #0B182E;
  margin: 0px;
}

.faq-page .cms-banner-section .banner-center-content .banner-details {
  width: 507px;
  margin: 25px auto;
}

@media only screen and (max-width: 1200px) {
  .faq-page .cms-banner-section {
    background-size: cover;
    height: calc(100vh - 102px);
    margin: 102px 0px 20px;
  }

  .faq-page .cms-banner-section .wrap::after {
    left: 40px;
    width: calc(100% - 80px);
  }

  .faq-page .cms-banner-section .banner-center-content {
    width: 86%;
  }
}

@media only screen and (max-width: 991px) {
  .faq-page .cms-banner-section {
    height: calc(100vh - 72px);
    margin: 72px 0px 20px;
  }

  .faq-page .cms-banner-section .banner-center-content .banner-title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .faq-page .cms-banner-section .banner-center-content {
    width: 100%;
    display: block;
    text-align: center;
    box-sizing: border-box;
  }

  .faq-page .cms-banner-section .banner-center-content .banner-details {
    width: auto;
    margin: 25px 20px;
  }

  .faq-page .cms-banner-section .faq-center {
    display: none;
  }

  .faq-page .cms-banner-section .wrap::after {
    content: unset;
  }
}

.faq-page .faq-page-section {
  padding: 148px 0px 88px;
}

.faq-page .faq-page-section .faq-page-heading {
  padding-bottom: 80px;
}

.faq-page .faq-page-section .faq-page-heading span {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 30px;
  letter-spacing: 0.25em;
  color: #AB6E54;
}

.faq-page .faq-page-section .faq-page-heading h4 {
  font-family: "Tenor Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 42px;
  line-height: 59px;
  text-transform: capitalize;
  color: #2C423D;
  margin: 0px;
  padding: 15px 0px 39px;
}

.faq-page .faq-page-section .faq-page-heading p {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 27px;
  color: #2C423D;
  opacity: 0.7;
  width: 577px;
}

.faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover {
  padding-bottom: 70px;
}

.faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover h5 {
  font-family: "Tenor Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 26px;
  color: #2C423D;
  margin: 0px;
  padding: 0px 0px 27px 32px;
  position: relative;
}

.faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover h5::before {
  content: " ";
  position: absolute;
  width: 11px;
  height: 11px;
  background: #2C423D;
  border-radius: 30px;
  top: 6px;
  left: 3px;
}

.faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover .accordion {
  border: none;
  margin-bottom: 12px;
  background: #F3F7F7;
}

.faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover .accordion .group .body-part {
  display: none;
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 27px;
  color: #2C423D;
  opacity: 0.7;
  padding: 0px 30px 30px 30px;
}

.faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover .accordion .group a {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  display: block;
  font-weight: 500;
  font-size: 20px;
  padding: 26px 30px;
  line-height: 26px;
  color: #2C423D;
  text-decoration: none;
}

.faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover .accordion .group a::after {
  content: "+";
  font-size: 38px;
  font-weight: 400;
  cursor: pointer;
  float: right;
}

.faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover .accordion .group .active a::after {
  content: "-";
}

.faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover .active .group a::after {
  content: "-";
}

@media only screen and (max-width: 1300px) {
  .faq-page .faq-page-section {
    padding: 130px 0px 70px;
  }
}

@media only screen and (max-width: 991px) {
  .faq-page .faq-page-section {
    padding: 110px 0px 50px;
  }

  .faq-page .faq-page-section .faq-page-heading {
    padding-bottom: 60px;
  }

  .faq-page .faq-page-section .faq-page-heading h4 {
    font-size: 36px;
    line-height: normal;
    padding: 12px 0px 32px;
  }

  .faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover {
    padding-bottom: 60px;
  }

  .faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover h5 {
    font-size: 26px;
    line-height: 26px;
    padding: 0px 0px 24px 28px;
  }

  .faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover .accordion {
    margin-bottom: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .faq-page .faq-page-section {
    padding: 80px 0px 40px;
  }

  .faq-page .faq-page-section .faq-page-heading {
    padding-bottom: 50px;
  }

  .faq-page .faq-page-section .faq-page-heading h4 {
    font-size: 32px;
    line-height: normal;
    padding: 10px 0px 30px;
  }

  .faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover {
    padding-bottom: 50px;
  }

  .faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover h5 {
    font-size: 24px;
    line-height: normal;
    padding: 0px 0px 22px 26px;
  }

  .faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover .accordion {
    margin-bottom: 12px;
  }

  .faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover .accordion .group a {
    position: relative;
  }

  .faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover .accordion .group a::after {
    margin-right: -15px;
    position: absolute;
    top: 30px;
    right: 30px;
  }
}

@media only screen and (max-width: 576px) {
  .faq-page .faq-page-section .faq-page-heading {
    padding-bottom: 40px;
  }

  .faq-page .faq-page-section .faq-page-heading h4 {
    font-size: 26px;
    line-height: normal;
    padding: 10px 0px 25px;
  }

  .faq-page .faq-page-section .faq-page-heading p {
    width: 100%;
  }

  .faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover {
    padding-bottom: 40px;
  }

  .faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover h5::before {
    top: 9px;
  }

  .faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover .accordion .group a {
    word-break: break-word;
    font-size: 18px;
  }

  .faq-page .faq-page-section .faq-page-accordion .faq-page-accordion-cover .accordion .group a::after {
    margin-right: -22px;
    top: 25px;
  }
}

.show-case-page .cms-banner-section {
  background-image: url("../../images/show-case-banner-img.jpg");
  background-position: top 0px center;
  background-size: 100% 100%;
  height: calc(100vh - 110px);
  margin: 110px 0px 20px;
}

.show-case-page .cms-banner-section::after {
  content: unset;
}

.show-case-page .cms-banner-section::before {
  background: rgba(0, 0, 0, 0.7);
}

.show-case-page .cms-banner-section .banner-section-border::before {
  background-image: url("../../images/show-case-banner-border.png");
}

.show-case-page .cms-banner-section .show-case-center {
  text-decoration: none;
  color: #0B182E;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.show-case-page .cms-banner-section .show-case-center img {
  width: 16px;
  margin-top: 22px;
}

@media only screen and (max-width: 1200px) {
  .show-case-page .cms-banner-section {
    background-size: cover;
    height: calc(100vh - 102px);
    margin: 102px 0px 20px;
  }

  .show-case-page .cms-banner-section .wrap {
    max-width: 950px;
    padding: 0px 20px;
  }

  .show-case-page .cms-banner-section .wrap::after {
    left: 40px;
    width: calc(100% - 80px);
  }
}

@media only screen and (max-width: 991px) {
  .show-case-page .cms-banner-section {
    background-position: 75% center;
    height: calc(100vh - 72px);
    margin: 72px 0px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .show-case-page .cms-banner-section {
    background-position: 65% center;
  }

  .show-case-page .cms-banner-section .wrap::after {
    content: unset;
  }

  .show-case-page .cms-banner-section .show-case-center {
    display: none;
  }
}

.show-case-page .show-case-section {
  padding: 148px 0px 150px;
}

.show-case-page .show-case-section .show-case-grid {
  font-size: 0;
  text-align: center;
  margin: 0 auto;
  display: block;
  max-width: 100%;
  width: 100%;
}

.show-case-page .show-case-section .show-case-grid .show-case-grid-item .show-case-box {
  position: relative;
  box-sizing: border-box;
  display: block;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1200px) {
  .show-case-page .show-case-section .show-case-grid .show-case-grid-item .show-case-box {
    width: 422px;
  }
}

@media only screen and (max-width: 991px) {
  .show-case-page .show-case-section .show-case-grid .show-case-grid-item .show-case-box {
    width: 357px;
  }
}

@media only screen and (max-width: 767px) {
  .show-case-page .show-case-section .show-case-grid .show-case-grid-item .show-case-box {
    width: 100%;
    margin: 0 auto 20px;
  }
}

.show-case-page .show-case-section .show-case-grid .show-case-grid-item .show-case-box img {
  display: block;
  width: 100%;
}

.show-case-page .show-case-section .show-case-grid .show-case-grid-item .show-case-work-content {
  display: flex;
  background: #2C423D;
  padding: 23px 16px 23px 23px;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.show-case-page .show-case-section .show-case-grid .show-case-grid-item .show-case-work-content h5 {
  font-family: "Tenor Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  color: #FFFFFF;
  text-align: center;
  margin: 0px 14px 0px 0px;
}

.show-case-page .show-case-section .show-case-grid .show-case-grid-item .show-case-work-content a {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  outline: none;
  margin-top: 3px;
}

.show-case-page .show-case-section .show-case-grid .show-case-grid-item .show-case-work-content a:hover {
  text-decoration: underline;
  outline: none;
}

.show-case-page .show-case-section .show-case-grid .show-case-grid-item .category-sticky {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 133px;
  height: 52px;
  background: #FFFFFF;
  border-radius: 0px;
}

.show-case-page .show-case-section .show-case-grid .show-case-grid-item .category-sticky a {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 30px;
  display: flex;
  align-items: center;
  text-align: right;
  letter-spacing: 0.25em;
  padding: 11px 21px;
  text-transform: uppercase;
  color: #2C423D;
  text-decoration: none;
}

.show-case-page .show-case-section .show-case-grid .show-case-grid-item .category-sticky a:hover {
  background-color: #2C423D;
  color: #fff;
}

.show-case-page .show-case-section .title-center {
  margin: 0 auto 45px;
  max-width: 100%;
}

.show-case-page .show-case-section .title-center .title {
  font-size: 41px;
  line-height: 57px;
  max-width: 580px;
  margin: 0 auto 30px;
}

.show-case-page .show-case-section .title-center .sub-description {
  max-width: 600px;
}

.show-case-page .show-case-section .show-case-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 30px;
}

@media only screen and (max-width: 1200px) {
  .show-case-page .show-case-section {
    padding: 120px 0px;
  }
}

@media only screen and (max-width: 991px) {
  .show-case-page .show-case-section {
    padding: 100px 0px;
  }

  .show-case-page .show-case-section .container {
    max-width: 900px;
    padding: 0;
  }

  .show-case-page .show-case-section .title-center .title {
    font-size: 34px;
    line-height: normal;
    max-width: 500px;
  }

  .show-case-page .show-case-section .title-center .sub-description {
    max-width: 530px;
  }
}

@media only screen and (max-width: 767px) {
  .show-case-page .show-case-section {
    padding: 50px 0px;
  }

  .show-case-page .show-case-section .container {
    max-width: 700px;
    padding: 0px 20px;
  }

  .show-case-page .show-case-section .title-center {
    margin: 0 auto 20px;
  }

  .show-case-page .show-case-section .show-case-buttons {
    margin-top: 10px;
  }

  .show-case-page .show-case-section .show-case-grid .show-case-grid-item .show-case-work-content {
    padding: 15px 15px;
  }

  .show-case-page .show-case-section .show-case-grid .show-case-grid-item .show-case-work-content h5 {
    font-size: 16px;
    line-height: 20px;
    margin: 0px 10px 0px 0px;
  }
}

.privacy-page .site-header {
  background-color: transparent;
}

.privacy-page .site-header.active {
  background-color: #E7F0EF;
}

.privacy-page .site-header.collapsed {
  background-color: #E7F0EF;
}

.privacy-page .privacy-banner {
  background-color: #F3F7F7;
  padding: 230px 0px 85px;
}

.privacy-page .privacy-content-section {
  padding: 150px 0px;
}

.privacy-page .privacy-content-section .privacy-content .bold-content {
  margin-bottom: 25px;
}

.privacy-page .privacy-content-section .privacy-content .bold-content p {
  font-family: Epilogue;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 30px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #2C423D;
  margin-bottom: 10px;
}

.privacy-page .privacy-content-section .privacy-content p {
  font-family: Epilogue;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 200%;
  color: rgba(44, 66, 61, 0.7);
  margin-bottom: 10px;
}

.privacy-page .privacy-content-section .privacy-content p strong {
  font-weight: bold;
}

.privacy-page .privacy-content-section .privacy-content h3 {
  font-family: Tenor Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 26px;
  color: #2C423D;
  margin: 40px 0px;
}

.privacy-page .privacy-content-section .privacy-content ul li {
  font-family: Epilogue;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 200%;
  color: rgba(44, 66, 61, 0.7);
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}

.privacy-page .privacy-content-section .privacy-content ul li::before {
  background-color: #04A27A;
  border-radius: 100%;
  content: "";
  height: 6px;
  width: 6px;
  position: absolute;
  top: 14px;
  left: 0;
}

@media only screen and (max-width: 1200px) {
  .privacy-page .privacy-content-section {
    padding: 120px 0px;
  }
}

@media only screen and (max-width: 991px) {
  .privacy-page .privacy-content-section {
    padding: 90px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .privacy-page .privacy-content-section {
    padding: 50px 0px;
  }
}

.templates-page .cms-banner-section {
  background-image: url(../../images/templates-image.jpg);
}

.templates-page .cms-banner-section::after {
  content: unset;
}

.templates-page .cms-banner-section::before {
  content: unset;
  background: rgba(0, 0, 0, 0.5);
}

.templates-page .cms-banner-section .banner-center-content::before {
  opacity: 0.7;
}

.templates-page .cms-banner-section .banner-center-content .banner-buttons .video-button {
  display: flex;
  align-items: center;
}

.templates-page .cms-banner-section .banner-center-content .banner-buttons .video-button span {
  display: inline-flex;
  font-size: 14px;
  line-height: 18px;
  height: 16px;
}

.templates-page .cms-banner-section .banner-center-content .banner-buttons .video-button img {
  filter: brightness(0) invert(1);
  margin-left: 8px;
}

.templates-page .cms-banner-section .banner-center-content .banner-buttons .video-button:hover img {
  filter: unset;
}

.templates-page .cms-banner-section .banner-center-content .read-more-less-text-mobile {
  display: none;
}

.templates-page .cms-banner-section .template-scroll-down-center {
  text-decoration: none;
  color: #0B182E;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.templates-page .cms-banner-section .template-scroll-down-center img {
  width: 16px;
  margin-top: 22px;
}

@media only screen and (max-width: 767px) {
  .templates-page .cms-banner-section .template-scroll-down-center {
    display: none;
  }

  .templates-page .cms-banner-section .banner-center-content .banner-title {
    margin: 0;
  }

  .templates-page .cms-banner-section .banner-center-content .banner-buttons {
    margin: 0;
  }

  .templates-page .cms-banner-section .banner-center-content .banner-buttons .video-button {
    justify-content: center;
  }

  .templates-page .cms-banner-section .banner-center-content .read-more-less-text-mobile {
    display: block;
  }
}

.our-template-section {
  padding: 150px 0px;
}

.our-template-section .title-center {
  margin-bottom: 45px;
  max-width: 100%;
}

.our-template-section .title-center .title {
  max-width: 580px;
  margin: 0 auto 30px;
}

.our-template-section .title-center .sub-description {
  max-width: 550px;
}

.our-template-section .templates {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  grid-row-gap: 50px;
  grid-column-gap: 27px;
}

.our-template-section .start-template-slide-inner .start-usf-link {
  font-family: "Tenor Sans", sans-serif;
  font-style: normal;
  display: block;
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  color: #2C423D;
  margin: 30px 0px 9px;
  text-decoration: none;
}

.our-template-section .start-template-slide-inner .start-usf-link:focus, .our-template-section .start-template-slide-inner .start-usf-link:focus-visible {
  outline: none;
}

.our-template-section .start-template-slide-inner .start-usf-link:hover {
  text-decoration: underline;
}

.our-template-section .start-template-slide-inner h6 {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 30px;
  margin: 0px;
  color: rgba(44, 66, 61, 0.5);
}

.our-template-section .start-template-slide-inner a:focus-visible, .our-template-section .start-template-slide-inner a:focus {
  outline: none;
}

.our-template-section .start-template-slide-inner .template-image {
  background-color: #fff;
  margin: 10px;
  position: relative;
}

.our-template-section .start-template-slide-inner .template-image:focus-visible, .our-template-section .start-template-slide-inner .template-image:focus {
  outline: none;
}

.our-template-section .start-template-slide-inner .template-image::before {
  content: "";
  background-image: url(../../images/who-we-serve-border.jpg);
  background-size: contain;
  background-repeat: repeat;
  position: absolute;
  background-position: center center;
  top: -10px;
  left: -10px;
  height: calc(100% + 20px);
  width: calc(100% + 20px);
  z-index: -1;
}

.our-template-section .start-template-slide-inner .template-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.our-template-section .start-template-slide-inner .template-image img:focus-visible, .our-template-section .start-template-slide-inner .template-image img:focus {
  outline: none;
}

@media only screen and (max-width: 1200px) {
  .our-template-section {
    padding: 120px 0px;
  }

  .our-template-section .templates {
    grid-row-gap: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .our-template-section {
    padding: 80px 0px;
  }

  .our-template-section .title-center {
    margin-bottom: 40px;
  }

  .our-template-section .title-center .title {
    margin: 0 auto 20px;
  }
}

@media only screen and (max-width: 767px) {
  .our-template-section {
    padding: 50px 0px;
  }

  .our-template-section .container {
    padding: 0;
  }

  .our-template-section .title-center {
    padding: 0px 20px;
  }

  .our-template-section .title-center .sub-description,
  .our-template-section .title-center .title {
    max-width: 100%;
  }

  .our-template-section .slick-dotted.slick-slider {
    margin-bottom: 50px;
  }

  .our-template-section .start-template-slide-inner {
    margin: 0px 6px;
    text-align: center;
  }

  .our-template-section .start-template-slide-inner .start-usf-link {
    font-size: 20px;
    line-height: 23px;
  }

  .our-template-section .templates {
    display: block;
    grid-template-columns: auto;
    grid-row-gap: unset;
    grid-column-gap: unset;
  }
}

/*# sourceMappingURL=main.css.map */