:root {
  --primaryColor: #ff716c;
  --secondaryColor: #002761;
  --textColor: #e7eaf6;
}

* {
  color: var(--textColor);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

a {
  text-decoration: none;
  display: inline-flex;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  font-family: "Reddit Sans", sans-serif;
}

p {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

ul,
ol {
  margin-bottom: 0;
  padding-left: 0;
}

li {
  list-style: none;
}

html {
  overflow-x: hidden;
}

body {
  background-color: var(--secondaryColor);
}

main {
  padding-top: 97px;
}

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

#header {
  padding: 30.5px 0 10.5px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background-color: var(--secondaryColor);
}

#header .logo-area {
  width: 71.516px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .logo-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .header-left {
  display: flex;
  align-items: center;
  gap: 265px;
}

#header .main-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

#header .header-cta,
#header .main-menu .menu-item a {
  color: var(--textColor);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 24px;
  border: 1.5px solid var(--textColor);
  padding: 11px 17.5px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#header .header-cta::before,
#header .main-menu .menu-item a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--textColor);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

#header .main-menu .menu-item a:hover::before,
#header .header-cta:hover::before {
  transform: translateY(0);
}

#header .header-cta:hover,
#header .main-menu .menu-item:hover a {
  color: var(--secondaryColor);
}

#mobile-menu .mobile-menu-cta.active,
#mobile-menu .mobile-menu .menu-item.current_page_item a,
#header .header-cta.active,
#header .main-menu .menu-item.current_page_item a {
  color: var(--secondaryColor);
  background-color: var(--textColor);
}

#header .mobile-menu-btn {
  width: 46px;
  height: 46px;
  background-image: url(../images/icons/menu.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
  cursor: pointer;
}

#mobile-menu {
  width: 100%;
  position: fixed;
  top: -700px;
  left: 0;
  z-index: 999999;
  background-color: var(--secondaryColor);
  padding: 40px 93px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 12px 16.6px 0 rgba(0, 0, 0, 0.25);
  transition: 0.5s ease;
}

#mobile-menu.show {
  top: 0;
}

#mobile-menu .logo-area {
  display: flex;
  width: 51.083px;
  height: 40px;
  margin-bottom: 53px;
}

#mobile-menu .logo-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#mobile-menu .mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 52px;
}

#mobile-menu .mobile-menu-cta,
#mobile-menu .mobile-menu .menu-item a {
  color: var(--textColor);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  width: 206px;
  height: 46px;
  border-radius: 24px;
  border: 1.5px solid var(--textColor);
  display: flex;
  align-items: center;
  justify-content: center;
}

#mobile-menu .mobile-menu-close {
  margin-top: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  transition: 0.3s ease;
}

#mobile-menu .mobile-menu-close i.close {
  display: flex;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.4 19L5 17.6L10.6 12L5 6.4L6.4 5L12 10.6L17.6 5L19 6.4L13.4 12L19 17.6L17.6 19L12 13.4L6.4 19Z' fill='%23FF716C'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease;
}

#mobile-menu .mobile-menu-close:hover {
  color: var(--textColor);
}

#mobile-menu .mobile-menu-close:hover i.close {
  transform: scale(1.1);
}

body.footer-light #footer {
  background-color: var(--textColor);
  position: relative;
  margin-top: -2px;
}

body.footer-light .newsletter-area input[type="email"]::placeholder,
body.footer-light .newsletter-area input[type="text"]::placeholder,
body.footer-light .newsletter-area .newsletter-title,
body.footer-light #footer .fbr-bottom li,
body.footer-light #footer .fbr-bottom a,
body.footer-light #footer .fbr-bottom p,
body.footer-light #footer .footer-menu .menu-item a {
  color: var(--secondaryColor);
}

#footer .fbr-bottom .address br {
  display: none;
}

body.footer-light .newsletter-area input[type="email"],
body.footer-light .newsletter-area input[type="text"] {
  border-bottom: 1.5px solid var(--secondaryColor);
}

body.footer-light #footer .social-media .sm-item a,
body.footer-light .newsletter-area button,
body.footer-light .newsletter-area input[type="submit"] {
  color: var(--secondaryColor);
  border-color: var(--secondaryColor);
}

body.footer-light #footer .social-media .sm-item a::before {
  background: var(--secondaryColor);
}

body.footer-light #footer .social-media .sm-item a:hover {
  color: var(--textColor);
}

body.footer-light #footer .social-media .sm-item a:hover::before {
  transform: translateY(0);
}

body.footer-light .newsletter-area button::before {
  background-color: var(--secondaryColor);
}

body.footer-light .newsletter-area button:hover {
  color: var(--textColor);
}

/* home */
main.home .s1 {
  position: relative;
}

main.home .s1 .bg-video {
  width: 100%;
  height: 754px;
  position: relative;
}

main.home .s2 .video-mobile {
  width: 100%;
  height: 416px;
  display: none;
}

main.home .s2 .video-mobile video,
main.home .s1 .bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main.home .s2 .video-mobile video {
  object-position: right;
}

main.home .s2 .video-mobile .video-overlay,
main.home .s1 .video-overlay {
  position: absolute;
  inset: 0;
  background: #00276124;
  mix-blend-mode: multiply;
  pointer-events: none;
}

main.home .s1 .hero-content {
  position: absolute;
  top: 82px;
  left: 0;
  width: 100%;
}

main.home .s1 .content-area {
  padding: 67px 0 0 120px;
  border: 2px solid var(--textColor);
  border-top: none;
  position: relative;
}

main.home .s1 .content-area::before {
  content: "";
  background: var(--textColor);
  top: 0;
  left: 0;
  width: 75%;
  height: 2px;
  display: block;
  position: absolute;
}

main.home .s1 .content-area::after {
  content: "";
  background: var(--textColor);
  top: 0;
  right: 0;
  width: 5%;
  height: 2px;
  display: block;
  position: absolute;
}

main.home .s1 .title {
  font-size: 140px;
  color: var(--primaryColor);
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 57px;
}

main.home .s1 .description {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 570px;
}

main.home .s1 .subtitle {
  color: var(--textColor);
  font-size: 55px;
  font-weight: 700;
  line-height: 112%;
  text-transform: uppercase;
}

main.home .s1 p {
  color: var(--textColor);
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
}

main.home .s1 .btn-area {
  padding: 0 20px;
  background-color: var(--secondaryColor);
  width: max-content;
  margin-bottom: -20px;
}

main.home .s2 .cta-btn,
main.home .s1 .cta-btn {
  color: var(--textColor);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 24px;
  border: 1.5px solid var(--textColor);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 241px;
  height: 46px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s ease;
}

main.home .s2 .cta-btn::before,
main.home .s1 .cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--textColor);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

main.home .s2 .cta-btn:hover::before,
main.home .s1 .cta-btn:hover::before {
  transform: translateY(0);
}

main.home .s2 .cta-btn:hover,
main.home .s1 .cta-btn:hover {
  color: var(--secondaryColor);
}

main.home .s2 {
  padding: 225px 0;
}

main.home .s2 .content-row {
  display: flex;
  gap: 285px;
  padding-left: 140px;
}

main.home .s2 .title {
  color: var(--primaryColor);
  font-size: 70px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  max-width: 620px;
}

main.home .s2 .description-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

main.home .s2 .description-area p {
  color: var(--textColor);
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
}

main.home .s3 {
  padding: 334px 0 73px 0;
  background-color: var(--textColor);
}

main.home .s3 .title-area {
  display: flex;
  align-items: flex-end;
  gap: 125px;
  margin-bottom: 130px;
}

main.home .s3 .title-area .title {
  color: var(--primaryColor);
  font-size: 80px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
}

main.home .s3 .title-area .subtitle {
  color: var(--primaryColor);
  font-size: 56px;
  font-weight: 600;
  line-height: 90%;
  text-transform: uppercase;
  max-width: 620px;
  padding-bottom: 10px;
}

main.home .s3 .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

main.home .s3 .location-title {
  color: var(--primaryColor);
  font-size: 40px;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 65px;
  transition: transform 0.5s ease;
}

main.home .s3 .location-title br {
  display: none;
}

