.model.ham-pop {
  left: 0;
  right: 0;
  height: 100%;
  max-width: 100%;
  transform: translateX(100%);
  background: none;
}
.model.ham-pop::before, .model.ham-pop::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  transform: scale(0);
  transition: 1.2s ease;
}
.model.ham-pop::before {
  background: var(--primary);
  z-index: 0;
}
.model.ham-pop::after {
  background: var(--white);
  transition-delay: 0;
  z-index: 1;
}
.model.ham-pop.is-open {
  transform: translateX(0%);
}
.model.ham-pop.is-open::before, .model.ham-pop.is-open::after {
  transform: scale(90);
  transition: 2s ease;
}
@media only screen and (max-width: 1366px) {
  .model.ham-pop.is-open::before, .model.ham-pop.is-open::after {
    transform: scale(65);
  }
}
@media only screen and (max-width: 991px) {
  .model.ham-pop.is-open::before, .model.ham-pop.is-open::after {
    transform: scale(45);
  }
}
.model.ham-pop.is-open::after {
  transition-delay: 0.2s;
}
.model.ham-pop.is-open .model-body {
  opacity: 1;
  transition-delay: 1.4s;
}
@media only screen and (max-width: 991px) {
  .model.ham-pop.is-open .model-body {
    transition-delay: 0.8s;
  }
}
.model.ham-pop.is-open .model-body .upper-sec li {
  transform: translateY(0px);
  opacity: 1;
  transition-duration: 0.8s;
  transition-property: all;
}
.model.ham-pop.is-open .model-body .bottom-sec .bottom-sec-wrap {
  transition: 1s ease 1.4s;
  transform: translateY(0px) scale(1);
}
@media only screen and (max-width: 991px) {
  .model.ham-pop.is-open .model-body .bottom-sec .bottom-sec-wrap {
    transition-delay: 0.8s;
  }
}
.model.ham-pop .model-body {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
  opacity: 0;
}
.model.ham-pop .model-body .upper-sec {
  flex: 0 1 60%;
  max-height: 60%;
  height: 100%;
  background: var(--white);
  position: relative;
  z-index: 2;
}
.model.ham-pop .model-body .upper-sec ul {
  text-align: center;
  padding-top: 5rem;
}
@media only screen and (max-width: 1024px) {
  .model.ham-pop .model-body .upper-sec ul {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.model.ham-pop .model-body .upper-sec ul li {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  transform: translateY(40px);
  opacity: 0;
  transition-property: none;
}
@media only screen and (max-width: 991px) {
  .model.ham-pop .model-body .upper-sec ul li {
    display: block;
  }
}
.model.ham-pop .model-body .upper-sec ul li:not(:last-child) {
  margin-right: 5.6rem;
}
@media only screen and (max-width: 1024px) {
  .model.ham-pop .model-body .upper-sec ul li:not(:last-child) {
    margin-right: 4rem;
  }
}
@media only screen and (max-width: 991px) {
  .model.ham-pop .model-body .upper-sec ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1.3rem;
  }
}
.model.ham-pop .model-body .upper-sec ul li a {
  display: block;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  position: relative;
  --ico: 15px;
}
@media only screen and (max-width: 1024px) {
  .model.ham-pop .model-body .upper-sec ul li a {
    font-size: 38px;
  }
}
@media only screen and (max-width: 991px) {
  .model.ham-pop .model-body .upper-sec ul li a {
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  .model.ham-pop .model-body .upper-sec ul li a {
    font-size: 28px;
  }
}
.model.ham-pop .model-body .upper-sec ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(100% + 10px);
  height: var(--ico);
  width: var(--ico);
  border-radius: 50%;
  overflow: hidden;
  background: var(--primary);
  transition: 0.5s ease 0.5s;
}
@media only screen and (max-width: 991px) {
  .model.ham-pop .model-body .upper-sec ul li a::after {
    display: none;
  }
}
.model.ham-pop .model-body .upper-sec ul li a::before {
  content: attr(data-title);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  color: var(--primary);
  width: 0;
  transition: 0.5s ease;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .model.ham-pop .model-body .upper-sec ul li a::before {
    display: none;
  }
}
.model.ham-pop .model-body .upper-sec ul li a:hover::before {
  width: 100%;
}
.model.ham-pop .model-body .upper-sec ul li a:hover::after {
  background: var(--black);
}
.model.ham-pop .model-body .upper-sec ul li:nth-child(1) {
  transition-delay: 1.4s;
}
@media only screen and (max-width: 991px) {
  .model.ham-pop .model-body .upper-sec ul li:nth-child(1) {
    transition-delay: 0;
  }
}
.model.ham-pop .model-body .upper-sec ul li:nth-child(2) {
  transition-delay: 1.8s;
}
@media only screen and (max-width: 991px) {
  .model.ham-pop .model-body .upper-sec ul li:nth-child(2) {
    transition-delay: 0;
  }
}
.model.ham-pop .model-body .upper-sec ul li:nth-child(3) {
  transition-delay: 2.2s;
}
@media only screen and (max-width: 991px) {
  .model.ham-pop .model-body .upper-sec ul li:nth-child(3) {
    transition-delay: 0;
  }
}
.model.ham-pop .model-body .upper-sec ul li:nth-child(4) {
  transition-delay: 2.6s;
}
@media only screen and (max-width: 991px) {
  .model.ham-pop .model-body .upper-sec ul li:nth-child(4) {
    transition-delay: 0;
  }
}
.model.ham-pop .model-body .upper-sec ul li:nth-child(5) {
  transition-delay: 3s;
}
@media only screen and (max-width: 991px) {
  .model.ham-pop .model-body .upper-sec ul li:nth-child(5) {
    transition-delay: 0;
  }
}
.model.ham-pop .model-body .bottom-sec {
  flex: 0 1 40%;
  max-height: 40%;
  height: 100%;
  background: var(--white);
  position: relative;
  z-index: 2;
}
.model.ham-pop .model-body .bottom-sec .bottom-sec-wrap {
  background: var(--primary);
  padding-top: 12rem;
  height: 100%;
  transform: translateY(100%) scale(0.5);
}
@media only screen and (max-width: 1366px) {
  .model.ham-pop .model-body .bottom-sec .bottom-sec-wrap {
    padding-top: 8rem;
  }
}
@media only screen and (max-width: 767px) {
  .model.ham-pop .model-body .bottom-sec .bottom-sec-wrap {
    padding-top: 6rem;
  }
}
.model.ham-pop .model-body .bottom-sec .sail-ico {
  --size: 253px;
  height: var(--size);
  width: var(--size);
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: calc(100% - 7rem);
  z-index: 2;
}
@media only screen and (max-width: 1366px) {
  .model.ham-pop .model-body .bottom-sec .sail-ico {
    --size: 185px;
    bottom: calc(100% - 5rem);
  }
}
@media only screen and (max-width: 767px) {
  .model.ham-pop .model-body .bottom-sec .sail-ico {
    --size: 115px;
    bottom: calc(100% - 3rem);
  }
}
.model.ham-pop .model-body .bottom-sec .sail-ico img, .model.ham-pop .model-body .bottom-sec .sail-ico video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.model.ham-pop .model-body .bottom-sec .btm-wrp {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}
@media only screen and (max-width: 767px) {
  .model.ham-pop .model-body .bottom-sec .btm-wrp {
    grid-template-columns: 100%;
    text-align: center;
    gap: 1rem;
  }
}
.model.ham-pop .model-body .bottom-sec .btm-wrp .social-icons a {
  display: inline-block;
  vertical-align: middle;
}
.model.ham-pop .model-body .bottom-sec .btm-wrp .social-icons a:not(:last-child) {
  margin-right: 1.2rem;
}
.model.ham-pop .model-body .bottom-sec .btm-wrp .social-icons a path {
  transition: 0.5s ease;
}
.model.ham-pop .model-body .bottom-sec .btm-wrp .social-icons a:hover path {
  fill: var(--black);
}
.model.ham-pop .model-body .bottom-sec .btm-wrp ul {
  text-align: center;
}
.model.ham-pop .model-body .bottom-sec .btm-wrp ul li {
  display: inline-block;
  vertical-align: middle;
}
.model.ham-pop .model-body .bottom-sec .btm-wrp ul li:not(:last-child) {
  margin-right: 2.6rem;
}
.model.ham-pop .model-body .bottom-sec .btm-wrp ul li a {
  color: var(--white);
}
.model.ham-pop .model-body .bottom-sec .btm-wrp ul li a:hover {
  color: var(--black);
}
.model.ham-pop .model-body .bottom-sec .btm-wrp .email-div {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .model.ham-pop .model-body .bottom-sec .btm-wrp .email-div {
    text-align: center;
  }
}
.model.ham-pop .model-body .bottom-sec .btm-wrp .email-div a {
  color: var(--white);
}
.model.ham-pop .model-body .bottom-sec .btm-wrp .email-div a:hover {
  color: var(--black);
}
.model.enquire-pop {
  max-width: 100%;
  z-index: 9;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.model.enquire-pop.is-open {
  transform: translateY(0%);
}
.model.enquire-pop .container {
  height: 100%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1536px) {
  .model.enquire-pop .container {
    display: block;
  }
}
.model.enquire-pop .model-body {
  min-height: 100%;
  height: 100%;
  overflow-y: auto;
  --padding: 5rem;
}
.model.enquire-pop .model-body::-webkit-scrollbar {
  width: 8px;
  background: none;
  height: 8px;
}
.model.enquire-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.model.enquire-pop .model-body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
}
@media only screen and (max-width: 675px) {
  .model.enquire-pop .model-body {
    --padding: 2rem;
  }
}
.model.enquire-pop .model-body .flex {
  padding: var(--padding) 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.model.enquire-pop .model-body .flex .colA, .model.enquire-pop .model-body .flex .colB {
  position: sticky;
  height: 100%;
  top: var(--padding);
}
@media only screen and (max-width: 991px) {
  .model.enquire-pop .model-body .flex .colA, .model.enquire-pop .model-body .flex .colB {
    position: unset;
  }
}
.model.enquire-pop .model-body .flex .colA {
  flex: 0 1 40%;
}
@media only screen and (max-width: 991px) {
  .model.enquire-pop .model-body .flex .colA {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
.model.enquire-pop .model-body .flex .colA .heading {
  max-width: 360px;
}
@media only screen and (max-width: 991px) {
  .model.enquire-pop .model-body .flex .colA .heading {
    order: 2;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 675px) {
  .model.enquire-pop .model-body .flex .colA .heading {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  .model.enquire-pop .model-body .flex .colA .heading h3 {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 675px) {
  .model.enquire-pop .model-body .flex .colA .heading h3 {
    max-width: 258px;
  }
}
.model.enquire-pop .model-body .flex .colA .heading p {
  margin-top: 15px;
  color: var(--text);
}
@media only screen and (max-width: 675px) {
  .model.enquire-pop .model-body .flex .colA .heading p {
    font-size: 14px;
    line-height: 1.2;
    max-width: 285px;
    margin-left: auto;
    margin-right: auto;
  }
}
.model.enquire-pop .model-body .flex .colA .ico-vec {
  margin-top: 4rem;
  max-width: 300px;
}
@media only screen and (max-width: 991px) {
  .model.enquire-pop .model-body .flex .colA .ico-vec {
    order: 1;
    margin-top: 0;
    margin-bottom: 2rem;
    max-width: 125px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 675px) {
  .model.enquire-pop .model-body .flex .colA .ico-vec {
    max-width: 75px;
    margin-bottom: 12px;
  }
}
.model.enquire-pop .model-body .flex .colA .ico-vec img {
  width: 100%;
  height: auto;
}
.model.enquire-pop .model-body .flex .colB {
  flex: 1;
  padding-left: 10rem;
}
@media only screen and (max-width: 1024px) {
  .model.enquire-pop .model-body .flex .colB {
    padding-left: 4rem;
  }
}
@media only screen and (max-width: 991px) {
  .model.enquire-pop .model-body .flex .colB {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    padding-left: 0;
  }
}
.model.enquire-pop .model-body .flex .colB .form {
  --gaptb: 20px;
}
.model.enquire-pop .model-body .flex .colB .form .service-select h5 {
  color: var(--labelbefore);
  font-size: var(--labelfontbefore);
}
.model.enquire-pop .model-body .flex .colB .form .service-select ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  cursor: default;
  grid-gap: 12px 20px;
  margin-top: 12px;
}
.model.enquire-pop .model-body .flex .colB .form .service-select ul li {
  position: relative;
  --checkbox: 15px;
  display: flex;
  flex-wrap: wrap;
  line-height: 0;
}
.model.enquire-pop .model-body .flex .colB .form .service-select ul li:has(input:checked) span {
  background: var(--primary);
}
.model.enquire-pop .model-body .flex .colB .form .service-select ul li:has(input:checked) span::before {
  transform: scale(1);
  opacity: 1;
}
.model.enquire-pop .model-body .flex .colB .form .service-select ul li:has(input:checked) p {
  color: var(--black);
}
.model.enquire-pop .model-body .flex .colB .form .service-select ul li input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
}
.model.enquire-pop .model-body .flex .colB .form .service-select ul li span {
  flex: 0 1 auto;
  margin-top: 3px;
  display: inline-block;
  width: var(--checkbox);
  height: var(--checkbox);
  border-radius: 3px;
  overflow: hidden;
  background: #D9D9D9;
  position: relative;
  pointer-events: none;
}
.model.enquire-pop .model-body .flex .colB .form .service-select ul li span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: url(../../icon/tick.svg) no-repeat;
  background-size: calc(var(--checkbox) / 2);
  background-position: 50% 50%;
  transform: scale(0.8);
  opacity: 0;
}
.model.enquire-pop .model-body .flex .colB .form .service-select ul li p {
  flex: 1;
  padding-left: 1rem;
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
  color: var(--text);
}
.model.laptop-pop {
  max-width: 100%;
  z-index: 9;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.model.laptop-pop.is-open {
  transform: translateY(0%);
}
.model.laptop-pop .container {
  height: 100%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1536px) {
  .model.laptop-pop .container {
    display: block;
  }
}
.model.laptop-pop .model-body {
  min-height: 100%;
  height: 100%;
  overflow-y: auto;
  --padding: 5rem;
}
.model.laptop-pop .model-body::-webkit-scrollbar {
  width: 8px;
  background: none;
  height: 8px;
}
.model.laptop-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.model.laptop-pop .model-body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
}
@media only screen and (max-width: 675px) {
  .model.laptop-pop .model-body {
    --padding: 2rem;
  }
}
.model.laptop-pop .model-body .flex {
  padding: var(--padding) 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.model.laptop-pop .model-body .flex .colA, .model.laptop-pop .model-body .flex .colB {
  position: sticky;
  height: 100%;
  top: var(--padding);
}
@media only screen and (max-width: 991px) {
  .model.laptop-pop .model-body .flex .colA, .model.laptop-pop .model-body .flex .colB {
    position: unset;
  }
}
.model.laptop-pop .model-body .flex .colA {
  flex: 0 1 40%;
}
@media only screen and (max-width: 991px) {
  .model.laptop-pop .model-body .flex .colA {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
.model.laptop-pop .model-body .flex .colA .heading {
  max-width: 360px;
}
@media only screen and (max-width: 991px) {
  .model.laptop-pop .model-body .flex .colA .heading {
    order: 2;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 675px) {
  .model.laptop-pop .model-body .flex .colA .heading {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  .model.laptop-pop .model-body .flex .colA .heading h3 {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 675px) {
  .model.laptop-pop .model-body .flex .colA .heading h3 {
    max-width: 258px;
  }
}
.model.laptop-pop .model-body .flex .colA .heading p {
  margin-top: 15px;
  color: var(--text);
}
@media only screen and (max-width: 675px) {
  .model.laptop-pop .model-body .flex .colA .heading p {
    font-size: 14px;
    line-height: 1.2;
    max-width: 285px;
    margin-left: auto;
    margin-right: auto;
  }
}
.model.laptop-pop .model-body .flex .colA .ico-vec {
  margin-top: 4rem;
  max-width: 300px;
}
@media only screen and (max-width: 991px) {
  .model.laptop-pop .model-body .flex .colA .ico-vec {
    order: 1;
    margin-top: 0;
    margin-bottom: 2rem;
    max-width: 125px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 675px) {
  .model.laptop-pop .model-body .flex .colA .ico-vec {
    max-width: 75px;
    margin-bottom: 12px;
  }
}
.model.laptop-pop .model-body .flex .colA .ico-vec img {
  width: 100%;
  height: auto;
}
.model.laptop-pop .model-body .flex .colB {
  flex: 1;
  padding-left: 10rem;
}
@media only screen and (max-width: 1024px) {
  .model.laptop-pop .model-body .flex .colB {
    padding-left: 4rem;
  }
}
@media only screen and (max-width: 991px) {
  .model.laptop-pop .model-body .flex .colB {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    padding-left: 0;
  }
}
.model.laptop-pop .model-body .flex .colB .form {
  --gaptb: 20px;
}
.model.laptop-pop .model-body .flex .colB .form .service-select h5 {
  color: var(--labelbefore);
  font-size: var(--labelfontbefore);
}
.model.laptop-pop .model-body .flex .colB .form .service-select ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  cursor: default;
  grid-gap: 12px 20px;
  margin-top: 12px;
}
.model.laptop-pop .model-body .flex .colB .form .service-select ul li {
  position: relative;
  --checkbox: 15px;
  display: flex;
  flex-wrap: wrap;
  line-height: 0;
}
.model.laptop-pop .model-body .flex .colB .form .service-select ul li:has(input:checked) span {
  background: var(--primary);
}
.model.laptop-pop .model-body .flex .colB .form .service-select ul li:has(input:checked) span::before {
  transform: scale(1);
  opacity: 1;
}
.model.laptop-pop .model-body .flex .colB .form .service-select ul li:has(input:checked) p {
  color: var(--black);
}
.model.laptop-pop .model-body .flex .colB .form .service-select ul li input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
}
.model.laptop-pop .model-body .flex .colB .form .service-select ul li span {
  flex: 0 1 auto;
  margin-top: 3px;
  display: inline-block;
  width: var(--checkbox);
  height: var(--checkbox);
  border-radius: 3px;
  overflow: hidden;
  background: #D9D9D9;
  position: relative;
  pointer-events: none;
}
.model.laptop-pop .model-body .flex .colB .form .service-select ul li span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: url(../../icon/tick.svg) no-repeat;
  background-size: calc(var(--checkbox) / 2);
  background-position: 50% 50%;
  transform: scale(0.8);
  opacity: 0;
}
.model.laptop-pop .model-body .flex .colB .form .service-select ul li p {
  flex: 1;
  padding-left: 1rem;
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
  color: var(--text);
}

.model.video-pop {
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4784313725);
  z-index: 9;
  max-width: 100%;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.model.video-pop.is-open {
  transform: translateY(0%);
}
.model.video-pop .close:not(.btn) {
  bottom: calc(100% + 20px);
  top: auto;
  right: -40px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 675px) {
  .model.video-pop .close:not(.btn) {
    right: 0;
  }
}
.model.video-pop .close:not(.btn) svg {
  height: 35%;
  width: 35%;
}
.model.video-pop .close:not(.btn) path {
  stroke-width: 2;
  stroke: var(--white);
}
.model.video-pop .model-body {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 675px) {
  .model.video-pop .model-body {
    max-width: 95%;
  }
}
.model.video-pop .model-body iframe {
  width: 100%;
  aspect-ratio: 1.9;
  border: 2px solid var(--white);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

:root {
  --headerpadding: 10px;
  --festivbnr: 0px;
  --headerheight: 95px;
  --finalheaderheight: calc(var(--headerheight) + var(--festivbnr));
  --headerfixed: 75px;
  --footerstrip: 38px;
  --servicestrip: 52px;
  --hamsize: 54px;
  --primary: #ED2224;
  --text: #666666;
  --white: #FFFFFF;
  --black: #000000;
  --gray: #EFEFEF;
  --container: 1280px;
  --containerfluid: 2rem;
}
@media only screen and (max-width: 1152px) {
  :root {
    --containerfluid: 1rem;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --headerheight: 70px;
    --containerfluid: 15px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --hamsize: 45px;
    --headerheight: 60px;
    --headerfixed: 60px;
  }
}
@media only screen and (max-width: 320px) {
  :root {
    --containerfluid: 10px;
  }
}

body::-webkit-scrollbar {
  width: 10px;
  background: var(--black);
}
@media only screen and (max-width: 675px) {
  body::-webkit-scrollbar {
    width: 0;
  }
}
body::-webkit-scrollbar-track {
  box-shadow: none;
}
body::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
body.overflow-hidden {
  overflow: hidden;
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}
body.overflow-hidden header {
  width: calc(100% - 10px);
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-size: 16px;
  line-height: 1.5;
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

b {
  font-weight: 600;
}

small {
  font-size: 14px;
  font-weight: 500;
}

.text-uppercase {
  text-transform: uppercase;
}

a[href] {
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s ease;
}
a[href].logo {
  display: block;
  line-height: 0;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1300px) {
  .container {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 345px) {
  .container {
    padding: 0 13px;
  }
}
@media only screen and (max-width: 320px) {
  .container {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 {
    padding-right: 0;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 .heading {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 345px) {
  .container.container2 .heading {
    padding-right: 13px;
  }
}
@media only screen and (max-width: 320px) {
  .container.container2 .heading {
    padding-right: 10px;
  }
}

.container-fluid {
  padding: 0 var(--containerfluid);
  display: block;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h1 {
  font-size: 48px;
  line-height: 1.17;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 40px;
  line-height: 1.05;
  font-weight: 600;
}

h3 {
  font-size: 36px;
  line-height: 1.06;
  font-weight: 600;
}

.heading h3, .heading h2 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 600;
}
@media only screen and (max-width: 1300px) {
  .heading h3, .heading h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .heading h3, .heading h2 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 991px) {
  .heading h3, .heading h2 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .heading h3, .heading h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 675px) {
  .heading h3, .heading h2 {
    font-size: 28px;
  }
}
.heading h3 .red, .heading h2 .red {
  color: var(--primary);
}
.heading.f-bold h3, .heading.f-bold h2 {
  font-weight: 700;
}
.heading.f-medium h3, .heading.f-medium h2 {
  font-weight: 500;
}
.heading.medium h2, .heading.medium h3 {
  font-size: 36px;
  line-height: 1.1;
}
@media only screen and (max-width: 991px) {
  .heading.medium h2, .heading.medium h3 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .heading.medium h2, .heading.medium h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 675px) {
  .heading.medium h2, .heading.medium h3 {
    font-size: 28px;
  }
}
.heading.large h2, .heading.large h3 {
  font-size: 64px;
  line-height: 1.1;
}
@media only screen and (max-width: 1152px) {
  .heading.large h2, .heading.large h3 {
    font-size: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .heading.large h2, .heading.large h3 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 540px) {
  .heading.large h2, .heading.large h3 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 345px) {
  .heading.large h2, .heading.large h3 {
    font-size: 30px;
  }
}
.heading.white h2, .heading.white h3 {
  color: var(--white);
}

h4 {
  font-size: 36px;
  line-height: 1.28;
  font-weight: 600;
}

h5 {
  font-size: 24px;
  line-height: 1.167;
  font-weight: 500;
}
@media only screen and (max-width: 1152px) {
  h5 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 675px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
  font-weight: 500;
}

.text-center {
  text-align: center;
}

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

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

.text-uppercase {
  text-transform: uppercase;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.inline-flex {
  --gap: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0 var(--gap);
}

img {
  max-width: 100%;
}

input, button, select {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

input {
  border-radius: 0;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

video {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

button {
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.tab-nav-content {
  position: relative;
}
.tab-nav-content .tabs:not(.active) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.item-md {
  position: relative;
}
.item-md figure {
  overflow: hidden;
  line-height: 0;
  height: 100%;
}
.item-md figure img, .item-md figure video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.8s ease;
}
.item-md::before, .item-md::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 1;
}
.item-md::after {
  content: none;
}
.item-md figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.item-md .link-md {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.item-md.center figcaption {
  bottom: auto;
  top: 50%;
  translate: 0 -50%;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 5;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(100%);
  transition: 0s ease 0.5s, opacity 0.5s ease;
  cursor: pointer;
}
@media only screen and (max-width: 675px) {
  .overlay {
    display: none;
  }
}
.overlay.is-open {
  transition: opacity 1s ease;
  opacity: 1;
  transform: translateY(0%);
}

.model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 7;
  background: var(--white);
  background-position: 0% 80%;
  background-size: 75%;
  max-width: 435px;
  width: 100%;
}
.model .close:not(.btn) {
  position: absolute;
  top: 0;
  right: 0;
  top: 40px;
  right: 40px;
}
@media only screen and (max-width: 520px) {
  .model .close:not(.btn) {
    top: 20px;
    right: 20px;
  }
}
.model .close:not(.btn) path {
  stroke: var(--black);
}

.btn {
  --height: 44px;
  --padding: 24px;
  display: inline-block;
  vertical-align: middle;
  height: var(--height);
  line-height: var(--height);
  padding: 0 var(--padding);
  background: var(--primary);
  overflow: hidden;
  text-transform: capitalize;
  color: var(--white);
  border: 1px solid var(--primary);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.5s ease;
  border-radius: 30px;
  font-weight: 500;
  caret-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: 600;
}
.btn:hover {
  background: none;
  color: var(--primary);
}
.btn.btn-btn {
  color: var(--black);
  background: none;
  border-color: var(--black);
}
.btn.btn-btn:hover {
  background: var(--black);
  color: var(--white);
}
.btn.btn-btn-btn {
  text-transform: uppercase;
  line-height: 1;
  --padding: 20px;
  --color: var(--white);
  --arrowgap: 20px;
  --border: 1px;
  --hovercolor: var(--primary);
  height: auto;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  background: none;
  padding-bottom: var(--padding);
  color: var(--color);
  border: none;
  position: relative;
  z-index: 1;
}
.btn.btn-btn-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--border);
  background: var(--color);
  transition: 0.5s ease;
  z-index: -1;
}
.btn.btn-btn-btn:hover {
  color: var(--hovercolor);
  padding-bottom: calc(var(--padding) / 2);
  padding-top: calc(var(--padding) / 2);
  padding-left: 10px;
  padding-right: 10px;
}
.btn.btn-btn-btn:hover::before {
  height: 100%;
}
.btn.btn-btn-btn:hover svg path {
  fill: var(--hovercolor);
}
.btn.btn-btn-btn svg, .btn.btn-btn-btn img {
  margin-left: var(--arrowgap);
}
.btn.btn-btn-btn svg path {
  transition: 0.5s ease;
}
.btn.white {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.btn.white:hover {
  background: none;
  color: var(--white);
}
.btn.white-border {
  background: none;
  border-color: var(--white);
  color: var(--white);
}
.btn.white-border:hover {
  background: var(--white);
  color: var(--black);
}
.btn.black {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.btn.black:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.btn.w-100 {
  width: 100%;
}
.btn.wide {
  --padding: 36px;
}
.btn.space {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn.size-medium {
  --height: 38px;
  font-size: 14px;
}

.btn-wrap .btn:not(:last-child) {
  margin-right: 10px;
}

.btn2 {
  position: relative;
  padding-bottom: 10px;
  transition: 0.5s ease;
}
.btn2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../../icon/underline.svg) no-repeat;
  background-size: 100% auto;
  background-position: 0 100%;
  font-weight: 600;
  transition: 0.5s ease;
}

.btn3 {
  --ico: 35px;
  --padding: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-right: calc(var(--ico) + var(--padding));
  color: var(--black);
}
.btn3::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  height: var(--ico);
  width: var(--ico);
  border-radius: 50%;
  background: var(--primary) url(../../icon/arrow-top-right-white.svg) no-repeat;
  background-position: 50% 50%;
  background-size: calc(var(--ico) / 2);
}

.custom-select {
  max-width: 100%;
  cursor: pointer;
  display: block;
  font-family: inherit;
  height: var(--selectheight);
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  padding: 0 var(--paddingleftright);
}
.custom-select::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 15%;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2217%22%20height%3D%2211%22%20viewBox%3D%220%200%2017%2011%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M15.75%201.875L8.5%209.125L1.25%201.875%22%20stroke%3D%22%23666666%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
  background-position: calc(100% - var(--paddingleftright)) 50%;
  background-repeat: no-repeat;
  background-size: auto 15%;
}
.custom-select .current {
  display: block;
  width: 85%;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: var(--inputsize);
  color: var(--labelbefore);
  font-weight: var(--font);
}
.custom-select .current.selected {
  color: var(--color);
}
.custom-select .list {
  text-align: left;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  transform-origin: 50% 0;
  z-index: 7;
  max-height: 180px;
  overflow-y: auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  pointer-events: none;
}
.custom-select .list::-webkit-scrollbar {
  width: 4px;
  background: none;
  height: 4px;
}
.custom-select .list::-webkit-scrollbar-track {
  box-shadow: none;
}
.custom-select .list::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 5px;
}
.custom-select .list li {
  display: block;
  line-height: 1.2;
  padding: 10px 20px;
  white-space: break-spaces;
}
@media only screen and (max-width: 420px) {
  .custom-select .list li {
    font-size: 14px;
  }
}
.custom-select .list li.selected {
  background: var(--primary);
  color: var(--white);
}
.custom-select .list li.selected:hover {
  background: var(--primary);
  color: var(--white);
}
.custom-select .list li:hover {
  background: #e2e2e2;
}
.custom-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.form {
  --inputsize: 48px;
  --labelbefore: var(--text);
  --labelafter: var(--black);
  --borderbefore: var(--text);
  --borderafter: var(--black);
  --labelfontbefore: 16px;
  --labelfontafter: 12px;
  --font: 500;
  --inputsize: 42px;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --font: 400;
  --textareaheight: 86px;
  --paddingleftright: 0px;
  --item: 1;
  --gaplr: 30px;
  --gaptb: 32px;
  display: grid;
  grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item) - 1)) / var(--item)));
  gap: var(--gaptb) var(--gaplr);
}
.form .full {
  grid-column: span var(--item);
}
.form .form-group {
  position: relative;
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  --selectheight: var(--inputsize);
  line-height: 0;
}
.form .form-group.active::after {
  width: 100%;
}
.form .form-group::before, .form .form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  transition: 0.5s ease;
}
.form .form-group::before {
  background: var(--borderbefore);
}
.form .form-group::after {
  width: 0;
  background: var(--borderafter);
}
.form .form-group label {
  font-weight: var(--font);
  position: absolute;
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  background: none;
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  font-weight: 600;
}
.form .form-group input, .form .form-group textarea {
  height: calc(var(--inputsize) - var(--borderwidth));
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  font-weight: 600;
}
.form .form-group input:focus, .form .form-group input.valid, .form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
}
.form .form-group input:focus ~ label, .form .form-group input.valid ~ label, .form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
  background: var(--labelbackground);
}
.form .form-group textarea {
  height: var(--textareaheight);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  line-height: 1.2;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  padding-right: 15px;
}
.form .form-group textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
  height: 2px;
}
.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 15px;
}
.form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
  margin-top: 13px;
  height: calc(var(--textareaheight) - 13px);
}
.form .form-group select:focus {
  outline: none;
}
.form .form-group select ~ label {
  position: absolute;
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  translate: 0 0;
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: 0.6s ease;
  background: var(--labelbackground);
}
.form .form-group select.valid {
  color: var(--color);
}
.form .form-group select.valid ~ label {
  opacity: 1;
}
.form .submit-grp {
  text-align: center;
  margin-top: 23px;
}

.banner {
  position: relative;
  background: url(../../images/vector/vector1.png);
  padding-top: var(--finalheaderheight);
}
.banner .flex {
  align-items: center;
}
.banner .flex .colA {
  flex: 1;
}
@media only screen and (max-width: 675px) {
  .banner .flex .colA {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
.banner .flex .colA .content {
  max-width: 502px;
}
.banner .flex .colB {
  flex: 0 1 auto;
}
@media only screen and (max-width: 1152px) {
  .banner .flex .colB {
    flex: 0 1 40%;
  }
}
@media only screen and (max-width: 675px) {
  .banner .flex .colB {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
.banner h1 {
  font-size: 55px;
  line-height: 1.1;
}
@media only screen and (max-width: 1300px) {
  .banner h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 991px) {
  .banner h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 675px) {
  .banner h1 {
    font-size: 32px;
  }
}
.banner h1.medium {
  font-size: 64px;
}
@media only screen and (max-width: 1152px) {
  .banner h1.medium {
    font-size: 52px;
  }
}
@media only screen and (max-width: 991px) {
  .banner h1.medium {
    font-size: 48px;
  }
}

.swiper-slide {
  height: auto;
}

.swiper-nav {
  line-height: 0;
}
.swiper-nav.center-full {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.swiper-nav.center-full .swiper-prev, .swiper-nav.center-full .swiper-next {
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.swiper-nav.primary-fill .swiper-prev, .swiper-nav.primary-fill .swiper-next {
  background: var(--primary);
  border-color: var(--primary);
}
.swiper-nav.primary-fill .swiper-prev svg path, .swiper-nav.primary-fill .swiper-next svg path {
  fill: var(--white);
}
.swiper-nav.white-fill .swiper-prev, .swiper-nav.white-fill .swiper-next {
  background: var(--white);
  border-color: var(--white);
}
.swiper-nav.white-fill .swiper-prev svg path, .swiper-nav.white-fill .swiper-next svg path {
  fill: var(--black);
}
.swiper-nav.white-fill .swiper-prev:hover:not(.swiper-button-disabled), .swiper-nav.white-fill .swiper-next:hover:not(.swiper-button-disabled) {
  background: var(--primary);
  border-color: var(--primary);
}
.swiper-nav.white-fill .swiper-prev:hover:not(.swiper-button-disabled) svg path, .swiper-nav.white-fill .swiper-next:hover:not(.swiper-button-disabled) svg path {
  fill: var(--white);
}
.swiper-nav.btn-no-background .swiper-prev, .swiper-nav.btn-no-background .swiper-next {
  border: none;
  height: auto;
  width: auto;
  border-radius: initial;
  line-height: 0;
}
.swiper-nav.btn-no-background .swiper-prev svg, .swiper-nav.btn-no-background .swiper-next svg {
  position: unset;
  translate: 0 0;
}
.swiper-nav.btn-no-background .swiper-prev svg path, .swiper-nav.btn-no-background .swiper-next svg path {
  fill: initial;
}
.swiper-nav.btn-no-background .swiper-prev:hover:not(.swiper-button-disabled), .swiper-nav.btn-no-background .swiper-next:hover:not(.swiper-button-disabled) {
  background: none;
}
.swiper-nav.btn-no-background .swiper-prev:hover:not(.swiper-button-disabled) path, .swiper-nav.btn-no-background .swiper-next:hover:not(.swiper-button-disabled) path {
  fill: var(--primary);
}
.swiper-nav.swiper-nav-fill .swiper-prev, .swiper-nav.swiper-nav-fill .swiper-next {
  border-color: var(--white);
  background: var(--white);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.swiper-nav.swiper-nav-fill .swiper-prev path, .swiper-nav.swiper-nav-fill .swiper-next path {
  fill: var(--primary);
}
.swiper-nav.swiper-nav-fill .swiper-prev:hover:not(.swiper-button-disabled), .swiper-nav.swiper-nav-fill .swiper-next:hover:not(.swiper-button-disabled) {
  background: var(--primary);
  border-color: var(--primary);
}
.swiper-nav.swiper-nav-fill .swiper-prev:hover:not(.swiper-button-disabled) path, .swiper-nav.swiper-nav-fill .swiper-next:hover:not(.swiper-button-disabled) path {
  fill: var(--white);
}
.swiper-nav.black .swiper-prev, .swiper-nav.black .swiper-next {
  border-color: var(--black);
}
.swiper-nav.black .swiper-prev path, .swiper-nav.black .swiper-next path {
  fill: var(--black);
}
.swiper-nav.black .swiper-prev:hover:not(.swiper-button-disabled), .swiper-nav.black .swiper-next:hover:not(.swiper-button-disabled) {
  border-color: var(--primary);
  background: var(--primary);
}
.swiper-nav.black .swiper-prev:hover:not(.swiper-button-disabled) path, .swiper-nav.black .swiper-next:hover:not(.swiper-button-disabled) path {
  fill: var(--white);
}
.swiper-nav.white .swiper-prev path, .swiper-nav.white .swiper-next path {
  fill: var(--white) !important;
}
.swiper-nav.group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 15px;
}
@media only screen and (max-width: 1152px) {
  .swiper-nav.group {
    gap: 0 8px;
  }
}
.swiper-nav.icon-width-auto .swiper-next svg, .swiper-nav.icon-width-auto .swiper-prev svg {
  width: auto;
  height: auto;
}

.swiper-prev svg, .swiper-prev img {
  transform: scaleX(-1);
}

.swiper-prev, .swiper-next {
  flex: 0 1 auto;
  --btn: 45px;
  height: var(--btn);
  width: var(--btn);
  border-radius: 50%;
  border: 1px solid var(--white);
  transition: 0.5s ease;
  position: relative;
  background: none;
}
.swiper-prev svg, .swiper-next svg {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: calc(var(--btn) / 5);
  height: auto;
}
.swiper-prev path, .swiper-next path {
  transition: 0.5s ease;
  fill: var(--white);
}
.swiper-prev:hover:not(.swiper-button-disabled), .swiper-next:hover:not(.swiper-button-disabled) {
  background: var(--white);
  border-color: var(--white);
}
.swiper-prev:hover:not(.swiper-button-disabled) path, .swiper-next:hover:not(.swiper-button-disabled) path {
  fill: var(--primary);
}
.swiper-prev.swiper-button-disabled, .swiper-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: no-drop;
}

.swiper-pagination-bullets {
  --swiper-pagination-bullet-horizontal-gap: 5px;
  caret-color: transparent;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background: #989898;
  opacity: 1;
  caret-color: transparent;
}
.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary);
}

.header-wrapper .colA, .header-wrapper .colB, .header-wrapper .colC {
  height: 100%;
  display: flex;
  align-items: center;
}

.play-btn {
  --btnsize: 56px;
  --border: 2px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border-radius: 50%;
  border: var(--border) solid var(--bordercolor);
  position: relative;
  background: none;
}
@media only screen and (max-width: 1024px) {
  .play-btn {
    --btnsize: 50px;
  }
}
@media only screen and (max-width: 675px) {
  .play-btn {
    --btnsize: 45px;
    --border: 1px;
  }
}
.play-btn::before {
  width: 100%;
  height: 100%;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: var(--bordercolor);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0;
  height: 0;
  border-top: calc(var(--btnsize) / 8) solid transparent;
  border-bottom: calc(var(--btnsize) / 8) solid transparent;
  border-left: calc(var(--btnsize) / 5.6) solid var(--playbtncolor);
}
.play-btn.play-btn2 {
  --btnsize: 87px;
  --offset: 8px;
  --background: var(--white);
  background: var(--white);
  --playbtncolor: var(--primary);
  border: none;
  outline: 1px solid var(--background);
  outline-offset: var(--offset);
}
@media only screen and (max-width: 991px) {
  .play-btn.play-btn2 {
    --btnsize: 62px;
    --offset: 4px;
  }
}

.website-content > :first-child {
  margin-top: 0 !important;
}
.website-content h1 {
  font-size: 54px;
  margin-bottom: 45px;
  text-align: center;
  font-weight: 800;
}
@media only screen and (max-width: 991px) {
  .website-content h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .website-content h1 {
    font-size: 32px;
  }
}
.website-content h2 {
  font-size: 38px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .website-content h2 {
    font-size: 28px;
  }
}
.website-content h3 {
  font-size: 30px;
  line-height: 1.21;
  font-weight: 700;
}
@media only screen and (max-width: 675px) {
  .website-content h3 {
    font-size: 22px;
  }
}
.website-content h4 {
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 675px) {
  .website-content h4 {
    font-size: 18px;
  }
}
.website-content h5 {
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}
.website-content h6 {
  font-size: 18px;
  font-weight: 700;
}
.website-content h2, .website-content h3, .website-content h4 {
  margin: 40px 0 18px;
}
.website-content h5, .website-content h6 {
  margin: 28px 0 18px;
}
.website-content p, .website-content li {
  color: var(--text);
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.website-content a {
  color: var(--black);
}
.website-content a:hover {
  color: var(--primary);
}
.website-content p, .website-content ul {
  margin-bottom: 20px;
}
.website-content ul:not(.seo-loc-ser) {
  padding-left: 18px;
}
@media only screen and (max-width: 675px) {
  .website-content ul:not(.seo-loc-ser) {
    padding-left: 10px;
  }
}
.website-content ul:not(.seo-loc-ser) li {
  position: relative;
  padding-left: 28px;
}
@media only screen and (max-width: 675px) {
  .website-content ul:not(.seo-loc-ser) li {
    padding-left: 20px;
  }
}
.website-content ul:not(.seo-loc-ser) li:not(:last-child) {
  margin-bottom: 6px;
}
.website-content ul:not(.seo-loc-ser) li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
}
.website-content .seo-loc-ser li {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.website-content .seo-loc-ser li:not(:last-child) {
  border-right: 1px solid var(--text);
  padding-right: 10px;
  margin-right: 10px;
}
.website-content .seo-loc-ser li a {
  display: inline-block;
  color: var(--text);
  font-size: 14px;
}
.website-content .seo-loc-ser li a:hover {
  color: var(--primary);
}
.website-content.website-content-white * {
  color: var(--white);
}
.website-content.website-content-white ul li::before {
  background: var(--white);
}
.website-content.website-content-small h2 {
  font-size: 28px;
}
@media only screen and (max-width: 675px) {
  .website-content.website-content-small h2 {
    font-size: 22px;
  }
}
.website-content.website-content-small h3 {
  font-size: 26px;
}
@media only screen and (max-width: 675px) {
  .website-content.website-content-small h3 {
    font-size: 20px;
  }
}
.website-content.website-content-small h4 {
  font-size: 22px;
}
@media only screen and (max-width: 675px) {
  .website-content.website-content-small h4 {
    font-size: 18px;
  }
}
.website-content.website-content-small h5, .website-content.website-content-small h6 {
  font-size: 18px;
}

.read-more {
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
  padding-right: 25px;
  caret-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}
.read-more::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 20px;
  --whitearrow: url(../../icon/arrow-down-white.svg) no-repeat 100% 50%;
  --redarrow: url(../../icon/arrow-down-red.svg) no-repeat 100% 50%;
  --blackarrow: url(../../icon/arrow-down-black.svg) no-repeat 100% 50%;
  --grayarrow: url(../../icon/arrow-down-gray.svg) no-repeat 100% 50%;
  background: var(--redarrow);
  transition: 0.5s ease;
}
.read-more.active::before {
  transform: rotate(180deg);
}
.read-more.white {
  color: var(--white);
}
.read-more.white::before {
  background: var(--whitearrow);
}

.project-col:is(a):hover figure img {
  transform: scale(1.05);
}
.project-col:is(a):hover figcaption .name, .project-col:is(a):hover figcaption .year {
  color: var(--primary);
}
.project-col figure {
  line-height: 0;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
}
.project-col figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.project-col figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-col figcaption .name {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
  transition: 0.5s ease;
}
.project-col figcaption .year {
  font-weight: 600;
  color: var(--text);
  transition: 0.5s ease;
}

[data-content] {
  --totalline: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--totalline);
  text-overflow: ellipsis;
  overflow: hidden;
}
[data-content].is-shown {
  -webkit-line-clamp: initial;
}

[data-read] {
  margin-top: 1.5rem;
}

[data-video] {
  cursor: pointer;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  transition: 0.5s ease;
  height: var(--finalheaderheight);
  transition: box-shadow 0s ease, 0.5s ease;
}
header::before {
  content: "";
  position: absolute;
  top: var(--festivbnr);
  left: 0;
  right: 0;
  background: var(--white);
  height: 0;
  z-index: -1;
  transition: 0.5s ease;
}
header.header-fixed, header.header-fill {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: box-shadow 0.5s ease 0.3s, 0.5s ease;
  height: calc(var(--headerfixed) + var(--festivbnr));
  transform: translateY(calc(var(--festivbnr) * -1));
}
header.header-fixed::before, header.header-fill::before {
  height: var(--headerfixed);
}
header.header-fixed ~ .ham-div, header.header-fill ~ .ham-div {
  --hamheight: var(--headerfixed);
  top: 0;
}
header.header-fixed .header-wrapper, header.header-fill .header-wrapper {
  height: var(--headerfixed);
}
header.header-fixed.header-no-bg, header.header-fill.header-no-bg {
  box-shadow: none;
}
header.header-fixed.header-no-bg::before, header.header-fill.header-no-bg::before {
  height: 0;
}
header.card-stick {
  box-shadow: none;
}
header.card-stick::before {
  height: 0;
}
header.card-stick .header-wrapper .colA .logo .black {
  display: none;
}
header.card-stick .header-wrapper .colA .logo .white {
  display: block !important;
}
header.card-stick .header-wrapper .enquire-btn {
  color: var(--white);
}
header.card-stick .header-wrapper .enquire-btn::before {
  background: var(--whitebg);
}
header.card-stick .header-wrapper .country-select em {
  color: var(--white);
}
header.card-stick .header-wrapper .country-select svg path {
  fill: var(--white);
}
header .header-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: var(--headerheight);
  transition: 0.5s ease;
}
header .header-wrapper .colA {
  flex: 0 1 auto;
  transition: 0.5s ease;
}
@media only screen and (max-width: 675px) {
  header .header-wrapper .colA {
    flex: 1;
  }
}
header .header-wrapper .colA a {
  padding: var(--headerpadding) 0;
}
header .header-wrapper .colA a, header .header-wrapper .colA img {
  height: 100%;
  transition: 0.5s ease;
}
header .header-wrapper .colA img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
header .header-wrapper .colB {
  flex: 1;
  justify-content: flex-end;
  padding-right: calc(var(--hamsize) + 2rem);
}
@media only screen and (max-width: 767px) {
  header .header-wrapper .colB {
    padding-right: var(--hamsize);
  }
}
@media only screen and (max-width: 675px) {
  header .header-wrapper .colB {
    flex: 0 1 auto;
  }
}
header .header-wrapper .country-select {
  margin-right: 1.6rem;
  position: relative;
  --triangle: 15px;
}
header .header-wrapper .country-select:hover .country-select-menu {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
header .header-wrapper .country-select .country-select-menu {
  position: absolute;
  top: calc(100% + var(--triangle));
  left: 50%;
  translate: -50% 0;
  transform: perspective(2000px) translate3d(0px, -25px, 50px) rotateX(-90deg) scale3d(0.86, 0.75, 1) translateY(50px);
  transform-origin: top;
  transition: 0.4s ease;
  opacity: 0;
}
header .header-wrapper .country-select .country-select-menu .arrow {
  display: block;
  position: absolute;
  bottom: calc(100% - var(--triangle) / 2);
  left: 50%;
  translate: -50% 0;
  width: var(--triangle);
  height: var(--triangle);
  background: var(--white);
  border: 1px solid #ccc;
  transform: rotate(45deg);
  z-index: -1;
}
header .header-wrapper .country-select .country-select-menu ul {
  background: var(--white);
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 5px;
}
header .header-wrapper .country-select .country-select-menu ul li {
  white-space: nowrap;
}
header .header-wrapper .country-select .country-select-menu ul li:not(:last-child) {
  margin-bottom: 12px;
}
header .header-wrapper .country-select .country-select-menu ul li a {
  display: inline-flex;
  align-items: center;
  gap: 0 10px;
  font-weight: 600;
  color: var(--black);
}
header .header-wrapper .country-select .country-select-menu ul li a:hover {
  color: var(--primary);
}
header .header-wrapper .country-select .country-select-menu ul li a span {
  display: block;
  width: 24px;
  line-height: 0;
}
header .header-wrapper .country-select .country-select-title {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header .header-wrapper .country-select .country-select-title .flag-div {
  flex: 0 1 auto;
  --size: 25px;
  height: var(--size);
  width: var(--size);
  border-radius: 50%;
  overflow: hidden;
  caret-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
header .header-wrapper .country-select .country-select-title .flag-div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .header-wrapper .country-select .country-select-title .cnt-nm {
  flex: 1;
  padding-left: 12px;
  display: flex;
  align-items: center;
  gap: 0 8px;
  caret-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
header .header-wrapper .country-select .country-select-title .cnt-nm .nm-ct em {
  font-style: normal;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
header .header-wrapper .enquire-btn {
  margin-right: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  --whitebg: url(../../icon/underline-white.svg) no-repeat 0 100%;
}
@media only screen and (max-width: 767px) {
  header .header-wrapper .enquire-btn {
    display: none;
  }
}
header .header-wrapper .enquire-btn:hover {
  color: var(--primary);
}
header .header-wrapper .enquire-btn:hover::before {
  transform: translate(6px, 2px);
}

.ham-div {
  position: fixed;
  top: var(--festivbnr, 0);
  --hamheight: var(--headerheight);
  right: var(--containerfluid);
  height: calc(var(--hamheight) - var(--headerpadding) * 2);
  margin: var(--headerpadding) 0;
  display: flex;
  align-items: center;
  z-index: 8;
  transition: 0.5s ease;
}
.ham-div .ham-btn {
  --border: 2px;
  --gap: 7px;
  --line1: 29px;
  --line2: 23px;
  --ham: 12px;
  height: var(--hamsize);
  width: var(--hamsize);
  border-radius: 50%;
  background: var(--primary);
  position: relative;
}
.ham-div .ham-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: var(--line1);
  height: var(--ham);
}
.ham-div .ham-btn span em {
  display: block;
  position: absolute;
  left: 0;
  background: var(--white);
  height: var(--border);
  transition: 0.5s ease;
  font-style: normal;
  line-height: 0;
}
.ham-div .ham-btn span em:first-child {
  top: 0;
  width: var(--line1);
}
.ham-div .ham-btn span em:last-child {
  bottom: 0;
  width: var(--line2);
}
.ham-div .ham-btn.is-active span em:first-child {
  transform: rotate(45deg);
  top: 5px;
}
.ham-div .ham-btn.is-active span em:last-child {
  transform: rotate(-45deg);
  bottom: 5px;
  width: 100%;
}

.seo-footer {
  padding: 3rem 0;
  background: #f5f5f5;
  display: none;
}
@media only screen and (max-width: 675px) {
  .seo-footer {
    padding: 2rem 0;
  }
}
.seo-footer .seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px 4rem;
}
@media only screen and (max-width: 1024px) {
  .seo-footer .seo-grid {
    grid-gap: 40px 2rem;
  }
}
@media only screen and (max-width: 991px) {
  .seo-footer .seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 675px) {
  .seo-footer .seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 520px) {
  .seo-footer .seo-grid {
    grid-gap: 2rem 1rem;
  }
}
.seo-footer .seo-grid .seo-md h6 {
  color: var(--black);
  caret-color: transparent;
  font-size: 18px;
  font-weight: 600;
}
@media only screen and (max-width: 520px) {
  .seo-footer .seo-grid .seo-md h6 {
    font-size: 14px;
  }
}
.seo-footer .seo-grid .seo-md ul {
  margin-top: 8px;
}
.seo-footer .seo-grid .seo-md ul li a {
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  padding: 2px 0;
  color: var(--text);
}
.seo-footer .seo-grid .seo-md ul li a:hover {
  color: var(--primary);
}

footer {
  background: var(--black);
  position: relative;
}
@media only screen and (max-width: 675px) {
  footer {
    padding: 2rem 0 6rem;
  }
}
footer .footer-bg {
  line-height: 0;
  height: 605px;
  position: relative;
}
footer .footer-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) -76%, rgb(0, 0, 0) 80%);
}
@media only screen and (max-width: 675px) {
  footer .footer-bg {
    display: none;
  }
}
footer .footer-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
  -o-object-position: top;
     object-position: top;
}
@media only screen and (max-width: 1366px) {
  footer .footer-bg video {
    -o-object-position: 0 135px;
       object-position: 0 135px;
  }
}
@media only screen and (max-width: 675px) {
  footer .footer-bg video {
    -o-object-position: center;
       object-position: center;
  }
}
footer .footer-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  z-index: 2;
}
@media only screen and (max-width: 675px) {
  footer .footer-wrapper {
    position: unset;
  }
}
@media only screen and (max-width: 675px) {
  footer .footer-wrapper .flex .colA, footer .footer-wrapper .flex .colB, footer .footer-wrapper .flex .colC {
    width: 100%;
  }
}
footer .footer-wrapper .flex .colA {
  flex: 0 1 auto;
  padding-right: 150px;
}
@media only screen and (max-width: 991px) {
  footer .footer-wrapper .flex .colA {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    text-align: center;
    order: 3;
    margin-top: 2rem;
    padding-right: 0px;
  }
}
footer .footer-wrapper .flex .colA .logo {
  display: block;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 991px) {
  footer .footer-wrapper .flex .colA .logo {
    display: none;
  }
}
footer .footer-wrapper .flex .colA .social-icons {
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 991px) {
  footer .footer-wrapper .flex .colA .social-icons {
    margin-bottom: 1.5rem;
  }
}
footer .footer-wrapper .flex .colA .social-icons a {
  display: inline-block;
  vertical-align: middle;
}
footer .footer-wrapper .flex .colA .social-icons a:not(:last-child) {
  margin-right: 2.2rem;
}
footer .footer-wrapper .flex .colA .social-icons a path {
  transition: 0.5s ease;
}
footer .footer-wrapper .flex .colA .social-icons a:hover path {
  fill: var(--primary);
}
footer .footer-wrapper .flex .colA .cprt {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
@media only screen and (max-width: 1152px) {
  footer .footer-wrapper .flex .colA .cprt {
    font-size: 14px;
  }
}
footer .footer-wrapper .flex .colB {
  flex: 1;
  padding-left: 3rem;
  padding-right: 2rem;
}
@media only screen and (max-width: 1152px) {
  footer .footer-wrapper .flex .colB {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  footer .footer-wrapper .flex .colB {
    order: 1;
    padding-left: 0;
  }
}
@media only screen and (max-width: 675px) {
  footer .footer-wrapper .flex .colB {
    order: 2;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1.5rem;
    padding-top: 2rem;
  }
}
footer .footer-wrapper .flex .colB ul li:not(:last-child) {
  margin-bottom: 14px;
}
footer .footer-wrapper .flex .colB ul li a {
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
}
@media only screen and (max-width: 1152px) {
  footer .footer-wrapper .flex .colB ul li a {
    letter-spacing: 0px;
  }
}
footer .footer-wrapper .flex .colB ul li a:hover {
  color: var(--primary);
}
footer .footer-wrapper .flex .colC {
  flex: 0 1 auto;
}
@media only screen and (max-width: 991px) {
  footer .footer-wrapper .flex .colC {
    order: 2;
  }
}
@media only screen and (max-width: 675px) {
  footer .footer-wrapper .flex .colC {
    order: 1;
  }
}
footer .footer-wrapper .flex .colC h6 {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
}
footer .footer-wrapper .flex .colC .upper-sec {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: right;
}
@media only screen and (max-width: 991px) {
  footer .footer-wrapper .flex .colC .upper-sec {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 675px) {
  footer .footer-wrapper .flex .colC .upper-sec {
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
  }
}
footer .footer-wrapper .flex .colC .upper-sec .gtc-sec {
  padding-right: 4.5rem;
}
@media only screen and (max-width: 1152px) {
  footer .footer-wrapper .flex .colC .upper-sec .gtc-sec {
    padding-right: 2rem;
  }
}
@media only screen and (max-width: 675px) {
  footer .footer-wrapper .flex .colC .upper-sec .gtc-sec {
    padding-right: 0;
    padding-left: 2rem;
    flex: 1;
  }
}
@media only screen and (max-width: 520px) {
  footer .footer-wrapper .flex .colC .upper-sec .gtc-sec {
    padding-left: 1rem;
  }
}
footer .footer-wrapper .flex .colC .upper-sec .gtc-sec h6 {
  margin-bottom: 20px;
}
@media only screen and (max-width: 675px) {
  footer .footer-wrapper .flex .colC .upper-sec .gtc-sec h6 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 520px) {
  footer .footer-wrapper .flex .colC .upper-sec .gtc-sec h6 {
    margin-bottom: 4px;
  }
}
footer .footer-wrapper .flex .colC .upper-sec .gtc-sec ul li:not(:last-child) {
  margin-bottom: 2px;
}
footer .footer-wrapper .flex .colC .upper-sec .gtc-sec ul li a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
}
@media only screen and (max-width: 1152px) {
  footer .footer-wrapper .flex .colC .upper-sec .gtc-sec ul li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 520px) {
  footer .footer-wrapper .flex .colC .upper-sec .gtc-sec ul li a {
    font-size: 14px;
  }
}
footer .footer-wrapper .flex .colC .upper-sec .gtc-sec ul li a:hover {
  color: var(--primary);
}
footer .footer-wrapper .flex .colC .upper-sec .con-vec {
  flex: 0 1 140px;
  max-width: 140px;
  height: 140px;
  line-height: 0;
  position: relative;
}
@media only screen and (max-width: 675px) {
  footer .footer-wrapper .flex .colC .upper-sec .con-vec {
    flex: 0 1 85px;
    max-width: 85px;
    height: 85px;
  }
}
@media only screen and (max-width: 345px) {
  footer .footer-wrapper .flex .colC .upper-sec .con-vec {
    flex: 0 1 70px;
    max-width: 70px;
    height: 70px;
    margin-bottom: 0;
  }
}
footer .footer-wrapper .flex .colC .upper-sec .con-vec img {
  width: 100%;
  height: 100%;
}
footer .footer-wrapper .flex .colC .upper-sec .con-vec .phone-vec-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
footer .bottom-sec {
  text-align: center;
  padding: 25px 0px 10px;
  border-top: 1px solid #3b3b3b;
}
@media only screen and (max-width: 675px) {
  footer .bottom-sec {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: none;
    border-right: none;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
  }
}
footer .bottom-sec h6 {
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  footer .bottom-sec h6 {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 675px) {
  footer .bottom-sec ul {
    margin-bottom: 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 1rem;
  }
}
footer .bottom-sec ul li {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 675px) {
  footer .bottom-sec ul li {
    display: block;
  }
}
footer .bottom-sec ul li:not(:last-child) {
  margin-right: 2rem;
}
@media only screen and (max-width: 1300px) {
  footer .bottom-sec ul li:not(:last-child) {
    margin-right: 1.8rem;
  }
}
@media only screen and (max-width: 1152px) {
  footer .bottom-sec ul li:not(:last-child) {
    margin-right: 14px;
  }
}
@media only screen and (max-width: 675px) {
  footer .bottom-sec ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 14px;
  }
}
footer .bottom-sec ul li a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
@media only screen and (max-width: 1152px) {
  footer .bottom-sec ul li a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 675px) {
  footer .bottom-sec ul li a {
    font-size: 16px;
    color: var(--white);
  }
}
footer .bottom-sec ul li a:hover {
  color: var(--primary);
}
footer .privacy-col {
  margin-top: 10px;
  text-align: center;
}
footer .privacy-col ul li {
  display: inline-block;
}
footer .privacy-col ul li a {
  padding: 10px 0px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  display: block;
}
footer .privacy-col ul li a:hover {
  color: var(--primary);
}
footer .privacy-col ul li:not(:last-child) {
  padding-right: 15px;
}
footer .privacy-col p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: var(--primary);
  display: none;
}
@media only screen and (max-width: 675px) {
  .footer-strip {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}
.footer-strip ul {
  display: flex;
  flex-wrap: wrap;
}
.footer-strip ul li {
  flex: 1;
}
.footer-strip ul li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.footer-strip ul li > * {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 5px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}
.footer-strip ul li > * svg {
  width: 16px;
  height: 16px;
}
.footer-strip ul li > * svg path {
  fill: var(--white);
}

.festiv-banner {
  line-height: 0;
}
.festiv-banner img {
  width: 100%;
}/*# sourceMappingURL=header.css.map */