main.home .s3 .video-area {
  width: 100%;
  max-width: 874px;
  height: 542px;
  transition: transform 0.8s ease;
  /* transform: translateX(-50%); */
  transform-origin: top center;
  z-index: 3;
  margin-bottom: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

main.home .s3 .video-area .play-btn {
  width: 53px;
  height: 53px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='53' viewBox='0 0 53 53' fill='none'%3E%3Cpath d='M26.4688 3.92871C29.4688 3.92871 32.4402 4.51988 35.2119 5.66797C37.9835 6.81603 40.5018 8.49888 42.623 10.6201C44.7444 12.7415 46.4271 15.2605 47.5752 18.0322C48.7232 20.8039 49.3144 23.7744 49.3145 26.7744C49.3145 31.2928 47.9741 35.7099 45.4639 39.4668C42.9537 43.2235 39.3861 46.1517 35.2119 47.8809C31.0375 49.61 26.4433 50.0622 22.0117 49.1807C17.5803 48.2991 13.5094 46.1236 10.3145 42.9287C7.11954 39.7337 4.94398 35.663 4.0625 31.2314C3.18103 26.8 3.63329 22.2066 5.3623 18.0322C7.09138 13.8579 10.0196 10.2896 13.7764 7.7793C17.5332 5.26904 21.9504 3.92874 26.4688 3.92871ZM25.4521 29.8018L29.4883 26.7744L25.4521 23.7461V29.8018Z' fill='%23FF716C' stroke='white' stroke-width='5.92096'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 2;
  display: none;
}

main.home .s3 .video-area:hover {
  transform: scale(1.2) !important;
}

main.home .s3 .video-area:hover .play-btn {
  display: block;
}

main.home .s3 .video-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

main.home .s3 .hiw-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main.home .s4 .cta-btn,
main.home .s3 .cta-btn {
  color: var(--secondaryColor);
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  width: 241px;
  height: 46px;
  border-radius: 24px;
  border: 1.5px solid var(--secondaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 11;
  overflow: hidden;
  transition: 0.3s ease;
}

main.home .s4 .cta-btn::before,
main.home .s3 .cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondaryColor);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

main.home .s4 .cta-btn:hover::before,
main.home .s3 .cta-btn:hover::before {
  transform: translateY(0);
}

main.home .s4 .cta-btn:hover,
main.home .s3 .cta-btn:hover {
  color: var(--textColor);
}

main.home .s3 .how-it-works {
  padding-top: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main.home .s3 .hiw-title {
  color: var(--primaryColor);
  text-align: center;
  font-family: "Reddit Sans";
  font-size: 80px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

main.home .s3 .hiw-image {
  width: 100%;
  max-width: 686px;
  margin-bottom: 230px;
}

main.home .s3 .hiw-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

main.home .s3 .boxes-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
  position: relative;
  z-index: 10;
  padding-bottom: 100px;
}

main.home .s3 .box-item {
  border-radius: 12px;
  padding: 40px;
}

main.home .s3 .box-item .box-title {
  color: var(--textColor);
  font-size: 60px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
}

main.home .s3 .box-item .subtitle {
  color: var(--textColor);
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 25px;
}

main.home .s3 .box-item:nth-child(1) {
  background: #456da9;
  max-width: 908px;
  transform: rotate(-4.019deg);
}
main.home .s3 .box-item:nth-child(2) {
  background: var(--primaryColor);
  max-width: 883px;
  transform: rotate(5.383deg);
  padding: 40px 80px;
}
main.home .s3 .box-item:nth-child(3) {
  background: var(--secondaryColor);
  max-width: 868px;
  transform: rotate(-4.339deg);
  padding: 40px 100px;
}
main.home .s3 .box-item:nth-child(4) {
  background: #ff716c;
  max-width: 1050.664px;
  transform: rotate(5.383deg);
}
main.home .s3 .box-item:nth-child(5) {
  background: var(--primaryColor);
  max-width: 800px;
  transform: rotate(-4.339deg);
}

main.home .s4 {
  padding: 223px 0 345px 0;
  background-color: var(--secondaryColor);
  position: relative;
  z-index: 12;
}

main.home .s4 .btn-area {
  display: flex;
  justify-content: center;
  width: 100%;
  position: absolute;
  top: -25px;
  left: 0;
  z-index: 9;
  background-color: var(--textColor);
  padding-bottom: 50px;
}

main.home .s4 .title {
  color: var(--primaryColor);
  font-size: 140px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 96px;
  max-width: 1280px;
}

main.home .s4 .title span {
  color: #e7eaf6;
  font-family: "Reddit Sans";
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 90%;
  text-transform: uppercase;
}

main.home .s4 .image-grid {
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

main.home .s4 .image-row {
  display: flex;
  gap: 10px;
  width: 100%;
}

main.home .s4 .image-item {
  flex: 1;
}

main.home .s4 .image-row .image-col {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

main.home .s4 .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main.home .s5 {
  padding: 0 80px;
  display: flex;
  align-items: end;
  justify-content: end;
}

main.home .s5 .title {
  color: var(--primaryColor);
  text-align: right;
  font-size: 140px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  max-width: 1100px;
}

main.home .s5 .social-media {
  display: flex;
  gap: 16px;
  justify-content: end;
}

main.home .s6 {
  padding-top: 130px;
}

main.home .s5 .sm-item a {
  color: var(--textColor);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 24px;
  border: 1.5px solid var(--textColor);
  width: 162px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

main.home .s5 .sm-item a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--textColor);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

main.home .s5 .sm-item a:hover::before {
  transform: translateY(0);
}

main.home .s5 .sm-item a:hover {
  color: var(--secondaryColor);
}

main.home .newsletter-area {
  margin-bottom: 127px;
}

main.home .newsletter-area input[type="email"]::placeholder,
main.home .newsletter-area input[type="text"]::placeholder,
main.home .newsletter-area .newsletter-title {
  color: var(--textColor);
}

main.home .newsletter-area input[type="email"],
main.home .newsletter-area input[type="text"] {
  border-bottom: 1.5px solid var(--textColor);
}

main.home .newsletter-area button,
main.home .newsletter-area input[type="submit"] {
  color: var(--textColor);
  border: 1.5px solid var(--textColor);
}

main.home .newsletter-area button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--textColor);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

main.home .newsletter-area button:hover::before {
  transform: translateY(0);
}

main.home .newsletter-area button:hover,
main.home .newsletter-area input[type="submit"]:hover {
  color: var(--secondaryColor);
}

main.blog .s1 {
  padding: 61px 0 216px 0;
}

main.blog .s1 .content-wrap {
  display: flex;
  align-items: flex-end;
  gap: 175px;
}

main.blog .s1 .title {
  color: var(--primaryColor);
  font-size: 140px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  flex: 1;
}

main.blog .s1 p {
  color: var(--textColor);
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  max-width: 433px;
}

main.blog .s2 .blog-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 10px;
  row-gap: 22px;
  margin-bottom: 105px;
  position: relative;
  z-index: 3;
}

main.blog .s2 .blog-item {
  display: flex;
  flex-direction: column;
}

main.blog .s2 .blog-item .image-area {
  height: 338px;
  width: 100%;
}

main.blog .s2 .blog-item .image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main.blog .s2 .blog-item .item-body {
  padding: 54px 61px 55px 46px;
  background-color: #fff;
}

main.blog .s2 .blog-item .blog-title {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 35px;
}

main.blog .s2 .blog-item .excerpt {
  color: #002761;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

main.blog .s2 .load-more-blogs {
  color: #002761;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 24px;
  border: 1.5px solid #002761;
  height: 46px;
  width: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

main.blog .s2 .load-more-blogs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondaryColor);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
main.blog .s2 .load-more-blogs:hover::before {
  transform: translateY(0);
}
main.blog .s2 .load-more-blogs:hover {
  color: var(--textColor);
}

main.blog .s3 {
  padding-top: 600px;
  background-color: var(--textColor);
  margin-top: -391px;
}

/* Visit Us */
main.visit-us {
  overflow: hidden;
}
main.visit-us .s1 {
  padding: 63px 0 376px 0;
}

main.visit-us .s1 .title {
  color: #ff716c;
  font-size: 140px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 80px;
}

main.visit-us .s1 .content-row {
  display: flex;
  gap: 57px;
}

main.visit-us .s1 .map-area {
  flex: 1.25;
}

main.visit-us .s1 .map-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

main.visit-us .s1 .locations-wrap {
  flex: 1;
}

main.visit-us .s1 .locations-title {
  color: var(--textColor);
  font-size: 70px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 48px;
}

main.visit-us .s1 .location-items {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

main.visit-us .s1 .location-item {
  display: flex;
  gap: 52px;
  padding: 30px 41px;
  border: 1px solid var(--textColor);
}

main.visit-us .s1 .location-item .image-area {
  width: 350px;
  height: 221px;
}

main.visit-us .s1 .location-item .image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main.visit-us .s1 .location-item .location-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

main.visit-us .s1 .location-item .location-detail-title {
  flex: 1;
  color: var(--textColor);
  font-size: 28px;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 25px;
}

main.visit-us .s1 .location-item p {
  color: var(--textColor);
  font-size: 28px;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
}

main.visit-us .s2 {
  background-color: var(--textColor);
}

main.visit-us .s2 .box-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
  top: -220px;
}

main.visit-us .s2 .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -35px;
}

main.visit-us .s2 .wpcf7-form-control-wrap {
  display: flex;
  height: 100%;
}

main.visit-us .s2 .form-box {
  border-radius: 12px;
  background: #456da9;
  padding: 83px 130px 90px 125px;
  transform: rotate(-1deg);
  width: 100%;
  max-width: 1504px;
}

main.visit-us .s2 .form-box .box-title {
  color: #fff;
  font-size: 70px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 70px;
  max-width: 1021px;
  transform: rotate(1deg);
}

main.visit-us .s2 .form-box .form-row {
  display: flex;
  gap: 148px;
}

main.visit-us .s2 .form-box .form-area {
  transform: rotate(1deg);
}

main.visit-us .s2 .form-box .form-col:nth-child(2) .input-wrap {
  height: 100%;
}

main.visit-us .s2 .form-box .form-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 65px;
  height: 191px;
  justify-content: end;
}

main.visit-us .s2 .form-box textarea,
main.visit-us .s2 .form-box input[type="text"],
main.visit-us .s2 .form-box input[type="email"] {
  width: 100%;
  background-color: transparent;
  color: #fff;
  padding: 16px 0;
  border: none;
  outline: none;
  border-bottom: 1px solid #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}

main.visit-us .s2 .form-box textarea::placeholder,
main.visit-us .s2 .form-box input[type="text"]::placeholder,
main.visit-us .s2 .form-box input[type="email"]::placeholder {
  color: #ffffff80;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}

main.visit-us .s2 .form-box .submit-wrap {
  position: relative;
}

main.visit-us .s2 .form-box button {
  color: #456da9;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  width: 184px;
  height: 46px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 23px;
  margin-top: 66px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

main.visit-us .s2 .form-box button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #456da9;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

main.visit-us .s2 .form-box button:hover::before {
  transform: translateY(0);
}

main.visit-us .s2 .form-box button:hover {
  color: #fff;
  background-color: transparent;
}

main.visit-us .s2 .form-box textarea {
  resize: none;
  height: 100%;
}

main.visit-us .wpcf7 form .wpcf7-response-output {
  transform: rotate(1deg);
  border-radius: 5px;
  padding: 12px 20px;
}

body.page-template-visit-us #footer {
  padding: 100px 0 180px 0;
}

/* About */
main.about .s1 {
  padding: 60px 0 505px 0;
}

main.about .s1 .content-wrap {
  display: flex;
  gap: 130px;
}

main.about .s1 .description-area {
  flex: 0.95;
}

main.about .s1 .description-row {
  display: flex;
  gap: 39px;
}

main.about .s1 .description-row p {
  flex: 1;
}

main.about .s1 .description-row .logo-area {
  width: 264.217px;
  height: 108.133px;
}

main.about .s1 .description-row .logo-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

main.about .s1 .title {
  color: var(--primaryColor);
  font-size: 140px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  flex: 1;
}

main.about .s1 .subtitle {
  color: var(--textColor);
  font-size: 70px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 105px;
}

main.about .s1 p {
  color: var(--textColor);
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
}

main.about .s2 {
  background-color: #e7eaf6;
  padding-bottom: 150px;
  background-image: url(../images/about/about-bg.svg);
  background-position: bottom -45px center;
  background-repeat: no-repeat;
  background-size: 80%;
}

main.about .s2 .red-box {
  background-color: var(--primaryColor);
  padding: 103px 223px 147px 223px;
  background-image: url(../images/about/red-box-bg.svg);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto;
  position: relative;
  top: -285px;
}

main.about .s2 .red-box .subtitle {
  color: #002761;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 40px;
}

main.about .s2 .red-box .title {
  color: #002761;
  text-align: center;
  font-size: 70px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
}

main.about .s2 .title-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

main.about .s2 .boxes-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 37.5px;
}

main.about .s2 .boxes-title {
  color: var(--primaryColor);
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  max-width: 1031px;
}

main.about .s2 .box-item {
  color: #e7eaf6;
  text-align: center;
  font-family: "Reddit Sans";
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  width: 100%;
  max-width: 798px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 311px;
  border-radius: 6px;
}

main.about .s2 .box-item:nth-child(1) {
  color: #25272d;
  transform: rotate(4.006deg);
  background: #c1c7e0;
  padding: 10px 115px;
  height: 256px;
}

main.about .s2 .box-item:nth-child(2) {
  transform: rotate(-1.491deg);
  background: #456da9;
  padding: 10px 98px;
  min-height: 280px;
}

main.about .s2 .box-item:nth-child(3) {
  transform: rotate(5.163deg);
  background: #ff716c;
  padding: 10px 105px;
  max-width: 730px;
  min-height: 328px;
}

main.about .s3 {
  background: #c2cdd5;
  padding-right: 75px;
}

main.about .s3 .content-row {
  display: flex;
  align-items: center;
}

main.about .s3 .image-area {
  width: 730px;
}

main.about .s3 .image-area img {
  width: 100%;
  height: 100%;
}

main.about .s3 .content-col {
  flex: 1;
}

main.about .s3 .title {
  color: var(--primaryColor);
  font-size: 120px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 30px;
}

main.about .s3 .subtitle {
  color: #002761;
  font-size: 63.278px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 72px;
}

main.about .s3 .cta-btn {
  color: #002761;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  border: 1.5px solid #002761;
  width: 127px;
  height: 46px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s ease;
}

main.about .s3 .cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondaryColor);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
main.about .s3 .cta-btn:hover::before {
  transform: translateY(0);
}

main.about .s3 .cta-btn:hover {
  color: var(--textColor);
}

/* Agreement Template */
main.agreement > * {
  color: var(--secondaryColor);
}
main.agreement .s1 {
  padding: 95px 0 110px 0;
}

main.agreement .s1 .title {
  color: #ff716c;
  font-size: 140px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 77px;
  max-width: 900px;
}

main.agreement .s1 .spacer {
  height: 86px;
}

main.agreement .s1 h3 {
  color: var(--textColor);
  font-size: 55px;
  font-weight: 700;
  line-height: 112%;
  text-transform: uppercase;
  margin-bottom: 30px;
}

main.agreement .s1 p {
  color: var(--textColor);
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 0.5rem;
}

main.agreement .s1 ul,
main.agreement .s1 ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

main.agreement .s1 li {
  list-style: disc;
  color: var(--secondaryColor);
}

main.agreement .s1 p > a {
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
}

main.agreement .s1 strong,
main.agreement .s1 b {
  font-size: 24px;
  line-height: 140%;
}

/* Buy & Sell & Trade */
main.bst .s1 {
  padding: 60px 0 215px 0;
  background-image: url(../images/bst/bst-hero-1.png);
  background-size: 1920px;
  background-repeat: no-repeat;
  background-position: top -83px right;
  position: relative;
}

main.bst .s1 .image-mobile {
  display: none;
}

main.bst .s1 .custom-container {
  padding: 0 76px 0 80px;
}

main.bst .s1 .content-area {
  padding: 72px 0 0 6.5%;
  border: 1px solid rgba(231, 234, 246, 0.6);
  position: relative;
}

main.bst .s1 .title {
  color: var(--primaryColor);
  font-size: 140px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 64px;
}

main.bst .s1 .description {
  display: flex;
  flex-direction: column;
  gap: 51px;
  max-width: 765px;
}

main.bst .s1 .subtitle {
  color: var(--textColor);
  font-size: 70px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
}

main.bst .s1 p {
  color: var(--textColor);
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
}

main.bst .s1 .btn-area {
  background-color: var(--secondaryColor);
  padding: 0 20px;
  width: max-content;
  margin-bottom: -15px;
}

main.bst .s1 .cta-btn {
  color: var(--textColor);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 24px;
  border: 1.5px solid #e7eaf6;
  width: 241px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s ease;
}

main.bst .s1 .cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--textColor);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

main.bst .s1 .cta-btn:hover::before {
  transform: translateY(0);
}

main.bst .s1 .cta-btn:hover {
  color: var(--secondaryColor);
}

main.bst .s2 {
  padding-top: 220px;
  background-color: var(--textColor);
}

main.bst .s2 .steps-area {
  display: flex;
  gap: 100px;
  margin-bottom: 180px;
  position: relative;
}

main.bst .s2 .steps-area .title-area {
  width: 100%;
  max-width: 675px;
}

main.bst .s2 .steps-area .title {
  color: var(--primaryColor);
  font-size: 70px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 280px;
}

main.bst .s2 .steps-area .cta-btn {
  color: var(--secondaryColor);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 24px;
  border: 1.5px solid var(--secondaryColor);
  width: 241px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s ease;
}
main.bst .s2 .steps-area .cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondaryColor);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
main.bst .s2 .steps-area .cta-btn:hover::before {
  transform: translateY(0);
}
main.bst .s2 .steps-area .cta-btn:hover {
  color: var(--textColor);
}

main.bst .s2 .steps-area .cta-btn-mobile {
  display: none;
}

main.bst .s2 .steps-area .steps-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 58px;
}

main.bst .s2 .step-item {
  display: flex;
  gap: 65px;
}

main.bst .s2 .acc-wrap {
  margin-top: 27px;
}

main.bst .s2 .acc-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
}

main.bst .s2 .acc-item .acc-header {
  display: flex;
  align-self: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  user-select: none;
}

main.bst .s2 .acc-item .acc-label {
  color: #002761;
  font-family: "Reddit Sans";
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

main.bst .s2 .acc-item .acc-icon {
  width: 34.417px;
  height: 34.417px;
  display: flex;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='35' viewBox='0 0 35 35' fill='none'%3E%3Cpath d='M34.4167 19.6667H19.6667V34.4167H14.75V19.6667H0V14.75H14.75V0H19.6667V14.75H34.4167V19.6667Z' fill='%23002761'/%3E%3C/svg%3E");
  background-size: contain;
}

main.bst .s2 .acc-item.show .acc-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='5' viewBox='0 0 35 5' fill='none'%3E%3Cpath d='M34.4167 4.91667H0V0H34.4167V4.91667Z' fill='%23002761'/%3E%3C/svg%3E");
}

main.bst .s2 .acc-item .acc-list {
  margin: 20px 0 10px 0;
}

main.bst .s2 .acc-item .acc-list li {
  color: #002761;
  font-size: 19px;
  font-weight: 400;
  line-height: 140%;
}

main.bst .s2 .acc-item .acc-body {
  height: 0px;
  opacity: 0;
  transition: height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

main.bst .s2 .acc-item.show .acc-body {
  opacity: 1;
}

main.bst .s2 .step-item .heading {
  color: #002761;
  font-family: "Reddit Sans";
  font-size: 42px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  padding-top: 2.5px;
}

main.bst .s2 .step-item .step-details {
  flex: 1;
}

main.bst .s2 .step-item .step-title {
  color: #002761;
  font-family: "Reddit Sans";
  font-size: 42px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 13px;
}

main.bst .s2 .step-item p {
  color: #002761;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
}

main.bst .s2 .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

main.bst .s2 .rb-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 165px;
}

main.bst .s2 .rotate-box {
  border-radius: 12px;
  background: #456da9;
  transform: rotate(-1deg);
  padding: 60px 130px;
  max-width: 1500px;
}

main.bst .s2 .rotate-box .rb-content {
  transform: rotate(1deg);
  display: flex;
  flex-direction: column;
  gap: 58px;
}

main.bst .s2 .rotate-box .rb-title {
  color: #fff;
  font-size: 70px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
}

main.bst .s2 .rotate-box .rb-item {
  display: flex;
  gap: 65px;
}

main.bst .s2 .rotate-box .cta-btn {
  color: #456da9;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  width: 250px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: #fff;
}

main.bst .s2 .rb-item .rb-item-heading {
  color: #fff;
  font-family: "Reddit Sans";
  font-size: 42px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
}

main.bst .s2 .rb-item .rb-item-details {
  flex: 1;
}

main.bst .s2 .rb-item .rb-item-title {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 25px;
}

main.bst .s2 .rb-item p {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
}

main.bst .s2 .content-wrap .title-area {
  display: flex;
  gap: 100px;
}

main.bst .s2 .content-wrap .title {
  color: var(--primaryColor);
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
}

main.bst .s2 .description {
  color: var(--secondaryColor);
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  max-width: 816px;
}

main.bst .s2 .boxes-area {
  position: relative;
  top: -40px;
  z-index: 3;
  width: 100%;
  max-width: 1090px;
}

main.bst .s2 .box-item {
  background-repeat: no-repeat;
  background-size: 100%;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 850px;
  position: relative;
}

main.bst .s2 .box-item.red .box-content {
  transform: rotate(3deg);
}

main.bst .s2 .box-item.dark {
  background-image: url(../images/bst/box-dark.svg);
  background-position: center;
  padding: 75px 145px 50px 250px;
}

main.bst .s2 .box-item.blue {
  background-image: url(../images/bst/box-blue.svg);
  background-position: right center;
  padding: 75px 180px 50px 40px;
  z-index: 3;
  margin-top: -100px;
  left: 135px;
}

main.bst .s2 .box-item.red {
  background-image: url(../images/bst/box-red.svg);
  background-position: left center;
  padding: 75px 100px 75px 220px;
  margin-top: -120px;
  z-index: 3;
}

main.bst .s2 .box-item.blue .box-content {
  transform: rotate(-3deg);
}

main.bst .s2 .box-title {
  color: #fff;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 15px;
}

main.bst .s2 .box-item p {
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  line-height: 140%;
}

main.bst .s3 {
  padding-top: 320px;
  background-color: var(--secondaryColor);
  position: relative;
  margin-top: -150px;
}

main.bst .s3 .box-item {
  display: flex;
  margin-bottom: 165px;
}

main.bst .s3 .box-item .image-area {
  width: 777px;
}

main.bst .s3 .box-item .image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main.bst .s3 .box-item .box-details {
  flex: 1;
  padding: 113px 101px 99px 103px;
  background-color: #fff;
}

main.bst .s3 .box-item .title-area {
  margin-bottom: 68px;
}

main.bst .s3 .box-item .box-title {
  color: var(--secondaryColor);
  font-size: 70px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
}

main.bst .s3 .box-item .cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondaryColor);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

main.bst .s3 .box-item .cta-btn:hover::before {
  transform: translateY(0);
}

main.bst .s3 .box-item .cta-btn {
  color: var(--secondaryColor);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 24px;
  border: 1.5px solid var(--secondaryColor);
  width: 241px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s ease;
}

main.bst .s3 .box-item .cta-btn:hover {
  color: var(--textColor);
}

main.bst .s3 .box-item p {
  color: var(--secondaryColor);
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 61px;
}

main.bst .s3 .bottom-title {
  position: relative;
}

main.bst .s3 .bottom-title .title {
  color: var(--primaryColor);
  font-size: 140px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  max-width: 1350px;
}

main.bst .s3 .bottom-title .cta-btn {
  color: var(--textColor);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  border: 1.5px solid #e7eaf6;
  width: 225px;
  height: 46px;
  position: absolute;
  left: 63.5%;
  bottom: 13px;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s ease;
}

main.bst .s3 .bottom-title .cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--textColor);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
main.bst .s3 .bottom-title .cta-btn:hover::before {
  transform: translateY(0);
}
main.bst .s3 .bottom-title .cta-btn:hover {
  color: var(--secondaryColor);
}

/* CAREEERS */
main.careers .s1 {
  padding: 57px 0 114px 0;
}

main.careers .s1 .content-wrap {
  display: flex;
  gap: 104px;
}

main.careers .s1 .title {
  color: #ff716c;
  font-size: 140px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  max-width: 870px;
}

main.careers .s1 .subtitle {
  color: var(--textColor);
  font-size: 70px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 61px;
}

main.careers .s1 p {
  color: var(--textColor);
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.48px;
}

main.careers .s1 .description-area {
  flex: 1;
}

main.careers .s2 .job-items-wrap {
  display: flex;
  flex-direction: column;
  gap: 67px;
}

main.careers .s2 .job-item {
  background-color: #e7eaf6;
  overflow: hidden;
  transition: all 0.3s ease;
}

main.careers .s2 .job-item .job-item-header {
  padding: 66px 96px 85px 87px;
  display: flex;
  gap: 125px;
  background-color: var(--primaryColor);
}

main.careers .s2 .job-item .title {
  color: var(--textColor);
  font-size: 63px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  min-height: 94px;
}

main.careers .s2 .job-item .subtitle {
  color: var(--secondaryColor);
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 17px;
  flex: 1;
}

main.careers .s2 .job-item .job-title-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

main.careers .s2 .job-item .job-desc-area {
  flex: 1.5;
}

main.careers .s2 .job-item .job-desc-area p {
  color: var(--secondaryColor);
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}

main.careers .s2 .job-item .cta-buttons {
  flex: 0.5;
  display: flex;
  flex-direction: column;
  gap: 38px;
  align-items: center;
  justify-content: center;
}

main.careers .s2 .job-item .job-cta {
  color: var(--secondaryColor);
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 24px;
  border: 1.5px solid var(--secondaryColor);
  width: 241px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s ease;
  position: relative;
}

main.careers .s2 .job-item .job-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondaryColor);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

main.careers .s2 .job-item .job-cta:hover:before {
  transform: translateY(0);
}

main.careers .s2 .job-item .job-cta:hover {
  color: var(--textColor);
}

main.careers .s2 .job-item .job-cta.learn-more {
  color: var(--textColor);
  border: 1.5px solid var(--textColor);
}

main.careers .s2 .job-item .job-cta.learn-more:before {
  background: var(--textColor);
}

main.careers .s2 .job-item .job-cta.learn-more:hover {
  color: var(--primaryColor);
}

main.careers .s2 .job-item .job-item-body {
  height: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

main.careers .s2 .job-item .job-item-content {
  padding: 66px 96px 85px 87px;
  display: flex;
  gap: 80px;
}

main.careers .s2 .job-item.show .job-item-body {
  opacity: 1;
}

main.careers .s2 .job-item .job-item-body .content-area {
  flex: 1;
}

main.careers .s2 .job-item .job-item-body .content-area:nth-last-child(1) {
  flex: 1.05;
}

main.careers .s2 .job-item .job-item-body .content-area ul {
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

main.careers .s2 .job-item .job-item-body .content-area li,
main.careers .s2 .job-item .job-item-body .content-area p {
  color: var(--secondaryColor);
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}

main.careers .s2 .job-item .job-item-body .content-area li {
  list-style: disc;
}

main.careers .s2 .job-item .job-item-body .content-area:nth-last-child(1) li,
main.careers .s2 .job-item .job-item-body .content-area:nth-last-child(1) p {
  color: var(--secondaryColor);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

main.careers .s2 .job-item .job-item-body .content-area p {
  margin-bottom: 1.5rem;
}

main.careers .s2 .job-item .job-item-body .content-area:nth-last-child(1) h6 {
  font-family: "Poppins", sans-serif;
  color: var(--secondaryColor);
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
}

#footer {
  padding: 225px 0 180px 0;
}

.newsletter-area {
  display: flex;
  align-items: flex-end;
  gap: 150px;
  justify-content: space-between;
  margin-bottom: 300px;
}

body.footer-light .newsletter-area .wpcf7 form .wpcf7-response-output {
  color: var(--secondaryColor);
}

.newsletter-area .wpcf7-form-control-wrap {
  flex: 1;
}

.newsletter-area .wpcf7 form .wpcf7-response-output {
  margin: 10px 0;
}

.newsletter-area .newsletter-title {
  font-size: 70px;
  font-weight: 600;
  line-height: 90%;
  letter-spacing: -2.1px;
  text-transform: uppercase;
  max-width: 720px;
}

.newsletter-area .newsletter-form {
  flex: 1;
}

.newsletter-area .form-row {
  display: flex;
  align-items: center;
  gap: 33px;
}

.newsletter-area input[type="email"],
.newsletter-area input[type="text"] {
  padding: 16px 7px;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1.5px solid var(--textColor);
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  width: 100%;
  flex: 1;
}

.newsletter-area input[type="email"]::placeholder,
.newsletter-area input[type="text"]::placeholder {
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  color: #e7eaf680;
}

.newsletter-area button,
.newsletter-area input[type="submit"] {
  color: var(--textColor);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 24px;
  border: 1.5px solid var(--textColor);
  padding: 11px 12.5px;
  transition: 0.3s ease;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 153px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.newsletter-area button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--textColor);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.newsletter-area button:hover::before {
  transform: translateY(0);
}
.newsletter-area button:hover {
  color: var(--secondaryColor);
}

.newsletter-area input[type="submit"]:hover {
  color: var(--secondaryColor);
  background-color: var(--textColor);
}

#footer .footer-bottom {
  display: flex;
  align-items: flex-end;
  gap: 70px;
}

#footer .footer-bottom .fbr-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  margin-bottom: 105px;
}

#footer .footer-logo {
  width: 553.467px;
  height: 183px;
}

#footer .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#footer .footer-menu {
  display: flex;
  align-items: center;
  gap: 38px;
}

#footer .footer-menu .menu-item a {
  color: var(--textColor);
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}

#footer .social-media {
  display: flex;
  align-items: center;
  gap: 16px;
}

#footer .social-media .sm-item a {
  color: #e7eaf6;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 24px;
  border: 1.5px solid #e7eaf6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  z-index: 1;
}

#footer .social-media .sm-item a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--textColor);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

#footer .social-media .sm-item a:hover::before {
  transform: translateY(0);
}

#footer .social-media .sm-item a:hover {
  color: var(--secondaryColor);
}

#footer .fbr-bottom {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  padding-bottom: 7.5px;
}

#footer .fbr-bottom .fbr-col {
  flex: 1;
}

#footer .fbr-bottom .fbr-col:nth-child(1) {
  flex: 0.8;
}

#footer .fbr-bottom li,
#footer .fbr-bottom a,
#footer .fbr-bottom p {
  color: #e7eaf6;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
}

.banner-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

.banner-modal::-webkit-scrollbar {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.banner-modal.show {
  display: flex;
}

.banner-modal .modal-inner {
  width: 90%;
  max-width: 1750px;
  background-image: url(../images/general/banner-1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  height: 602px;
  position: relative;
}

.banner-modal .content-area {
  padding: 120px 0 58px 80px;
}

.banner-modal .title {
  color: #fff;
  font-size: 100.169px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.banner-modal .date-item {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 24px;
}

.banner-modal .modal-icon {
  width: 32px;
  height: 32px;
  display: flex;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.banner-modal .date-item .icon-date {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='33' viewBox='0 0 32 33' fill='none'%3E%3Cpath d='M25.3327 7.16675H6.66602V11.1667H25.3327V7.16675Z' fill='%23E7EAF6'/%3E%3Cpath d='M16.0007 5.8335H25.334C26.0673 5.8335 26.6673 6.4335 26.6673 7.16683V25.8335C26.6673 26.5668 26.0673 27.1668 25.334 27.1668H6.66732C5.93398 27.1668 5.33398 26.5668 5.33398 25.8335V7.16683C5.33398 6.4335 5.93398 5.8335 6.66732 5.8335H16.0007Z' stroke='%23E7EAF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.33398 5.83341V3.16675M22.6673 5.83341V3.16675' stroke='%23E7EAF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.33398 15.1667H22.6673' stroke='%23E7EAF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.33398 20.5H18.6673' stroke='%23E7EAF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.banner-modal .location-item {
  display: flex;
  gap: 26px;
  max-width: 550px;
  margin-bottom: 50px;
}

.banner-modal .location-item .icon-location {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M15.9993 15.3334C15.1153 15.3334 14.2674 14.9822 13.6423 14.3571C13.0172 13.732 12.666 12.8841 12.666 12.0001C12.666 11.116 13.0172 10.2682 13.6423 9.64306C14.2674 9.01794 15.1153 8.66675 15.9993 8.66675C16.8834 8.66675 17.7313 9.01794 18.3564 9.64306C18.9815 10.2682 19.3327 11.116 19.3327 12.0001C19.3327 12.4378 19.2465 12.8713 19.0789 13.2757C18.9114 13.6801 18.6659 14.0476 18.3564 14.3571C18.0468 14.6666 17.6794 14.9122 17.275 15.0797C16.8705 15.2472 16.4371 15.3334 15.9993 15.3334ZM15.9993 2.66675C13.524 2.66675 11.15 3.65008 9.39969 5.40042C7.64935 7.15076 6.66602 9.52473 6.66602 12.0001C6.66602 19.0001 15.9993 29.3334 15.9993 29.3334C15.9993 29.3334 25.3327 19.0001 25.3327 12.0001C25.3327 9.52473 24.3494 7.15076 22.599 5.40042C20.8487 3.65008 18.4747 2.66675 15.9993 2.66675Z' fill='%23E7EAF6'/%3E%3C/svg%3E");
}

.banner-modal .date-item span,
.banner-modal .location-item span {
  color: #e7eaf6;
  font-family: "Reddit Sans";
  font-size: 29.619px;
  font-weight: 700;
  line-height: 112%;
  text-transform: uppercase;
  flex: 1;
}

.banner-modal .cta-btn {
  color: #e7eaf6;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 24px;
  border: 1.5px solid #e7eaf6;
  width: 212px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s ease;
}

.banner-modal .cta-btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--textColor);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.banner-modal .cta-btn:hover:before {
  transform: translateY(0);
}

.banner-modal .cta-btn:hover {
  color: var(--primaryColor);
}

.banner-modal .banner-modal-close {
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50' fill='none'%3E%3Crect width='50' height='50' rx='25' fill='white'/%3E%3Cpath d='M25 27.1293L17.5475 34.5817C17.2687 34.8606 16.9138 35 16.4829 35C16.052 35 15.6971 34.8606 15.4183 34.5817C15.1394 34.3029 15 33.948 15 33.5171C15 33.0862 15.1394 32.7313 15.4183 32.4525L22.8707 25L15.4183 17.5475C15.1394 17.2687 15 16.9138 15 16.4829C15 16.052 15.1394 15.6971 15.4183 15.4183C15.6971 15.1394 16.052 15 16.4829 15C16.9138 15 17.2687 15.1394 17.5475 15.4183L25 22.8707L32.4525 15.4183C32.7313 15.1394 33.0862 15 33.5171 15C33.948 15 34.3029 15.1394 34.5817 15.4183C34.8606 15.6971 35 16.052 35 16.4829C35 16.9138 34.8606 17.2687 34.5817 17.5475L27.1293 25L34.5817 32.4525C34.8606 32.7313 35 33.0862 35 33.5171C35 33.948 34.8606 34.3029 34.5817 34.5817C34.3029 34.8606 33.948 35 33.5171 35C33.0862 35 32.7313 34.8606 32.4525 34.5817L25 27.1293Z' fill='%23002761'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 70px;
  right: 34px;
}

@media (max-width: 1899px) {
  main.bst .s1 {
    background-size: 1700px;
    background-position: top -67px right;
    padding: 60px 0 190px 0;
  }

  main.bst .s1 .custom-container {
    padding: 0 67px 0 80px;
  }

  main.bst .s1 .title {
    font-size: 110px;
  }

  main.bst .s1 .subtitle {
    font-size: 55px;
  }

  main.bst .s1 p {
    font-size: 22px;
  }

  main.bst .s1 .description {
    max-width: 710px;
  }
}

@media (max-width: 1799px) {
  /* Blog */
  main.blog .s1 .title {
    font-size: 96px;
  }

  main.blog .s1 p {
    font-size: 20px;
  }

  main.blog .s1 .content-wrap {
    gap: 145px;
  }

  main.blog .s2 .blog-item .image-area {
    height: 247px;
  }

  main.blog .s3 {
    margin-top: -435px;
    padding-top: 475px;
  }

  /* Visit Us */
  main.visit-us .s1 .title {
    font-size: 120px;
  }

  main.visit-us .s2 .form-box .box-title,
  main.visit-us .s1 .locations-title {
    font-size: 64px;
  }

  main.visit-us .s1 .location-item .image-area {
    width: 240px;
    height: 150px;
  }

  main.visit-us .s1 .map-area {
    flex: 1;
  }

  main.visit-us .s1 .location-item {
    gap: 32px;
    padding: 25px 30px;
  }

  main.visit-us .s1 .location-item .location-detail-title,
  main.visit-us .s1 .location-item p {
    font-size: 24px;
  }

  /* About */
  main.about .s1 {
    padding: 60px 0 420px 0;
  }

  main.about .s1 .title {
    font-size: 100px;
  }

  main.about .s1 .content-wrap {
    gap: 80px;
  }

  main.about .s1 .subtitle {
    font-size: 52px;
    margin-bottom: 50px;
  }

  main.about .s1 p {
    font-size: 20px;
  }

  main.about .s1 .description-row .logo-area {
    width: 200px;
    height: 90px;
  }

  main.about .s2 .red-box .title {
    font-size: 56px;
  }

  main.about .s2 .red-box {
    padding: 100px 120px 140px 120px;
    background-size: 27.5%;
    top: -225px;
  }

  main.about .s3 .image-area {
    width: 40%;
  }

  main.about .s3 .title {
    font-size: 96px;
  }

  main.about .s3 .subtitle {
    font-size: 52px;
  }

  /* BST */
  main.bst .s2 .steps-area .title {
    font-size: 56px;
    margin-bottom: 180px;
  }

  main.bst .s2 .steps-area .title-area {
    max-width: 565px;
  }

  main.bst .s2 .rb-item .rb-item-heading,
  main.bst .s2 .rb-item .rb-item-title,
  main.bst .s2 .step-item .heading,
  main.bst .s2 .step-item .step-title {
    font-size: 32px;
  }

  main.bst .s2 .rotate-box .rb-item,
  main.bst .s2 .step-item {
    gap: 45px;
  }

  main.bst .s2 .step-item p {
    font-size: 20px;
  }

  main.bst .s2 .acc-item .acc-label {
    font-size: 22px;
  }

  main.bst .s2 .acc-item .acc-icon {
    width: 28px;
    height: 28px;
  }

  main.bst .s2 .content-wrap .title,
  main.bst .s2 .rotate-box .rb-title {
    font-size: 56px;
  }

  main.bst .s2 .description {
    font-size: 20px;
    max-width: 650px;
  }

  main.bst .s2 .box-title {
    font-size: 36px;
  }

  main.bst .s2 .box-item p {
    font-size: 28px;
  }

  main.bst .s2 .box-item.red {
    padding: 75px 120px 75px 230px;
  }

  main.bst .s2 .box-item.blue {
    padding: 75px 190px 50px 30px;
  }

  main.bst .s2 .box-item {
    min-height: 430px;
    max-width: 800px;
  }

  main.bst .s2 .boxes-area {
    top: -30px;
    max-width: 910px;
  }

  main.bst .s3 {
    padding-top: 390px;
  }

  main.bst .s3 .bottom-title .cta-btn {
    left: 32.5%;
  }

  main.bst .s3 .box-item .image-area {
    width: 600px;
  }

  main.bst .s3 .box-item .box-details {
    padding: 70px 65px 75px 75px;
  }

  main.bst .s3 .box-item .box-title {
    font-size: 56px;
  }

  main.bst .s3 .box-item p {
    font-size: 22px;
  }

  main.bst .s3 .bottom-title .title {
    font-size: 110px;
  }

  /* Home */
  main.home .s1 .content-area {
    padding: 57px 0 0 65px;
  }

  main.home .s2 .content-row {
    gap: 100px;
    padding-left: 50px;
  }

  main.home .s1 .title {
    font-size: 120px;
  }

  main.home .s1 .bg-video {
    height: 709px;
  }

  main.home .s2 {
    padding: 175px 0;
  }

  main.home .s2 .title {
    font-size: 56px;
    max-width: 520px;
  }

  main.home .s2 .description-area p {
    font-size: 22px;
  }

  main.home .s3 .title-area .subtitle {
    font-size: 48px;
    max-width: 525px;
  }

  main.home .s3 .hiw-title,
  main.home .s3 .title-area .title {
    font-size: 64px;
  }

  main.home .s3 .hiw-image {
    max-width: 500px;
    margin-bottom: 150px;
  }

  main.home .s3 .box-item .subtitle {
    font-size: 32px;
  }

  main.home .s3 .box-item .box-title {
    font-size: 48px;
  }

  main.home .s3 .box-item:nth-child(1) {
    max-width: 770px;
  }

  main.home .s3 .box-item:nth-child(4) {
    max-width: 810px;
  }

  main.home .s4 .title {
    font-size: 120px;
    max-width: 1100px;
  }

  main.home .s5 .title {
    font-size: 120px;
  }

  main.home .s4 .title span {
    font-size: 48px;
  }

  /* Agreement */
  main.agreement .s1 .title {
    font-size: 96px;
  }

  main.agreement .s1 h3 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  main.agreement .s1 b,
  main.agreement .s1 strong,
  main.agreement .s1 li,
  main.agreement .s1 p {
    font-size: 20px;
  }

  main.agreement .s1 .spacer {
    height: 45px;
  }

  .banner-modal .title {
    font-size: 72px;
  }

  .banner-modal .date-item span,
  .banner-modal .location-item span {
    font-size: 24px;
  }

  .banner-modal .modal-inner {
    height: 530px;
  }

  .banner-modal .content-area {
    padding: 91px 0 50px 65px;
  }

  #footer .footer-bottom {
    flex-direction: column;
    align-items: start;
  }

  .newsletter-area {
    gap: 100px;
  }

  .newsletter-area .newsletter-title {
    font-size: 56px;
    max-width: 550px;
  }

  /* Careers */
  main.careers .s1 .title {
    flex: 1;
    font-size: 100px;
  }

  main.careers .s1 .subtitle {
    font-size: 50px;
    margin-bottom: 41px;
  }

  main.careers .s1 p {
    font-size: 20px;
  }

  main.careers .s2 .job-item .job-item-header {
    padding: 56px 76px 65px 67px;
    gap: 70px;
  }

  main.careers .s2 .job-item .job-item-content {
    padding: 56px 76px 65px 67px;
  }

  main.careers .s2 .job-item .title {
    font-size: 48px;
  }

  main.careers .s2 .job-item .subtitle {
    font-size: 22px;
  }
}

@media (max-width: 1599px) {
  main.bst .s1 .title {
    font-size: 96px;
  }

  main.bst .s1 .subtitle {
    font-size: 48px;
  }

  main.bst .s1 p {
    font-size: 20px;
  }

  main.bst .s1 .description {
    max-width: 630px;
  }

  main.bst .s1 {
    background-size: 1500px;
    background-position: top -52px right;
    padding: 60px 0 135px 0;
  }

  main.bst .s1 .custom-container {
    padding: 0 52px 0 65px;
  }

  /* home */
  main.home .s5 .title {
    font-size: 96px;
  }

  main.home .s4 .title {
    font-size: 96px;
    max-width: 910px;
  }

  main.home .s4 .title span {
    font-size: 38px;
  }

  main.home .s4 {
    padding: 200px 0 245px 0;
  }

  .banner-modal .banner-modal-close {
    width: 40px;
    height: 40px;
  }

  .banner-modal .title {
    font-size: 64px;
    margin-bottom: 30px;
  }

  .banner-modal .date-item span,
  .banner-modal .location-item span {
    font-size: 20px;
  }

  .banner-modal .modal-icon {
    width: 24px;
    height: 24px;
  }

  .banner-modal .date-item {
    gap: 17px;
  }

  .banner-modal .location-item {
    gap: 17px;
    max-width: 450px;
    margin-bottom: 35px;
  }

  .banner-modal .modal-inner {
    height: 455px;
  }
}

@media (max-width: 1499px) {
  main.about .s3 .title {
    font-size: 80px;
  }

  main.about .s3 .subtitle {
    font-size: 42px;
  }
}

@media (max-width: 1399px) {
  #header .header-left {
    gap: 120px;
  }

  /* Blog */
  main.blog .s1 .content-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 52px;
  }

  main.blog .s1 p {
    max-width: 695px;
  }

  main.blog .s1 {
    padding: 61px 0 86px 0;
  }

  main.blog .s2 .blog-item .image-area {
    height: 215px;
  }

  main.blog .s2 .blog-item .item-body {
    padding: 38px 40px 35px 30px;
  }

  main.blog .s3 {
    margin-top: -429px;
  }

  /* Visit Us */
  main.visit-us .s1 .title {
    font-size: 96px;
  }

  main.visit-us .s2 .form-box .box-title,
  main.visit-us .s1 .locations-title {
    font-size: 56px;
  }

  main.visit-us .s1 .location-item .location-detail-title,
  main.visit-us .s1 .location-item p {
    font-size: 20px;
  }

  /* About */
  main.about .s1 .title {
    font-size: 80px;
  }

  main.about .s1 .subtitle {
    font-size: 44px;
    margin-bottom: 35px;
  }

  main.about .s1 p {
    font-size: 18px;
  }

  main.about .s2 .red-box .title {
    font-size: 48px;
  }

  main.about .s2 .red-box .subtitle {
    font-size: 22px;
    margin-bottom: 25px;
  }

  main.about .s2 .red-box {
    padding: 90px 95px 125px 95px;
  }

  main.about .s2 .boxes-title {
    font-size: 32px;
    max-width: 845px;
  }

  main.about .s3 .title {
    font-size: 62px;
  }

  main.about .s3 .subtitle {
    font-size: 32px;
    margin-bottom: 45px;
  }

  main.about .s2 .box-item {
    font-size: 24px;
  }

  /* BST */
  main.bst .s1 .content-area {
    padding: 55px 0 0 5%;
  }

  main.bst .s1 .title {
    font-size: 80px;
  }

  main.bst .s1 p {
    font-size: 18px;
  }

  main.bst .s1 .subtitle {
    font-size: 42px;
  }

  main.bst .s1 .description {
    max-width: 550px;
  }

  main.bst .s1 {
    background-size: 1300px;
    background-position: top -37px right;
    padding: 60px 0 99px 0;
  }

  main.bst .s2 {
    padding-top: 150px;
  }

  main.bst .s2 .steps-area {
    flex-direction: column;
    gap: 75px;
  }

  main.bst .s2 .steps-area .title {
    max-width: 800px;
    margin-bottom: 0;
  }

  main.bst .s2 .steps-area .title-area .cta-btn {
    display: none;
  }

  main.bst .s2 .steps-area .cta-btn-mobile {
    display: flex;
  }

  main.bst .s2 .content-wrap .title-area {
    width: 100%;
    flex-direction: column;
    align-items: start;
    gap: 45px;
  }

  main.bst .s2 .description {
    font-size: 20px;
    max-width: 100%;
  }

  main.bst .s2 .rotate-box {
    padding: 60px 90px;
  }

  main.bst .s2 .box-title {
    font-size: 32px;
  }

  main.bst .s2 .box-item p {
    font-size: 24px;
  }

  main.bst .s2 .box-item {
    min-height: 350px;
    max-width: 640px;
  }

  main.bst .s2 .boxes-area {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  main.bst .s2 .box-item.dark {
    padding: 75px 115px 75px 200px;
  }

  main.bst .s2 .box-item.red {
    padding: 75px 70px 75px 170px;
    margin-top: -80px;
  }

  main.bst .s2 .box-item.blue {
    padding: 75px 130px 50px 30px;
    left: 99px;
  }

  main.bst .s3 {
    padding-top: 300px;
  }

  main.bst .s3 .box-item {
    margin-bottom: 125px;
  }

  main.bst .s3 .box-item .box-title {
    font-size: 48px;
  }

  main.bst .s3 .box-item p {
    font-size: 20px;
  }

  main.bst .s3 .bottom-title .title {
    font-size: 96px;
  }

  /* Home */
  main.home .s1 .title {
    font-size: 96px;
  }

  main.home .s1 .subtitle {
    font-size: 48px;
  }

  main.home .s1 p {
    font-size: 22px;
  }

  main.home .s1 .description {
    max-width: 450px;
  }

  main.home .s1 .bg-video {
    height: 646px;
  }

  main.home .s2 .description-area p {
    font-size: 20px;
  }

  main.home .s2 .title {
    font-size: 48px;
    max-width: 402px;
  }

  main.home .s3 {
    padding: 200px 0 50px 0;
  }

  main.home .s3 .hiw-title,
  main.home .s3 .title-area .title {
    font-size: 56px;
  }

  main.home .s3 .title-area .subtitle {
    font-size: 38px;
    max-width: 430px;
    padding-bottom: 5px;
  }

  main.home .s3 .video-area {
    max-width: 700px;
    height: 435px;
    margin-bottom: 100px;
  }

  main.home .s5 .title {
    font-size: 72px;
  }

  /* Careers */
  main.careers .s1 .content-wrap {
    gap: 70px;
  }

  main.careers .s1 .subtitle {
    font-size: 42px;
  }

  main.careers .s1 .title {
    font-size: 90px;
  }

  main.careers .s1 p {
    font-size: 18px;
  }

  main.careers .s2 .job-item .job-item-header {
    flex-wrap: wrap;
    row-gap: 45px;
    column-gap: 70px;
  }

  main.careers .s2 .job-item .title {
    min-height: unset;
  }

  main.careers .s2 .job-item .cta-buttons {
    justify-content: end;
    gap: 28px;
  }

  main.careers .s2 .job-item .job-title-area {
    flex: none;
    width: 100%;
  }

  #footer .fbr-bottom {
    gap: 31px;
    padding-bottom: 0;
  }

  #footer .fbr-bottom .fbr-col:nth-child(1) {
    flex: 0.9;
  }

  #footer .footer-logo {
    width: 450px;
    height: 150px;
  }

  #footer .footer-menu .menu-item a,
  #footer .social-media .sm-item a {
    font-size: 18px;
  }

  #footer .footer-bottom .fbr-top {
    gap: 50px;
  }

  #footer .footer-menu {
    gap: 30px;
  }
}

@media (max-width: 1199px) {
  #header .header-left {
    gap: 90px;
  }

  /* Blog */
  main.blog .s2 .blog-row {
    grid-template-columns: repeat(2, 1fr);
  }

  main.blog .s2 .blog-item .image-area {
    height: 338px;
  }

  main.blog .s3 {
    margin-top: -377px;
  }

  /* Visit Us */
  main.visit-us .s1 .content-row {
    flex-direction: column;
    gap: 50px;
  }

  main.visit-us .s1 .map-area {
    max-width: 520px;
  }

  main.visit-us .s1 .title {
    font-size: 72px;
  }

  main.visit-us .s2 .form-box .box-title,
  main.visit-us .s1 .locations-title {
    font-size: 48px;
  }

  main.visit-us .s1 .location-item .location-detail-title,
  main.visit-us .s1 .location-item p {
    font-size: 28px;
  }

  main.visit-us .s1 .location-item .image-area {
    width: 262px;
    height: 162px;
  }

  main.visit-us .s1 .location-item {
    gap: 23px;
    padding: 27.5px 39px;
  }

  main.visit-us .s1 .location-items {
    gap: 45px;
  }

  main.visit-us .s2 .form-box .form-row {
    gap: 55px;
  }

  main.visit-us .s2 .form-box {
    padding: 73px 80px 80px 90px;
  }

  /* About */
  main.about .s1 {
    padding: 60px 0 220px 0;
  }

  main.about .s1 .title {
    font-size: 72px;
  }

  main.about .s1 .subtitle {
    font-size: 36px;
  }

  main.about .s1 .subtitle br {
    display: none;
  }

  main.about .s1 .content-wrap {
    flex-direction: column;
    gap: 35px;
  }

  main.about .s2 .red-box {
    padding: 80px 95px 110px 95px;
    top: -130px;
  }

  main.about .s2 .red-box .title {
    font-size: 38px;
  }

  main.about .s2 .red-box .subtitle {
    font-size: 20px;
    margin-bottom: 20px;
  }

  /* BST */
  main.bst .s1 .custom-container {
    padding: 0 45px 0 45px;
  }

  main.bst .s1 {
    background-size: 1141px;
    background-position: top -26px right;
    padding: 60px 0 85px 0;
  }

  main.bst .s1 .subtitle {
    font-size: 36px;
  }

  main.bst .s1 .title {
    font-size: 64px;
    margin-bottom: 35px;
  }

  main.bst .s1 .description {
    max-width: 450px;
    gap: 35px;
  }

  main.bst .s2 {
    background-image: none;
  }

  main.bst .s2 .boxes-area {
    max-width: 820px;
  }

  main.bst .s3 .box-item .box-title {
    font-size: 60px;
  }

  main.bst .s3 .bottom-title .title {
    font-size: 86px;
  }

  main.bst .s3 .bottom-title .cta-btn {
    left: 35%;
    bottom: 9px;
  }

  /* Home */
  main.home .s2 .content-row {
    flex-direction: column;
    gap: 35px;
  }

  main.home .s3 {
    padding: 150px 0 50px 0;
  }

  main.home .s3 .hiw-image {
    max-width: 320px;
    margin-bottom: 100px;
  }

  main.home .s3 .title-area {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
  }

  main.home .s3 .title-area .title {
    text-align: center;
  }

  main.home .s3 .title-area .subtitle {
    padding-bottom: 0;
    font-size: 32px;
    text-align: center;
  }

  main.home .s3 .location-title {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
  }

  main.home .s3 .how-it-works {
    padding-top: 145px;
  }

  main.home .s3 .hiw-title,
  main.home .s3 .title-area .title {
    font-size: 48px;
  }

  main.home .s3 .video-area {
    max-width: 530px;
    height: 330px;
    margin-bottom: 50px;
  }

  main.home .s3 .boxes-area {
    gap: 50px;
  }

  main.home .s3 .box-item .subtitle {
    font-size: 24px;
    margin-bottom: 15px;
  }

  main.home .s3 .box-item:nth-child(1) {
    max-width: 480px;
  }

  main.home .s3 .box-item:nth-child(5),
  main.home .s3 .box-item:nth-child(2) {
    max-width: 490px;
  }

  main.home .s3 .box-item:nth-child(3) {
    max-width: 470px;
  }

  main.home .s3 .box-item:nth-child(4) {
    max-width: 550px;
  }

  main.home .s3 .box-item .box-title {
    font-size: 32px;
  }

  main.home .s4 .title {
    font-size: 72px;
    max-width: 690px;
  }

  main.home .s4 .title span {
    font-size: 32px;
  }

  main.home .s5 {
    flex-direction: column-reverse;
    gap: 40px;
  }

  #footer {
    padding: 175px 0 125px 0;
  }

  body.page-template-visit-us #footer {
    padding: 75px 0 125px 0;
  }

  .newsletter-area {
    flex-direction: column;
    align-items: start;
    margin-bottom: 150px;
  }

  .newsletter-area .newsletter-form,
  .newsletter-area .form-row {
    width: 100%;
  }

  /* Careers */
  main.careers .s1 .title {
    font-size: 72px;
  }

  main.careers .s1 .content-wrap {
    flex-direction: column;
  }

  main.careers .s1 .subtitle {
    margin-bottom: 20px;
  }

  main.careers .s2 .job-item .job-item-content {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 991px) {
  #header .mobile-menu-btn {
    display: block;
  }

  #header .header-cta,
  #header .main-menu {
    display: none;
  }

  /* Agreement */
  main.agreement .s1 {
    padding: 45px 0 70px 0;
  }

  main.agreement .s1 .title {
    font-size: 48px;
    margin-bottom: 45px;
  }

  main.agreement .s1 h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  main.agreement .s1 b,
  main.agreement .s1 strong,
  main.agreement .s1 li,
  main.agreement .s1 p {
    font-size: 18px;
  }

  /* Blog */
  main.blog .s1 .title {
    font-size: 60px;
  }

  main.blog .s1 p {
    font-size: 18px;
  }

  main.blog .s2 .blog-row {
    grid-template-columns: repeat(1, 1fr);
  }

  main.blog .s3 {
    margin-top: -355px;
    padding-top: 370px;
  }

  /* Visit Us */
  main.visit-us .s1 {
    padding: 45px 0 350px 0;
  }

  main.visit-us .s1 .title {
    font-size: 60px;
  }

  main.visit-us .s1 .locations-title {
    font-size: 36px;
    line-height: 200%;
  }

  main.visit-us .s1 .location-item {
    flex-direction: column;
  }

  main.visit-us .s2 .form-box .box-title {
    font-size: 36px;
  }

  main.visit-us .s2 .form-box .form-row {
    flex-direction: column;
    gap: 65px;
  }

  /* About */
  main.about .s3 .content-row {
    flex-direction: column;
    gap: 50px;
  }

  main.about .s3 {
    padding-right: 0;
    padding-bottom: 120px;
  }

  main.about .s3 .title {
    font-size: 60px;
    margin-bottom: 72px;
  }

  main.about .s3 .subtitle {
    font-size: 36px;
    margin-bottom: 72px;
  }

  main.about .s3 .content-col {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    max-width: 720px;
  }

  /* BST */
  main.bst .s1 {
    background-size: 1140px;
    background-position: bottom right;
    padding: 60px 0 215px 0;
  }

  main.bst .s1 .btn-area {
    padding: 0;
    background-color: transparent;
  }

  main.bst .s1 .content-area {
    border: none;
    padding: 0;
  }

  main.bst .s1 .custom-container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    max-width: 720px;
  }

  main.bst .s1 .btn-area {
    margin-bottom: 0;
  }

  main.bst .s2 .box-item {
    min-height: 300px;
    max-width: 580px;
  }

  main.bst .s2 .box-item p {
    font-size: 22px;
  }

  main.bst .s2 .box-item.dark {
    padding: 75px 95px 75px 160px;
  }

  main.bst .s2 .box-item.red {
    padding: 75px 80px 75px 145px;
  }

  main.bst .s2 .box-item.blue {
    padding: 75px 110px 50px 30px;
  }

  main.bst .s3 .box-item {
    flex-direction: column;
  }

  main.bst .s3 .box-item .image-area {
    width: 100%;
  }

  main.bst .s3 .box-item .box-details {
    padding: 113px 35px 99px 35px;
  }

  main.bst .s3 .box-item p {
    font-size: 18px;
  }

  main.bst .s3 .bottom-title .cta-btn {
    position: relative;
    bottom: auto;
    left: auto;
  }

  main.bst .s3 .bottom-title .title {
    font-size: 60px;
    margin-bottom: 75px;
  }

  .banner-modal .modal-inner {
    height: max-content;
    background-color: var(--primaryColor);
    padding-bottom: 215px;
    background-position: bottom -20px right;
    background-size: 100%;
  }

  .banner-modal .banner-modal-close {
    top: 25px;
    right: 25px;
  }

  .banner-modal .content-area {
    padding: 50px 45px;
  }

  #footer {
    padding: 125px 0 100px 0;
  }

  body.page-template-visit-us #footer {
    padding: 175px 0 125px 0;
  }

  .newsletter-area {
    margin-bottom: 220px;
    gap: 50px;
  }

  .newsletter-area .newsletter-title {
    font-size: 42px;
    max-width: 470px;
  }

  /* Careers */
  main.careers .s2 .job-item .job-item-header {
    flex-direction: column;
  }

  main.careers .s2 .job-item .cta-buttons {
    flex-direction: row;
    justify-content: start;
  }

  #footer .footer-bottom {
    gap: 56px;
  }

  #footer .footer-bottom .fbr-top {
    flex-direction: column;
    align-items: start;
  }

  #footer .fbr-bottom {
    flex-direction: column;
    gap: 25px;
  }

  #footer .fbr-bottom .address br {
    display: block;
  }

  #footer .fbr-bottom .fbr-col {
    flex: none;
    width: 100%;
    max-width: 214px;
  }

  #footer .footer-bottom .fbr-top {
    margin-bottom: 56px;
    gap: 56px;
  }

  #footer .fbr-bottom .fbr-col:nth-child(1) {
    order: 3;
  }
  #footer .fbr-bottom .fbr-col:nth-child(2) {
    order: 4;
  }
  #footer .fbr-bottom .fbr-col:nth-child(3) {
    order: 1;
  }
  #footer .fbr-bottom .fbr-col:nth-child(4) {
    order: 2;
  }
}

@media (max-width: 820px) {
  main.bst .s1 {
    background-size: 900px;
  }
}

@media (max-width: 768px) {
  main.about {
    overflow-x: hidden;
  }

  main.about .s1 {
    padding: 40px 0 158px 0;
  }

  main.about .s1 .title {
    font-size: 60px;
  }

  main.about .s2 {
    padding-bottom: 180px;
    background-image: url(../images/about/about-bg-mobile.svg);
    background-size: 100%;
    background-position: bottom center;
  }

  main.about .s2 .red-box-container {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }

  main.about .s2 .red-box {
    max-width: 100%;
    padding: 96px 22px 120px 22px;
    background-size: 500px;
    background-position: bottom -360px center;
    top: 0;
  }

  main.about .s2 .red-box .subtitle {
    font-size: 24px;
    margin-bottom: 45px;
  }

  main.about .s2 .red-box .title {
    font-size: 36px;
  }

  main.about .s2 .title-wrap {
    padding-top: 140px;
    margin-bottom: 35px;
  }

  main.about .s2 .box-item:nth-child(1) {
    padding: 10px 45px;
    height: 256px;
    width: 418px;
    max-width: max-content;
  }

  main.about .s2 .box-item:nth-child(2) {
    width: 413px;
    max-width: max-content;
    padding: 10px 40px;
  }

  main.about .s2 .box-item:nth-child(3) {
    width: 418px;
    max-width: max-content;
    padding: 10px 41px;
  }

  main.about .s2 .boxes-title {
    font-size: 24px;
  }

  main.about .s3 .image-area {
    width: 100%;
  }

  body.page-template-visit-us #footer {
    padding: 300px 0 125px 0;
  }

  /* BST */
  main.bst .s1 {
    background-image: none;
    /* padding-bottom: 0; */
  }
  main.bst .s1 .title {
    font-size: 60px;
    margin-bottom: 36px;
  }

  main.bst .s1 .description {
    gap: 36px;
    max-width: 100%;
  }

  /* main.bst .s1 .image-mobile {
    display: block;
    margin-top: -120px;
  } */

  main.bst .s1 .content-area {
    position: relative;
    z-index: 3;
  }

  main.bst .s2 {
    padding-top: 130px;
    overflow: hidden;
    padding-bottom: 100px;
  }

  main.bst .s2 .content-wrap .title,
  main.bst .s2 .rotate-box .rb-title,
  main.bst .s2 .steps-area .title {
    font-size: 42px;
  }

  main.bst .s2 .rb-item .rb-item-heading,
  main.bst .s2 .rb-item .rb-item-title,
  main.bst .s2 .step-item .heading,
  main.bst .s2 .step-item .step-title {
    font-size: 28px;
  }

  main.bst .s2 .steps-area {
    margin-bottom: 120px;
  }

  main.bst .s2 .container {
    padding: 0;
    margin: 0;
    max-width: 100%;
  }

  main.bst .s2 .boxes-area,
  main.bst .s2 .steps-area,
  main.bst .s2 .content-wrap .title-area {
    padding: 0 calc(1.5rem * 0.5);
    max-width: 540px;
    margin-right: auto;
    margin-left: auto;
  }

  main.bst .s2 .rotate-box .rb-content,
  main.bst .s2 .rotate-box {
    transform: rotate(0deg);
  }

  main.bst .s2 .rotate-box {
    border-radius: 0;
    padding: 75px calc(1.5rem * 0.5);
  }

  main.bst .s2 .rotate-box .rb-item,
  main.bst .s2 .step-item {
    gap: 25px;
  }

  main.bst .s2 .rb-wrap {
    margin-bottom: 100px;
  }

  main.bst .s2 .description {
    font-size: 18px;
  }

  main.bst .s2 .boxes-area {
    max-width: 100%;
    top: 20px;
  }

  main.bst .s2 .box-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  main.bst .s2 .box-item p {
    font-size: 28px;
  }

  main.bst .s2 .box-item.red {
    background-image: none;
    background-color: var(--primaryColor);
    border-radius: 12px;
    min-height: auto;
    transform: rotate(3deg);
    padding: 71px 65px 87px 40px;
    margin-top: 65px !important;
  }

  main.bst .s2 .box-item.red .box-content {
    transform: rotate(-3deg);
  }

  main.bst .s2 .box-item.blue {
    background-image: none;
    background-color: #456da9;
    border-radius: 12px;
    transform: rotate(-3deg);
    padding: 73px 42px 105px 50px;
    left: auto;
    top: 110px;
    min-height: auto;
  }

  main.bst .s2 .box-item.blue .box-content {
    transform: rotate(3deg);
  }

  main.bst .s2 .box-item.dark {
    background-image: none;
    background: #002761;
    border-radius: 12px;
    transform: rotate(3deg);
    padding: 70px 55px 95px 60px;
  }

  main.bst .s3 {
    padding-top: 250px;
  }

  /* Home */
  main.home .s1 .bg-video {
    height: 440px;
  }

  main.home .s1 .hero-content {
    top: 0;
  }

  main.home .s1 .content-area {
    padding: 44px 0 0 0;
    border: none;
  }

  main.home .s1 .content-area::after,
  main.home .s1 .content-area::before {
    display: none;
  }

  main.home .s1 .title {
    font-size: 60px;
    margin-bottom: 44px;
  }

  main.home .s1 .description {
    gap: 25px;
    max-width: 345px;
  }

  main.home .s1 .subtitle {
    font-size: 32px;
  }

  main.home .s1 p {
    font-size: 18px;
  }

  main.home .s1 .btn-area {
    padding: 0;
    width: 100%;
    background-color: transparent;
    margin-bottom: 0;
  }

  main.home .s2 {
    padding: 90px 0;
  }

  main.home .s2 .title {
    font-size: 36px;
  }

  main.home .s2 .description-area p {
    font-size: 18px;
  }

  main.home .s2 .content-row {
    padding-left: 0;
    gap: 25px;
  }

  main.home .s2 .description-area {
    gap: 25px;
  }

  main.home .s3 {
    padding: 90px 0 170px 0;
  }

  main.home .s3 .container {
    padding: 0;
    margin: 0;
    max-width: 100%;
  }

  main.home .s3 .mobile-container {
    width: 100%;
    padding-right: calc(1.5rem * 0.5);
    padding-left: calc(1.5rem * 0.5);
    margin-right: auto;
    margin-left: auto;
    max-width: 540px;
  }

  main.home .s3 .video-area {
    max-width: 100%;
    height: 400px;
  }

  main.home .s3 .video-area:hover {
    transform: scale(1) !important;
  }

  main.home .s3 .video-area .play-btn {
    display: block;
  }

  main.home .s3 .title-area {
    align-items: start;
  }

  main.home .s3 .location-title,
  main.home .s3 .title-area .subtitle,
  main.home .s3 .title-area .title {
    text-align: left;
  }

  main.home .s3 .location-title br {
    display: block;
  }

  main.home .s3 .hiw-title,
  main.home .s3 .title-area .title {
    font-size: 42px;
  }

  main.home .s3 .location-title {
    font-size: 24px;
    line-height: 97%;
  }

  main.home .s3 .hiw-image {
    max-width: 357px;
    margin-bottom: 50px;
    margin-top: 15px;
  }

  main.home .s4 {
    padding: 180px 0 110px 0;
  }

  main.home .s4 .title {
    font-size: 60px;
    margin-bottom: 130px;
  }

  main.home .s4 .image-row {
    flex-direction: column;
  }

  main.home .s4 .image-grid {
    padding: 0;
  }

  main.home .s4 .image-item {
    height: 400px;
    flex: none;
  }

  main.home .s4 .image-item img {
    object-position: top;
  }

  main.home .s4 .image-row:nth-last-child(1) .item-xl {
    height: 800px;
  }

  main.home .s5 .social-media {
    flex-direction: column;
  }

  .banner-modal .title {
    font-size: 52px;
  }

  .banner-modal .modal-inner {
    padding-bottom: 65%;
    background-size: 220%;
    width: 95%;
  }

  /* Careers */
  main.careers .s1 .title {
    font-size: 60px;
  }

  main.careers .s1 .subtitle {
    font-size: 32px;
  }

  main.careers .s2 .job-item .cta-buttons {
    flex-direction: column;
    gap: 18px;
    align-items: start;
  }

  main.careers .s2 .job-item .title {
    font-size: 36px;
    min-height: unset;
  }

  main.careers .s2 .job-item .subtitle {
    font-size: 20px;
    margin-bottom: 12px;
  }

  main.careers .s2 .job-item .job-item-header {
    padding: 50px 45px 55px 45px;
    gap: 45px;
  }

  main.careers .s2 .job-item .job-item-content {
    padding: 50px 45px 55px 45px;
  }
}

@media (max-width: 576px) {
  /* Visit Us */
  main.visit-us .s2 {
    background: #456da9;
    transform: rotate(-1deg);
    padding: 139px 55px 140px 75px;
    width: calc(100% + 50px);
    position: relative;
    left: -25px;
    z-index: 3;
  }

  main.visit-us .s2 .box-wrap {
    top: 0;
  }

  main.visit-us .s2 .container {
    margin: 0;
    padding: 0;
  }

  main.visit-us .s2 .form-box {
    padding: 0;
    transform: rotate(1deg);
    background-color: transparent;
  }

  main.visit-us .s2 .form-box .form-area,
  main.visit-us .s2 .form-box .box-title {
    transform: rotate(0deg);
  }

  body.page-template-visit-us #footer {
    margin-top: -30px;
  }

  main.about .s3 .title {
    font-size: 48px;
  }

  /* BST */
  main.bst .s1 .image-mobile {
    margin-top: -50px;
  }

  main.bst .s2 .box-item {
    min-width: 102%;
    max-width: 102%;
  }

  main.bst .s3 .box-container {
    padding: 0;
    margin: 0;
    max-width: 100%;
  }

  /* Home */
  main.home .s1 .bg-video {
    display: none;
  }

  main.home .s1 .hero-content {
    position: relative;
  }

  main.home .s2 {
    padding: 90px 0 0 0;
  }

  main.home .s2 .video-mobile {
    position: relative;
    display: block;
    margin-top: 25px;
  }

  main.home .s3 {
    overflow: hidden;
  }

  main.home .s3 .how-it-works.mobile-container {
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  main.home .s3 .hiw-image {
    padding-right: calc(1.5rem * 0.5);
    padding-left: calc(1.5rem * 0.5);
  }

  main.home .s3 .hiw-title {
    padding-right: calc(1.5rem * 0.5);
    padding-left: calc(1.5rem * 0.5);
    max-width: 100%;
  }

  main.home .s3 .box-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  main.home .s3 .box-item:nth-child(1) {
    padding: 35px 59px 42px 65px;
    min-width: 430px;
    max-width: unset;
    min-height: 334px;
  }

  main.home .s3 .box-item:nth-child(2) {
    padding: 65px 50px 40px 52px;
    width: 442.407px;
    max-width: unset;
    min-height: 357px;
  }

  main.home .s3 .box-item:nth-child(3) {
    padding: 73px 96px 95px 90px;
    width: 432px;
    max-width: unset;
    min-height: 357px;
  }

  main.home .s3 .box-item:nth-child(4) {
    padding: 80px 64px 55px 44px;
    width: 440px;
    max-width: unset;
    min-height: 424px;
  }

  main.home .s3 .box-item .subtitle {
    font-size: 32px;
    margin-bottom: 25px;
  }

  main.home .s3 .box-item .box-title {
    font-size: 32px;
  }

  main.home .s3 .box-item .box-title br {
    display: none;
  }

  main.blog .s1 .title {
    font-size: 42px;
  }

  main.about .s1 .description-row {
    flex-direction: column;
    gap: 25px;
  }

  main.about .s1 .description-row .logo-area {
    width: 234px;
    height: 95px;
  }

  #footer .footer-logo {
    width: 100%;
    max-width: 327px;
    height: 108px;
  }

  #footer .footer-menu {
    flex-direction: column;
    gap: 0;
    align-items: start;
  }

  #footer .social-media {
    flex-direction: column;
    align-items: start;
  }

  #footer .social-media .sm-item a {
    font-size: 20px;
    width: 168px;
    height: 46px;
  }

  .newsletter-area .form-row {
    flex-direction: column;
    align-items: start;
  }

  .banner-modal .title {
    font-size: 32px;
  }

  .banner-modal .date-item span,
  .banner-modal .location-item span {
    font-size: 16px;
  }

  .banner-modal .content-area {
    padding: 35px 45px;
  }

  .banner-modal .modal-inner {
    height: 95%;
    padding-bottom: 0;
  }

  .banner-modal .location-item {
    margin-bottom: 20px;
    gap: 12px;
  }
}
