* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "hanken-grotesk", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--blue);
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  display: block;
}
.container {
  max-width: 1468px;
  margin: 0 auto;
}
.container-fluid {
  max-width: 1840px;
  margin: 0 auto;
}
:root {
  --blue: #1c1410;
  --yellow: #c9a96e;
  --lightblue: #f5ede3;
  --grey: #b0a898;
  --green: #c9a96e;
  --maroon: #2e1f14;
  --cream: #f0e8dc;
}
a.btn {
  background: var(--yellow);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  position: relative;
  display: inline-block;
  padding: 7px 38px 5px 20px;
  transition: 0.4s ease-in-out;
}
a.btn:after {
  content: "";
  background: url(../images/pluswhite.svg) no-repeat;
  position: absolute;
  right: 18px;
  top: 50%;
  width: 11px;
  height: 11px;
  background-size: contain;
  transform: translateY(-60%);
}
a.btn:hover {
  background-color: var(--lightblue);
  color: #000;
  transition: 0.4s ease-in-out;
}
a.btn:hover:after {
  background: url(../images/plus.svg) no-repeat;
}
a.btn.big {
  padding: 12px 60px 11px 31px;
  font-size: 16px;
}
a.btn.big:after {
  right: 32px;
}
.sec-head h3 {
  font-size: 50px;
  font-weight: 600;
  line-height: 58px;
  color: var(--blue);
}
.sec-head.white h3 {
  color: #fff;
}
a.nobtn {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--yellow);
  display: inline-block;
  position: relative;
  padding-right: 21px;
  transition: 0.4s ease-in-out;
}
a.nobtn.ylwarrow:after {
  background: url(../images/plusyellow.svg) no-repeat;
}
a.nobtn:hover {
  border-bottom: 1px solid;
  transition: 0.4s ease-in-out;
}
a.nobtn:after {
  content: "";
  background: url(../images/plusblue.svg) no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  width: 11px;
  height: 11px;
  transform: translateY(-60%);
}
a.nobtn.white {
  color: #fff;
}
a.nobtn.white:after {
  background: url(../images/pluswhite.svg) no-repeat;
}
a.btn.blue {
  background: var(--blue);
}
a.btn.blue:hover {
  background: var(--lightblue);
  color: var(--blue);
}
a.btn.white:after {
  background: url(../images/plusblue.svg) no-repeat;
}
a.btn.white {
  background: #fff;
  color: var(--blue);
}
a.btn.white:hover {
  background: var(--blue);
  color: #fff;
}
a.btn.white:hover:after {
  background: url(../images/plus.svg) no-repeat;
}
header {
  position: relative;
}
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  padding: 6px 40px;
  position: fixed;
  width: calc(1840px - 80px);
  top: 10px;
  z-index: 99;
  box-shadow: 0 2px 8px #00000026;
}
.navigation .sub-menu {
  position: absolute;
  left: 0;
  top: 105%;
  width: calc(100% - 334px);
  background: #fff;
  border-radius: 5px;
  padding: 50px 167px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition:
    opacity 0.3s ease,
    visibility 0s 0.3s,
    transform 0.3s ease;
  display: flex;
  justify-content: space-between;
}
li.has-child:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    visibility 0s 0s,
    transform 0.3s ease;
}
.sub-menu ul {
  list-style: none;
}
.sub-menu .design-box {
  display: grid;
  grid-template-columns: 1fr 373px;
  gap: 121px;
}
.design-grid img:nth-child(3) {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 3;
}
.design-grid img:nth-child(2) {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 2;
  grid-row-end: 2;
}
.design-grid img:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 1;
  grid-row-end: 1;
}
.design-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.design-grid img {
  height: 100%;
  width: 100%;
}
.sub-menu [class*="col"] {
  padding-left: 20px;
  border-left: 0.5px solid var(--grey);
}
.sub-menu [class*="col"] ul {
  margin-top: 29px;
  gap: 15px;
  display: flex;
  flex-direction: column;
}
.sub-menu h4 > a.active:after {
  content: "";
  background: var(--yellow);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
}
.sub-menu h4 > a {
  font-size: 20px;
  color: var(--blue);
  font-weight: 500;
  position: relative;
  display: inline-block;
}
header .brand {
  display: inline-block;
  line-height: 1;
  width: auto;
  flex-shrink: 0;
}
.navigation ul.nav > li.has-child-small {
  position: relative;
}
.navigation ul.nav > li.has-child-small .sub-menu.small-menu {
  padding: 10px;
  flex-direction: column;
  width: 128px;
  top: 128%;
  left: -22px;
}
.navigation
  ul.nav
  > li.has-child-small
  .sub-menu.small-menu
  > .sub-menu-parent {
  border: none;
  padding: 0;
}
.navigation ul.nav > li.has-child-small .sub-menu h4 {
  line-height: 1;
}
.navigation ul.nav > li.has-child-small .sub-menu h4 > a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  display: block;
  padding: 8px 10px 9px;
}
.navigation ul.nav > li.has-child-small .sub-menu h4 > a.active:after {
  display: none;
}
.navigation ul.nav > li.has-child-small .sub-menu h4 > a.active {
  background: var(--lightblue);
}
.navigation ul.nav {
  list-style: none;
  display: flex;
  gap: 40px;
}
.navigation ul.nav .sub-menu-parent li.active > a {
  font-weight: 600;
}
.navigation .nav > li.active > a:before {
  content: "";
  background: var(--yellow);
  position: absolute;
  left: 0;
  top: 42px;
  height: 2px;
  width: 100%;
}
.navigation li.has-child.active:after {
  width: calc(100% - 22px);
}
.navigation ul.nav li {
  line-height: 42px;
  display: block;
}
.navigation .sub-menu ul li {
  line-height: 23px;
}
.navigation ul.nav li > a {
  font-weight: 300;
  font-size: 16px;
  color: var(--blue);
  position: relative;
  line-height: 24px;
  display: inline-block;
}
.navigation ul.nav li.has-child > a:after {
  content: "";
  background: url(../images/plus.svg) no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  width: 11px;
  height: 11px;
  background-size: contain;
  transform: translateY(-60%);
  transition: transform 0.3s ease;
}
.navigation ul.nav li.has-child:hover > a:after {
  transform: translateY(-60%) rotate(45deg);
}
.navigation ul.nav li.has-child > a {
  padding-right: 15.5px;
  position: relative;
}
.contact-info ul {
  display: flex;
  gap: 10px;
  align-items: center;
  list-style: none;
}
.contact-info ul li a.navbtn {
  margin-left: 30px;
}
.contact-info ul li.ico {
  list-style: none;
  position: relative;
  background: #fff;
}
.contact-info ul li.ico.calculator {
  z-index: 99;
}
.contact-info ul li.ico span.phnNum {
  position: absolute;
  right: 0;
  width: 0;
  border-radius: 50px;
  border: 1px solid var(--grey);
  height: 34px;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #000;
  font-size: 14px;
  transition: 0.2s ease-in-out;
  opacity: 0;
  padding-left: 10px;
  padding-top: 2px;
}
.contact-info ul li.ico.phn img {
  z-index: 111;
}
.calculator img {
  width: 21px;
}
.contact-info ul li.ico.phn:hover .phnNum {
  transition: 0.2s ease-in-out;
  opacity: 1;
  width: 160px;
  animation: fadeIn 0.6s ease-in-out forwards;
  z-index: 101;
  background: #fff;
}
.contact-info ul li.ico a {
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.contact-info ul li.ico a svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue);
  flex-shrink: 0;
}
.contact-info ul li.ico a:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.08);
}
.contact-info ul li.ico a:hover svg {
  stroke: #fff;
}
.contact-info ul li.ico.mail:hover a {
  background: var(--blue);
  border-color: var(--blue);
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-banner {
  position: relative;
}
.hero-banner:before {
  content: "";
  background: linear-gradient(45deg, rgb(0 0 0 / 25%), transparent);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero-banner img.hero_img {
  width: 100%;
  height: 92vh;
  display: block;
  object-fit: cover;
}
.banner-text h1,
.banner-text h2 {
  font-size: 100px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 90px;
}
.banner-text {
  position: absolute;
  bottom: 59px;
  width: 715px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.banner-text p {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 36px;
}
.banner-text a.btn {
  align-self: baseline;
  margin-top: 20px;
}
.pop-box-outer {
  position: relative;
}
.pop-box-inner {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 100%;
}
.pop-box-outer.active .pop-box-inner {
  transition: 0.4s ease-in-out;
}
.pop-box-outer.active .popup-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.popup-box {
  width: calc(360px - 20px);
  height: calc(190px - 20px);
  border-radius: 10px;
  background: #fff;
  padding: 10px;
  margin-left: auto;
  transition: 0.8s ease-in-out;
  cursor: pointer;
  z-index: 99;
  position: relative;
}
.pop-box-outer.active .popup-box {
  width: calc(100% - 20px);
  height: 74vh;
  transition: 0.8s ease-in-out;
  z-index: 99;
  position: relative;
}
.pop-box-outer.active .popup-box .popup-title {
  display: none;
}
.pop-box-outer.active .popup-video {
  display: block;
  height: 100%;
}
.pop-box-outer.active .pop-poster {
  display: none;
}
.pop-poster img {
  height: 100%;
  display: block;
  width: 100%;
}
.popup-video iframe {
  width: 100%;
  height: 100%;
}
.pop-box-outer span.close-video {
  position: absolute;
  right: -15px;
  top: -21px;
  width: 36px;
  height: 36px;
  background: #fff;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  border-radius: 50%;
}
.popup-box .popup-title {
  margin-top: 9px;
}
.popup-box .popup-title p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #000;
}
.pop-poster {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.pop-poster:before {
  content: "";
  background: var(--green);
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.pop-poster:after {
  content: "";
  position: absolute;
  left: 51%;
  top: 50%;
  border-left: 16px solid #fff;
  border-top: 7px solid #fff0;
  border-bottom: 7px solid #fff0;
  transform: translate(-50%, -50%);
}
.modal {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0 0 0 / 0.7);
  opacity: 1;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal.active {
  display: flex;
}
.modal-header {
  position: relative;
}
.modal-header span.close {
  position: absolute;
  right: -18px;
  top: -18px;
  font-size: 35px;
  color: #000;
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 100;
  cursor: pointer;
}
.modal-body iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
}
.modal-content {
  width: 50%;
  height: 500px;
}
.what-we-do {
  padding: 140px 0 161px;
  background-color: var(--lightblue);
}
.what-we-do .sec-head {
  text-align: center;
}
.what-we-do .col2 {
  margin-top: 59px;
  display: grid;
  grid-template-columns: 1fr 725px;
  gap: 83px;
}
.col2 .leftbox p.what-we-head {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  padding-right: 40px;
}
.rightbox .imgallery {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.rightbox .imgallery.active {
  display: grid;
}
.rightbox .imgallery img {
  object-fit: cover;
  border-radius: 10px;
}
.rightbox .imgallery img:first-child {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 1;
}
.rightbox .imgallery img:nth-child(2) {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 2;
  grid-row-end: 2;
  height: 240px;
}
.rightbox .imgallery img:last-child {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 2;
  height: 240px;
}
.col2 .leftbox .accordion {
  margin-top: 50px;
}
.accbox {
  padding-bottom: 37px;
  border-bottom: 1px solid #b6b6c7;
  margin-bottom: 37px;
}
.accbox.active {
  padding-bottom: 40px;
}
.whychoose .accbox.active {
  padding-bottom: 15px;
}
.whychoose .accbox {
  margin-bottom: 42px;
  padding-bottom: 42px;
}
.accbox:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}
.acc-head {
  position: relative;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}
.acc-head:before {
  content: "";
  position: absolute;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--grey);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.acc-head:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/accplus.svg) no-repeat;
  width: 20px;
  height: 20px;
  background-size: contain;
  transition: 0.4s ease-in-out;
}
.accbox.active .acc-head:after {
  background: url(../images/accminus.svg) no-repeat;
  height: 2px;
  transition: 0.4s ease-in-out;
}
.acc-head h3 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  color: var(--blue);
}
.acc-content p {
  color: var(--blue);
}
.acc-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition:
    opacity 1s ease-in-out,
    visibility 0s 1s,
    max-height 1s ease-in-out;
}
@keyframes smoothTransition {
  0% {
    opacity: 0;
    max-height: 0;
    visibility: hidden;
  }
  50% {
    opacity: 0.5;
    max-height: 250px;
    visibility: visible;
  }
  100% {
    opacity: 1;
    max-height: 1500px;
    visibility: visible;
  }
}
.accbox.active .acc-content {
  animation: smoothTransition 1s ease-in-out forwards;
}
.acc-content a.nobtn {
  margin-top: 20px;
}
.accbox.active .acc-head {
  margin-bottom: 12px;
  transition: 0.4s ease-in-out;
}
.our-expertise {
  padding: 160px 0;
  background: var(--blue);
}
.our-expertise .col2 {
  display: grid;
  grid-template-columns: 972px 1fr;
  gap: 124px;
}
.our-expertise .col2 .expertise_imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.our-expertise .col2 .expertise_imgs .imgbox {
  border-radius: 14px;
  overflow: hidden;
}
.our-expertise .col2 .expertise_imgs img {
  height: 100%;
  object-fit: cover;
  display: block;
}
.expertise_text {
  color: #fff;
}
.expertise_text .content p {
  margin-bottom: 30px;
}
.expertise_text .content p:last-of-type {
  margin-bottom: 29px;
}
.expertise_text h5.heading {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 17px;
}
.expertise_text .sec-head h3 {
  margin-bottom: 40px;
}
.expertise_text .content a.nobtn {
  color: #fff;
}
.expertise_text .content a.nobtn:after {
  background: url(../images/pluswhite.svg);
}
.creative {
  padding: 173px 0 104px;
  background-color: var(--green);
}
.creative .sec-head {
  display: grid;
  grid-template-columns: 534px 1fr;
  gap: 210px;
  align-items: flex-end;
}
.creative .sec-head .head-main h3 {
  font-size: 100px;
  font-weight: 300;
  line-height: 90px;
  color: #fff;
}
.creative .head-text h5.head-mid {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.creative .head-text p {
  color: #fff;
  font-weight: 300;
}
.creative-desc {
  display: grid;
  column-gap: 44px;
  grid-template-columns: 1fr 1fr;
}
.creative .project-description {
  width: 580px;
  color: #fff;
}
.creative .project-description .row-btn {
  margin-top: 28px;
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
}
.creative .visit-showroom-outer {
  position: relative;
}
.creative .visit-showroom {
  width: 764px;
  margin-left: auto;
}
.creative .visit-showroom .col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.showroom-txt {
  color: #fff;
}
.showroom-txt h4 {
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 19px;
}
.creative .swiper-slide .imgbox img {
  width: 100%;
  display: block;
}
.creative .swiper-slide .imgbox {
  border-radius: 10px;
  overflow: hidden;
}
.creativeSwiper .swiper-slide,
.creativeSwiper2 .swiper-slide {
  width: auto;
}
.creativeSwiper .swiper-wrapper {
  align-items: baseline;
  display: flex;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.creativeSwiper2 .swiper-wrapper {
  display: flex;
  white-space: nowrap;
  animation: marqueereverse 50s linear infinite;
}
.swiper.creativeSwiper {
  margin-top: 57px;
}
.swiper.creativeSwiper2 {
  margin-top: 44px;
}
.creativeSwiper .swiper-slide img,
.creativeSwiper2 .swiper-slide img {
  border-radius: 10px;
  overflow: hidden;
}
.our-projects {
  padding: 145px 0 140px;
  background-color: var(--lightblue);
}
.our-projects .sec-head h3 {
  font-weight: 300;
  width: 1096px;
}
.our-projects .sec-head h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 32px;
  color: var(--blue);
}
.projects {
  position: relative;
}
.projects .more-projectbtn {
  position: absolute;
  right: 0;
  top: -100px;
}
.projects .more-projectbtn a.nobtn {
  padding-right: 31px;
}
.our-projects .projects-row {
  display: flex;
  gap: 20px;
  margin-top: 55px;
}
.our-projects .project-img {
  height: 600px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.our-projects .project-img:after {
  content: "";
  background: rgb(27 64 83 / 20%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.project-box .box-text h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
}
.our-projects .projects-inner {
  position: relative;
}
.our-projects .project-box .box-text {
  position: absolute;
  top: 50px;
  width: calc(100% - 100px);
  height: calc(100% - 100px);
  left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.our-projects .project-box .box-text a.btn {
  align-self: baseline;
}
.our-projects .projects-row .project-box {
  width: 724px;
  transition: 0.4s ease-in-out;
}
.our-projects .projects-row .project-box:hover {
  width: calc(724px + 50px);
  transition: 0.4s ease-in-out;
}
.our-projects .projects-row .project-box .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial {
  background: var(--maroon);
  padding: 120px 0;
}
.testimonial .sec-head h3,
.testimonial .sec-head p {
  color: #fff;
}
.testimonial .sec-head {
  display: flex;
  gap: 92px;
  align-items: center;
  margin-right: 230px;
}
.testimonial .leftpaddbox {
  min-height: 406px;
  margin-top: 49px;
}
.testimonial-swiper-outer {
  position: absolute;
  width: 100%;
}
.testimonial-box .video-cover > img {
  max-height: 299px;
  min-height: 299px;
  object-fit: cover;
  object-position: center center;
}
.testimonial-box .video-cover img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.testimonial-box {
  text-align: center;
}
.testimonial-box .video-cover {
  position: relative;
  min-height: 299px;
  max-height: 299px;
}
.testimonial-box .video-cover:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
.testimonial-box .video-cover:before {
  content: "";
  background: var(--green);
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transform: translateX(-50%);
}
.testimonial-box .video-cover:after {
  content: "";
  position: absolute;
  left: 50.4%;
  top: calc(100% - 10px);
  border-left: 16px solid #fff;
  border-top: 7px solid #fff0;
  border-bottom: 7px solid #fff0;
  transform: translateX(-50%);
}
.testimonial-box .playtime p {
  color: #fff;
  display: none;
}
.testimonial-box .playtime {
  padding-top: 32px;
}
.video-meta h4.video-title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 36px;
  margin-top: 17px;
}
.testimonial-head {
  position: relative;
}
.navigations > div {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 0;
  cursor: pointer;
}
.leftpaddbox .controls {
  position: relative;
  width: 100%;
}
.testimonial-control {
  position: absolute;
  right: 0;
  top: -95px;
  width: 219px;
  display: flex;
  gap: 56px;
  justify-content: space-between;
}
.navigations {
  width: 110px;
  gap: 10px;
  display: flex;
}
.navigations .swiper-button-prev:after {
  background: url(../images/arrow-left.svg) no-repeat;
  font-size: 0;
  background-size: auto;
  width: 14px;
  height: 12px;
}
.navigations .swiper-button-next:after {
  background: url(../images/arrow-right.svg) no-repeat;
  font-size: 0;
  background-size: auto;
  width: 14px;
  height: 12px;
}
.slide-number {
  position: relative;
  color: #fff;
  top: 4px;
}
footer {
  padding: 140px 0 77px;
  background-color: var(--cream);
}
footer .insta-head a.social-link {
  color: var(--blue);
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}
footer .insta-head h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: var(--blue);
}
.ft-menu .ft-menu-col h4 {
  font-weight: 500;
}
footer .insta-head {
  display: flex;
  justify-content: space-between;
}
.insta-row {
  margin-top: 40px;
}
.instaswiper .swiper-slide {
  width: 350px;
  height: 350px;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.ft-bottom {
  margin-top: 101px;
}
.footer-col2 {
  display: grid;
  grid-template-columns: 538px 1fr;
  gap: 116px;
}
.ft-branding .brand a {
  display: inline-block;
}
.ft-branding .brand {
  margin-bottom: 58.8px;
}
.ft-bottom .brand a img {
  display: block;
}
.ft-branding .about-brand .ft-headings {
  margin-bottom: 11px;
  font-weight: 500;
}
.ft-branding .about-brand .certifications {
  margin-top: 28px;
  display: flex;
  gap: 31px;
}
.ft-heading h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
}
.ft-menu .ft-menu-col {
  margin-top: 59px;
  display: flex;
  justify-content: space-between;
}
.ft-menu .ft-menu-col ul {
  list-style: none;
  margin-top: 28px;
}
.ft-menu .ft-menu-col ul li a {
  color: var(--blue);
}
.ft-menu .ft-menu-col ul li a.nobtn {
  color: var(--yellow);
}
.ft-menu .ft-menu-col ul li + li {
  margin-top: 10px;
}
.ft-menu .ft-menu-col ul li.ft-msg {
  margin-top: 18px;
}
.ft-menu .ft-menu-col ul li.ft-mobile {
  margin-top: 28px;
}
.copyright {
  display: flex;
  justify-content: space-between;
  padding-top: 29px;
  margin-top: 80px;
  border-top: 1px solid var(--grey);
}
.copyright-txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .terms-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}
footer .terms-nav ul li a {
  color: var(--blue);
}
.copyright-txt p > a {
  display: inline-block;
  color: var(--blue);
}
.loader-wrap {
  position: fixed;
  z-index: 9999;
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: #fff0;
}
.loader-wrap svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 110vh;
}
.inner-banner {
  padding-top: 100px;
  background: var(--lightblue);
}
.breadcrum > ul li a {
  color: var(--blue);
}
.breadcrum > ul li {
  position: relative;
}
.breadcrum > ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 7px;
}
.breadcrum > ul li a img {
  position: relative;
  top: 2px;
}
.breadcrum > ul li + li:before {
  content: "";
  background: url(../images/angle-right.svg) no-repeat;
  position: absolute;
  left: -12px;
  top: 50%;
  width: 5px;
  height: 10px;
  background-size: contain;
  transform: translateY(-50%);
}
.inner-banner-text {
  padding-top: 79px;
}
.inner-banner-text h1 {
  font-size: 100px;
  font-weight: 300;
  line-height: 90px;
}
.inner-banner-text p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}
.services-slide {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  margin-bottom: -156px;
}
.services-slide .service-box .slide-txt {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  left: 50%;
  align-items: end;
  transform: translateX(-50%);
}
.services-slide .service-box .slide-head {
  transform: rotate(-90deg) translate(0);
  transition: 0.4s ease-in-out;
  transform-origin: 56px 0;
}
.services-slide .service-box.active .slide-head {
  transform: translateY(0) rotate(0deg);
  transition: 0.4s ease-in-out;
  width: 320px;
}
.services-slide .service-box .slide-txt .description {
  margin-top: 10px;
  display: none;
}
.services-slide .service-box .slide-txt .description p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #fff;
}
.services-slide .service-box.active .description {
  display: block;
}
.services-slide .service-box {
  position: relative;
  width: 220px;
  height: 600px;
  overflow: hidden;
  transition: 0.4s ease-in-out;
  border-radius: 10px;
}
.services-slide .service-box.active .slide-txt {
  width: calc(100% - 80px);
}
.services-slide .service-box.active {
  width: 724px;
  height: 600px;
  transition: 0.4s ease-in-out;
}
.services-slide .service-box.active a.btn {
  display: block;
  animation: fadeIn 0.8s ease-in-out;
}
.services-slide .service-box:before {
  content: "";
  background: rgb(27 64 83 / 30%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.services-slide .service-box a.btn {
  display: none;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.services-slide .service-img {
  height: 100%;
}
.services-slide .service-box > a {
  display: block;
  width: 100%;
  height: 100%;
}
.services-slide .service-img img {
  border-radius: 10px;
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.services-slide .service-box .slide-txt h4 {
  font-size: 36px;
  line-height: 36px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.services-slide .service-box.active .slide-txt h4 {
  line-height: 44px;
}
.services-slide p.slide-num {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #fff;
  margin-bottom: 8px;
}
.how-work {
  padding: 296px 0 165px;
  background: var(--maroon);
}
.how-work .sec-head h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
}
.how-work .sec-head h3 {
  font-size: 50px;
  font-weight: 300;
  line-height: 58px;
  color: #fff;
  margin-top: 20px;
}
.icon-box .icon-head h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
  margin-bottom: 14px;
}
.icon-box .icon-head p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #fff;
}
.icon-box .icon {
  padding-left: 80px;
  margin-left: 10px;
  position: relative;
}
.icon-box .icon:before {
  counter-increment: process;
  content: " " counter(process) ". ";
  color: rgb(255 255 255 / 20%);
  position: absolute;
  left: -10px;
  top: 0;
  width: 80px;
  line-height: 90px;
  height: 90px;
  font-size: 100px;
  align-items: center;
  display: flex;
  font-weight: 300;
  justify-content: center;
}
.work-process {
  margin-top: 78.6px;
  display: flex;
  gap: 63px;
  counter-reset: process;
  position: relative;
}
.work-process:before {
  content: "";
  background: #72596b;
  position: absolute;
  top: 115px;
  left: 28px;
  height: 1px;
  width: calc(100% - 320px);
}
.icon-box .icon-head {
  margin-top: 60.4px;
  position: relative;
}
.work-process .icon-box .icon-head:after {
  content: "";
  background: #72596b;
  position: absolute;
  left: 23px;
  top: -40px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.appointmentbtn {
  text-align: right;
  margin-top: -54px;
}
.before-after {
  padding: 160px 0;
  background-color: var(--lightblue);
}
.before-after .sec-head h4 {
  font-size: 28px;
  line-height: 36px;
}
.before-after .sec-head h3 {
  font-weight: 300;
  margin-top: 20px;
}
ul.ab-gallery-tab li a {
  padding: 12px 20px;
  border-radius: 50px;
  justify-content: center;
  display: flex;
  font-weight: 300;
  color: var(--blue);
  background: #fff;
}
ul.ab-gallery-tab li.active a {
  background-color: var(--blue);
  color: #fff;
}
ul.ab-gallery-tab {
  display: flex;
  gap: 10px;
  list-style: none;
  margin-top: 40px;
}
.ab-gallery-content {
  margin-top: 30px;
}
.comparison-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 557px;
  background: #ddd;
  border-radius: 10px;
}
.comparison-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.slider-handle {
  position: absolute;
  top: 50%;
  width: 88px;
  height: 88px;
  background: var(--green);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}
.ab-gallery-content .gallery-contentbox.active {
  display: block;
}
.ab-gallery-content .gallery-contentbox {
  display: none;
}
.comparison-container .tags {
  width: auto;
  height: auto;
  border-radius: 5px;
  background: var(--lightblue);
  border: 1px solid var(--blue);
  font-size: 16px;
  line-height: 24px;
  position: absolute;
  justify-content: center;
  display: flex;
  padding: 10px 20px;
  align-items: center;
}
.comparison-container .tags.after {
  left: 25%;
  bottom: calc(-41px / 2);
  transform: translateX(-50%);
}
.comparison-container .tags.before {
  right: 18%;
  bottom: calc(-41px / 2);
  transform: translateX(-50%);
}
.brands-row {
  display: flex;
  padding: 52.5px 0;
  border-top: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
  margin-top: 181px;
}
.brands-row .brand-box {
  padding: 0 64.5px;
  position: relative;
}
.brands-row .brand-box img {
  filter: grayscale(1);
}
.brands-row .brand-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: -25px;
  height: 180px;
  width: 1px;
  background-color: var(--grey);
}
.brands-row .brand-box:last-child:after {
  content: "";
  position: absolute;
  right: 0;
  top: -20px;
  height: 180px;
  width: 1px;
  background-color: var(--grey);
}
.our-expertise.whychoose .sec-head h3 {
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 43px;
}
.whychoose .acc-head h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  padding-right: 54px;
}
.whychoose .acc-content p {
  color: #fff;
}
.whychoose .content p:last-of-type {
  margin-bottom: 15px;
}
.whychoose .acc-head:before {
  background: #3d5d6d;
}
.mob-header {
  display: none;
  position: fixed;
  bottom: 20px;
  width: 370px;
  height: 54px;
  z-index: 999;
  left: 50%;
  transform: translateX(-50%);
}
.mob-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: var(--blue);
  border-radius: 10px;
}
.mob-header .header-inner .mobile a,
.mob-header .header-inner .mob-mail a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transition: background 0.3s ease;
}
.mob-header .header-inner .mobile a:hover,
.mob-header .header-inner .mob-mail a:hover {
  background: var(--yellow);
}
.mob-header .header-inner .mobile svg,
.mob-header .header-inner .mob-mail svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  flex-shrink: 0;
}
.mob-menu {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
  padding: 0 26px;
}
.mob-menu .menu-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  transition: opacity 0.25s ease;
  user-select: none;
}
.mob-header.active .mob-menu .menu-label {
  opacity: 0;
  pointer-events: none;
}
.mob-header.active .mob-nav {
  bottom: 0;
  transition: 1s ease-in-out;
  background: #fff;
  opacity: 1;
}
.mob-nav {
  position: absolute;
  left: 0;
  bottom: -283px;
  background: #fff;
  border-radius: 10px;
  z-index: -1;
  padding: 0;
  width: 370px;
  transition: 1s ease-in-out;
  opacity: 0;
}
.mob-nav ul li.ssub-menu:nth-child(2) ul.mobsub-innermenu,
.mob-nav ul li.ssub-menu:nth-child(4) ul.mobsub-innermenu {
  flex-direction: column;
  gap: 5px;
}
.mob-nav > ul > li.active > a {
  color: var(--grey);
}
.mob-nav > ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 46px 34px 115px;
}
.mob-nav ul li {
  list-style: none;
  position: relative;
}
.mob-nav li.has-child:after {
  content: "";
  background: url(../images/plus.svg) no-repeat;
  position: absolute;
  right: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background-size: auto;
  transition: 0.4s ease;
}
.mob-nav li.has-child.active:after {
  transform: rotate(45deg);
  transition: 0.4s ease;
}
.mob-nav ul li a {
  font-size: 17px;
  line-height: 25px;
  font-weight: 500;
  color: var(--blue);
  position: relative;
  display: block;
}
ul.mobsub-menu,
ul.mobsub-innermenu {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 1s ease-in-out,
    padding 1s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
ul.mobsub-innermenu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  align-items: baseline;
}
ul.mobsub-innermenu li {
  flex: 0 0 calc(50% - 24px);
  margin: 0 !important;
}
.mob-nav li.has-child.active > ul.mobsub-menu,
ul.mobsub-menu li.has-child.active > ul.mobsub-innermenu {
  max-height: 500px;
  padding: 15px 0 15px;
  transition:
    max-height 1s ease-in-out,
    padding 1s ease-in-out;
}
ul.mobsub-menu li.has-child.active > ul.mobsub-innermenu {
  padding: 15px 0 27px;
}
ul.mobsub-menu.without-child-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  align-items: baseline;
  column-gap: 76px;
}
ul.mobsub-menu.without-child-menu li a:before {
  display: none;
}
ul.mobsub-menu li a:before {
  content: "";
  background: url(../images/plus.svg) no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-size: auto;
}
ul.mobsub-menu li a {
  padding-left: 26px;
  font-size: 15px;
  line-height: 23px;
}
ul.mobsub-innermenu li + li {
  margin-top: 15px;
}
ul.mobsub-innermenu li a:before {
  display: none;
}
ul.mobsub-innermenu li a {
  font-weight: 300;
}
.mob-header,
.brand-mob {
  display: none;
}
.col2 .leftbox .accordion .rightbox {
  display: none;
}
.popup-box .popup-title p.mobtxt {
  display: none;
}
.ft-branding .brand a.ft-brandmob {
  display: none;
}
.ftlogomob {
  display: none;
}
.sm-toggle {
  display: none;
}
.popup-video {
  display: none;
}
.visit-showroom-outer .popup-box {
  position: absolute;
  bottom: -24px;
  right: 0;
}
.visit-showroom .pop-box-outer.active .popup-box {
  right: 0;
  width: calc(100% - 20px);
  position: absolute;
}
.visit-showroom .pop-box-outer {
  position: initial;
}
.innerbanner .imgbox {
  border-radius: 10px;
  overflow: hidden;
}
.innerbanner .imgbox img {
  display: block;
}
.innerbanner {
  padding-top: 40px;
  margin-bottom: -325px;
}
.inner-banner-text .txt-row {
  display: flex;
}
.inner-banner-text .txt-row .righttxt {
  max-width: 724px;
  margin-left: auto;
}
.inner-banner-text .txt-row .righttxt p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.what-offer {
  padding: 465px 0 174px;
  background: var(--green);
}
.what-offer .sec-head h3 {
  font-size: 100px;
  font-weight: 300;
  line-height: 90px;
  color: #fff;
}
.what-offer .offercol2 {
  display: grid;
  grid-template-columns: 620px 1fr;
  gap: 124px;
}
.what-offer .grid-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 44px;
}
.what-offer .grid-img img {
  width: 100%;
}
.what-offer .grid-img img {
  border-radius: 10px;
}
.what-offer .offercol2 .offer-grid-box img:nth-child(2),
.what-offer .offercol2 .offer-grid-box img:nth-child(3) {
  display: none;
}
.what-offer .grid-img img:nth-child(1) {
  grid-row-start: 1;
  grid-row-end: 2;
  grid-column-start: 1;
  grid-column-end: 3;
  height: 700px;
  object-fit: cover;
  width: 100%;
}
.what-offer .grid-img img:nth-child(2) {
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 1;
  grid-column-end: 1;
  height: 340px;
  object-fit: cover;
}
.what-offer .grid-img img:nth-child(3) {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 2;
  height: 340px;
  object-fit: cover;
}
.what-offer .offer-list h5 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 36px;
  margin-bottom: 20px;
  margin-top: -18px;
}
.what-offer .offercol2 .offer-grid-box {
  margin-top: 113px;
}
.what-offer .offer-list .col2p {
  display: grid;
  gap: 44px;
  grid-template-columns: 1fr 1fr;
}
.what-offer .offer-list .grid-img img:first-child {
  display: none;
}
.what-offer .offer-list .grid-img {
  margin: 60px 0;
}
.what-offer .offercol2 .offer-list p {
  color: #fff;
}
.top-performer {
  padding: 140px 0;
  background: var(--lightblue);
}
.top-performer .sec-head h3 {
  font-size: 100px;
  line-height: 90px;
  font-weight: 300;
  width: 80%;
}
.perform-row {
  padding-top: 30px;
}
.perform-row {
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 20px;
}
.related-inspiration .property-box .property-desc h4 {
  margin-bottom: 25px;
  min-height: 72px;
}
.property-box .imgbox img {
  display: block;
  border-radius: 10px;
  height: 330px;
  object-fit: cover;
  width: 100%;
}
.property-box .imgbox {
  position: relative;
}
.property-box .exerpt_desc p {
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.property-price p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 300;
}
.property-price {
  position: absolute;
  right: 20px;
  bottom: calc(-45px / 2);
  background: var(--blue);
  border-radius: 5px;
  padding: 10.5px 20px;
  z-index: 9;
}
.property-box .property-price.category {
  background: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}
.property-box .property-price.category > a {
  background: #fff;
  border-radius: 50px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
  transition: 0.4s ease-in-out;
}
.property-box .property-price.category > a:hover {
  padding: 10px 20px;
  font-size: 16px;
  transition: 0.4s ease-in-out;
}
.property-box .property-desc {
  padding-top: 30px;
  width: 440px;
}
.property-box .property-desc p {
  color: var(--blue);
}
.property-box .property-desc h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 12px;
  color: var(--blue);
}
.property-box .property-desc .nobtn {
  margin-top: 20px;
}
ul.property-tab {
  display: flex;
  gap: 10px;
  list-style: none;
}
ul.property-tab li a {
  padding: 10.5px 20px;
  border-radius: 50px;
  justify-content: center;
  display: flex;
  font-weight: 300;
  color: var(--blue);
  background: #fff;
}
ul.property-tab li.active a {
  background-color: var(--blue);
  color: #fff;
}
.top-performer .sec-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.top-performer .sec-head .rightbox {
  padding-bottom: 30px;
}
.solution-project {
  background: var(--maroon);
}
.solution-project .sec-head h4,
.solution-project .sec-head h3 {
  color: #fff;
}
a.nobtn.whiteico:after {
  background: url(../images/pluswhite.svg);
}
.inner-banner-text .txt-row h5.headmain {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
}
a.closebtn span {
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
a.closebtn {
  background: var(--blue);
  width: 102px;
  height: 52px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  color: #fff;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}
#bannermodal {
  background-color: rgb(0 0 0 / 96%);
}
#bannermodal span.close {
  display: none;
}
.banner-grid img {
  border-radius: 10px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-grid-box img:nth-child(1) {
  display: none;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
.banner-grid-box img:nth-child(2) {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 2;
}
.banner-grid-box img:nth-child(3) {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 2;
  grid-row-end: 2;
}
.banner-grid .headbox h1 {
  margin-bottom: 10px;
}
.banner-grid {
  display: grid;
  grid-template-columns: 724px 1fr;
  gap: 124px;
  align-items: flex-end;
  margin-bottom: -120px;
}
.banner-grid-box {
  margin-top: 58px;
  column-gap: 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.project-listings {
  padding: 205px 0 150px;
  background: var(--maroon);
}
.project-listing-tab ul {
  display: flex;
  gap: 10px;
  list-style: none;
}
.project-listings .project-listing-tab li a {
  padding: 12px 20px;
  border-radius: 50px;
  justify-content: center;
  display: flex;
  font-weight: 300;
  color: #fff;
  border: 1px solid #fff;
  background-color: #fff0;
}
.project-listings .project-listing-tab li.active a {
  color: var(--blue);
  background: #fff;
}
.project-listings .project-listing-tab li:hover a {
  background: #fff;
  color: var(--blue);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.projects-grid .project-box {
  position: relative;
}
.projects-grid .box-text {
  position: absolute;
  top: 50px;
  width: calc(100% - 100px);
  height: calc(100% - 100px);
  left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.projects-grid .project-img img {
  border-radius: 10px;
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}
.projects-grid .project-img:after {
  content: "";
  background: rgb(27 64 83 / 20%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.projects-grid .box-text a.btn {
  align-self: baseline;
}
.projects-inner,
.project-img {
  height: 100%;
}
.projects-grid .project-box:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 1;
  grid-row-end: 3;
  height: 600px;
}
.projects-grid .project-box:nth-child(2) {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 1;
  height: 300px;
}
.projects-grid .project-box:nth-child(3) {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 3;
  grid-row-end: 5;
  height: 300px;
}
.projects-grid .project-box:nth-child(4) {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 7;
  height: 920px;
}
.projects-grid .project-box:nth-child(5) {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 5;
  grid-row-end: 7;
  height: 300px;
}
.projects-grid .project-box:nth-child(6) {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 7;
  grid-row-end: 10;
  height: 920px;
}
.projects-grid .project-box:nth-child(7) {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 7;
  grid-row-end: 9;
  height: 600px;
}
.projects-grid .project-box:nth-child(8) {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 9;
  grid-row-end: 10;
  height: 300px;
}
.project-pagination ul.project-pagination-link li a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  align-items: center;
  justify-content: center;
}
.project-pagination ul.project-pagination-link {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  position: relative;
  z-index: 9;
  width: 290px;
  margin: 0 auto;
}
.project-pagination {
  margin-top: 60px;
  position: relative;
}
.project-pagination ul li.active a {
  background: #fff;
  color: var(--blue);
}
.project-pagination .navigations {
  position: absolute;
  left: 50%;
  top: 0;
  width: 724px;
  transform: translateX(-50%);
  justify-content: space-between;
}
.banner-grid .headbox .headtxt h1 {
  margin: 0;
  font-size: 50px;
  line-height: 58px;
  font-weight: 300;
}
.banner-grid .headbox .headtxt {
  display: grid;
  gap: 20px;
}
.banner-grid .headbox .headtxt a.btn {
  justify-self: baseline;
}
.headbox.detail .banner-grid-box {
  margin-top: 123px;
  column-gap: 20px;
}
.what-done {
  padding: 200px 0 0;
  margin-bottom: -122px;
}
.what-offer.what-done .sec-head h3 {
  font-size: 50px;
  line-height: 58px;
  font-weight: 300;
}
.what-offer .offercol2 .offer-grid-box {
  margin-top: 117px;
}
.what-done .offer-list h5 {
  margin-top: 15px;
  margin-bottom: 30px;
}
.what-offer.what-done .grid-img img:nth-child(1) {
  height: 580px;
}
.what-done .offer-list .grid-img {
  margin: 99px 0 0;
}
.project-detail-content {
  padding: 268px 0 160px;
  background: var(--lightblue);
}
.project-detail-content .col2 {
  display: grid;
  grid-template-columns: 1fr 476px;
  column-gap: 19px;
  align-items: end;
}
.project-detail-content .detail-box .colbox {
  display: grid;
  grid-template-columns: 410px 1fr;
  column-gap: 86px;
  margin-top: 103px;
}
.project-detail-content .detail-box h4 {
  font-size: 36px;
  font-weight: 300;
  line-height: 44px;
  padding-right: 63px;
}
.project-detail-content .col2 img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.project-detail-content .col2 .gallerybox img {
  height: 229px;
  width: 229px;
}
.project-detail-content .detail-feature img {
  height: 476px;
  width: 476px;
}
.project-detail-content .detail-box .colbox .gallerybox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 19px;
}
.project-content-slider .swiper.contentslider .swiper-slide img {
  height: 420px;
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}
.project-detail-content .detail-box .colbox .leftbox p:last-child {
  margin-bottom: 0;
}
.project-detail-content .detail-box .colbox .leftbox p {
  margin-bottom: 20px;
}
.project-content-slider {
  margin-top: 40px;
}
.contentslider .description {
  padding: 40px 38px 0;
}
.contentslider .description h5 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}
.impression-grid {
  margin-top: 160px;
}
.impression-grid .impression-box {
  display: grid;
  gap: 27px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
}
.impression-grid .impression-box .imgbox img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.impression-grid .sec-head h3 {
  font-weight: 300;
}
.impression-grid .impression-box .imgbox:nth-child(1) {
  height: 600px;
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 1;
}
.impression-grid .impression-box .imgbox:nth-child(2) {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 2;
  grid-column-end: 2;
}
.impression-grid .impression-box .imgbox:nth-child(3) {
  grid-row-start: 3;
  grid-row-end: 4;
  grid-column-start: 1;
  grid-column-end: 1;
}
.impression-grid .impression-box .imgbox:nth-child(2),
.impression-grid .impression-box .imgbox:nth-child(3),
.impression-grid .impression-box .imgbox:nth-child(5) {
  height: 362px;
}
.impression-grid .impression-box .imgbox:nth-child(4) {
  height: 989px;
  grid-row-start: 2;
  grid-row-end: 5;
  grid-column-start: 2;
  grid-column-end: 2;
}
.mobtxt {
  display: none;
}
.top-performer .perform-content .perform-row {
  display: none;
}
.top-performer .perform-content .perform-row.active {
  display: grid;
}
.testimonial.about {
  padding: 429px 0 161px;
}
.creative.about {
  padding: 406px 0 0;
  background: var(--blue);
  margin-bottom: -289px;
}
.creative.about .swiper.creativeSwiper2 {
  margin-top: 30px;
}
.inner-banner-text.about .feature-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-top: 66px;
}
.inner-banner-text.about .headbox .headmain {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
}
.about .banner-grid .headbox h1 {
  margin-bottom: 0;
}
.headbox .about-feature {
  margin-top: 80px;
  height: 700px;
}
.headbox .about-feature img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.about .banner-grid {
  grid-template-columns: 620px 1fr;
  margin-bottom: -266px;
}
.about .featurebox-right h3 {
  font-weight: 300;
  width: 406px;
  margin-bottom: 30px;
}
.about .featurebox-right ul {
  margin-top: 30px;
  column-count: 2;
  column-gap: 44px;
  list-style: none;
}
.creative-tabs ul.tabs-list li a {
  color: rgb(255 255 255 / 44%);
  font-size: 20px;
  line-height: 28px;
  display: inline-block;
}
.creative-tabs ul.tabs-list {
  display: flex;
  gap: 50px;
  border-bottom: 0.5px solid var(--grey);
}
.creative-tabs ul.tabs-list li {
  position: relative;
  padding-bottom: 12.5px;
}
.creative-tabs ul.tabs-list li:after {
  content: "";
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  width: 0;
  height: 1px;
  transition: 0.4s ease-in-out;
}
.creative-tabs ul.tabs-list li:hover:after {
  width: 100%;
  transition: 0.4s ease-in-out;
}
.creative-tabs ul.tabs-list li.active:after {
  width: 100%;
}
.creative-tabs ul.tabs-list li.active a {
  color: #fff;
}
.creative-tabbox {
  display: none;
}
.creative-tabbox.active {
  display: block;
}
.creative-tabbox .txtbox {
  color: #fff;
}
.creative-tabbox .col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 104px;
  margin-top: 59.5px;
}
.creative-tabbox .txtbox h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 12px;
}
.our-team {
  padding: 140px 0 79px;
}
.our-team .teambox {
  border-radius: 10px;
  width: 170px;
  height: 204px;
  align-items: flex-end;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.our-team .teambox .imgbox img {
  display: block;
}
.our-team .teambox.cyan {
  background: #82cfcb;
}
.our-team .teambox.orange {
  background: #f6d4d4;
}
.our-team .teambox.purple {
  background: #c6c8e4;
}
.our-team .sec-head {
  width: 520px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.our-team .team-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 20px;
  column-gap: 15px;
}
.our-team .team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  position: relative;
}
.our-team .team-row.first {
  direction: rtl;
}
.our-team .teambox:nth-child(2),
.our-team .teambox:nth-child(4) {
  margin-top: 73px;
}
.our-team .teambox:nth-child(6) {
  grid-column-start: 3;
  grid-row-start: 2;
  margin-top: -73px;
}
.our-team .teambox:nth-child(5) {
  grid-column-start: 4;
}
.our-team .team-groupimg {
  padding-top: 80px;
  margin-right: 95px;
}
.our-team .team-groupimg img {
  border-radius: 10px;
}
.modal-content .modal-body video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}
.inner-banner.contact {
  background: var(--blue);
}
.inner-banner.contact .breadcrum > ul li a {
  color: #fff;
}
.inner-banner.contact .breadcrum > ul li + li:before,
.inner-banner.contact .breadcrum > ul li a img {
  filter: brightness(20);
}
.inner-banner.contact .banner-grid {
  margin-bottom: 0;
  grid-template-columns: 816px 1fr;
  gap: 105px;
  padding: 0 186px;
  align-items: flex-start;
}
.inner-banner.contact {
  padding-bottom: 142px;
}
.inner-banner.contact .headbox {
  color: #fff;
}
.inner-banner.contact .headbox h5.headmain {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  padding-right: 96px;
}
.inner-banner.contact .banner-grid .headbox h1 {
  margin-bottom: 0;
}
.contact-form .form .field.full label[for="services"] {
  margin-bottom: 12px;
}
.contact-form {
  padding-top: 100px;
}
.contact-form h4.contact-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 30px;
}
.contact-infos,
.contact-infos a {
  color: #fff;
}
.contact-infos .txtbox h5.head {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-infos a,
.contact-infos p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
.contact-infos .txtbox {
  margin-bottom: 40px;
}
.contact-infos .txtbox:last-child {
  margin-bottom: 0;
}
.contact-infos p.direction:after {
  content: "";
  background: url(../images/pluswhite.svg) no-repeat;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
}
.contact-infos p.direction {
  font-weight: 600;
  margin-top: 20px;
  position: relative;
  display: inline-block;
}
.contact-infos p.direction a:hover {
  border-bottom: 1px solid;
  transition: 0.4sease-in-out;
}
.contact-form .form {
  display: grid;
  column-gap: 20px;
  grid-template-columns: 1fr 1fr;
  row-gap: 30px;
}
.contact-form .form .field label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}
.contact-form .form .field .checkbox label {
  margin: 0;
  font-weight: 300;
}
.contact-form .form .field.full {
  grid-column: 2 span;
}
.contact-form .form .field input,
.contact-form .form .field textarea {
  background: none;
  border: 1px solid #3d5d6d;
  border-radius: 5px;
  padding: 17px 20px 16px;
  height: calc(54px - 35px);
  width: calc(100% - 40px);
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}
.contact-form .form .field textarea {
  height: calc(100px - 35px);
}
.contact-form .form .field .checkbox input {
  appearance: none;
  background-color: #fff0;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 20px;
  height: 20px;
  border: 1px solid #3d5d6d;
  border-radius: 3px;
  transform: translateY(-0.075em);
  display: grid;
  padding: 0;
  place-content: center;
}
.contact-form .form .field .checkbox input::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  background-color: CanvasText;
  transform-origin: bottom left;
  background-color: #fff;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.contact-form .form .field .checkbox input:checked::before {
  transform: scale(1);
}
.contact-form .form .field .checkbox {
  display: flex;
  gap: 10px 50px;
  align-items: center;
  flex-wrap: wrap;
}
.contact-form .form .field .checklist {
  display: flex;
  gap: 50px;
}
.contact-form .form .field input::placeholder,
.contact-form .form .field textarea::placeholder {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  font-family: "hanken-grotesk", sans-serif;
}
.contact-form .form .field input:focus,
.contact-form .form .field textarea:focus {
  outline: none;
  box-shadow: none;
}
.contact-form .form .field input[type="submit"] {
  all: unset;
  background: var(--yellow);
  border-radius: 50px;
  width: auto;
  height: auto;
  padding: 12px 61px 11px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  line-height: 24px;
}
.landing-contact .contact-form .form .field input[type="submit"] {
  all: unset;
  background: var(--yellow);
  border-radius: 50px;
  width: auto;
  height: auto;
  padding: 12px 61px 11px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  line-height: 24px;
}
.contact-form .form .field .formbtn:hover input[type="submit"] {
  background: var(--lightblue);
  color: var(--blue);
}
.contact-form .form .field .formbtn {
  text-align: right;
  position: relative;
}
.contact-form .form .field .formbtn:after {
  content: "";
  background: url(../images/pluswhite.svg) no-repeat;
  position: absolute;
  right: 30px;
  top: 50%;
  width: 11px;
  height: 11px;
  background-size: contain;
  transform: translateY(-50%);
}
.contact-form .form .field .formbtn:hover:after {
  background: url(../images/plus.svg) no-repeat;
}
.contact-infos {
  padding-top: 140px;
}
.inpiration-detail {
  margin-top: 104px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.inner-banner.inspiration {
  background: var(--cream);
}
.project-listings.inspired {
  background: var(--lightblue);
  padding: 140px 0 160px;
}
.inner-banner.inspiration .banner-grid {
  align-items: flex-start;
  margin-bottom: -80px;
  grid-template-columns: 660px 1fr;
  gap: 74px;
}
.inner-banner.inspiration .banner-grid .featurebox {
  margin-top: -157px;
}
.inner-banner.inspiration .banner-text-head {
  margin-top: 29px;
}
.inner-banner.inspiration .banner-grid .featurebox img {
  width: 100%;
}
.inner-banner.inspiration .inner-banner-text h5 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  margin-top: 10px;
}
.inpiration-detail p.meta {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
.inpiration-detail h4.inspiration-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 10px;
}
.inpiration-detail .description p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
.project-listings.inspired .project-listing-tab li a:after {
  content: "";
  background: url(../images/pluswhite.svg) no-repeat;
  position: absolute;
  right: 11px;
  top: 48%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  filter: brightness(0);
}
.project-listings.inspired .project-listing-tab li a {
  background: #fff;
  color: var(--blue);
  position: relative;
  padding: 13px 30px 13px 13px;
}
.project-listings.inspired .project-listing-tab li.active a {
  background: var(--blue);
  color: #fff;
}
.project-listings.inspired .project-listing-tab li.active a:after {
  filter: brightness(1);
}
.project-listings.inspired .perform-row {
  padding-top: 33px;
}
.property-box .property-desc p.date {
  margin-bottom: 20px;
}
.project-listings.inspired .property-box .property-desc {
  padding-top: 30px;
  width: calc(100% - 16px);
}
.project-listings.inspired .project-listing-tab li a:hover:after {
  filter: brightness(1);
}
.project-listings.inspired .project-listing-tab li a:hover {
  background: var(--blue);
  color: #fff;
}
.inspired .navigations > div {
  background: #fff;
}
.inspired .project-pagination ul.project-pagination-link li a {
  color: var(--blue);
}
.inspired .project-pagination ul li.active a {
  background: var(--blue);
  color: #fff;
}
.inspired .project-pagination {
  margin-top: 80px;
}
.innerbanner .imgbox.fullimgservice {
  width: 100%;
  height: 740px;
  object-fit: cover;
}
.inner-banner.inspired-inner {
  background: var(--cream);
}
.inspired-inner .inner-banner-text p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
.inspired-inner .headbox.detail .banner-grid-box {
  margin-top: 65px;
  column-gap: 20px;
}
.inspired-inner .banner-grid {
  margin-bottom: -60px;
}
.renovation {
  padding: 160px 0 140px 0;
  background-color: #f1f5f9;
}
.renovation-heading h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: var(--blue);
}
.renovation-work-triangle p {
  margin-bottom: 20px;
}
.renovation-work-triangle p:last-child {
  margin-bottom: 0;
}
.revonation-main .renovation-work-triangle,
.revonation-main .renovation-img {
  padding-top: 40px;
}
.revonation-main .renovation-work-triangle:nth-child(2) {
  padding-top: 30px;
}
.renovation-work-triangle h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  color: var(--blue);
  padding-bottom: 10px;
}
.renovation-work-triangle h2 {
  font-size: 30px;
  line-height: 38px;
}
.renovation-work-triangle h4 {
  font-size: 25px;
  line-height: 32px;
}
.renovation-work-triangle h5 {
  font-size: 20px;
  line-height: 26px;
}
.renovation-work-triangle h6 {
  font-size: 18px;
  line-height: 22px;
}
.renovation-work-triangle p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--blue);
}
.position-renovation {
  padding-bottom: 40px;
}
.position-renovation h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  color: var(--blue);
  padding-bottom: 10px;
}
.position-renovation p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--blue);
}
.renovation-img img {
  border-radius: 10px;
}
.renovation-img {
  height: 450px;
}
.consider-flow {
  padding-top: 40px;
}
.consider-flow h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  color: var(--blue);
  padding-bottom: 10px;
}
.consider-flow p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--blue);
}
.clean-up-easy {
  padding-top: 40px;
}
.clean-up-easy h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  color: var(--blue);
  padding-bottom: 10px;
}
.clean-up-easy p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--blue);
}
.revonation-main p a {
  display: inline-block;
  text-decoration: underline;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--blue);
}
.realated-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.container-mini {
  max-width: 724px;
  margin: 0 auto;
}
.related-inspiration {
  padding: 120px 0 140px;
  background: var(--green);
}
.related-inspiration .sec-head h3 {
  color: #fff;
}
.related-inspiration .property-box .property-desc {
  width: 100%;
}
.related-row {
  display: flex;
  gap: 20px;
  margin-top: 49px;
}
.related-row .property-box {
  max-width: 476px;
}
.related-row.white p.date,
.related-row.white .property-box .property-desc h4,
.related-row.white .property-box .property-desc p {
  color: #fff;
}
.related-inspiration .related-box {
  position: relative;
}
.related-inspiration .related-box .property-desc {
  width: calc(100% - 16px);
}
.related-inspiration .related-box .view-allbtn {
  position: absolute;
  right: 0;
  top: -90px;
}
.inspired-contact {
  background-color: var(--blue);
  padding: 129px 0 141px;
}
.inspired-contact .sec-head h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
}
.inspired-contact .contact-form {
  padding-top: 30px;
}
.contact-form.white .form .field label {
  color: #fff;
}
.custmore-care-main-heading h1 {
  padding-top: 79px;
  font-size: 100px;
  line-height: 90px;
  color: var(--blue);
  font-weight: 300;
  margin-left: -5px;
}
.main-tabs {
  gap: 224px;
  padding-top: 66px;
  padding-bottom: 160px;
  display: grid;
  grid-template-columns: 1fr 724px;
  padding-right: 350px;
}
.tab h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  margin-top: 15px;
}
.tabcontent .main-tabs-text h2 {
  font-size: 50px;
  line-height: 58px;
  font-weight: 300;
  color: var(--blue);
  padding-bottom: 10px;
}
.tabcontent .main-tabs-text p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--blue);
}
.tab h4.active {
  font-weight: 500;
}
.online-vister {
  padding-top: 40px;
  max-width: 724px;
}
.online-vister h4 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  color: var(--blue);
  padding-bottom: 10px;
}
.online-vister p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--blue);
}
.your-consert {
  padding-top: 40px;
  max-width: 724px;
}
.your-consert h3 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  color: var(--blue);
  padding-bottom: 10px;
}
.your-consert p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--blue);
}
.pinetreelane {
  padding-top: 40px;
  max-width: 724px;
}
.pinetreelane p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--blue);
}
.main-tabs-text {
  max-width: 724px;
}
.pinetreelane {
  padding-top: 40px;
  max-width: 724px;
}
.pinetreelane h3 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  color: var(--blue);
  padding-bottom: 10px;
}
.pinetreelane p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--blue);
}
.pinetreelane ul {
  padding: 13px 0 20px 17px;
  max-width: 710px;
}
.pinetreelane ul li {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--blue);
}
.terms-tabs-left {
  display: none;
}
.terms-tab {
  padding: 10px 0;
  cursor: pointer;
  border-bottom: 1px solid #a8afb8;
  transition: background-color 0.3s ease;
  font-size: 21px;
  line-height: 31px;
}
p.mob_tab {
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
}
.mobile-tab {
  padding: 25px;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.mob_tab.active {
  color: var(--blue);
  cursor: pointer;
}
.mobile-tab {
  display: none;
}
.mobile-tab.open {
  display: block;
}
.tab.mobile-tab {
  margin-bottom: -12px;
}
.tab-bottom {
  border-bottom: 1px solid var(--blue);
}
.terms-tabs-left p.mob_tab span {
  padding-left: 10px;
}
p.mob_tab {
  position: relative;
}
p.mob_tab::after {
  content: "";
  background: url(../images/arrow_down_1.svg) no-repeat;
  position: absolute;
  right: 15px;
  top: 43%;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  background-size: contain;
  transition: transform 0.3s ease;
}
p.mob_tab.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.mob_tab.active::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 1;
}
.tab h4 {
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
  position: relative;
}
.tab.innner-tab {
  position: relative;
}
.tab h4.active::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 12px;
  background: url(../images/arrow_down_1.svg) no-repeat;
  transform: translateY(-50%);
  background-size: contain;
  transition: transform 0.3s ease;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  display: inline-block;
  left: -12px;
  top: 7px;
}
.tabcontent {
  display: none;
}
.tabcontent.active {
  display: block;
}
.mobile-tab {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.hero-banner.landing {
  padding-top: 98px;
  background: var(--lightblue);
}
.hero-banner.landing:before {
  content: none;
}
.landing-banner-inner {
  border-radius: 10px;
  overflow: hidden;
  width: 1840px;
  margin: 0 auto;
  position: relative;
}
.landing-banner-inner:after {
  content: "";
  background: linear-gradient(45deg, rgb(0 0 0 / 25%), transparent);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.landing-banner-inner img.hero_img {
  height: 820px;
}
.landing-banner-inner .banner-text a.btn {
  margin-top: 40px;
}
.landing-about .cols2 {
  display: grid;
  grid-template-columns: 620px 1fr;
  gap: 124px;
}
.landing-about {
  padding: 180px 0 156px;
  background: var(--lightblue);
}
.landing-about-feature img {
  height: 700px;
  object-fit: cover;
  width: 100%;
}
.landing-about .cols2 img {
  border-radius: 10px;
  display: block;
}
.landing-about .sec-head h3 {
  width: 406px;
  font-weight: 300;
  margin-bottom: 30px;
}
.landing-about .featurebox-right p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}
.landing-about .featurebox-right ul {
  margin-top: 30px;
  column-count: 2;
  column-gap: 44px;
  list-style: none;
}
.landing-about .feature-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-top: 35px;
}
.landing-about .feature-cols img {
  height: 311px;
  width: 100%;
}
.how-work.landing {
  background: var(--blue);
  padding: 296px 0 165px;
}
.text-block-section {
  padding: 140px 0;
  background: var(--lightblue);
}
.text-block-section .sec-head h3 {
  font-weight: 300;
  width: 593px;
  margin-bottom: 30px;
}
.text-block-section .cols {
  display: grid;
  gap: 108px;
  grid-template-columns: 680px 1fr;
}
.landing-contact {
  background: var(--lightblue);
  padding: 0 0 144px;
}
.landing-contact .cols {
  display: grid;
  grid-template-columns: 538px 1fr;
  gap: 110px;
}
.landing-contact .contact-head h3 {
  font-weight: 300;
  width: 361px;
  margin-bottom: 12px;
}
.landing-contact .contact-form .form .field input::placeholder,
.landing-contact .contact-form .form .field textarea::placeholder {
  color: var(--blue);
}
.landing-contact .sec-head.contact-head p {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}
.landing-contact .contact-form .form .field input,
.landing-contact .contact-form .form .field textarea {
  width: calc(100% - 42px);
  color: #3d5d6d;
}
.about.landing .featurebox-right h3 {
  width: 100%;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 20px;
}
.about.landing.inner-banner-text h1 {
  font-size: 50px;
  font-weight: 300;
  line-height: 58px;
  margin-bottom: 20px;
}
.landing .headbox .description p {
  font-size: 16px;
  line-height: 24px;
}
.landing .headbox .about-feature {
  margin-top: 58px;
  height: 620px;
  margin-right: 104px;
}
.about.landing .banner-grid {
  margin-bottom: -170px;
  gap: 20px;
  grid-template-columns: 724px 1fr;
}
.inner-banner-text.about.landing .feature-cols {
  margin-top: 120px;
}
.landing-service .services-slide {
  margin-bottom: 0;
}
.landing-service {
  padding: 160px 0 0;
  background: var(--lightblue);
}
.landing-service .sec-head h3 {
  width: 986px;
  font-weight: 600;
}
.our-projects.landing {
  padding: 0;
}
.testimonial.landing {
  padding: 375px 0 134px;
  background: var(--green);
}
.landing .navigations > div {
  background: var(--lightblue);
}
.landing .testimonial-box .video-cover:before {
  background: var(--yellow);
}
.request-aquote {
  background: var(--maroon);
  padding: 127px 0;
}
.request-aquote .request-cols {
  display: grid;
  grid-template-columns: 1fr 372px;
  gap: 275.5px;
}
.request-aquote .contact-form {
  padding-top: 0;
}
.contact-form.white h4.contact-title {
  color: #fff;
}
.request-aquote .contact-form .form .field input,
.request-aquote .contact-form .form .field textarea {
  border-color: #efe5e7;
}
.request-aquote .content.white .accbox .acc-head,
.request-aquote .content.white .accbox .acc-content p {
  color: #fff;
}
.content.white .acc-head:before {
  background: var(--cream);
  top: 35%;
}
.content.white .acc-head:after {
  filter: brightness(0);
  top: 35%;
}
.request-aquote .faqs h3 {
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 43px;
}
.request-aquote .content.white .acc-head h4 {
  font-size: 20px;
  line-height: 28px;
  padding-right: 89.5px;
}
.request-aquote .content.white .accbox {
  padding-bottom: 42px;
  margin-bottom: 42px;
}
.landing-service .service-img .newpage-arrow {
  position: absolute;
  top: 35px;
  width: 36px;
  height: 36px;
  right: 35px;
}
.landing-service .service-img .newpage-arrow img {
  border-radius: 0;
}
.mobile-tab.active {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.icon-box .icon img {
  width: 72px;
  height: 82px;
}
.creative.about .creativeSwiper .swiper-slide {
  margin-right: 28px !important;
}
.creative.about .creativeSwiper2 .swiper-slide {
  margin-right: 33px !important;
}
.our-team .sec-head p {
  line-height: 28px;
}
.inner-banner.contact .banner-grid .headbox h1 {
  position: relative;
  left: -4px;
}
.contact-form .form .formbtn span.wpcf7-spinner {
  position: absolute;
  bottom: 0;
}
.contact-form .form .wpcf7-list-item {
  margin: 0;
}
.banner-grid.project-detail .headtxt p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
.inner-banner.inspired-inner .featurebox.detail > img {
  height: 620px;
}
.main-tabs.customer h4.tablinks {
  font-size: 20px;
  line-height: 28px;
}
.main-tabs.customer ul {
  padding-top: 5px;
}
.main-tabs.customer ul li {
  list-style: none;
  margin-bottom: 10px;
  position: relative;
  padding-left: 14px;
}
.main-tabs.customer ul li:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.online-vister p {
  margin-bottom: 15px;
}
.online-vister p:last-child {
  margin: 0;
}
.main-tabs.customer ul li + li {
  margin-bottom: 20px;
}
.online-vister a {
  display: inline-block;
  color: var(--blue);
}
.online-vister a:hover {
  color: var(--yellow);
}
.copyright-txt a.ftlogo_bottom {
  display: none;
}
.banner-grid.project-detail .banner-grid-box img:nth-child(2),
.banner-grid.project-detail .banner-grid-box img:nth-child(3) {
  height: 321px;
}
.country-inner {
  position: relative;
}
.country-inner span.wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  bottom: -26px;
}
.country-inner .wpcf7-form-control-wrap {
  position: initial;
  margin-top: 2px;
}
footer #sb_instagram #sbi_load .sbi_load_btn {
  background: var(--blue);
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  position: relative;
  display: inline-block;
  padding: 12px 60px 11px 31px;
  font-size: 16px;
  transition: 0.4s ease-in-out;
}
footer #sb_instagram #sbi_load .sbi_load_btn:hover {
  background: var(--lightblue);
  color: var(--blue);
}
footer #sb_instagram #sbi_load .sbi_load_btn:after {
  content: "";
  background: url(../images/pluswhite.svg) no-repeat;
  position: absolute;
  right: 32px;
  top: 50%;
  width: 11px;
  height: 11px;
  background-size: contain;
  transform: translateY(-60%);
}
footer #sb_instagram #sbi_load .sbi_load_btn:hover:after {
  background: url(../images/plus.svg) no-repeat;
}
.hero-slider span.swiper-pagination-bullet {
  background: var(--yellow);
}
.hero-slider {
  cursor: pointer;
}
.hero-slider .swiper-button-next:after {
  content: url(../images/arrow-right.svg);
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translateX(-50%);
}
.hero-slider .swiper-button-prev:after {
  content: url(../images/arrow-left.svg);
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translateX(-50%);
}
.hero-slider .swiper-navigate > div {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffffc2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(50deg);
}
.contact-form.white .wpcf7-response-output {
  color: #fff;
}
.our-team .sec-head-main .cols2 {
  display: grid;
  grid-template-columns: 590px 1fr;
  gap: 177px;
  align-items: center;
}
.our-team .sec-head-main .cols2 .left-box h3 {
  font-size: 100px;
  font-weight: 300;
  line-height: 90px;
}
.our-team .sec-head-main .cols2 .right-box p {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
}
.teams-featured .feature-team-box {
  display: grid;
  grid-template-columns: 618px 1fr;
  gap: 134px;
  margin-top: 103px;
}
.feature-team-img {
  display: flex;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
.feature-team-img.purple {
  background: #c6c8e4;
}
.feature-team-img.cyan {
  background: #82cfcb;
}
.teams-featured {
  margin-right: 95px;
}
.teams-featured .feature-team-box .feature-team-detail {
  max-width: 586px;
}
.teams-featured .feature-team-box .feature-team-detail h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 7px;
}
.teams-featured .feature-team-img img {
  display: block;
  width: 100%;
  height: 671px;
  object-fit: cover;
  object-position: top;
}
.teams-featured .feature-team-box .feature-team-detail h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 40px;
}
.teams-featured .feature-team-box .feature-team-detail p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.teams-featured .feature-team-box.reverse .feature-team-detail p {
  display: grid;
  direction: ltr;
}
.teams-featured .feature-team-box.reverse {
  direction: rtl;
}
.teams-featured .feature-team-box.reverse .feature-team-detail {
  margin-right: auto;
  text-align: left;
}
.teams-member-list {
  margin: 186px 45px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.team-member-box.cyan {
  background: #82cfcb;
}
.team-member-box.purple {
  background: #c6c8e4;
}
.team-member-box.pink {
  background: #f6d4d4;
}
.team-member-box img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
  object-position: 0 30%;
}
.team-member-box {
  border-radius: 10px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.team-member-box .team-description {
  position: absolute;
  left: 17px;
  bottom: 16px;
  width: calc(100% - 34px);
  background: #1b4053;
  border-radius: 10px;
  padding: 23px 0 24px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.4s ease-in-out;
}
.team-member-box:hover .team-description {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease-in-out;
}
.team-member-box .team-description h4 {
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 5px;
}
.team-member-box .team-description p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
  text-align: center;
}
.our-clients {
  padding: 150px 0 calc(149px + 230px);
  background: #8cbea0;
}
.our-clients .sec-head h5 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 20px;
  color: #fff;
}
.our-clients .sec-head h3 {
  font-weight: 300;
  color: #fff;
}
.our-clients .swiper-slide .imgbox {
  background: #75ab8a;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 343px;
  min-height: 230px;
}
.our-clients .swiper-slide .imgbox img {
  width: 70%;
}
.our-clients .clients.swiper {
  margin-top: 49px;
  padding-right: 100px;
}
.our-clients {
  position: relative;
}
.our-clients .clients-innerbox {
  position: absolute;
  width: 100%;
}
.our-clients .navigations > div {
  background: #fff;
}
.our-clients .navigations {
  position: absolute;
  top: -92px;
  z-index: 99;
  left: 70%;
}
.creative.about .sec-head h3 {
  color: #fff;
  margin-bottom: 30px;
}
.slides-new-section {
  padding: 187px 0 0;
  background: var(--lightblue);
}
.slides-new-section .services-slide {
  display: flex;
  gap: 28px;
  margin: 0;
  margin-bottom: 0;
  justify-content: center;
}
.slides-new-section .sec-head h3 {
  max-width: 708px;
  margin-bottom: 59px;
}
.inspired-inner .headbox.detail p a {
  text-decoration: underline;
  color: var(--blue);
  display: inline-block;
}
.property-box .property-desc p a {
  color: inherit;
  display: inline-block;
  text-decoration: underline;
}
.whatup-section {
  position: fixed;
  z-index: 99991;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 15px;
  background-color: #25d366;
  border-radius: 100px;
  box-shadow: 0 0 10px rgb(0 0 0 / 0.3);
}
.whatup-section-inn {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.whatup-section img {
  width: 30px;
  height: 30px;
}
.toggle-menu-main li.langSelector {
  display: none;
}
.grecaptcha-badge {
  display: none !important;
}
.whatsapp-icon {
  display: none;
}
.what-offer .offercol2 .offer-list p a {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
}
.inner-banner.inspiration .banner-grid.wrapbox {
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 0;
  padding-bottom: 20px;
}
.inner-banner.inspiration .banner-grid.overflow {
  margin-bottom: 0;
  padding-bottom: 30px;
}
.page-template-calculator footer {
  padding-top: 0;
}
.inner-banner-calculator h1 {
  padding-bottom: 15px;
}
.calculator-main {
  background: var(--cream);
}
.calculator-inner-main {
  background: var(--maroon);
  display: grid;
  position: relative;
  padding: 60px 55px;
  top: -146px;
}
.inner-tab-calulator {
  display: grid;
  grid-template-columns: 1fr 22vw;
  gap: 58px;
}
.inner-tab-calulator.tab-content.active {
  display: grid;
}
.inner-banner-calculator .banner-grid {
  margin-bottom: 0;
}
.inner-banner-calculator {
  padding-bottom: 220px;
}
.calculator-content-left {
  color: #fff;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.tab-btn.active {
  background-color: #007bff;
  color: #fff;
}
.outer-main-tabing .tab-btn {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  user-select: none;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 45px;
  border: 1px solid #fff;
  height: 45px;
  background: #fff0;
  color: #fff;
}
.outer-main-tabing .tab-btn.active {
  background: #fff;
  color: #4f3047;
}
.outer-main-tabing .tab-buttons {
  display: flex;
  gap: 10px;
}
.calculator-inner-tab .tab-buttons {
  display: flex;
  gap: 15px;
}
.calculator-inner-tab .tab-btn {
  background: #72586b;
  border: none;
  padding: 5px;
  width: 130px;
  height: 142px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  color: #fff;
  cursor: pointer;
  font-family: "hanken-grotesk", sans-serif;
  font-size: 16px;
  align-items: center;
  font-weight: 300;
}
.calculator-inner-tab button img {
  width: 37px;
  height: 37px;
  object-fit: contain;
}
.checkbox-custom {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
  position: relative;
  justify-content: center;
}
.checkbox-custom input[type="checkbox"] {
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  appearance: checkbox !important;
  margin-top: 4px;
  position: absolute;
  opacity: 0;
}
.checkbox-custom input + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  display: flex;
  gap: 14px;
  align-items: start;
}
.checkbox-custom input + label:before {
  content: "";
  margin-right: 0;
  display: inline-block;
  vertical-align: text-top;
  width: 16px;
  height: 16px;
  background: #fff0;
  border: 1px solid #fff;
  border-radius: 50%;
}
.calculator-inner-tab .tab-btn.active label:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-block;
  transform: translate(-50%, -50%);
  height: 11px;
  width: 11px;
  background: #503047;
  border-radius: 50%;
  border: 4px solid #fff;
}
.calculator-inner-tab {
  margin-bottom: 34px;
}
.cal-space-row {
  display: grid;
  gap: 22px;
  margin-bottom: 34px;
}
.row-title h3 {
  font-size: 22px;
  font-weight: 500;
}
.custom-checkbox-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.custom-cal-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  user-select: none;
  font-size: 16px;
  padding: 11px 22px;
  border-radius: 45px;
  border: 1px solid #72586b;
  height: 20px;
}
.custom-cal-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.custom-cal-checkbox input[type="checkbox"]:checked + span::after {
  content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cg%20id%3D%22Group_530%22%20data-name%3D%22Group%20530%22%20transform%3D%22translate%28-340%20-929%29%22%3E%3Ccircle%20id%3D%22Ellipse_29%22%20data-name%3D%22Ellipse%2029%22%20cx%3D%229%22%20cy%3D%229%22%20r%3D%229%22%20transform%3D%22translate%28340%20929%29%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20id%3D%22Path_181%22%20data-name%3D%22Path%20181%22%20d%3D%22M139.786%2C179.013l2.839%2C2.817%2C5.125-5.125%22%20transform%3D%22translate%28205.714%20758.795%29%22%20fill%3D%22none%22%20stroke%3D%22%234f3047%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E);
  position: relative;
  right: -6px;
  top: 3px;
  display: inline-block;
}
.inner-tab-content:last-child {
  margin-bottom: 0;
}
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.slider-label {
  font-size: 20px;
  font-weight: 500;
}
.slider-value {
  font-size: 16px;
}
.cal-progress-slider {
  width: 100%;
  -webkit-appearance: none;
  background: linear-gradient(to right, #fff 40%, #887483 40%);
  border-radius: 5px;
  height: 5px;
  outline: none;
}
.cal-progress-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #6b5c68;
  cursor: pointer;
}
.cal-progress-slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #6b5c68;
  cursor: pointer;
}
.slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 16px;
  color: #fff;
}
.calculate-btn a {
  cursor: pointer;
}
.calculator-content-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60%;
}
.calculator-amount {
  display: grid;
  gap: 38px;
  margin-bottom: 52px;
}
.calculator-amount p {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}
.calculator-amount h2 span {
  font-weight: 600;
  padding-right: 10px;
}
.calculator-amount h2 {
  font-size: 50px;
  color: #fff;
  font-weight: 300;
  line-height: normal;
}
.calculator-feature-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}
.calculator-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.finishes-checkbox-group.finishes-checkbox-group.new-floor-selected
  .custom-cal-checkbox:last-child {
  display: flex;
}
.finishes-checkbox-group.finishes-checkbox-group.new-floor-selected
  .custom-cal-checkbox {
  display: none;
}
.finishes-checkbox-group.finishes-checkbox-group
  .custom-cal-checkbox:last-child {
  display: none;
}
.finishes-checkbox-group.living-checkbox-group.living-input-selected
  .custom-cal-checkbox {
  display: none;
}
.finishes-checkbox-group.living-checkbox-group
  .custom-cal-checkbox:nth-last-child(2) {
  display: none;
}
.finishes-checkbox-group.living-checkbox-group.living-input-selected
  .custom-cal-checkbox:nth-last-child(2) {
  display: flex;
}
.modal-open {
  overflow: hidden !important;
}
.modal-form-outer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(4%);
}
.modal-form-outer .contact-form {
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  position: relative;
}
.modal-form-outer .contact-form .close-btn {
  position: absolute;
  right: -11px;
  top: -20px;
  cursor: pointer;
}
.page-template-calculator .modal-form-outer .contact-form .form input {
  color: var(--blue);
  font-family: "hanken-grotesk", sans-serif;
  font-weight: 600;
}
.page-template-calculator
  .modal-form-outer
  .contact-form
  .form
  input::placeholder {
  color: #a5a5a5;
  font-family: "hanken-grotesk", sans-serif;
  font-weight: 600;
}
.page-template-calculator .modal-form-outer .contact-form h2 {
  text-align: center;
  padding-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}
.page-template-calculator
  .modal-form-outer
  .contact-form
  .form
  .field
  input[type="submit"] {
  color: #fff;
}
.page-template-calculator
  .modal-form-outer
  .contact-form
  .form
  .field
  input[type="submit"]:hover {
  color: #000;
}
.room-type-circle {
  margin-right: 0;
  display: inline-block;
  vertical-align: text-top;
  width: 16px;
  height: 16px;
  background: #fff0;
  border: 1px solid #fff;
  border-radius: 50%;
}
.calculator-inner-tab .tab-btn.active .room-type-circle {
  background: #503047;
  border-radius: 50%;
  outline: 1px solid #fff;
}
.calculator-inner-tab .tab-buttons {
  width: 100%;
}
.finishes-checkbox-group.finishes-checkbox-group.new-floor-selected
  .custom-cal-checkbox {
  display: none !important;
}
.finishes-checkbox-group.finishes-checkbox-group.new-floor-selected
  .custom-cal-checkbox:last-child {
  display: block !important;
}
.calculator-inner-tab.cal-space-row.room-type-row {
  width: calc(100% - 27vw);
}
.modal .modal-form-outer .contact-form .form .field input,
.contact-form .form .field textarea {
  color: var(--blue);
  font-family: "hanken-grotesk", sans-serif;
  font-weight: 600;
}
.contact-form .form .field textarea {
  color: var(--white);
}
.modal .modal-form-outer .contact-form .form .field input::placeholder {
  color: #b1a5a5;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
}
@media (max-width: 1919px) {
  .header-main {
    width: calc(100% - 140px);
    left: 30px;
  }
  .hero-banner.landing {
    padding: 98px 24px 0;
  }
  .landing-banner-inner {
    width: 100%;
  }
}
@media (max-width: 1700px) {
  body {
    font-size: 15px;
    line-height: 23px;
  }
  .container {
    padding: 0 40px;
  }
  .banner-text {
    bottom: 60px;
    gap: 10px;
  }
  .banner-text a.btn {
    margin-top: 11px;
  }
  .banner-text h1,
  .banner-text h2 {
    font-weight: 300;
  }
  .expertise_text h5.heading {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 18px;
  }
  .expertise_text .content p {
    margin-bottom: 20px;
    font-size: 15px;
  }
  .expertise_text .sec-head h3 {
    margin-bottom: 30px;
  }
  .banner-text p {
    font-size: 22px;
    line-height: 30px;
  }
  a.btn.big {
    font-size: 15px;
    padding: 12px 56px 11px 34px;
  }
  .popup-box .popup-title p {
    font-size: 15px;
    line-height: 23px;
  }
  .sec-head h3 {
    font-size: 40px;
    line-height: 48px;
  }
  .our-expertise .col2 {
    display: grid;
    grid-template-columns: 768px 1fr;
    gap: 60px;
  }
  .our-expertise .col2 .expertise_imgs .imgbox {
    height: 540px;
  }
  .our-expertise .col2 .expertise_imgs .imgbox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .navigation ul.nav li a {
    font-size: 15px;
    line-height: 23px;
  }
  .expertise_text .content p:last-of-type {
    margin-bottom: 31px;
  }
  .whychoose .expertise_text .content p:last-of-type {
    margin-bottom: 15px;
  }
  .our-expertise {
    padding: 80px 0;
  }
  .what-we-do {
    padding: 100px 0;
  }
  .col2 .leftbox p.what-we-head {
    font-size: 18px;
    line-height: 24px;
    padding-right: 0;
  }
  .col2 .leftbox .accordion {
    margin-top: 45px;
  }
  .what-we-do .col2 {
    margin-top: 30px;
    gap: 89px;
    grid-template-columns: 1fr 670px;
  }
  .container-fluid {
    padding: 0 40px;
  }
  .header-main {
    width: calc(100% - 160px);
    left: 40px;
    padding: 9px 40px 9px;
    justify-content: normal;
  }
  .hero-banner img.hero_img {
    height: 95vh;
  }
  .creative .sec-head .head-main h3 {
    font-size: 80px;
    line-height: 80px;
  }
  .creative .sec-head {
    grid-template-columns: 427px 1fr;
    gap: 263px;
  }
  .creative .head-text p {
    font-size: 15px;
  }
  .swiper.creativeSwiper {
    margin-top: 61px;
  }
  .swiper.creativeSwiper2 {
    margin-top: 30px;
  }
  .our-projects {
    padding: 100px 0;
  }
  .creative {
    padding: 100px 0;
  }
  .creative .head-text h5.head-mid {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 21px;
  }
  .creative-desc {
    column-gap: 70px;
  }
  .acc-head h3,
  .video-meta h4.video-title,
  .ft-heading h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .acc-content p {
    font-size: 15px;
    line-height: 23px;
  }
  a.nobtn {
    font-size: 15px;
    line-height: 23px;
    padding-right: 24px;
  }
  .acc-content a.nobtn {
    margin-top: 21px;
  }
  .acc-head:before {
    width: 40px;
    height: 40px;
  }
  .acc-head:after {
    right: 0;
  }
  .our-projects .project-img {
    height: 540px;
  }
  .testimonial {
    padding: 100px 0;
  }
  .testimonial-box .video-box {
    width: 100%;
  }
  footer {
    padding: 100px 0 94px;
  }
  .footer-col2 {
    gap: 160px;
    grid-template-columns: 460px 1fr;
  }
  .ft-branding .about-brand .certifications img {
    width: 120px;
  }
  .copyright {
    padding-top: 30px;
  }
  .copyright-txt p:last-child {
    margin-top: 11px;
  }
  .ft-branding .brand {
    margin-bottom: 49.8px;
  }
  .ft-menu .ft-menu-col {
    margin-top: 57px;
    padding-right: 32px;
  }
  .sub-menu {
    padding: 50px 50px;
    width: calc(100% - 100px);
  }
  .sub-menu .design-box {
    gap: 70px;
  }
  .our-projects .sec-head h3 {
    width: 828px;
  }
  .accbox {
    padding-bottom: 25px;
    margin-bottom: 26px;
  }
  .accbox.active {
    padding-bottom: 30px;
  }
  .acc-content {
    padding-right: 57px;
  }
  .rightbox .imgallery {
    gap: 23px;
  }
  .our-expertise {
    padding: 100px 0;
  }
  .creative .project-description .row-btn {
    margin-top: 31px;
  }
  .showroom-txt h4 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 20px;
  }
  .our-projects .projects-row {
    margin-top: 60px;
  }
  .our-projects .sec-head h4 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .our-projects .project-box .box-text {
    top: 54px;
    width: 300px;
    height: calc(100% - 108px);
  }
  .instaswiper .swiper-slide {
    height: auto;
  }
  .instaswiper .swiper-slide img {
    height: 100%;
    width: 100%;
    display: block;
  }
  .ft-bottom {
    margin-top: 80px;
  }
  a.btn {
    padding: 6px 38px 6px 20px;
  }
  .pop-box-outer.active .popup-box {
    height: 62vh;
  }
  .inner-banner-text {
    padding-top: 69px;
  }
  .inner-banner-text h1 {
    font-size: 80px;
    font-weight: 300;
    line-height: 80px;
    margin-bottom: 6px;
  }
  .inner-banner-text p {
    font-size: 18px;
    line-height: 24px;
  }
  .services-slide .service-box.active {
    width: 716px;
    height: 540px;
  }
  .services-slide .service-box {
    width: 200px;
    height: 540px;
  }
  .services-slide .service-box .slide-txt h4 {
    font-size: 31px;
    line-height: 38px;
  }
  .services-slide p.slide-num {
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 15px;
  }
  .services-slide .service-box .slide-txt h4 {
    font-size: 30px;
    line-height: 38px;
  }
  .services-slide {
    gap: 14px;
    margin-bottom: -123px;
  }
  .how-work {
    padding: 223px 0 120px;
  }
  .how-work .sec-head h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .how-work .sec-head h3 {
    font-size: 40px;
    line-height: 48px;
  }
  .work-process {
    margin-top: 67.6px;
  }
  .icon-box .icon:before {
    font-size: 80px;
    line-height: 80px;
    height: 80px;
  }
  .icon-box .icon-head {
    margin-top: 42px;
  }
  .work-process:before {
    top: 98px;
    width: calc(100% - 21%);
  }
  .slide-btn a.btn.big {
    padding: 13px 58px 11px 35px;
  }
  .icon-box .icon-head h4 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 15px;
  }
  .icon-box .icon-head p {
    font-size: 15px;
    line-height: 23px;
  }
  .how-work .appointmentbtn a.btn.big {
    padding: 12px 58px 11px 32px;
  }
  .before-after {
    padding: 100px 0;
  }
  .before-after .sec-head h4 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
  }
  .ab-gallery-content {
    margin-top: 43px;
  }
  .slider-handle {
    font-size: 18px;
    line-height: 24px;
  }
  .comparison-container .tags {
    font-size: 15px;
    line-height: 23px;
  }
  .brands-row {
    margin-top: 112px;
  }
  .brands-row .brand-box {
    padding: 0 55.5px;
  }
  .our-expertise.whychoose .sec-head h3 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 47px;
  }
  .what-offer {
    padding: 350px 0 100px;
  }
  .inner-banner-text p {
    font-size: 22px;
    line-height: 30px;
  }
  .inner-banner-text .txt-row p.righttxt {
    max-width: 670px;
    font-size: 15px;
    line-height: 23px;
  }
  .innerbanner {
    margin-bottom: -250px;
  }
  .innerbanner .imgbox img,
  .innerbanner .imgbox.fullimgservice {
    height: 640px;
    width: 100%;
    object-fit: cover;
  }
  .what-offer .sec-head h3 {
    font-size: 80px;
    line-height: 80px;
  }
  .what-offer .offer-list h5 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 30px;
    padding-right: 116px;
  }
  .what-offer .offercol2 {
    gap: 138px;
    grid-template-columns: 552px 1fr;
  }
  .what-offer .offercol2 .offer-grid-box {
    margin-top: 119px;
  }
  .what-offer .offer-list .grid-img {
    column-gap: 28px;
    margin: 40px 0;
  }
  .whychoose .acc-head h4 {
    font-size: 18px;
    line-height: 24px;
    padding-right: 109px;
  }
  .whychoose .accbox {
    padding-bottom: 28px;
    margin-bottom: 29px;
  }
  .whychoose .accbox:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
  }
  .top-performer {
    padding: 100px 0 252px;
  }
  .perform-row {
    padding-top: 17px;
  }
  .top-performer .sec-head h3 {
    font-size: 80px;
    line-height: 80px;
  }
  .property-box .property-desc h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .property-price p {
    font-size: 15px;
    line-height: 23px;
  }
  .project-box .box-text h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .what-offer .grid-img img:nth-child(1) {
    height: 648px;
  }
  .inner-banner-text .txt-row h5.headmain {
    font-size: 22px;
    line-height: 30px;
  }
  .banner-grid .headbox p {
    font-size: 18px;
    line-height: 24px;
  }
  .banner-grid {
    gap: 138px;
    grid-template-columns: 670px 1fr;
    margin-bottom: -118px;
  }
  .banner-grid-box {
    margin-top: 146px;
    column-gap: 28px;
  }
  .banner-grid .headbox h1 {
    margin-bottom: 6px;
  }
  .banner-grid .featurebox img {
    height: 648px;
    object-fit: cover;
  }
  .project-listings {
    padding: 180px 0 100px;
  }
  .projects-grid {
    margin-top: 36px;
  }
  .project-pagination .navigations {
    width: 672px;
  }
  .project-pagination ul li a {
    font-size: 15px;
    line-height: 23px;
  }
  .headbox.detail .banner-grid-box {
    margin-top: 145px;
  }
  .banner-grid .headbox .headtxt h1 {
    font-size: 40px;
    line-height: 48px;
  }
  .banner-grid .headbox p {
    font-size: 15px;
    line-height: 23px;
  }
  .banner-grid-box img:nth-child(2),
  .banner-grid-box img:nth-child(3) {
    height: 321px;
  }
  .what-done .offer-list h5 {
    margin-bottom: 37px;
    margin-top: 0;
  }
  .what-done .offer-list .col2p {
    gap: 28px;
  }
  .what-done .offercol2 {
    gap: 70px;
    grid-template-columns: 620px 1fr;
  }
  .what-done .offercol2 .offer-grid-box {
    margin-top: 96px;
  }
  .what-done .offer-list .grid-img {
    margin: 124px 0 0;
  }
  .what-offer.what-done .sec-head h3 {
    font-size: 40px;
    line-height: 48px;
  }
  .project-detail-content {
    padding: 208px 0 100px;
  }
  .what-done {
    margin-bottom: -118px;
    padding-bottom: 0;
  }
  .project-detail-content .detail-box h4 {
    font-size: 30px;
    line-height: 38px;
    padding-right: 82px;
  }
  .project-detail-content .col2 {
    column-gap: 20px;
    grid-template-columns: 1fr 450px;
  }
  .project-detail-content .detail-box .colbox {
    margin-top: 135px;
    column-gap: 76px;
    grid-template-columns: 394px 1fr;
  }
  .project-detail-content .detail-box .colbox .gallerybox {
    column-gap: 20px;
  }
  .contentslider .description h5 {
    font-size: 18px;
    line-height: 24px;
  }
  .contentslider .description {
    padding: 40px 20px 0;
  }
  .impression-grid {
    margin-top: 100px;
  }
  .impression-grid .impression-box {
    margin-top: 30px;
    gap: 20px;
  }
  .impression-grid .impression-box .imgbox:nth-child(1) {
    height: 555px;
  }
  .impression-grid .impression-box .imgbox:nth-child(2),
  .impression-grid .impression-box .imgbox:nth-child(3),
  .impression-grid .impression-box .imgbox:nth-child(5) {
    height: 335px;
  }
  .impression-grid .impression-box .imgbox:nth-child(4) {
    height: 910px;
  }
  .inner-banner-text.about .headbox .headmain {
    font-size: 22px;
    line-height: 30px;
  }
  .headbox .about-feature {
    margin-top: 71px;
    height: 648px;
  }
  .about .banner-grid .headbox h1 {
    margin-bottom: 6px;
  }
  .about .featurebox-right h3 {
    width: 325px;
    margin-bottom: 20px;
  }
  .about.inner-banner-text p {
    font-size: 18px;
    line-height: 24px;
  }
  .inner-banner-text.about .feature-cols {
    margin-top: 72px;
  }
  .about .banner-grid {
    grid-template-columns: 552px 1fr;
    margin-bottom: -248px;
  }
  .about .featurebox-right ul {
    column-gap: 28px;
  }
  .inner-banner-text.about .feature-cols {
    gap: 30px;
  }
  .creative.about {
    padding: 348px 0 0;
    margin-bottom: -260px;
  }
  .creative-tabs ul.tabs-list li a,
  .creative-tabbox .txtbox h4 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 13px;
  }
  .creative-tabbox .col-3 {
    margin-top: 61.5px;
    gap: 50px;
  }
  .creative.about .swiper.creativeSwiper {
    margin-top: 80px;
  }
  .testimonial.about {
    padding: 389px 0 100px;
  }
  .our-team {
    padding: 100px 0;
  }
  .our-team .teambox {
    width: auto;
    height: 192px;
  }
  .our-team .team-row {
    row-gap: 10px;
    column-gap: 11px;
  }
  .our-team .team-grid {
    gap: 11px;
  }
  .our-team .team-groupimg {
    padding-top: 60px;
  }
  .inner-banner.contact .banner-grid {
    padding: 0 138px;
    padding-right: 190px;
    display: grid;
    grid-template-columns: 724px 1fr;
    gap: 104px;
  }
  .inner-banner.contact .headbox h5.headmain {
    padding-right: 0;
    font-size: 22px;
    line-height: 30px;
  }
  .inner-banner.contact .banner-grid .headbox h1 {
    margin-bottom: 6px;
  }
  .contact-form {
    padding-top: 81px;
  }
  .contact-form h4.contact-title {
    font-size: 30px;
    line-height: 38px;
  }
  .contact-form .form .field label {
    font-size: 15px;
    margin-bottom: 11px;
  }
  .contact-form .form .field input {
    height: calc(50px - 32px);
    padding: 15px 20px 15px;
  }
  .contact-infos p {
    font-size: 15px;
    font-weight: 300;
    line-height: 23px;
  }
  .contact-infos .txtbox {
    margin-bottom: 43px;
  }
  .contact-form .form .field input[type="submit"] {
    padding: 12px 52px 10px 30px;
  }
  .inner-banner.contact {
    padding-bottom: 119px;
  }
  .contact-form .form .field .formbtn {
    margin-top: 10px;
  }
  .inner-banner.inspiration .banner-grid {
    grid-template-columns: 580px 1fr;
    gap: 100px;
    margin-bottom: -50px;
  }
  .inpiration-detail {
    margin-top: 100px;
  }
  .inspiration .banner-grid .featurebox img {
    height: 540px;
  }
  .inspiration .banner-grid .headbox p.meta {
    font-size: 15px;
    font-weight: 300;
    line-height: 23px;
  }
  .inpiration-detail h4.inspiration-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 15px;
  }
  .inner-banner.inspiration .banner-grid .headbox h5 {
    font-size: 18px;
    line-height: 24px;
  }
  .project-listings.inspired {
    padding: 91px 0 100px;
  }
  .project-listings.inspired .perform-row {
    padding-top: 30px;
    gap: 80px 19px;
  }
  .project-listings.inspired .property-box .property-desc {
    padding-top: 31px;
  }
  .inspired-inner .banner-grid {
    gap: 78px;
    grid-template-columns: 730px 1fr;
  }
  .inspired-inner .banner-grid .headbox .headtxt p {
    padding-right: 60px;
  }
  .inspired-inner .banner-grid .featurebox img {
    height: 600px;
  }
  .inspired-inner .banner-grid .headbox .headtxt h1 {
    margin-bottom: 9px;
  }
  .inspired-inner .banner-grid .headbox .headtxt {
    gap: 21px;
  }
  .inspired-inner .headbox.detail .banner-grid-box {
    margin-top: 80px;
    width: 670px;
  }
  .inspired-inner .banner-grid-box img:nth-child(2),
  .inspired-inner .banner-grid-box img:nth-child(3) {
    height: 280px;
  }
  .related-inspiration,
  .inspired-contact {
    padding: 100px 0;
  }
  .inspired-contact .sec-head h3 {
    font-size: 22px;
    line-height: 30px;
    width: 539px;
  }
  .inspired-contact .form .field input {
    height: calc(50px - 28px);
    width: calc(100% - 42px);
  }
  .inspired-contact .form .field textarea {
    width: calc(100% - 42px);
  }
  .contact-form .form {
    column-gap: 20px;
  }
  .related-row {
    gap: 19px;
  }
  .renovation {
    padding: 180px 0 101px 0;
  }
  .inspired-inner .banner-grid {
    margin-bottom: -110px;
    align-items: start;
  }
  .property-box {
    max-width: 441px;
  }
  .related-inspiration .related-box .view-allbtn {
    top: -85px;
  }
  .landing-about {
    padding: 100px 0;
  }
  .landing-about .cols2 {
    gap: 80px;
  }
  .landing-service {
    padding: 120px 0 0;
  }
  .request-aquote .request-cols {
    grid-template-columns: 1fr 450px;
    gap: 140px;
  }
  .custmore-care-main-heading h1 {
    font-size: 70px;
    line-height: 54px;
  }
  .tabcontent .main-tabs-text h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .tab h4 {
    font-size: 18px;
    line-height: 24px;
  }
  .tabcontent .main-tabs-text p {
    font-size: 15px;
    line-height: 24px;
  }
  .online-vister h4 {
    font-size: 24px;
    line-height: 26px;
  }
  .online-vister p {
    font-size: 15px;
  }
  .online-vister {
    padding-top: 30px;
  }
  .your-consert P {
    font-size: 15px;
  }
  .your-consert h3 {
    font-size: 24px;
    line-height: 26px;
  }
  .your-consert {
    padding-top: 30px;
  }
  .pinetreelane h3 {
    font-size: 24px;
    line-height: 26px;
  }
  .pinetreelane {
    padding-top: 30px;
  }
  .pinetreelane P {
    font-size: 15px;
  }
  .pinetreelane ul li {
    font-size: 15px;
  }
  .main-tabs {
    padding-bottom: 100px;
    padding-right: 255px;
  }
  .about.landing .banner-grid {
    gap: 54px;
  }
  .about.landing.inner-banner-text h1 {
    font-size: 40px;
    line-height: 48px;
  }
  .text-block-section {
    padding: 100px 0;
  }
  .landing-contact {
    padding: 0 0 100px;
  }
  .contact-info {
    margin-left: auto;
  }
  .contact-info ul li a.navbtn {
    font-size: 13px;
  }
  .rightbox .imgallery img:nth-child(2),
  .rightbox .imgallery img:nth-child(3) {
    height: 222px;
  }
  .our-expertise .col2 {
    padding-right: 139px;
  }
  .creative .project-description {
    width: 440px;
  }
  .creative .visit-showroom .col2 {
    gap: 54px;
    grid-template-columns: 320px 1fr;
  }
  .creative .visit-showroom {
    width: 736px;
  }
  .testimonial .sec-head {
    gap: 52px;
  }
  .testimonial-control {
    gap: 28px;
    width: auto;
    top: -93px;
  }
  .testimonial .leftpaddbox {
    margin-top: 47px;
  }
  .testimonial-box .video-cover {
    height: 300px;
  }
  .video-meta h4.video-title {
    margin-top: 23px;
  }
  footer .insta-head h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .insta-row {
    margin-top: 41px;
  }
  footer .insta-head a.social-link {
    font-size: 18px;
    line-height: 24px;
  }
  .ft-branding .about-brand .certifications {
    margin-top: 32px;
  }
  .ft-menu .ft-menu-col ul {
    margin-top: 29px;
  }
  .ft-menu .ft-menu-col ul li + li {
    margin-top: 11px;
  }
  .ft-menu .ft-menu-col ul li.ft-mobile {
    margin-top: 32px;
  }
  .property-box .property-desc {
    width: 360px;
    padding-top: 43px;
  }
  .our-projects.solution-project .sec-head h4 {
    margin-bottom: 30px;
  }
  .inner-banner-text.about .feature-cols img {
    height: 321px;
    width: 321px;
  }
  .about .banner-grid {
    gap: 136px;
  }
  .creative.about .creativeSwiper .swiper-slide {
    margin-right: 25px !important;
  }
  .creative.about .creativeSwiper2 .swiper-slide {
    margin-right: 28px !important;
  }
  .contact-form .form .field.full label[for="services"] {
    margin-bottom: 13px;
  }
  .contact-infos .txtbox h5.head,
  .contact-infos a,
  .contact-infos p {
    font-size: 15px;
    line-height: 23px;
  }
  .contact-infos .txtbox {
    margin-bottom: 42px;
  }
  .contact-infos p.direction {
    margin-top: 25px;
  }
  header .navigation {
    margin-left: 69px;
  }
  .banner-grid.project-grid .headbox p {
    padding-right: 114px;
  }
  .projects-grid .project-box:nth-child(1),
  .projects-grid .project-box:nth-child(7) {
    height: 540px;
  }
  .projects-grid .project-box:nth-child(4),
  .projects-grid .project-box:nth-child(6) {
    height: 860px;
  }
  .banner-grid.project-detail .headtxt a {
    margin-top: 1px;
  }
  .headbox.detail .banner-grid-box {
    column-gap: 28px;
  }
  .project-content-slider .swiper.contentslider .swiper-slide img {
    height: 390px;
  }
  .inner-banner.inspiration .inner-banner-text h5 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 6px;
  }
  .inner-banner.inspiration .banner-grid .inpiration-detail > a.nobtn {
    margin-top: 1px;
  }
  .inner-banner.inspiration .banner-grid .featurebox {
    margin-top: -139px;
  }
  .property-box .imgbox img {
    height: 305px;
  }
  .property-box .property-price.category > a {
    padding: 10px;
  }
  .property-box .property-price.category > a:hover {
    font-size: 15px;
  }
  .container-mini {
    max-width: 808px;
  }
  .renovation-heading h4 {
    font-size: 18px;
    line-height: 24px;
  }
  .renovation-work-triangle h3 {
    padding-bottom: 15px;
  }
  .revonation-main .renovation-work-triangle {
    padding-top: 30px;
  }
  .revonation-main .renovation-work-triangle:nth-child(2),
  .revonation-main .renovation-img {
    padding-top: 40px;
  }
  .revonation-main .renovation-img {
    padding-bottom: 10px;
  }
  .renovation-work-triangle h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .renovation-work-triangle p {
    font-size: 15px;
    line-height: 23px;
  }
  .copyright-txt {
    gap: 0;
  }
  .banner-grid.project-detail .headtxt p {
    font-size: 15px;
    line-height: 23px;
  }
  .what-offer.what-done {
    padding-top: 220px;
  }
  .teams-featured,
  .our-team .team-groupimg {
    margin-right: 0;
  }
  .our-team .sec-head-main .cols2 .left-box h3 {
    font-size: 80px;
    font-weight: 300;
    line-height: 70px;
  }
  .our-team .sec-head-main .cols2 .right-box p {
    font-size: 24px;
    line-height: 32px;
  }
  .teams-featured .feature-team-box {
    margin-top: 50px;
  }
  .teams-member-list {
    margin-top: 100px;
  }
  .our-clients {
    padding: 125px 0 calc(124px + 230px);
  }
  .calculator-inner-tab .tab-btn {
    width: 100%;
  }
}
@media (max-width: 1280px) {
  .container {
    padding: 0 32px;
  }
  .banner-text h1,
  .banner-text h2 {
    font-size: 60px;
    line-height: 60px;
  }
  .banner-text {
    gap: 15px;
  }
  .banner-text a.btn {
    margin-top: 8px;
  }
  .header-main {
    width: calc(100% - 204px);
    padding: 8px 40px 8px;
    left: 32px;
  }
  .banner-text p {
    font-size: 19px;
    line-height: 27px;
  }
  .what-we-do .col2 {
    grid-template-columns: 1fr 471px;
    gap: 48px;
  }
  .accbox {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  .sub-menu .design-box {
    gap: 40px;
  }
  a.btn.big {
    padding: 11px 43px 10px 20px;
    font-size: 15px;
  }
  a.btn.big:after {
    right: 19px;
  }
  .navigation .sub-menu:before {
    content: "";
    background: var(--grey);
    position: absolute;
    top: 0;
    width: calc(100% - 60px);
    height: 1px;
    left: 30px;
  }
  .sm-toggle {
    position: absolute;
    right: -60px;
    background: #fff;
    width: 52px;
    height: 52px;
    z-index: 99;
    top: 0;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .sub-menu .design-box {
    grid-template-columns: 1fr;
  }
  .navigation li.active > a:before {
    top: 38px;
  }
  .navigation .sub-menu {
    top: 100%;
    padding: 40px 58px 35.7px 32px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: calc(100% - 90px);
  }
  .sub-menu h4 {
    font-size: 15px;
    font-weight: 500;
    line-height: 23px;
  }
  .sub-menu [class*="col"] ul {
    margin-top: 20px;
    gap: 12px;
  }
  .sub-menu .design-grid {
    display: none;
  }
  .navigation {
    position: absolute;
    left: 0;
    top: 107%;
    background: #fff;
    width: 100%;
    border-radius: 5px;
    height: 55px;
    display: none;
    align-items: center;
    justify-content: center;
  }
  .navigation.active {
    display: flex;
  }
  .sm-toggle span + span {
    margin-top: 5px;
  }
  .sm-toggle span:nth-child(2) {
    width: 20px;
  }
  .navigation ul.nav li {
    line-height: 53px;
  }
  .navigation .sub-menu ul li {
    line-height: 23px;
  }
  .sm-toggle span {
    width: 32px;
    height: 2px;
    background: var(--blue);
    display: block;
    transition: 0.4s ease-in-out;
  }
  .navigation.noborder {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .sm-toggle.active span:first-child {
    transform: translateY(7px) rotate(45deg);
    transition: 0.35s ease;
  }
  .sm-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
    transition: 0.35s ease;
  }
  .sm-toggle.active span:last-child {
    transform: translateY(-7px) rotate(-45deg);
    margin: 0;
    transition: 0.35s ease;
  }
  .popup-box {
    width: calc(300px - 20px);
    height: calc(190px - 20px);
  }
  .pop-poster {
    height: 140px;
  }
  .hero-banner img.hero_img {
    height: 95vh;
  }
  .what-we-do {
    padding: 80px 0 100px;
  }
  .sec-head h3 {
    font-size: 34px;
    line-height: 42px;
  }
  .col2 .leftbox p.what-we-head {
    font-size: 17px;
    line-height: 24px;
    padding-right: 0;
  }
  .col2 .leftbox .accordion {
    margin-top: 48px;
  }
  .acc-head h3,
  .video-meta h4.video-title {
    font-size: 19px;
    line-height: 27px;
  }
  .accbox.active .acc-head {
    margin-bottom: 17px;
  }
  .rightbox .imgallery img:first-child {
    height: 320px;
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
  }
  .rightbox .imgallery {
    gap: 17px;
  }
  .rightbox .imgallery img:nth-child(2),
  .rightbox .imgallery img:nth-child(3) {
    height: 180px;
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
  }
  .our-expertise .col2 {
    grid-template-columns: 490px 1fr;
    gap: 78px;
    padding-right: 0;
  }
  .our-expertise .col2 .expertise_imgs .imgbox {
    height: 344px;
  }
  .expertise_text h5.heading {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  .creative .sec-head {
    gap: 71px;
    grid-template-columns: 321px 1fr;
    align-items: baseline;
  }
  .creative-desc {
    column-gap: 68px;
  }
  .creative .sec-head .head-main h3 {
    font-size: 60px;
    line-height: 60px;
  }
  .creative .head-text h5.head-mid {
    font-size: 19px;
    line-height: 27px;
    margin-bottom: 15px;
  }
  .creative .project-description {
    width: 392px;
    color: #fff;
  }
  .creative .visit-showroom .col2 {
    grid-template-columns: 1fr;
  }
  .showroom-txt h4 {
    font-size: 24px;
    line-height: 32px;
  }
  .creative .visit-showroom {
    width: 372px;
    margin-top: -195px;
  }
  .creative .popup-box {
    width: calc(372px - 20px);
  }
  .pop-poster img {
    height: 100%;
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .our-projects .sec-head h4 {
    font-size: 19px;
    line-height: 27px;
  }
  .project-box .box-text h4 {
    font-size: 19px;
    font-weight: 600;
    line-height: 27px;
  }
  .testimonial .sec-head {
    gap: 83px;
  }
  .testimonial .sec-head p {
    width: 440px;
  }
  .testimonial-control {
    width: auto;
    gap: 20px;
    top: -84px;
  }
  .testimonial .leftpaddbox {
    margin-top: 40px;
  }
  .testimonial .leftpaddbox {
    min-height: 372px;
  }
  footer {
    padding: 100px 0 79px;
  }
  footer .insta-head h4 {
    font-size: 19px;
    font-weight: 600;
    line-height: 27px;
  }
  footer .insta-head a.social-link {
    font-size: 17px;
    line-height: 24px;
  }
  .footer-col2 {
    grid-template-columns: 1fr 1fr;
    gap: 216px;
  }
  .ft-branding .about-brand .certifications img {
    width: 106px;
  }
  .ft-branding .about-brand .certifications {
    gap: 27px;
    margin-top: 30px;
  }
  .ft-menu .ft-menu-col {
    column-gap: 81px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
    padding-right: 25px;
  }
  .ft-menu-col .menu-3 {
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 1;
  }
  .ft-menu .ft-menu-col .menu-4 {
    margin-top: 50px;
  }
  .copyright {
    margin-top: 60px;
  }
  .inner-banner-text {
    padding-top: 60px;
  }
  .inner-banner-text h1 {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 12px;
  }
  .services-slide {
    gap: 10px;
  }
  .services-slide .service-box.active {
    width: 578px;
    height: 540px;
  }
  .services-slide .service-box {
    width: 118px;
    height: 540px;
  }
  .services-slide .service-box .slide-txt {
    bottom: 43px;
  }
  .services-slide .service-box .slide-txt h4 {
    font-size: 24px;
    line-height: 32px;
  }
  .services-slide p.slide-num {
    margin-bottom: 0;
  }
  .services-slide .service-box.active .slide-num {
    margin-bottom: 12px;
  }
  .slide-btn a.btn.big {
    padding: 11px 39px 10px 23px;
  }
  .services-slide .service-box .slide-head {
    transform-origin: 44px 14px;
  }
  .how-work {
    padding: 192px 0 104px;
  }
  .how-work .sec-head h4 {
    font-size: 19px;
    line-height: 27px;
  }
  .how-work .sec-head h3 {
    font-size: 34px;
    line-height: 42px;
  }
  .how-work .appointmentbtn a.btn.big {
    padding: 12px 53px 11px 30px;
  }
  .work-process {
    margin-top: 61px;
    gap: 80px;
    width: calc(100% + 198px);
  }
  .icon-box .icon-head h4 {
    font-size: 19px;
    line-height: 27px;
  }
  .icon-box .icon:before {
    font-size: 60px;
    line-height: 60px;
    height: 60px;
  }
  .icon-box .icon img {
    width: 72px;
    height: 72px;
  }
  .icon-box .icon-head {
    margin-top: 50px;
  }
  .work-process:before {
    top: 104px;
    width: calc(100% - 20%);
  }
  .brands-row .brand-box {
    padding: 0 36px;
  }
  .brands-row {
    margin-top: 100px;
    padding: 40px 0;
  }
  .brands-row .brand-box:before,
  .brands-row .brand-box:last-child:after {
    height: 130px;
  }
  .slider-handle {
    font-size: 17px;
    line-height: 24px;
  }
  .whychoose .col2 {
    gap: 75.5px;
  }
  .whychoose .expertise_text {
    padding-right: 0;
  }
  .our-expertise.whychoose .sec-head h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 29px;
  }
  .whychoose .acc-head h4 {
    font-size: 17px;
    line-height: 24px;
    padding-right: 123px;
  }
  .whychoose .accordion .accbox {
    margin-bottom: 30px;
    padding-bottom: 28px;
  }
  .whychoose .content p:last-of-type {
    margin-bottom: 0;
  }
  .our-expertise .col2 .expertise_imgs {
    gap: 12px;
  }
  .whychoose .accordion .accbox:last-of-type {
    margin: 0;
    padding: 0;
  }
  .inner-banner-text.solution-inner {
    padding-top: 58px;
  }
  .inner-banner-text p {
    font-size: 17px;
    line-height: 24px;
  }
  .inner-banner-text .txt-row .righttxt {
    max-width: 470px;
  }
  .innerbanner .imgbox img,
  .innerbanner .imgbox.fullimgservice {
    height: 451px;
  }
  .what-offer {
    padding: 250px 0 98px;
  }
  .innerbanner {
    margin-bottom: -151px;
  }
  .what-offer .sec-head h3 {
    font-size: 60px;
    line-height: 60px;
  }
  .what-offer .offercol2 {
    gap: 98px;
    grid-template-columns: 372px 1fr;
    margin-top: 30px;
  }
  .what-offer .offercol2 .offer-grid-box {
    margin-top: 0;
  }
  .what-offer .offer-list h5 {
    font-size: 19px;
    margin-top: 0;
    line-height: 27px;
    padding-right: 0;
  }
  .what-offer .offer-list .col2p {
    gap: 30px;
    margin-bottom: 40px;
  }
  .our-expertise {
    padding: 100px 0 108px;
  }
  .top-performer .sec-head h3 {
    font-size: 60px;
    line-height: 60px;
  }
  .top-performer .sec-head {
    flex-direction: column;
    align-items: baseline;
    gap: 30px;
  }
  .top-performer .sec-head .rightbox {
    padding-bottom: 0;
  }
  .perform-row {
    padding-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 20px;
  }
  .property-box .property-desc {
    padding-top: 46px;
    width: 100%;
  }
  .property-box .property-desc h4 {
    font-size: 19px;
    line-height: 27px;
  }
  .top-performer {
    padding: 100px 0;
  }
  .our-projects .project-img {
    height: 500px;
  }
  .solution-project {
    padding-bottom: 194px;
  }
  .what-offer .offer-list .grid-img {
    display: none;
  }
  .what-offer .offercol2 .offer-grid-box img:nth-child(2),
  .what-offer .offercol2 .offer-grid-box img:nth-child(3) {
    display: block;
  }
  .what-offer .grid-img img:nth-child(1) {
    height: 372px;
  }
  .what-offer .grid-img {
    gap: 20px;
  }
  .inner-banner-text .txt-row h5.headmain {
    font-size: 19px;
    line-height: 27px;
  }
  .visit-showroom-outer .popup-box {
    bottom: 0;
  }
  .showroom-txt {
    padding-bottom: 170px;
  }
  .banner-grid {
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
  .projects-grid .project-box:nth-child(1) {
    height: 430px;
  }
  .projects-grid .project-box:nth-child(2),
  .projects-grid .project-box:nth-child(8) {
    height: 194px;
  }
  .projects-grid .project-box:nth-child(3),
  .projects-grid .project-box:nth-child(5) {
    height: 247px;
  }
  .projects-grid .project-box:nth-child(4) {
    height: 750px;
  }
  .projects-grid .project-box:nth-child(6) {
    height: 604px;
  }
  .projects-grid .project-box:nth-child(7) {
    height: 389px;
  }
  .banner-grid .featurebox img {
    height: auto;
  }
  .headbox.detail .banner-grid-box {
    margin-top: 95px;
  }
  .what-offer.what-done .grid-img img:nth-child(1) {
    height: 372px;
  }
  .what-done {
    padding-bottom: 0;
    margin-bottom: -70px;
  }
  .project-detail-content {
    padding: 150px 0 100px;
  }
  .project-detail-content .detail-box h4 {
    font-size: 24px;
    line-height: 30px;
    padding-right: 50px;
  }
  .project-detail-content .detail-box .colbox {
    grid-template-columns: 1fr;
    margin-top: 85px;
  }
  .project-detail-content .detail-box .colbox .gallerybox {
    margin-top: 20px;
  }
  .about .banner-grid {
    grid-template-columns: 372px 1fr;
    margin-bottom: -189px;
    gap: 97px;
    align-items: flex-start;
  }
  .headbox .about-feature {
    margin-top: 66px;
    height: 472px;
  }
  .about .banner-grid .headbox h1 {
    margin-bottom: 12px;
  }
  .inner-banner-text.about .headbox .headmain {
    font-size: 19px;
    line-height: 27px;
  }
  .about .featurebox-right ul {
    column-gap: 31px;
    display: grid;
    grid-template-columns: 230px 1fr;
  }
  .about.inner-banner-text p {
    font-size: 17px;
    line-height: 24px;
  }
  .about .featurebox-right h3 {
    width: 276px;
  }
  .inner-banner-text.about .feature-cols {
    gap: 31px;
    margin-top: 40px;
  }
  .about .featurebox-right.sec-head {
    padding-top: 75px;
  }
  .creative.about {
    padding: 269px 0 0;
  }
  .creative-tabs ul.tabs-list li a,
  .creative-tabbox .txtbox h4 {
    font-size: 17px;
  }
  .creative-tabbox .col-3 {
    margin-top: 40.5px;
    gap: 69px;
  }
  .creative.about .swiper.creativeSwiper {
    margin-top: 40px;
  }
  .creative.about .swiper.creativeSwiper2 {
    margin-top: 18px;
  }
  .testimonial.about {
    padding: 281px 0 99px;
  }
  .creative.about {
    margin-bottom: -194px;
  }
  .our-team .teambox {
    width: auto;
    height: 136px;
  }
  .our-team .team-row {
    row-gap: 7px;
    column-gap: 8px;
  }
  .our-team .team-grid {
    gap: 8px;
  }
  .our-team .teambox:nth-child(2),
  .our-team .teambox:nth-child(4) {
    margin-top: 52px;
  }
  .our-team .teambox:nth-child(6) {
    margin-top: -52px;
  }
  .our-team .sec-head {
    width: 440px;
  }
  .our-team .teambox .imgbox img {
    width: 96px;
    height: 115px;
  }
  .inner-banner.contact .banner-grid {
    padding: 0;
    gap: 98px;
    padding-right: 13px;
    display: grid;
    grid-template-columns: 1fr 186px;
  }
  .contact-infos {
    padding-top: 78px;
  }
  .inner-banner.contact .banner-grid .headbox h1 {
    margin-bottom: 12px;
  }
  .inner-banner.contact .headbox h5.headmain {
    font-size: 19px;
    line-height: 27px;
  }
  .contact-form {
    padding-top: 60px;
  }
  .contact-infos p {
    font-size: 15px;
    font-weight: 300;
    line-height: 23px;
  }
  .contact-infos .txtbox {
    margin-bottom: 42px;
  }
  .contact-infos .txtbox h5.head {
    font-size: 15px;
    line-height: 23px;
  }
  .contact-form h4.contact-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px;
  }
  .contact-form .form {
    column-gap: 26px;
  }
  .inner-banner.contact {
    padding-bottom: 100px;
  }
  .inner-banner.inspiration .banner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .inspiration .banner-grid .featurebox img {
    height: 450px;
  }
  .inpiration-detail {
    margin-top: 20px;
  }
  .inner-banner.inspiration .banner-grid .headbox {
    margin-top: 0;
  }
  .inspired-inner .banner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .inspired-inner .headbox.detail .banner-grid-box {
    width: auto;
  }
  .inspired-inner .banner-grid-box img:nth-child(2),
  .inspired-inner .banner-grid-box img:nth-child(3) {
    height: 215px;
  }
  .related-row {
    flex-wrap: wrap;
  }
  .related-inspiration .related-box .view-allbtn {
    top: -80px;
  }
  .hero-banner.landing img.hero_img {
    height: 648px;
  }
  .landing-about .cols2 {
    gap: 80px;
    grid-template-columns: 1fr;
  }
  .landing-about-feature img {
    height: 500px;
  }
  .landing-about .sec-head h3 {
    width: 100%;
  }
  .request-aquote .request-cols {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .request-aquote {
    padding: 100px 0;
  }
  .custmore-care-main-heading h1 {
    font-size: 58px;
    line-height: 35px;
  }
  .tabcontent .main-tabs-text h2 {
    font-size: 30px;
    line-height: 35px;
  }
  .tabcontent .main-tabs-text p {
    font-size: 14px;
  }
  .online-vister h4 {
    font-size: 20px;
    line-height: 24px;
  }
  .online-vister p {
    font-size: 14px;
  }
  .online-vister {
    padding-top: 25px;
  }
  .your-consert h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .your-consert p {
    font-size: 14px;
  }
  .your-consert {
    padding-top: 25px;
  }
  .pinetreelane {
    padding-top: 25px;
  }
  .pinetreelane h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .pinetreelane p {
    font-size: 14px;
  }
  .pinetreelane ul li {
    font-size: 14px;
  }
  .main-tabs {
    padding-bottom: 60px;
  }
  .main-tabs {
    gap: 71px;
  }
  .main-tabs {
    grid-template-columns: 1fr 656px;
    padding-right: 0;
    padding-left: 20px;
  }
  .main-tabs.customer h4.tablinks:first-child {
    margin: 0;
  }
  .about.landing .banner-grid {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
  }
  .inner-banner-text.about.landing .feature-cols {
    margin-top: 80px;
  }
  .landing .headbox .about-feature {
    height: 450px;
    margin-right: 0;
  }
  .how-work.landing {
    padding: 250px 0 100px;
  }
  .text-block-section .cols {
    gap: 22px;
    grid-template-columns: 1fr;
  }
  .landing-contact .cols {
    grid-template-columns: 338px 1fr;
    gap: 100px;
  }
  .landing-contact .contact-form {
    padding-top: 0;
  }
  .contact-info ul li.ico a {
    width: 33px;
    height: 33px;
  }
  .contact-info ul li a.navbtn {
    margin-left: 18px;
  }
  a.btn {
    padding: 6px 38px 6px 20px;
  }
  .acc-content {
    padding-right: 30px;
  }
  .accbox {
    margin-bottom: 28px;
    padding-bottom: 27px;
  }
  .expertise_text .content p:last-of-type {
    margin-bottom: 31px;
  }
  .creative .project-description .row-btn {
    gap: 30px;
  }
  .our-projects .projects-row {
    margin-top: 40px;
    gap: 18px;
  }
  .video-meta h4.video-title {
    margin-top: 26px;
  }
  .insta-row {
    margin-top: 30px;
  }
  .ft-branding .brand {
    margin-bottom: 39.8px;
  }
  .ft-branding .about-brand .ft-headings {
    margin-bottom: 12px;
  }
  .ft-menu .ft-menu-col ul {
    margin-top: 20px;
  }
  .ft-menu .ft-menu-col .menu-2 {
    margin-top: 0;
  }
  .ft-menu .ft-menu-col ul li.ft-mobile {
    margin-top: 30px;
  }
  .ft-menu .ft-menu-col ul li.ft-msg {
    margin-top: 15px;
  }
  .ft-heading h4 {
    font-size: 19px;
    line-height: 27px;
  }
  .how-work .process-outer {
    overflow: scroll;
  }
  .how-work .process-outer::-webkit-scrollbar {
    height: 0;
  }
  .how-work .container {
    padding-right: 0;
  }
  .work-process .icon-box .icon-head:after {
    top: -32px;
  }
  .before-after .sec-head h4 {
    font-size: 19px;
    line-height: 27px;
  }
  .before-after .sec-head h3 {
    margin-top: 12px;
  }
  ul.ab-gallery-tab {
    margin-top: 30px;
  }
  ul.ab-gallery-tab li a {
    font-weight: 300;
  }
  .comparison-container {
    height: 400px;
  }
  .whychoose .accbox.active .acc-head {
    margin-bottom: 12px;
  }
  .how-work .appointmentbtn {
    padding-right: 32px;
  }
  .icon-box .icon {
    margin-left: 0;
  }
  .what-offer .grid-img img:nth-child(2),
  .what-offer .grid-img img:nth-child(3) {
    height: 176px;
  }
  .property-box .imgbox img {
    height: 305px;
  }
  .property-box .property-desc .nobtn {
    margin-top: 21px;
  }
  .header-main .brand a > img,
  .header-main .brand-mob a > img {
    width: auto;
    height: 44px;
  }
  .inner-banner-text.about .feature-cols img {
    height: auto;
  }
  .creative.about .creativeSwiper .swiper-slide {
    margin-right: 17px !important;
  }
  .creative.about .creativeSwiper2 .swiper-slide {
    margin-right: 20px !important;
  }
  .creative-tabs ul.tabs-list li a,
  .creative-tabbox .txtbox h4 {
    margin-bottom: 12px;
  }
  .our-team .sec-head p {
    line-height: 23px;
  }
  .our-team .sec-head {
    gap: 12px;
  }
  .our-team .team-groupimg img.hero_img {
    height: 579px;
    width: 100%;
    object-fit: cover;
  }
  .contact-infos .txtbox {
    margin-bottom: 43px;
  }
  .contact-infos p.direction {
    margin-top: 24px;
  }
  .contact-form .form .field input[type="submit"] {
    padding: 12px 52px 10px 22px;
  }
  header .navigation {
    margin-left: 0;
  }
  .inner-banner.inspiration .banner-grid .featurebox {
    margin-top: -100px;
  }
  .our-projects.landing .sec-head h3 {
    width: 70%;
  }
  .property-box {
    max-width: 470px;
  }
  .banner-grid.project-detail .banner-grid-box img:nth-child(2),
  .banner-grid.project-detail .banner-grid-box img:nth-child(3) {
    height: 221px;
  }
  .our-team .sec-head-main .cols2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .teams-featured .feature-team-box {
    grid-template-columns: 1fr 1fr;
    gap: 54px;
  }
  .teams-featured .feature-team-img img {
    height: auto;
  }
  .our-team .sec-head-main .cols2 .left-box h3 {
    font-size: 60px;
    font-weight: 300;
    line-height: 50px;
  }
  .our-team .sec-head-main .cols2 .right-box p {
    font-size: 20px;
    line-height: 28px;
  }
  .team-member-box img {
    height: 350px;
  }
  .team-member-box .team-description {
    padding: 17px 0;
  }
  .teams-member-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .teams-member-list {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 1200px) {
  .calculator-content-right {
    margin-top: 50px;
  }
  .inner-tab-calulator.tab-content.active {
    display: block;
  }
  .calculator-amount {
    gap: 9px;
    margin-bottom: 40px;
  }
  .calculator-inner-tab.cal-space-row.room-type-row {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .banner-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .banner-grid-box img:nth-child(1) {
    display: block;
  }
  .banner-grid-box {
    margin-top: 50px;
    width: 50%;
    gap: 28px;
  }
  .featurebox {
    display: none;
    width: 50%;
  }
  .what-we-do .col2 {
    grid-template-columns: 1fr;
  }
  .what-we-do .col2 .rightbox {
    display: none;
  }
  .col2 .leftbox .accordion .rightbox {
    display: block;
    width: 60%;
    margin: 14px 0 24px;
  }
  .accbox.active .acc-content {
    max-height: 800px;
  }
  .col2 .leftbox .accordion .rightbox .imgallery {
    display: grid;
    gap: 10px;
  }
  .sm-toggle {
    display: none;
  }
  .header-main {
    padding: 0;
    width: calc(100% - 60px);
    background: none;
    align-items: center;
    box-shadow: none;
    top: 24px;
    position: absolute;
  }
  .navigation ul.nav {
    display: none;
  }
  .contact-info li.ico.phn,
  .contact-info li.ico.mail {
    display: none;
  }
  .mob-header {
    display: block;
    position: fixed;
    bottom: 20px;
    width: 370px;
    height: 54px;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
  }
  .mob-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 49px 15px 54px;
    background: var(--blue);
    border-radius: 10px;
  }
  .mob-menu span.menu-ico {
    width: 52px;
    background: #fff;
    height: 1px;
    display: block;
  }
  .mob-menu {
    position: relative;
  }
  .mob-menu span.menu-ico:last-of-type {
    margin-top: 10px;
  }
  header .brand {
    display: none;
  }
  .brand-mob {
    display: block;
  }
  .brand-mob a {
    display: flex;
  }
  .mob-header.active .mob-nav {
    bottom: 0;
    transition: 1s ease-in-out;
    background: #fff;
    opacity: 1;
  }
  .mob-nav {
    position: absolute;
    left: 0;
    bottom: -283px;
    background: #fff;
    border-radius: 10px;
    z-index: -1;
    padding: 0;
    width: 370px;
    transition: 1s ease-in-out;
    opacity: 0;
  }
  .mob-nav > ul > li.active > a {
    color: var(--grey);
  }
  .mob-nav > ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 46px 34px 115px;
  }
  .mob-nav li.has-child:after {
    content: "";
    background: url(../images/plus.svg) no-repeat;
    position: absolute;
    right: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background-size: auto;
    transition: 0.4s ease;
  }
  .mob-nav li.has-child.active:after {
    transform: rotate(45deg);
    transition: 0.4s ease;
  }
  .mob-nav ul li a {
    font-size: 17px;
    line-height: 25px;
    font-weight: 500;
    color: var(--blue);
    position: relative;
    display: inline-block;
  }
  ul.mobsub-innermenu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    align-items: baseline;
  }
  ul.mobsub-innermenu li {
    flex: 0 0 calc(50% - 24px);
    margin: 0 !important;
  }
  ul.mobsub-menu li a:before {
    content: "";
    background: url(../images/plus.svg) no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background-size: auto;
  }
  ul.mobsub-menu li a {
    padding-left: 26px;
    font-size: 15px;
    line-height: 23px;
  }
  ul.mobsub-innermenu li + li {
    margin-top: 15px;
  }
  ul.mobsub-innermenu li a:before {
    display: none;
  }
  ul.mobsub-innermenu li a {
    font-weight: 300;
  }
  .hero-banner .popup-box {
    width: calc(143px - 20px);
    height: calc(40px - 20px);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 10px 0 10px 20px;
    position: relative;
  }
  .hero-banner .pop-poster img {
    opacity: 0;
  }
  .hero-banner .popup-box .popup-title p.mobtxt {
    display: block;
  }
  .hero-banner .popup-box .popup-title p {
    display: none;
  }
  .hero-banner .popup-box .popup-title {
    margin-top: 0;
  }
  .hero-banner .pop-poster:before {
    width: 32px;
    height: 32px;
    right: 0;
    transform: translate(-20%, -50%);
    left: auto;
  }
  .hero-banner .pop-poster:after {
    left: auto;
    top: 50%;
    border-left: 12px solid #fff;
    border-top: 5px solid #fff0;
    border-bottom: 5px solid #fff0;
    right: 9px;
  }
  .hero-banner .pop-poster {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .hero-banner .pop-box-inner {
    position: relative;
    right: auto;
    bottom: 0;
    left: 172px;
  }
  .hero-banner .pop-box-outer {
    position: absolute;
    bottom: 59px;
  }
  .our-expertise .col2 {
    gap: 40px;
    display: flex;
    flex-direction: column-reverse;
  }
  .hero-banner .container-fluid {
    padding: 0 50px;
  }
  .showroom-txt h4 {
    font-size: 32px;
    line-height: 40px;
  }
  .sec-head h3 {
    font-size: 36px;
    line-height: 43px;
  }
  .our-projects .project-box .box-text {
    top: 25px;
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    left: 25px;
  }
  .project-box .box-text h4 {
    font-size: 25px;
    line-height: 33px;
  }
  .testimonial-control {
    top: 0;
    position: relative;
    margin: 0 auto;
  }
  .testimonial .leftpaddbox {
    margin-top: 40px;
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column-reverse;
  }
  .testimonial-swiper-outer {
    position: relative;
    width: 100%;
  }
  .leftpaddbox .controls {
    position: relative;
    width: 100%;
    margin-top: 40px;
  }
  .our-projects .project-img {
    height: 400px;
  }
  a.btn.big {
    padding: 9px 34px 8px 17px;
    font-size: 15px;
  }
  .creative .sec-head {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .creative-desc {
    column-gap: 20px;
  }
  .creative .visit-showroom {
    width: auto;
    margin-top: 80px;
  }
  .creative .project-description {
    width: 100%;
  }
  .our-projects .sec-head h3 {
    width: 85%;
  }
  .footer-col2 {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .mob-header.active .mob-menu .menu-label {
    opacity: 0;
  }
  .mob-menu::after {
    content: "✕";
    position: absolute;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }
  .mob-header.active .mob-menu::after {
    opacity: 1;
  }
  .header2 .brand-mob {
    display: none;
  }
  .header2 .brand {
    display: block;
  }
  .brands-row .brand-box {
    padding: 0 15px;
  }
  .icon-box .icon {
    padding-left: 68px;
  }
  .work-process {
    gap: 15px;
  }
  .appointmentbtn {
    margin-top: 0;
    text-align: center;
  }
  .work-process-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 45px;
  }
  .work-process:before {
    width: calc(100% - 23%);
  }
  .inner-banner-text .txt-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .inner-banner-text .txt-row .righttxt {
    max-width: 100%;
  }
  .inner-banner-text h1 {
    font-size: 50px;
    line-height: 50px;
  }
  .what-offer {
    padding: 142px 0 80px;
  }
  .what-offer .sec-head h3 {
    font-size: 45px;
    line-height: 45px;
  }
  .innerbanner {
    margin-bottom: -82px;
  }
  .what-offer .offercol2 {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .what-offer .offer-grid {
    display: none;
  }
  .what-offer .offer-list .grid-img,
  .what-offer .offer-list .grid-img img:first-child {
    display: grid;
    gap: 10px;
  }
  .pop-box-outer.active .popup-video {
    display: none;
    height: auto;
  }
  .pop-box-outer.active .popup-box {
    width: calc(143px - 20px);
    height: calc(40px - 20px);
  }
  .pop-box-outer.active .popup-box .popup-title {
    display: block;
  }
  .pop-box-outer.active .pop-poster {
    display: block;
  }
  .visit-showroom .pop-box-outer.active .popup-box {
    width: calc(372px - 20px);
    height: calc(190px - 20px);
  }
  .project-listings .projects-grid .box-text {
    top: 25px;
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    left: 25px;
  }
  .projects-grid .project-box:nth-child(1) {
    height: 312px;
  }
  .projects-grid .project-box:nth-child(2),
  .projects-grid .project-box:nth-child(8) {
    height: 194px;
  }
  .projects-grid .project-box:nth-child(3),
  .projects-grid .project-box:nth-child(5) {
    height: 247px;
  }
  .projects-grid .project-box:nth-child(4) {
    height: 632px;
  }
  .projects-grid .project-box:nth-child(6) {
    height: 604px;
  }
  .projects-grid .project-box:nth-child(7) {
    height: 389px;
  }
  .what-done .offer-list .grid-img {
    margin: 80px 0 0;
  }
  .what-done {
    padding-bottom: 0;
  }
  .project-detail-content .col2 {
    grid-template-columns: 1fr;
  }
  .project-detail-content .detail-box .colbox {
    margin-top: 60px;
  }
  .project-detail-content .detail-box .colbox .gallerybox {
    width: 70%;
    margin: 20px auto 0;
  }
  .detail-feature {
    width: 70%;
    margin: 19px auto 0;
  }
  .impression-grid .impression-box .imgbox {
    height: auto !important;
  }
  .our-team .team-grid {
    grid-template-columns: 1fr;
  }
  .our-team .sec-head {
    width: 100%;
    margin: 60px 0;
    position: relative;
  }
  .our-team .teambox {
    width: auto;
    height: 190px;
  }
  .our-team .teambox .imgbox img {
    width: 134px;
    height: 161px;
  }
  .our-team {
    padding: 80px 0 60px;
  }
  .creative-tabbox .col-3 {
    gap: 20px;
  }
  .about .banner-grid {
    grid-template-columns: 1fr;
  }
  .about .featurebox-right.sec-head {
    padding-top: 0;
  }
  .about .featurebox-right h3 {
    width: 100%;
  }
  .contact .inner-banner-text {
    padding-top: 83px;
  }
  .inner-banner.contact .banner-grid .headbox h1 {
    margin-bottom: 15px;
  }
  .inner-banner.contact .headbox h5.headmain {
    font-size: 17px;
    line-height: 25px;
  }
  .inner-banner.contact .banner-grid {
    grid-template-columns: 1fr;
    gap: 100px;
  }
  .contact-infos {
    padding-top: 0;
  }
  .inner-banner.inspiration .banner-grid {
    grid-template-columns: 1fr;
  }
  .inner-banner.inspiration .banner-grid .featurebox {
    display: block;
  }
  .inspiration .banner-grid .featurebox img {
    height: auto;
  }
  .project-listings.inspired .container {
    padding-right: 0;
  }
  .project-listings.inspired .project-listing-tab {
    overflow: auto;
  }
  .project-listings.inspired .project-listing-tab ul {
    display: -webkit-inline-box;
  }
  .project-listings.inspired .project-listing-tab::-webkit-scrollbar {
    height: 0;
  }
  .inspired-inner .banner-grid {
    grid-template-columns: 1fr;
  }
  .inspired-inner .headbox.detail .banner-grid-box {
    width: 50%;
  }
  .inspired-inner .banner-grid-box img:nth-child(1) {
    width: 100%;
  }
  .inspired-inner .banner-grid-box img:nth-child(2),
  .inspired-inner .banner-grid-box img:nth-child(3) {
    height: 141px;
  }
  .container-mini {
    max-width: 100%;
    padding: 0 32px;
  }
  .renovation-work-triangle h3,
  .position-renovation h3,
  .consider-flow h3,
  .clean-up-easy h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .renovation {
    padding: 120px 0 80px;
  }
  .landing-service .service-img .newpage-arrow {
    width: 20px;
    height: 20px;
  }
  .how-work.landing {
    padding: 80px 0;
  }
  .tab.mobile-tab .tablinks.active::before {
    display: none;
  }
  .terms-tabs-left {
    position: fixed;
    background: var(--white);
    left: 50%;
    bottom: 0;
    width: 370px;
    overflow: hidden;
    bottom: 65px;
    border-radius: 5px;
    z-index: 99;
    transform: translateX(-50%);
    justify-content: center;
    transition: 0.4s ease-in-out;
    padding: 18px 12px;
    display: block;
  }
  .outer_tab {
    height: 0;
    overflow: hidden;
    transition: 0.5s ease-in-out;
  }
  .terms-tab {
    font-size: 15px;
    line-height: 23px;
    transition: 0.4s ease-in-out;
  }
  .innner-tab {
    display: none;
  }
  .main-tabs-text {
    max-width: 100%;
  }
  .online-vister {
    max-width: 100%;
  }
  .your-consert {
    max-width: 100%;
  }
  .pinetreelane {
    max-width: 100%;
  }
  .tab h4 {
    padding-bottom: 10px;
  }
  .main-tabs {
    grid-template-columns: 1fr;
    padding-right: 0;
  }
  .about.landing .banner-grid {
    grid-template-columns: 1fr;
  }
  .how-work.landing {
    padding: 150px 0;
  }
  .about.landing .banner-grid {
    margin-bottom: -100px;
  }
  .landing-contact .cols {
    grid-template-columns: 1fr;
  }
  .testimonial .sec-head {
    margin-right: 0;
  }
  .how-work .appointmentbtn {
    padding-right: 0;
  }
  .inner-banner.inspiration .banner-grid .featurebox {
    margin-top: 0;
  }
  .teams-featured .feature-team-img img {
    height: auto;
  }
  .slides-new-section .services-slide {
    gap: 12px;
    margin: 0 25px;
  }
  .services-slide .service-box.active .slide-head {
    width: auto;
  }
  .modal-form-outer {
    transform: translate(-50%, 0);
    width: 94%;
    top: 20% !important;
    left: 50% !important;
  }
}
@media (max-width: 767px) {
  p,
  li {
    font-size: 15px;
    line-height: 23px;
  }
  .hero-banner img.hero_img {
    height: 620px;
  }
  .banner-text h1,
  .banner-text h2 {
    font-size: 44px;
    line-height: 50px;
    font-weight: 300;
  }
  .banner-text p {
    font-size: 22px;
    line-height: 30px;
    width: 251px;
    word-break: break-word;
  }
  .container {
    padding: 0 24px;
  }
  .hero-banner .pop-box-inner {
    left: 147px;
  }
  .banner-text a.btn {
    margin-top: 10px;
  }
  .banner-text {
    bottom: 60px;
    gap: 10px;
  }
  .hero-banner .pop-box-outer {
    bottom: 60px;
  }
  .col2 .leftbox .accordion .rightbox {
    width: 100%;
  }
  .what-we-do {
    padding: 64px 0 86px;
  }
  .sec-head h3 {
    font-size: 32px;
    line-height: 40px;
  }
  .what-we-do .sec-head {
    text-align: left;
  }
  .what-we-do .col2 {
    margin-top: 10px;
  }
  .col2 .leftbox .accordion {
    margin-top: 60px;
  }
  .col2 .leftbox p.what-we-head {
    font-size: 17px;
    line-height: 25px;
    padding-right: 0;
  }
  .acc-content p {
    font-size: 15px;
    line-height: 23px;
  }
  a.nobtn,
  a.btn.big,
  .hero-banner .popup-box .popup-title p.mobtxt {
    font-size: 15px;
    line-height: 23px;
  }
  .accbox {
    margin-bottom: 27px;
    padding-bottom: 26px;
  }
  .expertise_text .sec-head h3 {
    margin-bottom: 30px;
  }
  .expertise_text h5.heading {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 25px;
  }
  .expertise_text .content p {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 23px;
  }
  .creative .sec-head .head-main h3 {
    font-size: 44px;
    line-height: 50px;
  }
  .creative .head-text h5.head-mid {
    font-size: 22px;
    line-height: 30px;
  }
  .creative .head-text p {
    font-size: 15px;
    column-count: 1;
  }
  .swiper.creativeSwiper {
    margin-top: 30px;
  }
  .creative .project-description {
    width: 100%;
  }
  .swiper.creativeSwiper2 {
    margin-top: 20px;
  }
  a.btn.big:after {
    right: 22px;
  }
  .creative .project-description .row-btn a.nobtn.white {
    display: none;
  }
  .creative .container-fluid {
    padding: 0 24px;
  }
  .creative .visit-showroom .col2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .popup-box {
    background-color: #f1f5f9;
  }
  .creative {
    padding: 80px 0;
  }
  .our-projects {
    padding: 80px 0;
  }
  .our-projects .sec-head h3 {
    width: 100%;
  }
  .our-projects .sec-head h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .our-projects .project-img {
    height: 300px;
  }
  .our-projects .projects-row {
    flex-direction: column;
    gap: 24px;
  }
  .our-projects .projects-row .project-box {
    width: 100%;
  }
  .projects .more-projectbtn {
    position: relative;
    right: 0;
    top: 0;
    margin-top: 40px;
    text-align: center;
  }
  .projects {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
  }
  .our-projects .projects-row .project-box:hover {
    width: 100%;
  }
  .project-box .box-text h4 {
    font-size: 22px;
    line-height: 30px;
  }
  a.btn.big {
    padding: 9px 47px 8px 24px;
  }
  .testimonial .sec-head h3 {
    margin-bottom: 15px;
  }
  .video-meta h4.video-title {
    font-size: 17px;
    line-height: 25px;
    margin-top: 10px;
  }
  .testimonial-control {
    top: 0;
    position: relative;
    margin: 0 auto;
    width: 100%;
    display: block;
    text-align: center;
  }
  .navigations {
    width: 100%;
    gap: 86px;
    display: flex;
    justify-content: center;
  }
  .slide-number {
    top: 16px;
  }
  footer {
    padding: 80px 0 107px;
  }
  footer .insta-head h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
  }
  footer .insta-head a.social-link {
    font-size: 17px;
    line-height: 25px;
  }
  .insta-row {
    margin-top: 30px;
    padding-left: 24px;
  }
  .ft-bottom {
    margin-top: 80px;
  }
  .ft-branding .brand a.ft-brandmob {
    display: block;
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    color: var(--blue);
    width: 204px;
  }
  .ft-branding .brand a {
    display: none;
  }
  .ft-branding .brand {
    margin-bottom: 20px;
  }
  .ft-branding .about-brand .certifications {
    margin-top: 30px;
    gap: 25px;
  }
  .ft-branding .about-brand .certifications img {
    width: 97px;
  }
  .ft-menu .ft-heading h4 {
    display: none;
  }
  .footer-col2 {
    gap: 60px;
  }
  .ft-menu .ft-menu-col ul li.ft-mobile {
    margin-top: 24px;
  }
  .ft-menu .ft-menu-col {
    display: grid;
    grid-template-columns: 166px 1fr;
    justify-content: space-between;
    column-gap: 51px;
    row-gap: 40px;
    margin-top: 0;
    padding: 0;
  }
  .ft-menu .ft-menu-col .menu-2 {
    margin-top: 0;
  }
  .ft-menu .ft-menu-col h4 {
    font-size: 15px;
    line-height: 23px;
  }
  .ft-menu .ft-menu-col .menu-4 {
    margin-top: 0;
  }
  .ft-menu-col .menu-3 {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 2;
    grid-row-end: 2;
  }
  .ft-menu .ft-menu-col ul {
    margin-top: 20px;
  }
  .copyright {
    flex-direction: column-reverse;
    padding-top: 0;
    border-top: 0;
  }
  footer .terms-nav ul {
    gap: 30px;
    border-bottom: 1px solid var(--grey);
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  footer .terms-nav ul li a {
    font-size: 13px;
    line-height: 21px;
  }
  .copyright-txt p {
    font-size: 13px;
    line-height: 21px;
  }
  .copyright-txt p:last-child {
    margin-top: 5px;
  }
  .ftlogomob {
    display: block;
    margin-bottom: 23.8px;
  }
  .creative-desc {
    display: grid;
    column-gap: 0;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .header-main {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
  }
  .banner-text {
    width: auto;
  }
  div#smooth-content {
    overflow-x: hidden;
  }
  .instaswiper .swiper-slide {
    height: auto;
  }
  .popup-box .popup-title {
    margin-top: 10px;
  }
  .popup-box {
    width: calc(342px - 20px);
    height: calc(190px - 20px);
  }
  .popup-box .popup-title p {
    font-size: 15px;
    line-height: 21px;
  }
  .pop-poster img {
    display: block;
    height: 140px;
    object-fit: cover;
    border-radius: 5px;
  }
  .our-expertise .col2 .expertise_imgs img {
    height: 260px;
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .our-expertise .col2 .expertise_imgs {
    gap: 8px;
  }
  .modal-content {
    width: calc(100% - 48px);
    margin: 50px auto;
    height: auto;
  }
  .creative .popup-box {
    width: calc(342px - 20px);
    position: relative;
  }
  .our-expertise .col2 .expertise_imgs .imgbox {
    height: 260px;
  }
  .testimonial .sec-head {
    gap: 0;
    flex-direction: column;
    align-items: baseline;
  }
  .testimonial .sec-head p {
    width: 100%;
  }
  .breadcrum > ul li a {
    font-size: 13px;
    line-height: 21px;
  }
  .breadcrum > ul li a img {
    width: 13px;
    height: 14px;
  }
  .inner-banner-text {
    padding-top: 83px;
  }
  .inner-banner-text h1 {
    font-size: 44px;
    line-height: 50px;
    margin-bottom: 15px;
  }
  .inner-banner-text p {
    font-size: 17px;
    line-height: 25px;
  }
  .services-slide {
    gap: 10px;
    flex-direction: column;
    margin-bottom: -375px;
  }
  .services-slide .service-box.active {
    width: 100%;
    height: 242px;
  }
  .services-slide .service-box.active .slide-txt {
    width: calc(100% - 48px);
    bottom: 20px;
  }
  .services-slide .service-box.active .slide-num {
    margin-bottom: 10px;
  }
  .slide-btn a.btn.big {
    padding: 9px 44px 8px 27px;
  }
  .services-slide .service-box {
    width: 100%;
    height: 142px;
  }
  .services-slide .service-box .slide-head {
    transform-origin: 0 0;
    transform: rotate(0);
  }
  .services-slide .service-box .slide-txt {
    bottom: 20px;
    width: calc(100% - 48px);
  }
  .how-work {
    padding: 455px 0 99px;
  }
  .services-slide .service-box .slide-txt h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .how-work .sec-head h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .how-work .sec-head h3 {
    margin-top: 12px;
    font-size: 28px;
    line-height: 36px;
  }
  .work-process {
    margin-top: 40px;
    display: block;
    padding-left: 23px;
  }
  .work-process:before {
    width: 1px;
    height: calc(100% - 21%);
    left: 0;
    top: 25px;
  }
  .work-process .icon-box .icon:before {
    font-size: 44px;
    line-height: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    justify-content: left;
    width: 35px;
    left: 0;
  }
  .work-process .icon-box .icon {
    margin-left: 0;
    padding-left: 52px;
  }
  .work-process .icon-box .icon-head {
    margin-top: 18px;
  }
  .work-process .icon-box .icon-head h4 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .work-process .icon-box .icon img {
    width: 44px;
    height: 44px;
  }
  .work-process .icon-box {
    margin-bottom: 40px;
  }
  .work-process .icon-box .icon-head:after {
    left: -29px;
    top: -46px;
  }
  .work-process-inner {
    gap: 0;
  }
  .how-work .appointmentbtn a.btn.big {
    padding: 9px 46px 8px 25px;
  }
  .comparison-container {
    height: 521px;
    width: 100%;
  }
  .slider-handle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    font-size: 15px;
    line-height: 23px;
  }
  .comparison-image {
    height: 100%;
  }
  .comparison-container .tags.after {
    left: 50%;
    bottom: auto;
    transform: translateX(-50%);
    top: calc(-41px / 2);
  }
  .ab-gallery-content {
    padding-right: 24px;
    margin-top: 50.5px;
  }
  .brands-row .brand-box {
    padding: 20.5px 37.2px;
  }
  .brands-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    margin-right: 23px;
  }
  .before-after {
    padding: 80px 0;
  }
  ul.ab-gallery-tab li a {
    font-weight: 300;
  }
  .before-after .container {
    padding-right: 0;
  }
  .ab-gallerygrid {
    overflow: auto;
  }
  ul.ab-gallery-tab {
    display: -webkit-inline-box;
    gap: 5px;
  }
  .ab-gallerygrid::-webkit-scrollbar {
    height: 0;
  }
  .brands-row > div {
    border-bottom: 1px solid var(--grey);
  }
  .brands-row > div:last-child,
  .brands-row > div:nth-last-child(2) {
    border-bottom: none;
  }
  .brands-row .brand-box:before {
    height: calc(100% - 40px);
    top: 20px;
  }
  .brand-box:nth-child(even) {
    position: relative;
  }
  .brand-box:nth-child(even):after,
  .brands-row .brand-box:last-child:after {
    content: "";
    background: var(--grey);
    position: absolute;
    right: 0;
    top: 20px;
    width: 1px;
    height: calc(100% - 40px);
  }
  .our-expertise.whychoose {
    padding: 80px 0 86px;
  }
  .our-expertise.whychoose .sec-head h3 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 41px;
  }
  .whychoose .acc-head h4 {
    font-size: 15px;
    line-height: 23px;
    padding-right: 44px;
    font-weight: 600;
  }
  .whychoose .expertise_text .acc-content p {
    font-weight: 300;
  }
  .whychoose .accbox.active .acc-head {
    margin-bottom: 21px;
  }
  .whychoose .accordion .accbox {
    margin-bottom: 21px;
    padding-bottom: 20px;
  }
  .acc-head:before {
    width: 42px;
    height: 42px;
  }
  .inner-banner-text.solution-inner {
    padding-top: 83px;
  }
  .inner-banner-text .txt-row h5.headmain {
    font-size: 22px;
    line-height: 30px;
    padding-right: 70px;
  }
  .innerbanner .imgbox img,
  .innerbanner .imgbox.fullimgservice {
    height: 212px;
  }
  .what-offer .sec-head h3 {
    font-size: 44px;
    line-height: 50px;
  }
  .what-offer .offer-list h5 {
    font-size: 17px;
    line-height: 25px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .what-offer .offer-list .col2p {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .top-performer {
    padding: 80px 0;
  }
  .top-performer .sec-head h3 {
    font-size: 44px;
    line-height: 50px;
    width: 342px;
  }
  ul.property-tab {
    gap: 5px;
  }
  .what-offer .grid-img img:nth-child(1) {
    height: 386px;
  }
  .acc-head:after {
    width: 16px;
    height: 16px;
    right: 5px;
  }
  .top-performer .container {
    padding-right: 0;
  }
  .top-performer .sec-head .rightbox {
    overflow: auto;
    width: 100%;
  }
  .top-performer .sec-head .rightbox::-webkit-scrollbar {
    height: 0;
  }
  .perform-row {
    padding-right: 24px;
    grid-template-columns: 1fr;
  }
  .property-price p {
    font-size: 16px;
    line-height: 24px;
  }
  .property-box .property-desc h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .our-projects .projects-row {
    margin-top: 40px;
  }
  .solution-project {
    padding: 80px 0 85px;
  }
  .our-projects .project-box .box-text {
    top: 30px;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    left: 30px;
  }
  .our-projects .projects-row .project-box:first-child h4 {
    width: 72%;
  }
  .perform-row .property-box .imgbox img {
    width: 100%;
    display: block;
  }
  .banner-grid-box {
    width: 100%;
    gap: 12px;
  }
  .project-listing-tab ul {
    display: -webkit-inline-box;
  }
  .project-listings .projects-grid {
    grid-template-columns: 2fr;
    column-gap: 0;
    display: flex;
    flex-direction: column;
    margin-right: 24px;
  }
  .project-listing-tab {
    overflow: auto;
  }
  .project-listings .container {
    padding-right: 0;
  }
  .project-pagination {
    margin-right: 24px;
  }
  .project-listing-tab::-webkit-scrollbar {
    height: 0;
  }
  .project-box {
    height: auto !important;
  }
  .headbox.detail .banner-grid-box {
    margin-top: 75px;
    gap: 12px;
  }
  .what-done .offer-list .grid-img {
    margin: 40px 0 0;
  }
  .project-detail-content .detail-box h4 {
    padding-right: 0;
  }
  .project-detail-content .detail-box .colbox {
    margin-top: 20px;
  }
  .project-detail-content .detail-box .colbox .gallerybox,
  .detail-feature {
    width: 100%;
  }
  .project-content-slider {
    padding: 0 24px;
  }
  .contentslider .description {
    padding: 20px 0 0;
  }
  .impression-grid {
    margin-top: 60px;
  }
  .impression-grid .impression-box {
    grid-template-columns: 1fr;
    gap: 0;
    row-gap: 12px;
  }
  .impression-grid .impression-box .imgbox {
    grid-row-start: auto !important;
    grid-row-end: auto !important;
    grid-column-start: auto !important;
    grid-column-end: auto !important;
  }
  .mobtxt {
    display: block;
  }
  .about .banner-grid .headbox h1 {
    margin-bottom: 15px;
  }
  .inner-banner-text.about .headbox .headmain {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 30px;
  }
  .headbox .about-feature {
    margin-top: 40px;
    height: auto;
  }
  .about .banner-grid {
    gap: 40px;
    margin-bottom: -957px;
  }
  .about .featurebox-right h3 {
    width: 260px;
  }
  .about.inner-banner-text p {
    line-height: 25px;
  }
  .about .featurebox-right ul {
    grid-template-columns: 1fr;
    row-gap: 20px;
    margin-top: 20px;
  }
  .about.inner-banner-text p.mobtxt {
    font-size: 15px;
    line-height: 23px;
    color: var(--blue);
  }
  .inner-banner-text.about .feature-cols {
    gap: 10px;
  }
  .testimonial.about {
    padding: 215px 0 99px;
  }
  .creative.about {
    margin-bottom: -135px;
    padding: 1012px 0 0;
  }
  .about .featurebox-right h3,
  .about.inner-banner-text p,
  .about .featurebox-right ul {
    color: #fff;
  }
  .creative-tabbox .col-3 {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .creative-tabs ul.tabs-list {
    position: absolute;
    border-bottom: 0;
    background: #3b5b6b;
    display: block;
    width: calc(100% - 5px);
    display: none;
    padding: 49px 12px 19px;
    list-style: none;
    top: -12px;
    z-index: 0;
    left: -10px;
  }
  .creative-tabs ul.tabs-list.active {
    display: block;
  }
  .creative-tabs ul.tabs-list li.active:after,
  .creative-tabs ul.tabs-list li:hover:after {
    display: none;
  }
  .creative-tabs ul.tabs-list li a {
    color: #fff;
  }
  .creative-tabs ul.tabs-list li.active {
    display: none;
  }
  .our-team .team-row {
    grid-template-columns: 1fr 1fr;
  }
  .our-team .teambox:nth-child(5) {
    grid-column-start: auto;
  }
  .our-team .teambox:nth-child(3),
  .our-team .teambox:nth-child(5) {
    margin-top: -52px;
  }
  .our-team .teambox:nth-child(4) {
    margin: 0;
  }
  .our-team .teambox:nth-child(6) {
    grid-column-start: auto;
    grid-row-start: auto;
    margin-top: 0;
  }
  .our-team {
    padding: 80px 0;
  }
  .our-team .team-row {
    row-gap: 10px;
    column-gap: 10px;
  }
  .our-team .sec-head {
    gap: 11px;
  }
  .inner-banner.contact {
    padding-bottom: 86px;
  }
  .contact-form h4.contact-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .contact-form .form {
    row-gap: 30px;
    column-gap: 0;
    grid-template-columns: 1fr;
  }
  .contact-form .form .field.full {
    grid-column: auto;
  }
  .contact-form .form .field .checklist {
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 15px;
  }
  .contact-infos p {
    font-size: 15px;
    font-weight: 300;
    line-height: 23px;
  }
  .contact-infos .txtbox {
    margin-bottom: 30px;
  }
  .contact-form .form .field textarea {
    height: calc(140px - 35px);
  }
  .contact-form .form .field input[type="submit"] {
    padding: 8px 40px 8px 22px;
  }
  .contact-form .form .field .formbtn:after {
    right: 21px;
  }
  .creative-tabs .show-tab p {
    font-size: 17px;
    line-height: 25px;
    font-weight: 500;
    color: #fff;
    position: relative;
    z-index: 9;
  }
  .creative-tabs .show-tab {
    border-bottom: 1px solid #fff;
    position: relative;
    padding-bottom: 12px;
  }
  .creative-tabs .show-tab p:after {
    content: "";
    background: url(../images/arrow-down.svg) no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    width: 14px;
    height: 12px;
    transform: translateY(-50%);
    background-size: contain;
    background-position: center center;
    transition: 0.4s ease-in-out;
  }
  .creative-tabs .show-tab.active p:after {
    transform: scaleY(-1) translateY(50%);
    transition: 0.4sease-in-out;
  }
  .creative-tabs .show-tab.active p {
    color: rgb(255 255 255 / 44%);
  }
  .inner-banner.inspiration .banner-grid .featurebox {
    width: 100%;
  }
  .inpiration-detail {
    margin-top: 30px;
  }
  .project-pagination .navigations {
    position: relative;
    margin-top: -53px;
    gap: 20px;
    width: 100%;
  }
  .inspired-inner .headbox.detail .banner-grid-box {
    width: 100%;
    margin-top: 50px;
  }
  .renovation-img {
    height: auto;
  }
  .related-row {
    row-gap: 40px;
  }
  .property-box .property-desc {
    padding-top: 43px;
  }
  .inspired-inner .banner-grid {
    margin-bottom: -50px;
  }
  .related-inspiration .related-box .view-allbtn {
    top: 0;
    position: relative;
    margin-top: 50px;
    text-align: center;
  }
  .hero-banner.landing .banner-text p {
    width: 100%;
  }
  .hero-banner.landing img.hero_img {
    height: 500px;
  }
  .hero-banner.landing .banner-text h1,
  .hero-banner.landing .banner-text h2 {
    font-size: 40px;
    line-height: 46px;
  }
  .landing-banner-inner .banner-text a.btn {
    margin-top: 20px;
  }
  .landing-about .cols2 {
    gap: 40px;
  }
  .landing-about .featurebox-right ul {
    column-count: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .landing-about .feature-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .landing-about {
    padding: 50px 0;
  }
  .landing-service .sec-head h3 {
    width: auto;
  }
  .our-projects.landing {
    padding: 0;
    margin-bottom: 0;
  }
  .testimonial.landing {
    padding: 80px 0;
  }
  .request-aquote {
    padding: 80px 0;
  }
  .landing-contact .cols {
    gap: 40px;
  }
  .custmore-care-main-heading h1 {
    font-size: 46px;
    line-height: 16px;
  }
  .tabcontent .main-tabs-text h2 {
    font-size: 28px;
    line-height: 30px;
  }
  .tab h4 {
    font-size: 16px;
    line-height: 24px;
  }
  .main-tabs {
    margin-top: -30px;
    padding-left: 0;
  }
  .pinetreelane ul {
    padding: 10px 0 0 22px;
  }
  .main-tabs {
    grid-template-columns: 1fr;
    padding-right: 0;
  }
  .landing.about .featurebox-right h3,
  .landing.about.inner-banner-text p,
  .about.landing .featurebox-right ul {
    color: var(--blue);
  }
  .landing .headbox .about-feature {
    height: auto;
  }
  .text-block-section .sec-head h3 {
    width: 100%;
  }
  .text-block-section .cols {
    flex-direction: column;
    gap: 20px;
  }
  .acc-head h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .contact-info ul li a.navbtn {
    line-height: 24px;
    font-size: 14px;
    padding: 6px 35px 6px 23px;
  }
  .acc-content {
    padding-right: 0;
  }
  .accbox.active .acc-head {
    margin-bottom: 12px;
  }
  .rightbox .imgallery img:first-child {
    height: 212px;
  }
  .rightbox .imgallery img:nth-child(2),
  .rightbox .imgallery img:nth-child(3) {
    height: 120px;
  }
  .our-expertise {
    padding: 80px 0;
  }
  .showroom-txt h4 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 15px;
  }
  .showroom-txt {
    padding-bottom: 0;
  }
  .testimonial {
    padding: 80px 0;
  }
  .testimonial-box .video-cover {
    height: 200px;
  }
  .testimonial-box .playtime {
    padding-top: 31px;
  }
  footer .insta-head {
    align-items: center;
  }
  .mob-header {
    bottom: 15px;
  }
  .header-inner .mobile a img {
    width: 15px;
    height: 24px;
    display: block;
  }
  .header-inner .mob-mail a img {
    width: 24px;
    height: 17px;
    display: block;
  }
  .copyright-txt a > img {
    margin-bottom: 13.8px;
  }
  .work-process {
    width: 100%;
  }
  .how-work .container {
    padding-right: 24px;
  }
  .how-work .process-outer {
    overflow: visible;
  }
  .before-after .sec-head h3 {
    margin-top: 10px;
  }
  .comparison-container .tags {
    font-size: 16px;
    line-height: 24px;
  }
  .comparison-container .tags.before {
    left: 50%;
    right: auto;
  }
  .header-main .brand a > img,
  .header-main .brand-mob a > img {
    width: auto;
    height: 68px;
    max-width: 192px;
    object-fit: contain;
    filter: brightness(0) invert(1) sepia(1) hue-rotate(345deg) saturate(3) brightness(0.13);
  }
  .what-offer .grid-img img:nth-child(2),
  .what-offer .grid-img img:nth-child(3) {
    height: 166px;
  }
  .headbox .about-feature img {
    height: 386px;
  }
  .about .featurebox-right h3 {
    margin-bottom: 30px;
  }
  .creative.about .creativeSwiper .swiper-slide,
  .creative.about .creativeSwiper2 .swiper-slide {
    margin-right: 10px !important;
  }
  .creative.about .swiper.creativeSwiper2 {
    margin-top: 20px;
  }
  .our-team .team-row.second {
    direction: rtl;
  }
  .our-team .team-groupimg img.hero_img {
    height: 212px;
  }
  .contact-form .form .field .checkbox {
    flex-wrap: wrap;
    row-gap: 15px;
  }
  .contact-form .form .field.full label[for="services"] {
    margin-bottom: 12px;
  }
  .contact-infos {
    width: 166px;
  }
  .banner-grid.project-grid .headbox p {
    padding-right: 0;
  }
  .project-pagination ul.project-pagination-link {
    width: 200px;
  }
  .project-pagination .navigations div > a {
    display: flex;
  }
  .project-detail .banner-grid-box img:nth-child(2),
  .banner-grid-box img:nth-child(3) {
    height: 180px;
  }
  .project-detail-content .col2 .gallerybox img {
    height: 180px;
    width: 100%;
    object-fit: cover;
  }
  .property-box .property-price.category {
    width: calc(100% - 20px);
    overflow: auto;
    flex-direction: row-reverse;
  }
  .property-box .exerpt_desc {
    min-height: auto;
  }
  .property-box .property-price.category::-webkit-scrollbar {
    height: 0;
  }
  .property-box .property-price.category > a {
    white-space: nowrap;
  }
  .inspired-contact .sec-head h3 {
    width: 100%;
  }
  .breadcrum > ul li.big-txt {
    margin-left: 34px;
  }
  .our-projects.landing .sec-head h3 {
    width: 100%;
  }
  .landing-contact .contact-head h3 {
    width: 100%;
  }
  .copyright-txt a.ftlogo_bottom {
    display: block;
  }
  .property-box .property-price.category > a {
    padding: 10px 20px;
    font-size: 15px;
  }
  .banner-grid.project-grid .banner-grid-box img:nth-child(2),
  .banner-grid.project-grid .banner-grid-box img:nth-child(3) {
    height: 180px;
  }
  .banner-grid.project-detail .banner-grid-box img:nth-child(2),
  .banner-grid.project-detail .banner-grid-box img:nth-child(3),
  .banner-grid-box img:nth-child(2),
  .banner-grid-box img:nth-child(3) {
    height: 160px;
  }
  .related-inspiration .property-box .property-desc h4 {
    min-height: auto;
    margin-bottom: 0;
    margin-top: 10px;
  }
  .project-detail-content .detail-feature img {
    height: 350px;
    width: 100%;
    object-fit: cover;
  }
  .hero-slider .swiper-navigate {
    display: none;
  }
  .our-team .sec-head-main .cols2 .left-box h3 {
    font-size: 50px;
    line-height: 40px;
  }
  .our-team .sec-head-main .cols2 .right-box p {
    font-size: 15px;
    line-height: 23px;
  }
  .teams-featured .feature-team-box {
    grid-template-columns: 1fr;
  }
  .teams-member-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .team-member-box {
    width: 100%;
  }
  .team-member-box img {
    width: 100%;
    height: 350px;
    margin: 0 auto;
  }
  .teams-member-list {
    margin-top: 50px;
  }
  .our-clients {
    padding: 100px 0 calc(120px + 230px);
  }
  .slides-new-section {
    padding: 80px 0 0;
  }
  .our-clients .clients.swiper {
    padding-right: 0;
  }
  .our-clients .sec-head h3 {
    font-size: 20px;
    line-height: 25px;
  }
  .whatup-section {
    width: 50px;
    height: 50px;
    bottom: 81px;
  }
  .whatup-section img {
    width: 25px;
    height: 25px;
  }
  .calculator-inner-main {
    padding: 20px;
  }
  .outer-main-tabing .tab-buttons {
    flex-wrap: wrap;
  }
  .calculator-inner-tab .tab-buttons {
    overflow-x: scroll;
    padding-bottom: 10px;
  }
  .calculator-inner-tab .tab-btn {
    min-width: 120px;
  }
  .calculator-inner-tab .tab-buttons::-webkit-scrollbar {
    width: 10px;
    height: 3px;
    background-color: #f5f5f5;
  }
  .calculator-inner-tab .tab-buttons::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 0.3);
    background-color: #f5f5f5;
    border-radius: 10px;
  }
  .calculator-inner-tab .tab-buttons::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--yellow);
  }
  .modal-form-outer {
    transform: translate(-50%, 0);
    width: 94%;
    top: 30px !important;
    left: 50% !important;
  }
} /**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition:
    0.2s transform,
    0.2s top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s left;
}
.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s right;
}
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
.swiper-pagination-progressbar {
  background: var(
    --swiper-pagination-progressbar-bg-color,
    rgba(0, 0, 0, 0.25)
  );
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper.swiper-cube {
  overflow: visible;
}
.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}
.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
img:is([sizes="auto" i], [sizes^="auto," i]) {
  contain-intrinsic-size: 3000px 1500px;
}
#sb_instagram {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#sb_instagram #sbi_images,
#sb_instagram.sbi_fixed_height {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
#sb_instagram:after,
.sbi_lb-commentBox:after,
.sbi_lb-data:after,
.sbi_lb-dataContainer:after,
.sbi_lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}
#sb_instagram.sbi_fixed_height {
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}
#sb_instagram #sbi_images {
  box-sizing: border-box;
  display: grid;
  width: 100%;
  padding: 12px 0;
}
#sb_instagram .sbi_header_link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
#sb_instagram .sbi_header_link:hover,
.sbi_lightbox a img {
  border: none;
}
#sb_instagram #sbi_images .sbi_item {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  zoom: 1;
  margin: 0 !important;
  text-decoration: none;
  opacity: 1;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
#sb_instagram #sbi_images .sbi_item.sbi_transition {
  opacity: 0;
}
#sb_instagram.sbi_col_1 #sbi_images,
#sb_instagram.sbi_col_1.sbi_disable_mobile #sbi_images {
  grid-template-columns: repeat(1, 1fr);
}
#sb_instagram.sbi_col_2 #sbi_images,
#sb_instagram.sbi_col_2.sbi_disable_mobile #sbi_images {
  grid-template-columns: repeat(2, 1fr);
}
#sb_instagram.sbi_col_3 #sbi_images,
#sb_instagram.sbi_col_3.sbi_disable_mobile #sbi_images {
  grid-template-columns: repeat(3, 1fr);
}
#sb_instagram.sbi_col_4 #sbi_images,
#sb_instagram.sbi_col_4.sbi_disable_mobile #sbi_images {
  grid-template-columns: repeat(4, 1fr);
}
#sb_instagram.sbi_col_5 #sbi_images,
#sb_instagram.sbi_col_5.sbi_disable_mobile #sbi_images {
  grid-template-columns: repeat(5, 1fr);
}
#sb_instagram.sbi_col_6 #sbi_images,
#sb_instagram.sbi_col_6.sbi_disable_mobile #sbi_images {
  grid-template-columns: repeat(6, 1fr);
}
#sb_instagram.sbi_col_7 #sbi_images,
#sb_instagram.sbi_col_7.sbi_disable_mobile #sbi_images {
  grid-template-columns: repeat(7, 1fr);
}
#sb_instagram.sbi_col_8 #sbi_images,
#sb_instagram.sbi_col_8.sbi_disable_mobile #sbi_images {
  grid-template-columns: repeat(8, 1fr);
}
#sb_instagram.sbi_col_9 #sbi_images,
#sb_instagram.sbi_col_9.sbi_disable_mobile #sbi_images {
  grid-template-columns: repeat(9, 1fr);
}
#sb_instagram.sbi_col_10 #sbi_images,
#sb_instagram.sbi_col_10.sbi_disable_mobile #sbi_images {
  grid-template-columns: repeat(10, 1fr);
}
#sb_instagram #sbi_load .sbi_load_btn,
#sb_instagram .sbi_photo_wrap {
  position: relative;
}
#sb_instagram .sbi_photo {
  display: block;
  text-decoration: none;
}
#sb_instagram .sbi_photo img {
  width: 100%;
  height: inherit;
  object-fit: cover;
  scale: 1;
  transition: transform 0.5s ease-in-out;
  transition:
    transform 0.5s ease-in-out,
    -webkit-transform 0.5s ease-in-out;
  vertical-align: middle;
}
#sb_instagram .sbi_no_js img,
#sb_instagram br,
#sb_instagram p:empty,
#sb_instagram.sbi_no_js .sbi_load_btn,
#sb_instagram.sbi_no_js .sbi_photo img {
  display: none;
}
#sb_instagram a,
#sb_instagram a:active,
#sb_instagram a:focus,
#sb_instagram a:hover,
.sbi_lightbox a:active,
.sbi_lightbox a:focus,
.sbi_lightbox a:hover {
  outline: 0;
}
#sb_instagram img {
  display: block;
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  opacity: 1 !important;
}
#sb_instagram .sbi_link {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 1.1;
}
#sb_instagram .sbi_link a {
  padding: 0 6px;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  line-height: 1.1;
  display: inline-block;
  vertical-align: top;
  zoom: 1;
}
#sb_instagram .sbi_link .sbi_lightbox_link {
  padding-bottom: 5px;
}
#sb_instagram .sbi_link a:focus,
#sb_instagram .sbi_link a:hover {
  text-decoration: underline;
}
#sb_instagram .sbi_photo_wrap:focus .sbi_link,
#sb_instagram .sbi_photo_wrap:hover .sbi_link {
  display: block;
}
#sb_instagram svg:not(:root).svg-inline--fa {
  height: 1em;
  display: inline-block;
}
#sb_instagram .sbi_type_carousel .sbi_playbtn,
#sb_instagram .sbi_type_carousel .svg-inline--fa.fa-play,
#sb_instagram .sbi_type_video .sbi_playbtn,
#sb_instagram .sbi_type_video .svg-inline--fa.fa-play,
.sbi_type_carousel .fa-clone {
  display: block !important;
  position: absolute;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-style: normal !important;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}
#sb_instagram .sbi_type_carousel .sbi_playbtn,
#sb_instagram .sbi_type_video .sbi_playbtn {
  z-index: 2;
  top: 50%;
  left: 50%;
  margin-top: -24px;
  margin-left: -19px;
  padding: 0;
  font-size: 48px;
}
#sb_instagram .sbi_type_carousel .fa-clone {
  right: 12px;
  top: 12px;
  font-size: 24px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
#sb_instagram .sbi_type_carousel .svg-inline--fa.fa-play,
#sb_instagram .sbi_type_video .svg-inline--fa.fa-play,
.sbi_type_carousel svg.fa-clone {
  -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.4));
}
#sb_instagram .sbi_loader {
  width: 20px;
  height: 20px;
  position: relative;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  -webkit-animation: 1s ease-in-out infinite sbi-sk-scaleout;
  animation: 1s ease-in-out infinite sbi-sk-scaleout;
}
#sbi_load p {
  display: inline;
  padding: 0;
  margin: 0;
}
#sb_instagram #sbi_load .sbi_loader {
  position: absolute;
  margin-top: -11px;
  background-color: #fff;
  opacity: 1;
}
@-webkit-keyframes sbi-sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes sbi-sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
#sb_instagram .fa-spin,
#sbi_lightbox .fa-spin {
  -webkit-animation: 2s linear infinite fa-spin;
  animation: 2s linear infinite fa-spin;
}
#sb_instagram .fa-pulse,
#sbi_lightbox .fa-pulse {
  -webkit-animation: 1s steps(8) infinite fa-spin;
  animation: 1s steps(8) infinite fa-spin;
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.sbi-screenreader {
  text-indent: -9999px !important;
  display: block !important;
  width: 0 !important;
  height: 0 !important;
  line-height: 0 !important;
  text-align: left !important;
  overflow: hidden !important;
}
#sb_instagram .sb_instagram_header,
.sb_instagram_header {
  overflow: hidden;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px 0;
}
#sb_instagram .sb_instagram_header a,
.sb_instagram_header a {
  transition: color 0.5s;
  text-decoration: none;
}
.sb_instagram_header.sbi_header_outside {
  float: none;
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex;
}
.sbi_no_avatar .sbi_header_img {
  background: #333;
  color: #fff;
  width: 50px;
  height: 50px;
  position: relative;
}
.sb_instagram_header .sbi_header_hashtag_icon {
  opacity: 0;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
}
.sbi_no_avatar .sbi_header_hashtag_icon {
  display: block;
  color: #fff;
  opacity: 0.9;
  -webkit-transition:
    background 0.6s linear,
    color 0.6s linear;
  -moz-transition:
    background 0.6s linear,
    color 0.6s linear;
  -o-transition:
    background 0.6s linear,
    color 0.6s linear;
  transition:
    background 0.6s linear,
    color 0.6s linear;
}
.sbi_no_avatar:hover .sbi_header_hashtag_icon {
  display: block;
  opacity: 1;
  -webkit-transition:
    background 0.2s linear,
    color 0.2s linear;
  -moz-transition:
    background 0.2s linear,
    color 0.2s linear;
  -o-transition:
    background 0.2s linear,
    color 0.2s linear;
  transition:
    background 0.2s linear,
    color 0.2s linear;
}
@media all and (min-width: 480px) {
  #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img,
  #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img img,
  .sb_instagram_header.sbi_medium .sbi_header_img,
  .sb_instagram_header.sbi_medium .sbi_header_img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
  }
  #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3,
  .sb_instagram_header.sbi_medium .sbi_header_text h3 {
    font-size: 20px;
  }
  #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,
  #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info,
  .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,
  .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info {
    font-size: 14px;
  }
  #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,
  #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info,
  #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3,
  .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,
  .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info,
  .sb_instagram_header.sbi_medium .sbi_header_text h3 {
    line-height: 1.4;
  }
  #sb_instagram .sb_instagram_header.sbi_large .sbi_header_img,
  #sb_instagram .sb_instagram_header.sbi_large .sbi_header_img img,
  .sb_instagram_header.sbi_large .sbi_header_img,
  .sb_instagram_header.sbi_large .sbi_header_img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
  }
  #sb_instagram .sb_instagram_header.sbi_large .sbi_header_text h3,
  .sb_instagram_header.sbi_large .sbi_header_text h3 {
    font-size: 28px;
  }
  #sb_instagram .sb_instagram_header.sbi_large .sbi_header_text .sbi_bio,
  #sb_instagram .sb_instagram_header.sbi_large .sbi_header_text .sbi_bio_info,
  .sb_instagram_header.sbi_large .sbi_header_text .sbi_bio,
  .sb_instagram_header.sbi_large .sbi_header_text .sbi_bio_info {
    font-size: 16px;
  }
}
#sb_instagram .sb_instagram_header .sbi_header_img,
.sb_instagram_header .sbi_header_img {
  position: relative;
  width: 50px;
  height: 50px;
  overflow: hidden;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border-radius: 50%;
}
#sb_instagram .sb_instagram_header .sbi_header_img_hover,
.sb_instagram_header .sbi_header_img_hover {
  opacity: 0;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2;
  transition: opacity 0.4s ease-in-out;
}
#sb_instagram .sb_instagram_header .sbi_header_hashtag_icon .sbi_new_logo,
#sb_instagram .sb_instagram_header .sbi_header_img_hover .sbi_new_logo,
.sb_instagram_header .sbi_header_hashtag_icon .sbi_new_logo,
.sb_instagram_header .sbi_header_img_hover .sbi_new_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -12px;
  width: 24px;
  height: 24px;
  font-size: 24px;
}
#sb_instagram
  .sb_instagram_header.sbi_medium
  .sbi_header_hashtag_icon
  .sbi_new_logo,
.sb_instagram_header.sbi_medium .sbi_header_hashtag_icon .sbi_new_logo {
  margin-top: -18px;
  margin-left: -18px;
  width: 36px;
  height: 36px;
  font-size: 36px;
}
#sb_instagram
  .sb_instagram_header.sbi_large
  .sbi_header_hashtag_icon
  .sbi_new_logo,
.sb_instagram_header.sbi_large .sbi_header_hashtag_icon .sbi_new_logo {
  margin-top: -24px;
  margin-left: -24px;
  width: 48px;
  height: 48px;
  font-size: 48px;
}
#sb_instagram .sb_instagram_header .sbi_header_img_hover i {
  overflow: hidden;
}
#sb_instagram .sb_instagram_header .sbi_fade_in,
.sb_instagram_header .sbi_fade_in {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
#sb_instagram .sb_instagram_header a:focus .sbi_header_img_hover,
#sb_instagram .sb_instagram_header a:hover .sbi_header_img_hover,
#sb_instagram.sbi_no_js #sbi_images .sbi_item.sbi_transition,
.sb_instagram_header a:focus .sbi_header_img_hover,
.sb_instagram_header a:hover .sbi_header_img_hover,
.sbi_lb-nav a.sbi_lb-next:hover,
.sbi_lb-nav a.sbi_lb-prev:hover {
  opacity: 1;
}
#sb_instagram .sb_instagram_header .sbi_header_text,
.sb_instagram_header .sbi_header_text {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
}
#sb_instagram .sb_instagram_header.sbi_large .sbi_feedtheme_header_text,
.sb_instagram_header.sbi_large .sbi_feedtheme_header_text {
  gap: 8px;
}
.sb_instagram_header.sbi_medium .sbi_feedtheme_header_text {
  gap: 4px;
}
.sbi_feedtheme_header_text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  flex-direction: column;
  gap: 4px;
}
#sb_instagram .sb_instagram_header h3,
.sb_instagram_header h3 {
  font-size: 16px;
  line-height: 1.3;
  margin: 0;
  padding: 0;
}
#sb_instagram .sb_instagram_header p,
.sb_instagram_header p {
  font-size: 13px;
  line-height: 1.3;
  margin: 0;
  padding: 0;
}
#sb_instagram .sb_instagram_header .sbi_header_text img.emoji,
.sb_instagram_header .sbi_header_text img.emoji {
  margin-right: 3px !important;
}
#sb_instagram .sb_instagram_header .sbi_header_text.sbi_no_bio .sbi_bio_info,
.sb_instagram_header .sbi_header_text.sbi_no_bio .sbi_bio_info {
  clear: both;
}
#sb_instagram #sbi_load {
  float: left;
  clear: both;
  width: 100%;
  text-align: center;
  opacity: 1;
  transition: 0.5s ease-in;
}
#sb_instagram #sbi_load .fa-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -7px;
  font-size: 15px;
}
#sb_instagram #sbi_load .sbi_load_btn,
#sb_instagram .sbi_follow_btn a,
.et-db #et-boc .et-l .et_pb_module .sbi_follow_btn a {
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  padding: 7px 14px;
  margin: 5px auto 0;
  background: #333;
  text-decoration: none;
  line-height: 1.5;
}
#sb_instagram .sbi_load_btn .sbi_btn_text,
#sb_instagram .sbi_load_btn .sbi_loader {
  opacity: 1;
  transition: 0.1s ease-in;
}
#sb_instagram .sbi_hidden {
  opacity: 0 !important;
}
#sb_instagram #sbi_load .sbi_load_btn,
#sb_instagram .sbi_follow_btn a {
  border: none;
  color: #fff;
  font-size: 13px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: 0.1s ease-in;
}
.sbi_lb-nav a.sbi_lb-next,
.sbi_lb-nav a.sbi_lb-prev {
  width: 50px;
  padding-left: 10px;
  padding-right: 10px;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
}
#sb_instagram .sbi_follow_btn {
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  text-align: center;
}
#sb_instagram .sbi_follow_btn.sbi_top {
  display: block;
  margin-bottom: 5px;
}
#sb_instagram .sbi_follow_btn a {
  background: #408bd1;
  color: #fff;
}
#sb_instagram #sbi_load .sbi_load_btn:focus,
#sb_instagram #sbi_load .sbi_load_btn:hover {
  outline: 0;
  box-shadow: inset 0 0 20px 20px rgba(255, 255, 255, 0.25);
}
#sb_instagram .sbi_follow_btn a:focus,
#sb_instagram .sbi_follow_btn a:hover {
  outline: 0;
  box-shadow: inset 0 0 10px 20px #359dff;
}
#sb_instagram #sbi_load .sbi_load_btn:active,
#sb_instagram .sbi_follow_btn a:active {
  box-shadow: inset 0 0 10px 20px rgba(0, 0, 0, 0.3);
}
#sb_instagram .sbi_follow_btn .fa,
#sb_instagram .sbi_follow_btn svg {
  margin-bottom: -1px;
  margin-right: 7px;
  font-size: 15px;
}
#sb_instagram .sbi_follow_btn svg {
  vertical-align: -0.125em;
}
#sb_instagram #sbi_load .sbi_follow_btn {
  margin-left: 5px;
}
#sb_instagram .sb_instagram_error {
  width: 100%;
  text-align: center;
  line-height: 1.4;
}
#sbi_mod_error {
  display: none;
  border: 1px solid #ddd;
  background: #eee;
  color: #333;
  margin: 10px 0 0;
  padding: 10px 15px;
  font-size: 13px;
  text-align: center;
  clear: both;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
#sbi_mod_error br {
  display: initial !important;
}
#sbi_mod_error p {
  padding: 5px 0 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}
#sbi_mod_error ol,
#sbi_mod_error ul {
  padding: 5px 0 5px 20px !important;
  margin: 0 !important;
}
#sbi_mod_error li {
  padding: 1px 0 !important;
  margin: 0 !important;
}
#sbi_mod_error span {
  font-size: 12px;
}
#sb_instagram.sbi_medium .sbi_photo_wrap .svg-inline--fa.fa-play,
#sb_instagram.sbi_medium .sbi_playbtn {
  margin-top: -12px;
  margin-left: -9px;
  font-size: 23px;
}
#sb_instagram.sbi_medium .sbi_type_carousel .sbi_photo_wrap .fa-clone {
  right: 8px;
  top: 8px;
  font-size: 18px;
}
#sb_instagram.sbi_small .sbi_photo_wrap .svg-inline--fa.fa-play,
#sb_instagram.sbi_small .sbi_playbtn {
  margin-top: -9px;
  margin-left: -7px;
  font-size: 18px;
}
#sb_instagram.sbi_small .sbi_type_carousel .sbi_photo_wrap .fa-clone {
  right: 5px;
  top: 5px;
  font-size: 12px;
}
@media all and (max-width: 640px) {
  #sb_instagram.sbi_col_3 #sbi_images,
  #sb_instagram.sbi_col_4 #sbi_images,
  #sb_instagram.sbi_col_5 #sbi_images,
  #sb_instagram.sbi_col_6 #sbi_images {
    grid-template-columns: repeat(2, 1fr);
  }
  #sb_instagram.sbi_col_10 #sbi_images,
  #sb_instagram.sbi_col_7 #sbi_images,
  #sb_instagram.sbi_col_8 #sbi_images,
  #sb_instagram.sbi_col_9 #sbi_images {
    grid-template-columns: repeat(4, 1fr);
  }
  #sb_instagram.sbi_width_resp {
    width: 100% !important;
  }
}
#sb_instagram.sbi_no_js #sbi_images .sbi_item .sbi_photo_wrap {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
#sb_instagram.sbi_no_js #sbi_images .sbi_item .sbi_photo_wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
  z-index: -300;
}
#sb_instagram.sbi_no_js #sbi_images .sbi_item .sbi_photo {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#sb_instagram #sbi_images .sbi_js_load_disabled .sbi_imgLiquid_ready.sbi_photo,
#sb_instagram #sbi_images .sbi_no_js_customizer .sbi_imgLiquid_ready.sbi_photo {
  padding-bottom: 0 !important;
}
#sb_instagram #sbi_mod_error .sb_frontend_btn {
  display: inline-block;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.1);
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  color: #444;
}
#sb_instagram #sbi_mod_error .sb_frontend_btn:hover {
  background: rgba(0, 0, 0, 0.15);
}
#sb_instagram #sbi_mod_error .sb_frontend_btn .fa {
  margin-right: 2px;
}
#sb_instagram.sbi_palette_dark,
#sbi_lightbox.sbi_palette_dark_lightbox
  .sbi_lb-outerContainer
  .sbi_lb-dataContainer,
#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lightbox_tooltip,
#sbi_lightbox.sbi_palette_dark_lightbox .sbi_share_close,
.sbi_header_outside.sbi_header_palette_dark {
  background-color: rgba(0, 0, 0, 0.85);
  color: rgba(255, 255, 255, 0.75);
}
#sb_instagram.sbi_palette_dark .sbi_caption,
#sb_instagram.sbi_palette_dark .sbi_meta,
#sbi_lightbox.sbi_lb-comments-enabled.sbi_palette_dark_lightbox
  .sbi_lb-commentBox
  p,
#sbi_lightbox.sbi_palette_dark_lightbox
  .sbi_lb-outerContainer
  .sbi_lb-dataContainer
  .sbi_lb-details
  .sbi_lb-caption,
#sbi_lightbox.sbi_palette_dark_lightbox
  .sbi_lb-outerContainer
  .sbi_lb-dataContainer
  .sbi_lb-number,
.sbi_header_palette_dark,
.sbi_header_palette_dark .sbi_bio {
  color: rgba(255, 255, 255, 0.75);
}
#sb_instagram.sbi_palette_dark .sbi_expand a,
#sbi_lightbox.sbi_lb-comments-enabled.sbi_palette_dark_lightbox
  .sbi_lb-commentBox
  .sbi_lb-commenter,
#sbi_lightbox.sbi_palette_dark_lightbox
  .sbi_lb-outerContainer
  .sbi_lb-dataContainer
  .sbi_lb-details
  a,
#sbi_lightbox.sbi_palette_dark_lightbox
  .sbi_lb-outerContainer
  .sbi_lb-dataContainer
  .sbi_lb-details
  a
  p,
.sbi_header_palette_dark a {
  color: #fff;
}
#sb_instagram.sbi_palette_light,
#sbi_lightbox.sbi_palette_light_lightbox
  .sbi_lb-outerContainer
  .sbi_lb-dataContainer,
#sbi_lightbox.sbi_palette_light_lightbox .sbi_lightbox_tooltip,
#sbi_lightbox.sbi_palette_light_lightbox .sbi_share_close,
.sbi_header_outside.sbi_header_palette_light {
  color: rgba(0, 0, 0, 0.85);
  background-color: rgba(255, 255, 255, 0.75);
}
#sb_instagram.sbi_palette_light .sbi_caption,
#sb_instagram.sbi_palette_light .sbi_meta,
#sbi_lightbox.sbi_lb-comments-enabled.sbi_palette_light_lightbox
  .sbi_lb-commentBox
  p,
#sbi_lightbox.sbi_palette_light_lightbox
  .sbi_lb-outerContainer
  .sbi_lb-dataContainer
  .sbi_lb-details
  .sbi_lb-caption,
#sbi_lightbox.sbi_palette_light_lightbox
  .sbi_lb-outerContainer
  .sbi_lb-dataContainer
  .sbi_lb-number,
.sbi_header_palette_light,
.sbi_header_palette_light .sbi_bio {
  color: rgba(0, 0, 0, 0.85);
}
#sb_instagram.sbi_palette_light .sbi_expand a,
#sbi_lightbox.sbi_lb-comments-enabled.sbi_palette_light_lightbox
  .sbi_lb-commentBox
  .sbi_lb-commenter,
#sbi_lightbox.sbi_palette_light_lightbox
  .sbi_lb-outerContainer
  .sbi_lb-dataContainer
  .sbi_lb-details
  a,
#sbi_lightbox.sbi_palette_light_lightbox
  .sbi_lb-outerContainer
  .sbi_lb-dataContainer
  .sbi_lb-details
  a
  p,
.sbi_header_palette_light a {
  color: #000;
}
@media all and (max-width: 800px) {
  #sb_instagram.sbi_tab_col_10 #sbi_images {
    grid-template-columns: repeat(10, 1fr);
  }
  #sb_instagram.sbi_tab_col_9 #sbi_images {
    grid-template-columns: repeat(9, 1fr);
  }
  #sb_instagram.sbi_tab_col_8 #sbi_images {
    grid-template-columns: repeat(8, 1fr);
  }
  #sb_instagram.sbi_tab_col_7 #sbi_images {
    grid-template-columns: repeat(7, 1fr);
  }
  #sb_instagram.sbi_tab_col_6 #sbi_images {
    grid-template-columns: repeat(6, 1fr);
  }
  #sb_instagram.sbi_tab_col_5 #sbi_images {
    grid-template-columns: repeat(5, 1fr);
  }
  #sb_instagram.sbi_tab_col_4 #sbi_images {
    grid-template-columns: repeat(4, 1fr);
  }
  #sb_instagram.sbi_tab_col_3 #sbi_images {
    grid-template-columns: repeat(3, 1fr);
  }
  #sb_instagram.sbi_tab_col_2 #sbi_images {
    grid-template-columns: repeat(2, 1fr);
  }
  #sb_instagram.sbi_tab_col_1 #sbi_images {
    grid-template-columns: 1fr;
  }
}
@media all and (max-width: 480px) {
  #sb_instagram.sbi_col_10 #sbi_images,
  #sb_instagram.sbi_col_10.sbi_mob_col_auto #sbi_images,
  #sb_instagram.sbi_col_3 #sbi_images,
  #sb_instagram.sbi_col_3.sbi_mob_col_auto #sbi_images,
  #sb_instagram.sbi_col_4 #sbi_images,
  #sb_instagram.sbi_col_4.sbi_mob_col_auto #sbi_images,
  #sb_instagram.sbi_col_5 #sbi_images,
  #sb_instagram.sbi_col_5.sbi_mob_col_auto #sbi_images,
  #sb_instagram.sbi_col_6 #sbi_images,
  #sb_instagram.sbi_col_6.sbi_mob_col_auto #sbi_images,
  #sb_instagram.sbi_col_7 #sbi_images,
  #sb_instagram.sbi_col_7.sbi_mob_col_auto #sbi_images,
  #sb_instagram.sbi_col_8 #sbi_images,
  #sb_instagram.sbi_col_8.sbi_mob_col_auto #sbi_images,
  #sb_instagram.sbi_col_9 #sbi_images,
  #sb_instagram.sbi_col_9.sbi_mob_col_auto #sbi_images,
  #sb_instagram.sbi_mob_col_1 #sbi_images {
    grid-template-columns: 1fr;
  }
  #sb_instagram.sbi_mob_col_2 #sbi_images {
    grid-template-columns: repeat(2, 1fr);
  }
  #sb_instagram.sbi_mob_col_3 #sbi_images {
    grid-template-columns: repeat(3, 1fr);
  }
  #sb_instagram.sbi_mob_col_4 #sbi_images {
    grid-template-columns: repeat(4, 1fr);
  }
  #sb_instagram.sbi_mob_col_5 #sbi_images {
    grid-template-columns: repeat(5, 1fr);
  }
  #sb_instagram.sbi_mob_col_6 #sbi_images {
    grid-template-columns: repeat(6, 1fr);
  }
  #sb_instagram.sbi_mob_col_7 #sbi_images {
    grid-template-columns: repeat(7, 1fr);
  }
  #sb_instagram.sbi_mob_col_8 #sbi_images {
    grid-template-columns: repeat(8, 1fr);
  }
  #sb_instagram.sbi_mob_col_9 #sbi_images {
    grid-template-columns: repeat(9, 1fr);
  }
  #sb_instagram.sbi_mob_col_10 #sbi_images {
    grid-template-columns: repeat(10, 1fr);
  }
}
#sb_instagram #sbi_images .sbi_item.sbi_num_diff_hide {
  display: none !important;
}
body:after {
  content: url(../../plugins/instagram-feed/img/sbi-sprite.png);
  display: none;
}
.sbi_lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: #000;
  opacity: 0.9;
  display: none;
}
.sbi_lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 100000;
  text-align: center;
  line-height: 0;
  font-weight: 400;
}
.sbi_lightbox .sbi_lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  object-fit: contain;
}
.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-image {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  -ms-border-radius: 3px 0 0 3px;
  -o-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.sbi_lb-outerContainer {
  position: relative;
  background-color: #000;
  width: 250px;
  height: 250px;
  margin: 0 auto 5px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.sbi_lb-container-wrapper {
  height: 100%;
}
.sbi_lb-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
}
.sbi_lb-loader {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  height: 20px;
  margin-top: -10px;
  text-align: center;
  line-height: 0;
}
.sbi_lb-loader span {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto;
  background: url(../../plugins/instagram-feed/img/sbi-sprite.png) no-repeat;
}
.sbi_lb-container > .nav {
  left: 0;
}
.sbi_lb-nav a {
  position: absolute;
  z-index: 100;
  top: 0;
  height: 90%;
  outline: 0;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}
.sbi_lb-next,
.sbi_lb-prev {
  height: 100%;
  cursor: pointer;
  display: block;
}
.sbi_lb-nav a.sbi_lb-prev {
  left: -70px;
  float: left;
  transition: opacity 0.2s;
}
.sbi_lb-nav a.sbi_lb-next {
  right: -70px;
  float: right;
  transition: opacity 0.2s;
}
.sbi_lb-nav span {
  display: block;
  top: 55%;
  position: absolute;
  left: 20px;
  width: 34px;
  height: 45px;
  margin: -25px 0 0;
  background: url(../../plugins/instagram-feed/img/sbi-sprite.png) no-repeat;
}
.sbi_lb-nav a.sbi_lb-prev span {
  background-position: -53px 0;
}
.sbi_lb-nav a.sbi_lb-next span {
  left: auto;
  right: 20px;
  background-position: -18px 0;
}
.sbi_lb-dataContainer {
  margin: 0 auto;
  padding-top: 10px;
  width: 100%;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-outerContainer {
  position: relative;
  padding-right: 300px;
  background: #fff;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-container-wrapper {
  position: relative;
  background: #000;
}
.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-dataContainer {
  width: 300px !important;
  position: absolute;
  top: 0;
  right: -300px;
  height: 100%;
  bottom: 0;
  background: #fff;
  line-height: 1.4;
  overflow: hidden;
  overflow-y: auto;
  text-align: left;
}
.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commentBox {
  display: block !important;
  width: 100%;
  margin-top: 20px;
  padding: 4px;
}
#sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-number {
  padding-bottom: 0;
}
#sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-caption {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
#sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-caption .sbi_caption_text {
  display: inline-block;
  padding-top: 10px;
}
.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-comment {
  display: block !important;
  width: 100%;
  min-width: 100%;
  float: left;
  clear: both;
  font-size: 12px;
  padding: 3px 20px 3px 0;
  margin: 0 0 1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commenter {
  font-weight: 700;
  margin-right: 5px;
}
.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commentBox p {
  text-align: left;
}
.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-dataContainer {
  box-sizing: border-box;
  padding: 15px 20px;
}
.sbi_lb-data {
  padding: 0 4px;
  color: #ccc;
}
.sbi_lb-data .sbi_lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1;
}
.sbi_lb-data .sbi_lb-caption {
  float: left;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  padding-bottom: 3px;
  color: #ccc;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.sbi_lb-data .sbi_lb-caption a {
  color: #ccc;
  font-weight: 700;
  text-decoration: none;
}
.sbi_lb-commenter:hover,
.sbi_lb-data .sbi_lb-caption .sbi_lightbox_username:hover p,
.sbi_lb-data .sbi_lb-caption a:hover {
  color: #fff;
  text-decoration: underline;
}
.sbi_lb-data .sbi_lb-caption .sbi_lightbox_username {
  float: left;
  width: 100%;
  color: #ccc;
  padding-bottom: 0;
  display: block;
  margin: 0 0 5px;
}
#sbi_lightbox.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-number,
#sbi_lightbox.sbi_lightbox.sbi_lb-comments-enabled .sbi_lightbox_action a,
#sbi_lightbox.sbi_lightbox.sbi_lb-comments-enabled .sbi_lightbox_action a:hover,
.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commenter,
.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commenter:hover,
.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data,
.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption,
.sbi_lightbox.sbi_lb-comments-enabled
  .sbi_lb-data
  .sbi_lb-caption
  .sbi_lightbox_username
  p,
.sbi_lightbox.sbi_lb-comments-enabled
  .sbi_lb-data
  .sbi_lb-caption
  .sbi_lightbox_username:hover
  p,
.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption a,
.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption a:hover,
.sbi_lightbox.sbi_lb-comments-enabled .sbi_lightbox_username {
  color: #333;
}
.sbi_lightbox .sbi_lightbox_username img {
  float: left;
  border: none;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  background: #666;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
}
.sbi_lightbox_username p {
  float: left;
  margin: 0;
  padding: 0;
  color: #ccc;
  line-height: 32px;
  font-weight: 700;
  font-size: 13px;
}
.sbi_lb-data .sbi_lb-number {
  display: block;
  float: left;
  clear: both;
  padding: 5px 0 15px;
  font-size: 12px;
  color: #999;
}
.sbi_lb-data .sbi_lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  font-size: 18px;
  color: #aaa;
  text-align: right;
  outline: 0;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.sbi_lb-data .sbi_lb-close:hover {
  cursor: pointer;
  opacity: 1;
  color: #fff;
}
.sbi_lb-nav {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  height: auto;
}
.sbi-feed-block-cta,
.sbi-feed-block-cta-img-ctn {
  width: 100% !important;
  position: relative !important;
}
.sbi_lightbox .sbi_owl-item:nth-child(n + 2) .sbi_video {
  position: relative !important;
}
.sbi_lb-container {
  padding: 0;
}
.sbi-feed-block-cta {
  border: 1px solid #e8e8eb !important;
  border-radius: 2px !important;
  text-align: center !important;
}
.sbi-feed-block-cta-img-ctn {
  float: left !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: 50px !important;
  margin-bottom: 35px !important;
}
.sbi-feed-block-cta-img {
  width: 65px !important;
  height: 65px !important;
  position: relative !important;
  border: 2px solid #dcdde1 !important;
  border-radius: 16px !important;
  -webkit-transform: rotate(-3deg) !important;
  transform: rotate(-3deg) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.sbi-feed-block-cta-img span svg {
  float: left !important;
}
.sbi-feed-block-cta-img > * {
  -webkit-transform: rotate(3deg) !important;
  transform: rotate(3deg) !important;
}
.sbi-feed-block-cta-logo {
  position: absolute !important;
  right: -15px !important;
  bottom: -19px !important;
  z-index: 1 !important;
}
.sbi-feed-block-cta-heading {
  font-size: 19px !important;
  padding: 0 !important;
  margin: 0 0 30px !important;
  display: inline-block !important;
  width: 100% !important;
  font-weight: 700 !important;
  line-height: 1.4em !important;
}
.sbi-feed-block-cta-btn {
  background: #0068a0 !important;
  border-radius: 2px !important;
  padding: 8px 20px 8px 38px !important;
  cursor: pointer !important;
  color: #fff !important;
  position: relative !important;
  margin-bottom: 30px !important;
}
.sbi-feed-block-cta-btn:after,
.sbi-feed-block-cta-btn:before {
  content: "" !important;
  position: absolute !important;
  width: 2px !important;
  height: 12px !important;
  background: #fff !important;
  left: 20px !important;
  top: 14px !important;
}
.sbi-feed-block-cta-btn:after {
  -webkit-transform: rotate(90deg) !important;
  transform: rotate(90deg) !important;
}
.sbi-feed-block-cta-desc {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 20px !important;
  background: #f9f9fa !important;
  border-top: 1px solid #e8e8eb !important;
  margin-top: 35px !important;
  flex-direction: column !important;
}
.sbi-feed-block-cta-desc strong {
  color: #141b38 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
}
.sbi-feed-block-cta-desc span {
  color: #434960 !important;
  font-size: 14px !important;
  line-height: 1.5em !important;
  padding: 0 20% !important;
}
.sbi-feed-block-cta-desc span a,
.sbi-feed-block-cta-selector span a {
  text-transform: capitalize !important;
  text-decoration: underline !important;
  font-weight: 600 !important;
}
.sbi-feed-block-cta-selector {
  width: 100% !important;
  padding: 0 20% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-direction: column !important;
  margin-bottom: 45px !important;
}
.sbi-feed-block-cta-feedselector {
  border: 1px solid #d0d1d7 !important;
  padding: 8px 16px !important;
  margin-bottom: 15px !important;
  max-width: 100% !important;
  min-width: 400px !important;
}
.sbi-feed-block-cta-selector span {
  color: #2c324c !important;
}
.sbi-feed-block-cta-selector span a:after {
  color: #2c324c !important;
  margin-left: 2px !important;
  font-weight: 400 !important;
  text-decoration-color: #fff !important;
}
.sbi-feed-block-cta-selector span a:first-of-type:after {
  content: "," !important;
}
.sbi-feed-block-cta-selector span a:nth-of-type(2):after {
  content: "or" !important;
  margin-left: 5px !important;
  margin-right: 2px !important;
}
.et-db #et-boc .et-l .et-fb-modules-list ul > li.sb_facebook_feed::before,
.et-db #et-boc .et-l .et-fb-modules-list ul > li.sb_instagram_feed::before,
.et-db #et-boc .et-l .et-fb-modules-list ul > li.sb_twitter_feed::before,
.et-db #et-boc .et-l .et-fb-modules-list ul > li.sb_youtube_feed::before {
  content: "" !important;
  height: 16px !important;
  font-variant: normal !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.et-db #et-boc .et-l .et-fb-modules-list ul > li.sb_facebook_feed::before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 29 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.9056 18.109H13.4056V17.609H12.9056V18.109ZM9.79722 18.109H9.29722V18.609H9.79722V18.109ZM9.79722 14.5601V14.0601H9.29722V14.5601H9.79722ZM12.9056 14.5601V15.0601H13.4056V14.5601H12.9056ZM20.2604 7.32764H20.7604V6.90407L20.3426 6.83444L20.2604 7.32764ZM20.2604 10.3503V10.8503H20.7604V10.3503H20.2604ZM16.7237 14.5601H16.2237V15.0601H16.7237V14.5601ZM20.1258 14.5601L20.6199 14.6367L20.7094 14.0601H20.1258V14.5601ZM19.5751 18.109V18.609H20.0035L20.0692 18.1857L19.5751 18.109ZM16.7237 18.109V17.609H16.2237V18.109H16.7237ZM27.0523 14.5601H26.5523L26.5523 14.5612L27.0523 14.5601ZM17.0803 26.6136L16.9877 26.1222L17.0803 26.6136ZM12.5489 26.6139L12.6411 26.1225L12.5489 26.6139ZM14.8147 1.79797C7.80749 1.79797 2.07703 7.51685 2.07703 14.5601H3.07703C3.07703 8.06849 8.36042 2.79797 14.8147 2.79797V1.79797ZM2.07703 14.5601C2.07703 20.7981 6.54984 25.9974 12.4567 27.1053L12.6411 26.1225C7.19999 25.1019 3.07703 20.3097 3.07703 14.5601H2.07703ZM13.4056 26.3139V18.109H12.4056V26.3139H13.4056ZM12.9056 17.609H9.79722V18.609H12.9056V17.609ZM10.2972 18.109V14.5601H9.29722V18.109H10.2972ZM9.79722 15.0601H12.9056V14.0601H9.79722V15.0601ZM13.4056 14.5601V11.8556H12.4056V14.5601H13.4056ZM13.4056 11.8556C13.4056 10.4191 13.8299 9.36825 14.5211 8.67703C15.2129 7.98525 16.2305 7.59512 17.5314 7.59512V6.59512C16.0299 6.59512 14.7346 7.04939 13.814 7.96992C12.893 8.891 12.4056 10.2204 12.4056 11.8556H13.4056ZM17.5314 7.59512C18.1724 7.59512 18.8342 7.65119 19.3401 7.70823C19.592 7.73664 19.8029 7.76502 19.9504 7.78622C20.0241 7.79681 20.0818 7.8056 20.1208 7.81167C20.1402 7.81471 20.155 7.81706 20.1647 7.81863C20.1695 7.81941 20.1731 7.82 20.1754 7.82037C20.1765 7.82056 20.1773 7.82069 20.1778 7.82077C20.178 7.82081 20.1782 7.82083 20.1782 7.82084C20.1783 7.82085 20.1783 7.82085 20.1783 7.82085C20.1783 7.82085 20.1783 7.82085 20.1783 7.82085C20.1782 7.82084 20.1782 7.82084 20.2604 7.32764C20.3426 6.83444 20.3426 6.83443 20.3425 6.83443C20.3425 6.83442 20.3424 6.83441 20.3424 6.83441C20.3423 6.83439 20.3422 6.83437 20.342 6.83435C20.3418 6.8343 20.3414 6.83425 20.341 6.83417C20.3401 6.83403 20.3389 6.83383 20.3373 6.83357C20.3342 6.83307 20.3298 6.83234 20.3241 6.83142C20.3127 6.82958 20.2962 6.82695 20.2749 6.82362C20.2323 6.81698 20.1707 6.8076 20.0927 6.7964C19.9369 6.774 19.7157 6.74425 19.4521 6.71453C18.927 6.65532 18.2243 6.59512 17.5314 6.59512V7.59512ZM19.7604 7.32764V10.3503H20.7604V7.32764H19.7604ZM20.2604 9.85033H18.7185V10.8503H20.2604V9.85033ZM18.7185 9.85033C17.851 9.85033 17.1997 10.1241 16.7742 10.6148C16.3604 11.0922 16.2237 11.7025 16.2237 12.2594H17.2237C17.2237 11.8495 17.3257 11.5053 17.5298 11.2699C17.7224 11.0477 18.0684 10.8503 18.7185 10.8503V9.85033ZM16.2237 12.2594V14.5601H17.2237V12.2594H16.2237ZM16.7237 15.0601H20.1258V14.0601H16.7237V15.0601ZM19.6317 14.4834L19.081 18.0323L20.0692 18.1857L20.6199 14.6367L19.6317 14.4834ZM19.5751 17.609H16.7237V18.609H19.5751V17.609ZM16.2237 18.109V26.3135H17.2237V18.109H16.2237ZM17.1728 27.105C20.0281 26.5671 22.618 25.068 24.5079 22.8512L23.7469 22.2025C22.0054 24.2452 19.6188 25.6266 16.9877 26.1222L17.1728 27.105ZM24.5079 22.8512C26.4793 20.5388 27.5591 17.5977 27.5523 14.559L26.5523 14.5612C26.5586 17.3614 25.5636 20.0715 23.7469 22.2025L24.5079 22.8512ZM27.5523 14.5601C27.5523 7.51685 21.8218 1.79797 14.8147 1.79797V2.79797C21.2689 2.79797 26.5523 8.06849 26.5523 14.5601H27.5523ZM16.2237 26.3135C16.2237 26.8064 16.6682 27.2 17.1728 27.105L16.9877 26.1222C17.119 26.0975 17.2237 26.2006 17.2237 26.3135H16.2237ZM12.4567 27.1053C12.9603 27.1998 13.4056 26.8073 13.4056 26.3139H12.4056C12.4056 26.2001 12.5107 26.098 12.6411 26.1225L12.4567 27.1053Z' fill='%232b87da' /%3E%3Cpath d='M12.9056 18.1088H13.4056V17.6088H12.9056V18.1088ZM9.79724 18.1088H9.29724V18.6088H9.79724V18.1088ZM9.79724 14.5599V14.0599H9.29724V14.5599H9.79724ZM12.9056 14.5599V15.0599H13.4056V14.5599H12.9056ZM20.2604 7.32749H20.7604V6.90392L20.3426 6.83429L20.2604 7.32749ZM20.2604 10.3502V10.8502H20.7604V10.3502H20.2604ZM16.7237 14.5599H16.2237V15.0599H16.7237V14.5599ZM20.1258 14.5599L20.6199 14.6366L20.7094 14.0599H20.1258V14.5599ZM19.5751 18.1088V18.6088H20.0035L20.0692 18.1855L19.5751 18.1088ZM16.7237 18.1088V17.6088H16.2237V18.1088H16.7237ZM13.4056 26.366V18.1088H12.4056V26.366H13.4056ZM12.9056 17.6088H9.79724V18.6088H12.9056V17.6088ZM10.2972 18.1088V14.5599H9.29724V18.1088H10.2972ZM9.79724 15.0599H12.9056V14.0599H9.79724V15.0599ZM13.4056 14.5599V11.8554H12.4056V14.5599H13.4056ZM13.4056 11.8554C13.4056 10.4189 13.8299 9.3681 14.5212 8.67688C15.2129 7.9851 16.2305 7.59497 17.5314 7.59497V6.59497C16.0299 6.59497 14.7346 7.04924 13.814 7.96977C12.893 8.89085 12.4056 10.2202 12.4056 11.8554H13.4056ZM17.5314 7.59497C18.1724 7.59497 18.8342 7.65103 19.3401 7.70808C19.592 7.73648 19.803 7.76487 19.9504 7.78607C20.0241 7.79666 20.0819 7.80545 20.1208 7.81152C20.1402 7.81455 20.155 7.81691 20.1647 7.81848C20.1695 7.81926 20.1731 7.81984 20.1754 7.82022C20.1765 7.8204 20.1773 7.82054 20.1778 7.82061C20.178 7.82065 20.1782 7.82068 20.1783 7.82069C20.1783 7.8207 20.1783 7.8207 20.1783 7.8207C20.1783 7.8207 20.1783 7.82069 20.1783 7.82069C20.1782 7.82069 20.1782 7.82068 20.2604 7.32749C20.3426 6.83429 20.3426 6.83428 20.3425 6.83427C20.3425 6.83427 20.3424 6.83426 20.3424 6.83425C20.3423 6.83424 20.3422 6.83422 20.3421 6.8342C20.3418 6.83415 20.3414 6.83409 20.341 6.83402C20.3401 6.83387 20.3389 6.83367 20.3374 6.83342C20.3343 6.83291 20.3298 6.83219 20.3241 6.83127C20.3127 6.82943 20.2962 6.82679 20.2749 6.82347C20.2324 6.81683 20.1707 6.80745 20.0927 6.79624C19.9369 6.77385 19.7158 6.7441 19.4522 6.71438C18.927 6.65516 18.2244 6.59497 17.5314 6.59497V7.59497ZM19.7604 7.32749V10.3502H20.7604V7.32749H19.7604ZM20.2604 9.85018H18.7185V10.8502H20.2604V9.85018ZM18.7185 9.85018C17.8511 9.85018 17.1997 10.1239 16.7743 10.6146C16.3604 11.092 16.2237 11.7024 16.2237 12.2592H17.2237C17.2237 11.8493 17.3257 11.5052 17.5298 11.2697C17.7224 11.0476 18.0684 10.8502 18.7185 10.8502V9.85018ZM16.2237 12.2592V14.5599H17.2237V12.2592H16.2237ZM16.7237 15.0599H20.1258V14.0599H16.7237V15.0599ZM19.6317 14.4833L19.081 18.0322L20.0692 18.1855L20.6199 14.6366L19.6317 14.4833ZM19.5751 17.6088H16.7237V18.6088H19.5751V17.6088ZM16.2237 18.1088V26.366H17.2237V18.1088H16.2237ZM16.4146 26.1752H13.2148V27.1752H16.4146V26.1752ZM16.2237 26.366C16.2237 26.2606 16.3092 26.1752 16.4146 26.1752V27.1752C16.8615 27.1752 17.2237 26.8129 17.2237 26.366H16.2237ZM12.4056 26.366C12.4056 26.8129 12.7679 27.1752 13.2148 27.1752V26.1752C13.3202 26.1752 13.4056 26.2606 13.4056 26.366H12.4056Z' fill='%232b87da'/%3E%3C/svg%3E%0A");
}
.et-db #et-boc .et-l .et-fb-modules-list ul > li.sb_instagram_feed::before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='22' height='22' rx='6' stroke='%232b87da' stroke-width='1.5'/%3E%3Ccircle cx='12' cy='12' r='5' stroke='%232b87da' stroke-width='1.5'/%3E%3Ccircle cx='18.5' cy='5.75' r='1.25' fill='%232b87da'/%3E%3C/svg%3E%0A");
}
.et-db #et-boc .et-l .et-fb-modules-list ul > li.sb_twitter_feed::before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 29 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27.8762 6.78846C27.9345 6.7065 27.8465 6.60094 27.7536 6.63936C27.0263 6.93989 26.26 7.15757 25.4698 7.29241C25.3632 7.31061 25.3082 7.16347 25.3956 7.09969C26.2337 6.48801 26.8918 5.63649 27.2636 4.63802C27.2958 4.55162 27.2014 4.47574 27.1212 4.52123C26.1605 5.06618 25.1092 5.45524 24.0054 5.68842C23.971 5.69568 23.9354 5.68407 23.9113 5.65844C22.9264 4.60891 21.5545 4 19.9999 4C17.0624 4 14.6624 6.4 14.6624 9.3625C14.6624 9.74071 14.702 10.109 14.7724 10.4586C14.7855 10.5235 14.7342 10.5842 14.6681 10.5803C10.3227 10.3231 6.45216 8.2421 3.84135 5.09864C3.79681 5.04501 3.71241 5.0515 3.67879 5.11257C3.26061 5.8722 3.02493 6.75115 3.02493 7.675C3.02493 9.41548 3.84362 10.9704 5.13417 11.9317C5.2141 11.9913 5.17327 12.12 5.07385 12.1129C4.32811 12.0597 3.63173 11.835 3.00827 11.5171C2.99303 11.5094 2.97493 11.5204 2.97493 11.5375V11.5375C2.97493 13.9896 4.6205 16.0638 6.86301 16.7007C6.96452 16.7295 6.96588 16.8757 6.86218 16.8953C6.25772 17.0096 5.63724 17.0173 5.0289 16.9176C4.95384 16.9052 4.89095 16.9762 4.91633 17.0479C5.26967 18.0466 5.91213 18.9192 6.7637 19.5537C7.58576 20.1661 8.56481 20.5283 9.58351 20.6001C9.67715 20.6067 9.71634 20.7266 9.64124 20.7829C7.78574 22.1744 5.52424 22.9237 3.19993 22.9125C2.91864 22.9125 2.63736 22.9015 2.35608 22.8796C2.25034 22.8714 2.20189 23.0116 2.29272 23.0664C4.58933 24.4509 7.27959 25.25 10.1499 25.25C19.9999 25.25 25.4124 17.075 25.4124 9.9875C25.4124 9.76833 25.4124 9.5598 25.4026 9.34228C25.4011 9.30815 25.4168 9.27551 25.4445 9.2555C26.3819 8.57814 27.1984 7.74079 27.8762 6.78846Z' stroke='%232b87da' stroke-width='1.25' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.et-db #et-boc .et-l .et-fb-modules-list ul > li.sb_youtube_feed::before {
  background-image: url("data:image/svg+xml,%3Csvg width='27' height='20' viewBox='0 0 27 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 13.3267C11 13.4037 11.0834 13.4518 11.15 13.4133L17.3377 9.83658C17.4043 9.79808 17.4043 9.70192 17.3377 9.66342L11.15 6.08673C11.0834 6.0482 11 6.0963 11 6.17331V13.3267ZM25.45 3.7125C25.6125 4.3 25.725 5.0875 25.8 6.0875C25.8875 7.0875 25.925 7.95 25.925 8.7L26 9.75C26 12.4875 25.8 14.5 25.45 15.7875C25.1375 16.9125 24.4125 17.6375 23.2875 17.95C22.7 18.1125 21.625 18.225 19.975 18.3C18.35 18.3875 16.8625 18.425 15.4875 18.425L13.5 18.5C8.2625 18.5 5 18.3 3.7125 17.95C2.5875 17.6375 1.8625 16.9125 1.55 15.7875C1.3875 15.2 1.275 14.4125 1.2 13.4125C1.1125 12.4125 1.075 11.55 1.075 10.8L1 9.75C1 7.0125 1.2 5 1.55 3.7125C1.8625 2.5875 2.5875 1.8625 3.7125 1.55C4.3 1.3875 5.375 1.275 7.025 1.2C8.65 1.1125 10.1375 1.075 11.5125 1.075L13.5 1C18.7375 1 22 1.2 23.2875 1.55C24.4125 1.8625 25.1375 2.5875 25.45 3.7125Z' stroke='%232b87da' stroke-width='1.25' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.et-db #et-boc .et-l .et_pb_module .sbi_follow_btn a {
  border: none;
  color: #fff;
  font-size: 13px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.et-db #et-boc .et-l .et_pb_module .sbi-feed-block-cta-btn:after,
.et-db #et-boc .et-l .et_pb_module .sbi-feed-block-cta-btn:before {
  top: 10px !important;
}
img.wp-smiley,
img.emoji {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1em !important;
  width: 1em !important;
  margin: 0 0.07em !important;
  vertical-align: -0.1em !important;
  background: none !important;
  padding: 0 !important;
}
.wp-block-accordion {
  box-sizing: border-box;
}
.wp-block-accordion-item.is-open
  > .wp-block-accordion-heading
  .wp-block-accordion-heading__toggle-icon {
  transform: rotate(45deg);
}
@media (prefers-reduced-motion: no-preference) {
  .wp-block-accordion-item {
    transition: grid-template-rows 0.3s ease-out;
  }
  .wp-block-accordion-item
    > .wp-block-accordion-heading
    .wp-block-accordion-heading__toggle-icon {
    transition: transform 0.2s ease-in-out;
  }
}
.wp-block-accordion-heading__toggle {
  align-items: center;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  overflow: hidden;
  padding: var(--wp--preset--spacing--20, 1em) 0;
  text-align: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  width: 100%;
  word-spacing: inherit;
}
.wp-block-accordion-heading__toggle:not(:focus-visible) {
  outline: none;
}
.wp-block-accordion-heading__toggle:hover
  .wp-block-accordion-heading__toggle-title {
  text-decoration: underline;
}
.wp-block-accordion-heading__toggle-title {
  flex: 1;
}
.wp-block-accordion-heading__toggle-icon {
  align-items: center;
  display: flex;
  height: 1.2em;
  justify-content: center;
  width: 1.2em;
}
.wp-block-accordion-panel[aria-hidden="true"],
.wp-block-accordion-panel[inert] {
  display: none;
  margin-block-start: 0;
}
.wp-block-archives {
  box-sizing: border-box;
}
.wp-block-archives-dropdown label {
  display: block;
}
.wp-block-avatar {
  line-height: 0;
}
.wp-block-avatar,
.wp-block-avatar img {
  box-sizing: border-box;
}
.wp-block-avatar.aligncenter {
  text-align: center;
}
.wp-block-audio {
  box-sizing: border-box;
}
.wp-block-audio :where(figcaption) {
  margin-bottom: 1em;
  margin-top: 0.5em;
}
.wp-block-audio audio {
  min-width: 300px;
  width: 100%;
}
.wp-block-breadcrumbs {
  box-sizing: border-box;
}
.wp-block-breadcrumbs ol {
  flex-wrap: wrap;
  list-style: none;
}
.wp-block-breadcrumbs li,
.wp-block-breadcrumbs ol {
  align-items: center;
  display: flex;
  margin: 0;
  padding: 0;
}
.wp-block-breadcrumbs li:not(:last-child):after {
  content: var(--separator, "../../../index.html");
  margin: 0 0.5em;
  opacity: 0.7;
}
.wp-block-breadcrumbs span {
  color: inherit;
}
.wp-block-button__link {
  align-content: center;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  height: 100%;
  text-align: center;
  word-break: break-word;
}
.wp-block-button__link.aligncenter {
  text-align: center;
}
.wp-block-button__link.alignright {
  text-align: right;
}
:where(.wp-block-button__link) {
  border-radius: 9999px;
  box-shadow: none;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  text-decoration: none;
}
.wp-block-button[style*="text-decoration"] .wp-block-button__link {
  text-decoration: inherit;
}
.wp-block-buttons > .wp-block-button.has-custom-width {
  max-width: none;
}
.wp-block-buttons > .wp-block-button.has-custom-width .wp-block-button__link {
  width: 100%;
}
.wp-block-buttons
  > .wp-block-button.has-custom-font-size
  .wp-block-button__link {
  font-size: inherit;
}
.wp-block-buttons > .wp-block-button.wp-block-button__width-25 {
  width: calc(25% - var(--wp--style--block-gap, 0.5em) * 0.75);
}
.wp-block-buttons > .wp-block-button.wp-block-button__width-50 {
  width: calc(50% - var(--wp--style--block-gap, 0.5em) * 0.5);
}
.wp-block-buttons > .wp-block-button.wp-block-button__width-75 {
  width: calc(75% - var(--wp--style--block-gap, 0.5em) * 0.25);
}
.wp-block-buttons > .wp-block-button.wp-block-button__width-100 {
  flex-basis: 100%;
  width: 100%;
}
.wp-block-buttons.is-vertical > .wp-block-button.wp-block-button__width-25 {
  width: 25%;
}
.wp-block-buttons.is-vertical > .wp-block-button.wp-block-button__width-50 {
  width: 50%;
}
.wp-block-buttons.is-vertical > .wp-block-button.wp-block-button__width-75 {
  width: 75%;
}
.wp-block-button.is-style-squared,
.wp-block-button__link.wp-block-button.is-style-squared {
  border-radius: 0;
}
.wp-block-button.no-border-radius,
.wp-block-button__link.no-border-radius {
  border-radius: 0 !important;
}
:root :where(.wp-block-button .wp-block-button__link.is-style-outline),
:root :where(.wp-block-button.is-style-outline > .wp-block-button__link) {
  border: 2px solid;
  padding: 0.667em 1.333em;
}
:root
  :where(
    .wp-block-button
      .wp-block-button__link.is-style-outline:not(.has-text-color)
  ),
:root
  :where(
    .wp-block-button.is-style-outline
      > .wp-block-button__link:not(.has-text-color)
  ) {
  color: currentColor;
}
:root
  :where(
    .wp-block-button
      .wp-block-button__link.is-style-outline:not(.has-background)
  ),
:root
  :where(
    .wp-block-button.is-style-outline
      > .wp-block-button__link:not(.has-background)
  ) {
  background-color: initial;
  background-image: none;
}
.wp-block-buttons {
  box-sizing: border-box;
}
.wp-block-buttons.is-vertical {
  flex-direction: column;
}
.wp-block-buttons.is-vertical > .wp-block-button:last-child {
  margin-bottom: 0;
}
.wp-block-buttons > .wp-block-button {
  display: inline-block;
  margin: 0;
}
.wp-block-buttons.is-content-justification-left {
  justify-content: flex-start;
}
.wp-block-buttons.is-content-justification-left.is-vertical {
  align-items: flex-start;
}
.wp-block-buttons.is-content-justification-center {
  justify-content: center;
}
.wp-block-buttons.is-content-justification-center.is-vertical {
  align-items: center;
}
.wp-block-buttons.is-content-justification-right {
  justify-content: flex-end;
}
.wp-block-buttons.is-content-justification-right.is-vertical {
  align-items: flex-end;
}
.wp-block-buttons.is-content-justification-space-between {
  justify-content: space-between;
}
.wp-block-buttons.aligncenter {
  text-align: center;
}
.wp-block-buttons:not(
    .is-content-justification-space-between,
    .is-content-justification-right,
    .is-content-justification-left,
    .is-content-justification-center
  )
  .wp-block-button.aligncenter {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.wp-block-buttons[style*="text-decoration"] .wp-block-button,
.wp-block-buttons[style*="text-decoration"] .wp-block-button__link {
  text-decoration: inherit;
}
.wp-block-buttons.has-custom-font-size .wp-block-button__link {
  font-size: inherit;
}
.wp-block-buttons .wp-block-button__link {
  width: 100%;
}
.wp-block-button.aligncenter,
.wp-block-calendar {
  text-align: center;
}
.wp-block-calendar td,
.wp-block-calendar th {
  border: 1px solid;
  padding: 0.25em;
}
.wp-block-calendar th {
  font-weight: 400;
}
.wp-block-calendar caption {
  background-color: inherit;
}
.wp-block-calendar table {
  border-collapse: collapse;
  width: 100%;
}
.wp-block-calendar table.has-background th {
  background-color: inherit;
}
.wp-block-calendar table.has-text-color th {
  color: inherit;
}
.wp-block-calendar :where(table:not(.has-text-color)) {
  color: #40464d;
}
.wp-block-calendar :where(table:not(.has-text-color)) td,
.wp-block-calendar :where(table:not(.has-text-color)) th {
  border-color: #ddd;
}
:where(.wp-block-calendar table:not(.has-background) th) {
  background: #ddd;
}
.wp-block-categories {
  box-sizing: border-box;
}
.wp-block-categories.alignleft {
  margin-right: 2em;
}
.wp-block-categories.alignright {
  margin-left: 2em;
}
.wp-block-categories.wp-block-categories-dropdown.aligncenter {
  text-align: center;
}
.wp-block-categories .wp-block-categories__label {
  display: block;
  width: 100%;
}
.wp-block-code {
  box-sizing: border-box;
}
.wp-block-code code {
  /*!rtl:begin:ignore*/
  direction: ltr;
  display: block;
  font-family: inherit;
  overflow-wrap: break-word;
  text-align: initial;
  white-space: pre-wrap;
  /*!rtl:end:ignore*/
}
.wp-block-columns {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap !important;
}
@media (min-width: 782px) {
  .wp-block-columns {
    flex-wrap: nowrap !important;
  }
}
.wp-block-columns {
  align-items: normal !important;
}
.wp-block-columns.are-vertically-aligned-top {
  align-items: flex-start;
}
.wp-block-columns.are-vertically-aligned-center {
  align-items: center;
}
.wp-block-columns.are-vertically-aligned-bottom {
  align-items: flex-end;
}
@media (max-width: 781px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
}
@media (min-width: 782px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 0;
    flex-grow: 1;
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile)
    > .wp-block-column[style*="flex-basis"] {
    flex-grow: 0;
  }
}
.wp-block-columns.is-not-stacked-on-mobile {
  flex-wrap: nowrap !important;
}
.wp-block-columns.is-not-stacked-on-mobile > .wp-block-column {
  flex-basis: 0;
  flex-grow: 1;
}
.wp-block-columns.is-not-stacked-on-mobile
  > .wp-block-column[style*="flex-basis"] {
  flex-grow: 0;
}
:where(.wp-block-columns) {
  margin-bottom: 1.75em;
}
:where(.wp-block-columns.has-background) {
  padding: 1.25em 2.375em;
}
.wp-block-column {
  flex-grow: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.wp-block-column.is-vertically-aligned-top {
  align-self: flex-start;
}
.wp-block-column.is-vertically-aligned-center {
  align-self: center;
}
.wp-block-column.is-vertically-aligned-bottom {
  align-self: flex-end;
}
.wp-block-column.is-vertically-aligned-stretch {
  align-self: stretch;
}
.wp-block-column.is-vertically-aligned-bottom,
.wp-block-column.is-vertically-aligned-center,
.wp-block-column.is-vertically-aligned-top {
  width: 100%;
}
.wp-block-post-comments {
  box-sizing: border-box;
}
.wp-block-post-comments .alignleft {
  float: left;
}
.wp-block-post-comments .alignright {
  float: right;
}
.wp-block-post-comments .navigation:after {
  clear: both;
  content: "";
  display: table;
}
.wp-block-post-comments .commentlist {
  clear: both;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wp-block-post-comments .commentlist .comment {
  min-height: 2.25em;
  padding-left: 3.25em;
}
.wp-block-post-comments .commentlist .comment p {
  font-size: 1em;
  line-height: 1.8;
  margin: 1em 0;
}
.wp-block-post-comments .commentlist .children {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wp-block-post-comments .comment-author {
  line-height: 1.5;
}
.wp-block-post-comments .comment-author .avatar {
  border-radius: 1.5em;
  display: block;
  float: left;
  height: 2.5em;
  margin-right: 0.75em;
  margin-top: 0.5em;
  width: 2.5em;
}
.wp-block-post-comments .comment-author cite {
  font-style: normal;
}
.wp-block-post-comments .comment-meta {
  font-size: 0.875em;
  line-height: 1.5;
}
.wp-block-post-comments .comment-meta b {
  font-weight: 400;
}
.wp-block-post-comments .comment-meta .comment-awaiting-moderation {
  display: block;
  margin-bottom: 1em;
  margin-top: 1em;
}
.wp-block-post-comments .comment-body .commentmetadata {
  font-size: 0.875em;
}
.wp-block-post-comments .comment-form-author label,
.wp-block-post-comments .comment-form-comment label,
.wp-block-post-comments .comment-form-email label,
.wp-block-post-comments .comment-form-url label {
  display: block;
  margin-bottom: 0.25em;
}
.wp-block-post-comments
  .comment-form
  input:not([type="submit"]):not([type="checkbox"]),
.wp-block-post-comments .comment-form textarea {
  box-sizing: border-box;
  display: block;
  width: 100%;
}
.wp-block-post-comments .comment-form-cookies-consent {
  display: flex;
  gap: 0.25em;
}
.wp-block-post-comments
  .comment-form-cookies-consent
  #wp-comment-cookies-consent {
  margin-top: 0.35em;
}
.wp-block-post-comments .comment-reply-title {
  margin-bottom: 0;
}
.wp-block-post-comments .comment-reply-title :where(small) {
  font-size: var(--wp--preset--font-size--medium, smaller);
  margin-left: 0.5em;
}
.wp-block-post-comments .reply {
  font-size: 0.875em;
  margin-bottom: 1.4em;
}
.wp-block-post-comments input:not([type="submit"]),
.wp-block-post-comments textarea {
  border: 1px solid #949494;
  font-family: inherit;
  font-size: 1em;
}
.wp-block-post-comments input:not([type="submit"]):not([type="checkbox"]),
.wp-block-post-comments textarea {
  padding: calc(0.667em + 2px);
}
:where(.wp-block-post-comments input[type="submit"]) {
  border: none;
}
.wp-block-comments {
  box-sizing: border-box;
}
.wp-block-comments-pagination > .wp-block-comments-pagination-next,
.wp-block-comments-pagination > .wp-block-comments-pagination-numbers,
.wp-block-comments-pagination > .wp-block-comments-pagination-previous {
  font-size: inherit;
}
.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow {
  display: inline-block;
  margin-right: 1ch;
}
.wp-block-comments-pagination
  .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron) {
  transform: scaleX(1);
}
.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow {
  display: inline-block;
  margin-left: 1ch;
}
.wp-block-comments-pagination
  .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron) {
  transform: scaleX(1);
}
.wp-block-comments-pagination.aligncenter {
  justify-content: center;
}
.wp-block-comment-template {
  box-sizing: border-box;
  list-style: none;
  margin-bottom: 0;
  max-width: 100%;
  padding: 0;
}
.wp-block-comment-template li {
  clear: both;
}
.wp-block-comment-template ol {
  list-style: none;
  margin-bottom: 0;
  max-width: 100%;
  padding-left: 2rem;
}
.wp-block-comment-template.alignleft {
  float: left;
}
.wp-block-comment-template.aligncenter {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.wp-block-comment-template.alignright {
  float: right;
}
.wp-block-comment-date {
  box-sizing: border-box;
}
.comment-awaiting-moderation {
  display: block;
  font-size: 0.875em;
  line-height: 1.5;
}
.wp-block-comment-author-name,
.wp-block-comment-content,
.wp-block-comment-edit-link,
.wp-block-comment-reply-link {
  box-sizing: border-box;
}
.wp-block-cover,
.wp-block-cover-image {
  align-items: center;
  background-position: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  min-height: 430px;
  overflow: hidden;
  overflow: clip;
  padding: 1em;
  position: relative;
}
.wp-block-cover .has-background-dim:not([class*="-background-color"]),
.wp-block-cover-image .has-background-dim:not([class*="-background-color"]),
.wp-block-cover-image.has-background-dim:not([class*="-background-color"]),
.wp-block-cover.has-background-dim:not([class*="-background-color"]) {
  background-color: #000;
}
.wp-block-cover .has-background-dim.has-background-gradient,
.wp-block-cover-image .has-background-dim.has-background-gradient {
  background-color: initial;
}
.wp-block-cover-image.has-background-dim:before,
.wp-block-cover.has-background-dim:before {
  background-color: inherit;
  content: "";
}
.wp-block-cover .wp-block-cover__background,
.wp-block-cover .wp-block-cover__gradient-background,
.wp-block-cover-image .wp-block-cover__background,
.wp-block-cover-image .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim:not(.has-background-gradient):before {
  bottom: 0;
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
}
.wp-block-cover-image.has-background-dim.has-background-dim-10
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-10
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-10:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-10
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-10
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-10:not(
    .has-background-gradient
  ):before {
  opacity: 0.1;
}
.wp-block-cover-image.has-background-dim.has-background-dim-20
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-20
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-20:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-20
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-20
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-20:not(
    .has-background-gradient
  ):before {
  opacity: 0.2;
}
.wp-block-cover-image.has-background-dim.has-background-dim-30
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-30
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-30:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-30
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-30
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-30:not(
    .has-background-gradient
  ):before {
  opacity: 0.3;
}
.wp-block-cover-image.has-background-dim.has-background-dim-40
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-40
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-40:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-40
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-40
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-40:not(
    .has-background-gradient
  ):before {
  opacity: 0.4;
}
.wp-block-cover-image.has-background-dim.has-background-dim-50
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-50
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-50:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-50
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-50
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-50:not(
    .has-background-gradient
  ):before {
  opacity: 0.5;
}
.wp-block-cover-image.has-background-dim.has-background-dim-60
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-60
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-60:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-60
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-60
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-60:not(
    .has-background-gradient
  ):before {
  opacity: 0.6;
}
.wp-block-cover-image.has-background-dim.has-background-dim-70
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-70
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-70:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-70
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-70
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-70:not(
    .has-background-gradient
  ):before {
  opacity: 0.7;
}
.wp-block-cover-image.has-background-dim.has-background-dim-80
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-80
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-80:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-80
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-80
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-80:not(
    .has-background-gradient
  ):before {
  opacity: 0.8;
}
.wp-block-cover-image.has-background-dim.has-background-dim-90
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-90
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-90:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-90
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-90
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-90:not(
    .has-background-gradient
  ):before {
  opacity: 0.9;
}
.wp-block-cover-image.has-background-dim.has-background-dim-100
  .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-100
  .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-100:not(
    .has-background-gradient
  ):before,
.wp-block-cover.has-background-dim.has-background-dim-100
  .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-100
  .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-100:not(
    .has-background-gradient
  ):before {
  opacity: 1;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-0,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-0,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0 {
  opacity: 0;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-10,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-10,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10 {
  opacity: 0.1;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-20,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-20,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20 {
  opacity: 0.2;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-30,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-30,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30 {
  opacity: 0.3;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-40,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-40,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40 {
  opacity: 0.4;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-50,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-50,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50 {
  opacity: 0.5;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-60,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-60,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60 {
  opacity: 0.6;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-70,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-70,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70 {
  opacity: 0.7;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-80,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-80,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80 {
  opacity: 0.8;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-90,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-90,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90 {
  opacity: 0.9;
}
.wp-block-cover
  .wp-block-cover__background.has-background-dim.has-background-dim-100,
.wp-block-cover
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100,
.wp-block-cover-image
  .wp-block-cover__background.has-background-dim.has-background-dim-100,
.wp-block-cover-image
  .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100 {
  opacity: 1;
}
.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
  max-width: 420px;
  width: 100%;
}
.wp-block-cover-image.aligncenter,
.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.aligncenter,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
  display: flex;
}
.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover-image .wp-block-cover__inner-container {
  color: inherit;
  position: relative;
  width: 100%;
}
.wp-block-cover-image.is-position-top-left,
.wp-block-cover.is-position-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}
.wp-block-cover-image.is-position-top-center,
.wp-block-cover.is-position-top-center {
  align-items: flex-start;
  justify-content: center;
}
.wp-block-cover-image.is-position-top-right,
.wp-block-cover.is-position-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}
.wp-block-cover-image.is-position-center-left,
.wp-block-cover.is-position-center-left {
  align-items: center;
  justify-content: flex-start;
}
.wp-block-cover-image.is-position-center-center,
.wp-block-cover.is-position-center-center {
  align-items: center;
  justify-content: center;
}
.wp-block-cover-image.is-position-center-right,
.wp-block-cover.is-position-center-right {
  align-items: center;
  justify-content: flex-end;
}
.wp-block-cover-image.is-position-bottom-left,
.wp-block-cover.is-position-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}
.wp-block-cover-image.is-position-bottom-center,
.wp-block-cover.is-position-bottom-center {
  align-items: flex-end;
  justify-content: center;
}
.wp-block-cover-image.is-position-bottom-right,
.wp-block-cover.is-position-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}
.wp-block-cover-image.has-custom-content-position.has-custom-content-position
  .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position
  .wp-block-cover__inner-container {
  margin: 0;
}
.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-left
  .wp-block-cover__inner-container,
.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-right
  .wp-block-cover__inner-container,
.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-left
  .wp-block-cover__inner-container,
.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-right
  .wp-block-cover__inner-container,
.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-left
  .wp-block-cover__inner-container,
.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-right
  .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left
  .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right
  .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left
  .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right
  .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left
  .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right
  .wp-block-cover__inner-container {
  margin: 0;
  width: auto;
}
.wp-block-cover .wp-block-cover__image-background,
.wp-block-cover video.wp-block-cover__video-background,
.wp-block-cover-image .wp-block-cover__image-background,
.wp-block-cover-image video.wp-block-cover__video-background {
  border: none;
  bottom: 0;
  box-shadow: none;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  object-fit: cover;
  outline: none;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.wp-block-cover-image.has-parallax,
.wp-block-cover.has-parallax,
.wp-block-cover__image-background.has-parallax,
video.wp-block-cover__video-background.has-parallax {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
@supports (-webkit-touch-callout: inherit) {
  .wp-block-cover-image.has-parallax,
  .wp-block-cover.has-parallax,
  .wp-block-cover__image-background.has-parallax,
  video.wp-block-cover__video-background.has-parallax {
    background-attachment: scroll;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wp-block-cover-image.has-parallax,
  .wp-block-cover.has-parallax,
  .wp-block-cover__image-background.has-parallax,
  video.wp-block-cover__video-background.has-parallax {
    background-attachment: scroll;
  }
}
.wp-block-cover-image.is-repeated,
.wp-block-cover.is-repeated,
.wp-block-cover__image-background.is-repeated,
video.wp-block-cover__video-background.is-repeated {
  background-repeat: repeat;
  background-size: auto;
}
.wp-block-cover-image-text,
.wp-block-cover-image-text a,
.wp-block-cover-image-text a:active,
.wp-block-cover-image-text a:focus,
.wp-block-cover-image-text a:hover,
.wp-block-cover-text,
.wp-block-cover-text a,
.wp-block-cover-text a:active,
.wp-block-cover-text a:focus,
.wp-block-cover-text a:hover,
section.wp-block-cover-image h2,
section.wp-block-cover-image h2 a,
section.wp-block-cover-image h2 a:active,
section.wp-block-cover-image h2 a:focus,
section.wp-block-cover-image h2 a:hover {
  color: #fff;
}
.wp-block-cover-image .wp-block-cover.has-left-content {
  justify-content: flex-start;
}
.wp-block-cover-image .wp-block-cover.has-right-content {
  justify-content: flex-end;
}
.wp-block-cover-image.has-left-content .wp-block-cover-image-text,
.wp-block-cover.has-left-content .wp-block-cover-text,
section.wp-block-cover-image.has-left-content > h2 {
  margin-left: 0;
  text-align: left;
}
.wp-block-cover-image.has-right-content .wp-block-cover-image-text,
.wp-block-cover.has-right-content .wp-block-cover-text,
section.wp-block-cover-image.has-right-content > h2 {
  margin-right: 0;
  text-align: right;
}
.wp-block-cover .wp-block-cover-text,
.wp-block-cover-image .wp-block-cover-image-text,
section.wp-block-cover-image > h2 {
  font-size: 2em;
  line-height: 1.25;
  margin-bottom: 0;
  max-width: 840px;
  padding: 0.44em;
  text-align: center;
  z-index: 1;
}
:where(.wp-block-cover-image:not(.has-text-color)),
:where(.wp-block-cover:not(.has-text-color)) {
  color: #fff;
}
:where(.wp-block-cover-image.is-light:not(.has-text-color)),
:where(.wp-block-cover.is-light:not(.has-text-color)) {
  color: #000;
}
:root :where(.wp-block-cover h1:not(.has-text-color)),
:root :where(.wp-block-cover h2:not(.has-text-color)),
:root :where(.wp-block-cover h3:not(.has-text-color)),
:root :where(.wp-block-cover h4:not(.has-text-color)),
:root :where(.wp-block-cover h5:not(.has-text-color)),
:root :where(.wp-block-cover h6:not(.has-text-color)),
:root :where(.wp-block-cover p:not(.has-text-color)) {
  color: inherit;
}
body:not(.editor-styles-wrapper)
  .wp-block-cover:not(
    .wp-block-cover:has(
      .wp-block-cover__background + .wp-block-cover__inner-container
    )
  )
  .wp-block-cover__image-background,
body:not(.editor-styles-wrapper)
  .wp-block-cover:not(
    .wp-block-cover:has(
      .wp-block-cover__background + .wp-block-cover__inner-container
    )
  )
  .wp-block-cover__video-background {
  z-index: 0;
}
body:not(.editor-styles-wrapper)
  .wp-block-cover:not(
    .wp-block-cover:has(
      .wp-block-cover__background + .wp-block-cover__inner-container
    )
  )
  .wp-block-cover__background,
body:not(.editor-styles-wrapper)
  .wp-block-cover:not(
    .wp-block-cover:has(
      .wp-block-cover__background + .wp-block-cover__inner-container
    )
  )
  .wp-block-cover__gradient-background,
body:not(.editor-styles-wrapper)
  .wp-block-cover:not(
    .wp-block-cover:has(
      .wp-block-cover__background + .wp-block-cover__inner-container
    )
  )
  .wp-block-cover__inner-container,
body:not(.editor-styles-wrapper)
  .wp-block-cover:not(
    .wp-block-cover:has(
      .wp-block-cover__background + .wp-block-cover__inner-container
    )
  ).has-background-dim:not(.has-background-gradient):before {
  z-index: 1;
}
.has-modal-open
  body:not(.editor-styles-wrapper)
  .wp-block-cover:not(
    .wp-block-cover:has(
      .wp-block-cover__background + .wp-block-cover__inner-container
    )
  )
  .wp-block-cover__inner-container {
  z-index: auto;
}
.wp-block-details {
  box-sizing: border-box;
}
.wp-block-details summary {
  cursor: pointer;
}
.wp-block-embed.alignleft,
.wp-block-embed.alignright,
.wp-block[data-align="left"] > [data-type="core/embed"],
.wp-block[data-align="right"] > [data-type="core/embed"] {
  max-width: 360px;
  width: 100%;
}
.wp-block-embed.alignleft .wp-block-embed__wrapper,
.wp-block-embed.alignright .wp-block-embed__wrapper,
.wp-block[data-align="left"]
  > [data-type="core/embed"]
  .wp-block-embed__wrapper,
.wp-block[data-align="right"]
  > [data-type="core/embed"]
  .wp-block-embed__wrapper {
  min-width: 280px;
}
.wp-block-cover .wp-block-embed {
  min-height: 240px;
  min-width: 320px;
}
.wp-block-embed {
  overflow-wrap: break-word;
}
.wp-block-embed :where(figcaption) {
  margin-bottom: 1em;
  margin-top: 0.5em;
}
.wp-block-embed iframe {
  max-width: 100%;
}
.wp-block-embed__wrapper {
  position: relative;
}
.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before {
  content: "";
  display: block;
  padding-top: 50%;
}
.wp-embed-responsive .wp-has-aspect-ratio iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before {
  padding-top: 42.85%;
}
.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before {
  padding-top: 50%;
}
.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
  padding-top: 56.25%;
}
.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before {
  padding-top: 75%;
}
.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before {
  padding-top: 100%;
}
.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before {
  padding-top: 177.77%;
}
.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before {
  padding-top: 200%;
}
.wp-block-file {
  box-sizing: border-box;
}
.wp-block-file:not(.wp-element-button) {
  font-size: 0.8em;
}
.wp-block-file.aligncenter {
  text-align: center;
}
.wp-block-file.alignright {
  text-align: right;
}
.wp-block-file * + .wp-block-file__button {
  margin-left: 0.75em;
}
:where(.wp-block-file) {
  margin-bottom: 1.5em;
}
.wp-block-file__embed {
  margin-bottom: 1em;
}
:where(.wp-block-file__button) {
  border-radius: 2em;
  display: inline-block;
  padding: 0.5em 1em;
}
:where(.wp-block-file__button):where(a):active,
:where(.wp-block-file__button):where(a):focus,
:where(.wp-block-file__button):where(a):hover,
:where(.wp-block-file__button):where(a):visited {
  box-shadow: none;
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}
.wp-block-form-input__label {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  margin-bottom: 0.5em;
  width: 100%;
}
.wp-block-form-input__label.is-label-inline {
  align-items: center;
  flex-direction: row;
  gap: 0.5em;
}
.wp-block-form-input__label.is-label-inline
  .wp-block-form-input__label-content {
  margin-bottom: 0.5em;
}
.wp-block-form-input__label:has(input[type="checkbox"]) {
  flex-direction: row;
  width: fit-content;
}
.wp-block-form-input__label:has(input[type="checkbox"])
  .wp-block-form-input__label-content {
  margin: 0;
}
.wp-block-form-input__label:has(
  .wp-block-form-input__label-content + input[type="checkbox"]
) {
  flex-direction: row-reverse;
}
.wp-block-form-input__label-content {
  width: fit-content;
}
:where(.wp-block-form-input__input) {
  font-size: 1em;
  margin-bottom: 0.5em;
  padding: 0 0.5em;
}
:where(.wp-block-form-input__input)[type="date"],
:where(.wp-block-form-input__input)[type="datetime-local"],
:where(.wp-block-form-input__input)[type="datetime"],
:where(.wp-block-form-input__input)[type="email"],
:where(.wp-block-form-input__input)[type="month"],
:where(.wp-block-form-input__input)[type="number"],
:where(.wp-block-form-input__input)[type="password"],
:where(.wp-block-form-input__input)[type="search"],
:where(.wp-block-form-input__input)[type="tel"],
:where(.wp-block-form-input__input)[type="text"],
:where(.wp-block-form-input__input)[type="time"],
:where(.wp-block-form-input__input)[type="url"],
:where(.wp-block-form-input__input)[type="week"] {
  border-style: solid;
  border-width: 1px;
  line-height: 2;
  min-height: 2em;
}
textarea.wp-block-form-input__input {
  min-height: 10em;
}
.blocks-gallery-grid:not(.has-nested-images),
.wp-block-gallery:not(.has-nested-images) {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  margin: 0 1em 1em 0;
  position: relative;
  width: calc(50% - 1em);
}
.blocks-gallery-grid:not(.has-nested-images)
  .blocks-gallery-image:nth-of-type(2n),
.blocks-gallery-grid:not(.has-nested-images)
  .blocks-gallery-item:nth-of-type(2n),
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n) {
  margin-right: 0;
}
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure {
  align-items: flex-end;
  display: flex;
  height: 100%;
  justify-content: flex-start;
  margin: 0;
}
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image img,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item img {
  display: block;
  height: auto;
  max-width: 100%;
  width: auto;
}
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption {
  background: linear-gradient(0deg, #000000b3, #0000004d 70%, #0000);
  bottom: 0;
  box-sizing: border-box;
  color: #fff;
  font-size: 0.8em;
  margin: 0;
  max-height: 100%;
  overflow: auto;
  padding: 3em 0.77em 0.7em;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 2;
}
.blocks-gallery-grid:not(.has-nested-images)
  .blocks-gallery-image
  figcaption
  img,
.blocks-gallery-grid:not(.has-nested-images)
  .blocks-gallery-item
  figcaption
  img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption img {
  display: inline;
}
.blocks-gallery-grid:not(.has-nested-images) figcaption,
.wp-block-gallery:not(.has-nested-images) figcaption {
  flex-grow: 1;
}
.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a,
.blocks-gallery-grid:not(.has-nested-images).is-cropped
  .blocks-gallery-image
  img,
.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a,
.blocks-gallery-grid:not(.has-nested-images).is-cropped
  .blocks-gallery-item
  img,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image img,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item img {
  flex: 1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image,
.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item,
.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image,
.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item {
  margin-right: 0;
  width: 100%;
}
@media (min-width: 600px) {
  .blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(33.33333% - 0.66667em);
  }
  .blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(25% - 0.75em);
  }
  .blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(20% - 0.8em);
  }
  .blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(16.66667% - 0.83333em);
  }
  .blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(14.28571% - 0.85714em);
  }
  .blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image,
  .blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item,
  .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image,
  .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item {
    margin-right: 1em;
    width: calc(12.5% - 0.875em);
  }
  .blocks-gallery-grid:not(.has-nested-images).columns-1
    .blocks-gallery-image:nth-of-type(1n),
  .blocks-gallery-grid:not(.has-nested-images).columns-1
    .blocks-gallery-item:nth-of-type(1n),
  .blocks-gallery-grid:not(.has-nested-images).columns-2
    .blocks-gallery-image:nth-of-type(2n),
  .blocks-gallery-grid:not(.has-nested-images).columns-2
    .blocks-gallery-item:nth-of-type(2n),
  .blocks-gallery-grid:not(.has-nested-images).columns-3
    .blocks-gallery-image:nth-of-type(3n),
  .blocks-gallery-grid:not(.has-nested-images).columns-3
    .blocks-gallery-item:nth-of-type(3n),
  .blocks-gallery-grid:not(.has-nested-images).columns-4
    .blocks-gallery-image:nth-of-type(4n),
  .blocks-gallery-grid:not(.has-nested-images).columns-4
    .blocks-gallery-item:nth-of-type(4n),
  .blocks-gallery-grid:not(.has-nested-images).columns-5
    .blocks-gallery-image:nth-of-type(5n),
  .blocks-gallery-grid:not(.has-nested-images).columns-5
    .blocks-gallery-item:nth-of-type(5n),
  .blocks-gallery-grid:not(.has-nested-images).columns-6
    .blocks-gallery-image:nth-of-type(6n),
  .blocks-gallery-grid:not(.has-nested-images).columns-6
    .blocks-gallery-item:nth-of-type(6n),
  .blocks-gallery-grid:not(.has-nested-images).columns-7
    .blocks-gallery-image:nth-of-type(7n),
  .blocks-gallery-grid:not(.has-nested-images).columns-7
    .blocks-gallery-item:nth-of-type(7n),
  .blocks-gallery-grid:not(.has-nested-images).columns-8
    .blocks-gallery-image:nth-of-type(8n),
  .blocks-gallery-grid:not(.has-nested-images).columns-8
    .blocks-gallery-item:nth-of-type(8n),
  .wp-block-gallery:not(.has-nested-images).columns-1
    .blocks-gallery-image:nth-of-type(1n),
  .wp-block-gallery:not(.has-nested-images).columns-1
    .blocks-gallery-item:nth-of-type(1n),
  .wp-block-gallery:not(.has-nested-images).columns-2
    .blocks-gallery-image:nth-of-type(2n),
  .wp-block-gallery:not(.has-nested-images).columns-2
    .blocks-gallery-item:nth-of-type(2n),
  .wp-block-gallery:not(.has-nested-images).columns-3
    .blocks-gallery-image:nth-of-type(3n),
  .wp-block-gallery:not(.has-nested-images).columns-3
    .blocks-gallery-item:nth-of-type(3n),
  .wp-block-gallery:not(.has-nested-images).columns-4
    .blocks-gallery-image:nth-of-type(4n),
  .wp-block-gallery:not(.has-nested-images).columns-4
    .blocks-gallery-item:nth-of-type(4n),
  .wp-block-gallery:not(.has-nested-images).columns-5
    .blocks-gallery-image:nth-of-type(5n),
  .wp-block-gallery:not(.has-nested-images).columns-5
    .blocks-gallery-item:nth-of-type(5n),
  .wp-block-gallery:not(.has-nested-images).columns-6
    .blocks-gallery-image:nth-of-type(6n),
  .wp-block-gallery:not(.has-nested-images).columns-6
    .blocks-gallery-item:nth-of-type(6n),
  .wp-block-gallery:not(.has-nested-images).columns-7
    .blocks-gallery-image:nth-of-type(7n),
  .wp-block-gallery:not(.has-nested-images).columns-7
    .blocks-gallery-item:nth-of-type(7n),
  .wp-block-gallery:not(.has-nested-images).columns-8
    .blocks-gallery-image:nth-of-type(8n),
  .wp-block-gallery:not(.has-nested-images).columns-8
    .blocks-gallery-item:nth-of-type(8n) {
    margin-right: 0;
  }
}
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child {
  margin-right: 0;
}
.blocks-gallery-grid:not(.has-nested-images).alignleft,
.blocks-gallery-grid:not(.has-nested-images).alignright,
.wp-block-gallery:not(.has-nested-images).alignleft,
.wp-block-gallery:not(.has-nested-images).alignright {
  max-width: 420px;
  width: 100%;
}
.blocks-gallery-grid:not(.has-nested-images).aligncenter
  .blocks-gallery-item
  figure,
.wp-block-gallery:not(.has-nested-images).aligncenter
  .blocks-gallery-item
  figure {
  justify-content: center;
}
.wp-block-gallery:not(.is-cropped) .blocks-gallery-item {
  align-self: flex-start;
}
figure.wp-block-gallery.has-nested-images {
  align-items: normal;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image:not(#individual-image) {
  margin: 0;
  width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px) / 2);
}
.wp-block-gallery.has-nested-images figure.wp-block-image {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
.wp-block-gallery.has-nested-images figure.wp-block-image > a,
.wp-block-gallery.has-nested-images figure.wp-block-image > div {
  flex-direction: column;
  flex-grow: 1;
  margin: 0;
}
.wp-block-gallery.has-nested-images figure.wp-block-image img {
  display: block;
  height: auto;
  max-width: 100% !important;
  width: auto;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption,
.wp-block-gallery.has-nested-images
  figure.wp-block-image:has(figcaption):before {
  bottom: 0;
  left: 0;
  max-height: 100%;
  position: absolute;
  right: 0;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image:has(figcaption):before {
  backdrop-filter: blur(3px);
  content: "";
  height: 100%;
  -webkit-mask-image: linear-gradient(0deg, #000 20%, #0000);
  mask-image: linear-gradient(0deg, #000 20%, #0000);
  max-height: 40%;
  pointer-events: none;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  box-sizing: border-box;
  color: #fff;
  font-size: 13px;
  margin: 0;
  overflow: auto;
  padding: 1em;
  text-align: center;
  text-shadow: 0 0 1.5px #000;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image
  figcaption::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image
  figcaption::-webkit-scrollbar-track {
  background-color: initial;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image
  figcaption::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  background-color: initial;
  border: 3px solid #0000;
  border-radius: 8px;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image
  figcaption:focus-within::-webkit-scrollbar-thumb,
.wp-block-gallery.has-nested-images
  figure.wp-block-image
  figcaption:focus::-webkit-scrollbar-thumb,
.wp-block-gallery.has-nested-images
  figure.wp-block-image
  figcaption:hover::-webkit-scrollbar-thumb {
  background-color: #fffc;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  scrollbar-color: #0000 #0000;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: thin;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus,
.wp-block-gallery.has-nested-images
  figure.wp-block-image
  figcaption:focus-within,
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover {
  scrollbar-color: #fffc #0000;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  will-change: transform;
}
@media (hover: none) {
  .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    scrollbar-color: #fffc #0000;
  }
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: linear-gradient(0deg, #0006, #0000);
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption img {
  display: inline;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption a {
  color: inherit;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image.has-custom-border
  img {
  box-sizing: border-box;
}
.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border > a,
.wp-block-gallery.has-nested-images
  figure.wp-block-image.has-custom-border
  > div,
.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded > a,
.wp-block-gallery.has-nested-images
  figure.wp-block-image.is-style-rounded
  > div {
  flex: 1 1 auto;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image.has-custom-border
  figcaption,
.wp-block-gallery.has-nested-images
  figure.wp-block-image.is-style-rounded
  figcaption {
  background: none;
  color: inherit;
  flex: initial;
  margin: 0;
  padding: 10px 10px 9px;
  position: relative;
  text-shadow: none;
}
.wp-block-gallery.has-nested-images
  figure.wp-block-image.has-custom-border:before,
.wp-block-gallery.has-nested-images
  figure.wp-block-image.is-style-rounded:before {
  content: none;
}
.wp-block-gallery.has-nested-images figcaption {
  flex-basis: 100%;
  flex-grow: 1;
  text-align: center;
}
.wp-block-gallery.has-nested-images:not(.is-cropped)
  figure.wp-block-image:not(#individual-image) {
  margin-bottom: auto;
  margin-top: 0;
}
.wp-block-gallery.has-nested-images.is-cropped
  figure.wp-block-image:not(#individual-image) {
  align-self: inherit;
}
.wp-block-gallery.has-nested-images.is-cropped
  figure.wp-block-image:not(#individual-image)
  > a,
.wp-block-gallery.has-nested-images.is-cropped
  figure.wp-block-image:not(#individual-image)
  > div:not(.components-drop-zone) {
  display: flex;
}
.wp-block-gallery.has-nested-images.is-cropped
  figure.wp-block-image:not(#individual-image)
  a,
.wp-block-gallery.has-nested-images.is-cropped
  figure.wp-block-image:not(#individual-image)
  img {
  flex: 1 0 0%;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.wp-block-gallery.has-nested-images.columns-1
  figure.wp-block-image:not(#individual-image) {
  width: 100%;
}
@media (min-width: 600px) {
  .wp-block-gallery.has-nested-images.columns-3
    figure.wp-block-image:not(#individual-image) {
    width: calc(
      33.33333% - var(--wp--style--unstable-gallery-gap, 16px) * 0.66667
    );
  }
  .wp-block-gallery.has-nested-images.columns-4
    figure.wp-block-image:not(#individual-image) {
    width: calc(25% - var(--wp--style--unstable-gallery-gap, 16px) * 0.75);
  }
  .wp-block-gallery.has-nested-images.columns-5
    figure.wp-block-image:not(#individual-image) {
    width: calc(20% - var(--wp--style--unstable-gallery-gap, 16px) * 0.8);
  }
  .wp-block-gallery.has-nested-images.columns-6
    figure.wp-block-image:not(#individual-image) {
    width: calc(
      16.66667% - var(--wp--style--unstable-gallery-gap, 16px) * 0.83333
    );
  }
  .wp-block-gallery.has-nested-images.columns-7
    figure.wp-block-image:not(#individual-image) {
    width: calc(
      14.28571% - var(--wp--style--unstable-gallery-gap, 16px) * 0.85714
    );
  }
  .wp-block-gallery.has-nested-images.columns-8
    figure.wp-block-image:not(#individual-image) {
    width: calc(12.5% - var(--wp--style--unstable-gallery-gap, 16px) * 0.875);
  }
  .wp-block-gallery.has-nested-images.columns-default
    figure.wp-block-image:not(#individual-image) {
    width: calc(
      33.33% - var(--wp--style--unstable-gallery-gap, 16px) * 0.66667
    );
  }
  .wp-block-gallery.has-nested-images.columns-default
    figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),
  .wp-block-gallery.has-nested-images.columns-default
    figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)
    ~ figure.wp-block-image:not(#individual-image) {
    width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px) * 0.5);
  }
  .wp-block-gallery.has-nested-images.columns-default
    figure.wp-block-image:not(#individual-image):first-child:last-child {
    width: 100%;
  }
}
.wp-block-gallery.has-nested-images.alignleft,
.wp-block-gallery.has-nested-images.alignright {
  max-width: 420px;
  width: 100%;
}
.wp-block-gallery.has-nested-images.aligncenter {
  justify-content: center;
}
.wp-block-group {
  box-sizing: border-box;
}
:where(.wp-block-group.wp-block-group-is-layout-constrained) {
  position: relative;
}
h1:where(.wp-block-heading).has-background,
h2:where(.wp-block-heading).has-background,
h3:where(.wp-block-heading).has-background,
h4:where(.wp-block-heading).has-background,
h5:where(.wp-block-heading).has-background,
h6:where(.wp-block-heading).has-background {
  padding: 1.25em 2.375em;
}
h1.has-text-align-left[style*="writing-mode"]:where([style*="vertical-lr"]),
h1.has-text-align-right[style*="writing-mode"]:where([style*="vertical-rl"]),
h2.has-text-align-left[style*="writing-mode"]:where([style*="vertical-lr"]),
h2.has-text-align-right[style*="writing-mode"]:where([style*="vertical-rl"]),
h3.has-text-align-left[style*="writing-mode"]:where([style*="vertical-lr"]),
h3.has-text-align-right[style*="writing-mode"]:where([style*="vertical-rl"]),
h4.has-text-align-left[style*="writing-mode"]:where([style*="vertical-lr"]),
h4.has-text-align-right[style*="writing-mode"]:where([style*="vertical-rl"]),
h5.has-text-align-left[style*="writing-mode"]:where([style*="vertical-lr"]),
h5.has-text-align-right[style*="writing-mode"]:where([style*="vertical-rl"]),
h6.has-text-align-left[style*="writing-mode"]:where([style*="vertical-lr"]),
h6.has-text-align-right[style*="writing-mode"]:where([style*="vertical-rl"]) {
  rotate: 180deg;
}
.wp-block-image > a,
.wp-block-image > figure > a {
  display: inline-block;
}
.wp-block-image img {
  box-sizing: border-box;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}
@media not (prefers-reduced-motion) {
  .wp-block-image img.hide {
    visibility: hidden;
  }
  .wp-block-image img.show {
    animation: show-content-image 0.4s;
  }
}
.wp-block-image[style*="border-radius"] img,
.wp-block-image[style*="border-radius"] > a {
  border-radius: inherit;
}
.wp-block-image.has-custom-border img {
  box-sizing: border-box;
}
.wp-block-image.aligncenter {
  text-align: center;
}
.wp-block-image.alignfull > a,
.wp-block-image.alignwide > a {
  width: 100%;
}
.wp-block-image.alignfull img,
.wp-block-image.alignwide img {
  height: auto;
  width: 100%;
}
.wp-block-image .aligncenter,
.wp-block-image .alignleft,
.wp-block-image .alignright,
.wp-block-image.aligncenter,
.wp-block-image.alignleft,
.wp-block-image.alignright {
  display: table;
}
.wp-block-image .aligncenter > figcaption,
.wp-block-image .alignleft > figcaption,
.wp-block-image .alignright > figcaption,
.wp-block-image.aligncenter > figcaption,
.wp-block-image.alignleft > figcaption,
.wp-block-image.alignright > figcaption {
  caption-side: bottom;
  display: table-caption;
}
.wp-block-image .alignleft {
  float: left;
  margin: 0.5em 1em 0.5em 0;
}
.wp-block-image .alignright {
  float: right;
  margin: 0.5em 0 0.5em 1em;
}
.wp-block-image .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.wp-block-image :where(figcaption) {
  margin-bottom: 1em;
  margin-top: 0.5em;
}
.wp-block-image.is-style-circle-mask img {
  border-radius: 9999px;
}
@supports ((-webkit-mask-image: none) or (mask-image: none)) or
  (-webkit-mask-image: none) {
  .wp-block-image.is-style-circle-mask img {
    border-radius: 0;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
    mask-mode: alpha;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
  }
}
:root
  :where(
    .wp-block-image.is-style-rounded img,
    .wp-block-image .is-style-rounded img
  ) {
  border-radius: 9999px;
}
.wp-block-image figure {
  margin: 0;
}
.wp-lightbox-container {
  display: flex;
  flex-direction: column;
  position: relative;
}
.wp-lightbox-container img {
  cursor: zoom-in;
}
.wp-lightbox-container img:hover + button {
  opacity: 1;
}
.wp-lightbox-container button {
  align-items: center;
  backdrop-filter: blur(16px) saturate(180%);
  background-color: #5a5a5a40;
  border: none;
  border-radius: 4px;
  cursor: zoom-in;
  display: flex;
  height: 20px;
  justify-content: center;
  opacity: 0;
  padding: 0;
  position: absolute;
  right: 16px;
  text-align: center;
  top: 16px;
  width: 20px;
  z-index: 100;
}
@media not (prefers-reduced-motion) {
  .wp-lightbox-container button {
    transition: opacity 0.2s ease;
  }
}
.wp-lightbox-container button:focus-visible {
  outline: 3px auto #5a5a5a40;
  outline: 3px auto -webkit-focus-ring-color;
  outline-offset: 3px;
}
.wp-lightbox-container button:hover {
  cursor: pointer;
  opacity: 1;
}
.wp-lightbox-container button:focus {
  opacity: 1;
}
.wp-lightbox-container button:focus,
.wp-lightbox-container button:hover,
.wp-lightbox-container button:not(:hover):not(:active):not(.has-background) {
  background-color: #5a5a5a40;
  border: none;
}
.wp-lightbox-overlay {
  box-sizing: border-box;
  cursor: zoom-out;
  height: 100vh;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 100000;
}
.wp-lightbox-overlay .close-button {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
  padding: 0;
  position: absolute;
  right: calc(env(safe-area-inset-right) + 16px);
  top: calc(env(safe-area-inset-top) + 16px);
  z-index: 5000000;
}
.wp-lightbox-overlay .close-button:focus,
.wp-lightbox-overlay .close-button:hover,
.wp-lightbox-overlay
  .close-button:not(:hover):not(:active):not(.has-background) {
  background: none;
  border: none;
}
.wp-lightbox-overlay .lightbox-image-container {
  height: var(--wp--lightbox-container-height);
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: top left;
  width: var(--wp--lightbox-container-width);
  z-index: 9999999999;
}
.wp-lightbox-overlay .wp-block-image {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  height: 100%;
  justify-content: center;
  margin: 0;
  position: relative;
  transform-origin: 0 0;
  width: 100%;
  z-index: 3000000;
}
.wp-lightbox-overlay .wp-block-image img {
  height: var(--wp--lightbox-image-height);
  min-height: var(--wp--lightbox-image-height);
  min-width: var(--wp--lightbox-image-width);
  width: var(--wp--lightbox-image-width);
}
.wp-lightbox-overlay .wp-block-image figcaption {
  display: none;
}
.wp-lightbox-overlay button {
  background: none;
  border: none;
}
.wp-lightbox-overlay .scrim {
  background-color: #fff;
  height: 100%;
  opacity: 0.9;
  position: absolute;
  width: 100%;
  z-index: 2000000;
}
.wp-lightbox-overlay.active {
  visibility: visible;
}
@media not (prefers-reduced-motion) {
  .wp-lightbox-overlay.active {
    animation: turn-on-visibility 0.25s both;
  }
  .wp-lightbox-overlay.active img {
    animation: turn-on-visibility 0.35s both;
  }
  .wp-lightbox-overlay.show-closing-animation:not(.active) {
    animation: turn-off-visibility 0.35s both;
  }
  .wp-lightbox-overlay.show-closing-animation:not(.active) img {
    animation: turn-off-visibility 0.25s both;
  }
  .wp-lightbox-overlay.zoom.active {
    animation: none;
    opacity: 1;
    visibility: visible;
  }
  .wp-lightbox-overlay.zoom.active .lightbox-image-container {
    animation: lightbox-zoom-in 0.4s;
  }
  .wp-lightbox-overlay.zoom.active .lightbox-image-container img {
    animation: none;
  }
  .wp-lightbox-overlay.zoom.active .scrim {
    animation: turn-on-visibility 0.4s forwards;
  }
  .wp-lightbox-overlay.zoom.show-closing-animation:not(.active) {
    animation: none;
  }
  .wp-lightbox-overlay.zoom.show-closing-animation:not(.active)
    .lightbox-image-container {
    animation: lightbox-zoom-out 0.4s;
  }
  .wp-lightbox-overlay.zoom.show-closing-animation:not(.active)
    .lightbox-image-container
    img {
    animation: none;
  }
  .wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim {
    animation: turn-off-visibility 0.4s forwards;
  }
}
@keyframes show-content-image {
  0% {
    visibility: hidden;
  }
  99% {
    visibility: hidden;
  }
  to {
    visibility: visible;
  }
}
@keyframes turn-on-visibility {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes turn-off-visibility {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes lightbox-zoom-in {
  0% {
    transform: translate(
        calc(
          (-100vw + var(--wp--lightbox-scrollbar-width)) / 2 +
            var(--wp--lightbox-initial-left-position)
        ),
        calc(-50vh + var(--wp--lightbox-initial-top-position))
      )
      scale(var(--wp--lightbox-scale));
  }
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes lightbox-zoom-out {
  0% {
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
  }
  99% {
    visibility: visible;
  }
  to {
    transform: translate(
        calc(
          (-100vw + var(--wp--lightbox-scrollbar-width)) / 2 +
            var(--wp--lightbox-initial-left-position)
        ),
        calc(-50vh + var(--wp--lightbox-initial-top-position))
      )
      scale(var(--wp--lightbox-scale));
    visibility: hidden;
  }
}
ol.wp-block-latest-comments {
  box-sizing: border-box;
  margin-left: 0;
}
:where(
  .wp-block-latest-comments:not(
    [style*="line-height"] .wp-block-latest-comments__comment
  )
) {
  line-height: 1.1;
}
:where(
  .wp-block-latest-comments:not(
    [style*="line-height"] .wp-block-latest-comments__comment-excerpt p
  )
) {
  line-height: 1.8;
}
.has-dates :where(.wp-block-latest-comments:not([style*="line-height"])),
.has-excerpts :where(.wp-block-latest-comments:not([style*="line-height"])) {
  line-height: 1.5;
}
.wp-block-latest-comments .wp-block-latest-comments {
  padding-left: 0;
}
.wp-block-latest-comments__comment {
  list-style: none;
  margin-bottom: 1em;
}
.has-avatars .wp-block-latest-comments__comment {
  list-style: none;
  min-height: 2.25em;
}
.has-avatars
  .wp-block-latest-comments__comment
  .wp-block-latest-comments__comment-excerpt,
.has-avatars
  .wp-block-latest-comments__comment
  .wp-block-latest-comments__comment-meta {
  margin-left: 3.25em;
}
.wp-block-latest-comments__comment-excerpt p {
  font-size: 0.875em;
  margin: 0.36em 0 1.4em;
}
.wp-block-latest-comments__comment-date {
  display: block;
  font-size: 0.75em;
}
.wp-block-latest-comments .avatar,
.wp-block-latest-comments__comment-avatar {
  border-radius: 1.5em;
  display: block;
  float: left;
  height: 2.5em;
  margin-right: 0.75em;
  width: 2.5em;
}
.wp-block-latest-comments[class*="-font-size"] a,
.wp-block-latest-comments[style*="font-size"] a {
  font-size: inherit;
}
.wp-block-latest-posts {
  box-sizing: border-box;
}
.wp-block-latest-posts.alignleft {
  margin-right: 2em;
}
.wp-block-latest-posts.alignright {
  margin-left: 2em;
}
.wp-block-latest-posts.wp-block-latest-posts__list {
  list-style: none;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
  clear: both;
  overflow-wrap: break-word;
}
.wp-block-latest-posts.is-grid {
  display: flex;
  flex-wrap: wrap;
}
.wp-block-latest-posts.is-grid li {
  margin: 0 1.25em 1.25em 0;
  width: 100%;
}
@media (min-width: 600px) {
  .wp-block-latest-posts.columns-2 li {
    width: calc(50% - 0.625em);
  }
  .wp-block-latest-posts.columns-2 li:nth-child(2n) {
    margin-right: 0;
  }
  .wp-block-latest-posts.columns-3 li {
    width: calc(33.33333% - 0.83333em);
  }
  .wp-block-latest-posts.columns-3 li:nth-child(3n) {
    margin-right: 0;
  }
  .wp-block-latest-posts.columns-4 li {
    width: calc(25% - 0.9375em);
  }
  .wp-block-latest-posts.columns-4 li:nth-child(4n) {
    margin-right: 0;
  }
  .wp-block-latest-posts.columns-5 li {
    width: calc(20% - 1em);
  }
  .wp-block-latest-posts.columns-5 li:nth-child(5n) {
    margin-right: 0;
  }
  .wp-block-latest-posts.columns-6 li {
    width: calc(16.66667% - 1.04167em);
  }
  .wp-block-latest-posts.columns-6 li:nth-child(6n) {
    margin-right: 0;
  }
}
:root :where(.wp-block-latest-posts.is-grid) {
  padding: 0;
}
:root :where(.wp-block-latest-posts.wp-block-latest-posts__list) {
  padding-left: 0;
}
.wp-block-latest-posts__post-author,
.wp-block-latest-posts__post-date {
  display: block;
  font-size: 0.8125em;
}
.wp-block-latest-posts__post-excerpt,
.wp-block-latest-posts__post-full-content {
  margin-bottom: 1em;
  margin-top: 0.5em;
}
.wp-block-latest-posts__featured-image a {
  display: inline-block;
}
.wp-block-latest-posts__featured-image img {
  height: auto;
  max-width: 100%;
  width: auto;
}
.wp-block-latest-posts__featured-image.alignleft {
  float: left;
  margin-right: 1em;
}
.wp-block-latest-posts__featured-image.alignright {
  float: right;
  margin-left: 1em;
}
.wp-block-latest-posts__featured-image.aligncenter {
  margin-bottom: 1em;
  text-align: center;
}
ol,
ul {
  box-sizing: border-box;
}
:root :where(.wp-block-list.has-background) {
  padding: 1.25em 2.375em;
}
.wp-block-loginout {
  box-sizing: border-box;
}
.wp-block-math {
  overflow-x: auto;
  overflow-y: hidden;
}
.wp-block-media-text {
  box-sizing: border-box;
  /*!rtl:begin:ignore*/
  direction: ltr;
  /*!rtl:end:ignore*/
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-rows: auto;
}
.wp-block-media-text.has-media-on-the-right {
  grid-template-columns: 1fr 50%;
}
.wp-block-media-text.is-vertically-aligned-top > .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-top > .wp-block-media-text__media {
  align-self: start;
}
.wp-block-media-text.is-vertically-aligned-center
  > .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-center > .wp-block-media-text__media,
.wp-block-media-text > .wp-block-media-text__content,
.wp-block-media-text > .wp-block-media-text__media {
  align-self: center;
}
.wp-block-media-text.is-vertically-aligned-bottom
  > .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-bottom
  > .wp-block-media-text__media {
  align-self: end;
}
.wp-block-media-text > .wp-block-media-text__media {
  /*!rtl:begin:ignore*/
  grid-column: 1;
  grid-row: 1;
  /*!rtl:end:ignore*/
  margin: 0;
}
.wp-block-media-text > .wp-block-media-text__content {
  direction: ltr;
  /*!rtl:begin:ignore*/
  grid-column: 2;
  grid-row: 1;
  /*!rtl:end:ignore*/
  padding: 0 8%;
  word-break: break-word;
}
.wp-block-media-text.has-media-on-the-right > .wp-block-media-text__media {
  /*!rtl:begin:ignore*/
  grid-column: 2;
  grid-row: 1;
  /*!rtl:end:ignore*/
}
.wp-block-media-text.has-media-on-the-right > .wp-block-media-text__content {
  /*!rtl:begin:ignore*/
  grid-column: 1;
  grid-row: 1;
  /*!rtl:end:ignore*/
}
.wp-block-media-text__media a {
  display: block;
}
.wp-block-media-text__media img,
.wp-block-media-text__media video {
  height: auto;
  max-width: unset;
  vertical-align: middle;
  width: 100%;
}
.wp-block-media-text.is-image-fill > .wp-block-media-text__media {
  background-size: cover;
  height: 100%;
  min-height: 250px;
}
.wp-block-media-text.is-image-fill > .wp-block-media-text__media > a {
  display: block;
  height: 100%;
}
.wp-block-media-text.is-image-fill > .wp-block-media-text__media img {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.wp-block-media-text.is-image-fill-element > .wp-block-media-text__media {
  height: 100%;
  min-height: 250px;
  position: relative;
}
.wp-block-media-text.is-image-fill-element > .wp-block-media-text__media > a {
  display: block;
  height: 100%;
}
.wp-block-media-text.is-image-fill-element > .wp-block-media-text__media img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
@media (max-width: 600px) {
  .wp-block-media-text.is-stacked-on-mobile {
    grid-template-columns: 100% !important;
  }
  .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1;
  }
  .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 2;
  }
}
.wp-block-navigation {
  position: relative;
}
.wp-block-navigation ul {
  margin-bottom: 0;
  margin-left: 0;
  margin-top: 0;
  padding-left: 0;
}
.wp-block-navigation ul,
.wp-block-navigation ul li {
  list-style: none;
  padding: 0;
}
.wp-block-navigation .wp-block-navigation-item {
  align-items: center;
  display: flex;
  position: relative;
}
.wp-block-navigation
  .wp-block-navigation-item
  .wp-block-navigation__submenu-container:empty {
  display: none;
}
.wp-block-navigation .wp-block-navigation-item__content {
  display: block;
  z-index: 1;
}
.wp-block-navigation
  .wp-block-navigation-item__content.wp-block-navigation-item__content {
  color: inherit;
}
.wp-block-navigation.has-text-decoration-underline
  .wp-block-navigation-item__content,
.wp-block-navigation.has-text-decoration-underline
  .wp-block-navigation-item__content:active,
.wp-block-navigation.has-text-decoration-underline
  .wp-block-navigation-item__content:focus {
  text-decoration: underline;
}
.wp-block-navigation.has-text-decoration-line-through
  .wp-block-navigation-item__content,
.wp-block-navigation.has-text-decoration-line-through
  .wp-block-navigation-item__content:active,
.wp-block-navigation.has-text-decoration-line-through
  .wp-block-navigation-item__content:focus {
  text-decoration: line-through;
}
.wp-block-navigation :where(a),
.wp-block-navigation :where(a:active),
.wp-block-navigation :where(a:focus) {
  text-decoration: none;
}
.wp-block-navigation .wp-block-navigation__submenu-icon {
  align-self: center;
  background-color: inherit;
  border: none;
  color: currentColor;
  display: inline-block;
  font-size: inherit;
  height: 0.6em;
  line-height: 0;
  margin-left: 0.25em;
  padding: 0;
  width: 0.6em;
}
.wp-block-navigation .wp-block-navigation__submenu-icon svg {
  display: inline-block;
  stroke: currentColor;
  height: inherit;
  margin-top: 0.075em;
  width: inherit;
}
.wp-block-navigation {
  --navigation-layout-justification-setting: flex-start;
  --navigation-layout-direction: row;
  --navigation-layout-wrap: wrap;
  --navigation-layout-justify: flex-start;
  --navigation-layout-align: center;
}
.wp-block-navigation.is-vertical {
  --navigation-layout-direction: column;
  --navigation-layout-justify: initial;
  --navigation-layout-align: flex-start;
}
.wp-block-navigation.no-wrap {
  --navigation-layout-wrap: nowrap;
}
.wp-block-navigation.items-justified-center {
  --navigation-layout-justification-setting: center;
  --navigation-layout-justify: center;
}
.wp-block-navigation.items-justified-center.is-vertical {
  --navigation-layout-align: center;
}
.wp-block-navigation.items-justified-right {
  --navigation-layout-justification-setting: flex-end;
  --navigation-layout-justify: flex-end;
}
.wp-block-navigation.items-justified-right.is-vertical {
  --navigation-layout-align: flex-end;
}
.wp-block-navigation.items-justified-space-between {
  --navigation-layout-justification-setting: space-between;
  --navigation-layout-justify: space-between;
}
.wp-block-navigation .has-child .wp-block-navigation__submenu-container {
  align-items: normal;
  background-color: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  opacity: 0;
  position: absolute;
  z-index: 2;
}
@media not (prefers-reduced-motion) {
  .wp-block-navigation .has-child .wp-block-navigation__submenu-container {
    transition: opacity 0.1s linear;
  }
}
.wp-block-navigation .has-child .wp-block-navigation__submenu-container {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  width: 0;
}
.wp-block-navigation
  .has-child
  .wp-block-navigation__submenu-container
  > .wp-block-navigation-item
  > .wp-block-navigation-item__content {
  display: flex;
  flex-grow: 1;
  padding: 0.5em 1em;
}
.wp-block-navigation
  .has-child
  .wp-block-navigation__submenu-container
  > .wp-block-navigation-item
  > .wp-block-navigation-item__content
  .wp-block-navigation__submenu-icon {
  margin-left: auto;
  margin-right: 0;
}
.wp-block-navigation
  .has-child
  .wp-block-navigation__submenu-container
  .wp-block-navigation-item__content {
  margin: 0;
}
.wp-block-navigation .has-child .wp-block-navigation__submenu-container {
  left: -1px;
  top: 100%;
}
@media (min-width: 782px) {
  .wp-block-navigation
    .has-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-container {
    left: 100%;
    top: -1px;
  }
  .wp-block-navigation
    .has-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-container:before {
    background: #0000;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: 100%;
    width: 0.5em;
  }
  .wp-block-navigation
    .has-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-icon {
    margin-right: 0.25em;
  }
  .wp-block-navigation
    .has-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-icon
    svg {
    transform: rotate(-90deg);
  }
}
.wp-block-navigation
  .has-child
  .wp-block-navigation-submenu__toggle[aria-expanded="true"]
  ~ .wp-block-navigation__submenu-container,
.wp-block-navigation
  .has-child:not(.open-on-click):hover
  > .wp-block-navigation__submenu-container,
.wp-block-navigation
  .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within
  > .wp-block-navigation__submenu-container {
  height: auto;
  min-width: 200px;
  opacity: 1;
  overflow: visible;
  visibility: visible;
  width: auto;
}
.wp-block-navigation.has-background
  .has-child
  .wp-block-navigation__submenu-container {
  left: 0;
  top: 100%;
}
@media (min-width: 782px) {
  .wp-block-navigation.has-background
    .has-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-container {
    left: 100%;
    top: 0;
  }
}
.wp-block-navigation-submenu {
  display: flex;
  position: relative;
}
.wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg {
  stroke: currentColor;
}
button.wp-block-navigation-item__content {
  background-color: initial;
  border: none;
  color: currentColor;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: left;
  text-transform: inherit;
}
.wp-block-navigation-submenu__toggle {
  cursor: pointer;
}
.wp-block-navigation-submenu__toggle[aria-expanded="true"]
  + .wp-block-navigation__submenu-icon
  > svg,
.wp-block-navigation-submenu__toggle[aria-expanded="true"] > svg {
  transform: rotate(180deg);
}
.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle {
  padding-left: 0;
  padding-right: 0.85em;
}
.wp-block-navigation-item.open-on-click
  .wp-block-navigation-submenu__toggle
  + .wp-block-navigation__submenu-icon {
  margin-left: -0.6em;
  pointer-events: none;
}
.wp-block-navigation-item.open-on-click
  button.wp-block-navigation-item__content:not(
    .wp-block-navigation-submenu__toggle
  ) {
  padding: 0;
}
.wp-block-navigation .wp-block-page-list,
.wp-block-navigation__container,
.wp-block-navigation__responsive-close,
.wp-block-navigation__responsive-container,
.wp-block-navigation__responsive-container-content,
.wp-block-navigation__responsive-dialog {
  gap: inherit;
}
:where(
  .wp-block-navigation.has-background
    .wp-block-navigation-item
    a:not(.wp-element-button)
),
:where(
  .wp-block-navigation.has-background
    .wp-block-navigation-submenu
    a:not(.wp-element-button)
) {
  padding: 0.5em 1em;
}
:where(
  .wp-block-navigation
    .wp-block-navigation__submenu-container
    .wp-block-navigation-item
    a:not(.wp-element-button)
),
:where(
  .wp-block-navigation
    .wp-block-navigation__submenu-container
    .wp-block-navigation-submenu
    a:not(.wp-element-button)
),
:where(
  .wp-block-navigation
    .wp-block-navigation__submenu-container
    .wp-block-navigation-submenu
    button.wp-block-navigation-item__content
),
:where(
  .wp-block-navigation
    .wp-block-navigation__submenu-container
    .wp-block-pages-list__item
    button.wp-block-navigation-item__content
) {
  padding: 0.5em 1em;
}
.wp-block-navigation.items-justified-right
  .wp-block-navigation__container
  .has-child
  .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-right
  .wp-block-page-list
  > .has-child
  .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-space-between
  .wp-block-page-list
  > .has-child:last-child
  .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-space-between
  > .wp-block-navigation__container
  > .has-child:last-child
  .wp-block-navigation__submenu-container {
  left: auto;
  right: 0;
}
.wp-block-navigation.items-justified-right
  .wp-block-navigation__container
  .has-child
  .wp-block-navigation__submenu-container
  .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-right
  .wp-block-page-list
  > .has-child
  .wp-block-navigation__submenu-container
  .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-space-between
  .wp-block-page-list
  > .has-child:last-child
  .wp-block-navigation__submenu-container
  .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-space-between
  > .wp-block-navigation__container
  > .has-child:last-child
  .wp-block-navigation__submenu-container
  .wp-block-navigation__submenu-container {
  left: -1px;
  right: -1px;
}
@media (min-width: 782px) {
  .wp-block-navigation.items-justified-right
    .wp-block-navigation__container
    .has-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-container,
  .wp-block-navigation.items-justified-right
    .wp-block-page-list
    > .has-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-container,
  .wp-block-navigation.items-justified-space-between
    .wp-block-page-list
    > .has-child:last-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-container,
  .wp-block-navigation.items-justified-space-between
    > .wp-block-navigation__container
    > .has-child:last-child
    .wp-block-navigation__submenu-container
    .wp-block-navigation__submenu-container {
    left: auto;
    right: 100%;
  }
}
.wp-block-navigation:not(.has-background)
  .wp-block-navigation__submenu-container {
  background-color: #fff;
  border: 1px solid #00000026;
}
.wp-block-navigation.has-background .wp-block-navigation__submenu-container {
  background-color: inherit;
}
.wp-block-navigation:not(.has-text-color)
  .wp-block-navigation__submenu-container {
  color: #000;
}
.wp-block-navigation__container {
  align-items: var(--navigation-layout-align, initial);
  display: flex;
  flex-direction: var(--navigation-layout-direction, initial);
  flex-wrap: var(--navigation-layout-wrap, wrap);
  justify-content: var(--navigation-layout-justify, initial);
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.wp-block-navigation__container .is-responsive {
  display: none;
}
.wp-block-navigation__container:only-child,
.wp-block-page-list:only-child {
  flex-grow: 1;
}
@keyframes overlay-menu__fade-in-animation {
  0% {
    opacity: 0;
    transform: translateY(0.5em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wp-block-navigation__responsive-container {
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}
.wp-block-navigation__responsive-container :where(.wp-block-navigation-item a) {
  color: inherit;
}
.wp-block-navigation__responsive-container
  .wp-block-navigation__responsive-container-content {
  align-items: var(--navigation-layout-align, initial);
  display: flex;
  flex-direction: var(--navigation-layout-direction, initial);
  flex-wrap: var(--navigation-layout-wrap, wrap);
  justify-content: var(--navigation-layout-justify, initial);
}
.wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open) {
  background-color: inherit !important;
  color: inherit !important;
}
.wp-block-navigation__responsive-container.is-menu-open {
  background-color: inherit;
  display: flex;
  flex-direction: column;
}
@media not (prefers-reduced-motion) {
  .wp-block-navigation__responsive-container.is-menu-open {
    animation: overlay-menu__fade-in-animation 0.1s ease-out;
    animation-fill-mode: forwards;
  }
}
.wp-block-navigation__responsive-container.is-menu-open {
  overflow: auto;
  padding: clamp(1rem, var(--wp--style--root--padding-top), 20rem)
    clamp(1rem, var(--wp--style--root--padding-right), 20rem)
    clamp(1rem, var(--wp--style--root--padding-bottom), 20rem)
    clamp(1rem, var(--wp--style--root--padding-left), 20rem);
  z-index: 100000;
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content {
  align-items: var(--navigation-layout-justification-setting, inherit);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  overflow: visible;
  padding-top: calc(2rem + 24px);
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content,
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-page-list {
  justify-content: flex-start;
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-navigation__submenu-icon {
  display: none;
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .has-child
  .wp-block-navigation__submenu-container {
  border: none;
  height: auto;
  min-width: 200px;
  opacity: 1;
  overflow: initial;
  padding-left: 2rem;
  padding-right: 2rem;
  position: static;
  visibility: visible;
  width: auto;
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-navigation__submenu-container {
  gap: inherit;
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-navigation__submenu-container {
  padding-top: var(--wp--style--block-gap, 2em);
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-navigation-item__content {
  padding: 0;
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-navigation-item,
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content
  .wp-block-page-list {
  align-items: var(--navigation-layout-justification-setting, initial);
  display: flex;
  flex-direction: column;
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation-item,
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation-item
  .wp-block-navigation__submenu-container,
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list {
  background: #0000 !important;
  color: inherit !important;
}
.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container {
  left: auto;
  right: auto;
}
@media (min-width: 600px) {
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(
      .is-menu-open
    ) {
    background-color: inherit;
    display: block;
    position: relative;
    width: 100%;
    z-index: auto;
  }
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(
      .is-menu-open
    )
    .wp-block-navigation__responsive-container-close {
    display: none;
  }
  .wp-block-navigation__responsive-container.is-menu-open
    .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container {
    left: 0;
  }
}
.wp-block-navigation:not(.has-background)
  .wp-block-navigation__responsive-container.is-menu-open {
  background-color: #fff;
}
.wp-block-navigation:not(.has-text-color)
  .wp-block-navigation__responsive-container.is-menu-open {
  color: #000;
}
.wp-block-navigation__toggle_button_label {
  font-size: 1rem;
  font-weight: 700;
}
.wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-container-open {
  background: #0000;
  border: none;
  color: currentColor;
  cursor: pointer;
  margin: 0;
  padding: 0;
  text-transform: inherit;
  vertical-align: middle;
}
.wp-block-navigation__responsive-container-close svg,
.wp-block-navigation__responsive-container-open svg {
  fill: currentColor;
  display: block;
  height: 24px;
  pointer-events: none;
  width: 24px;
}
.wp-block-navigation__responsive-container-open {
  display: flex;
}
.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
@media (min-width: 600px) {
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: none;
  }
}
.wp-block-navigation__responsive-container-close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.wp-block-navigation__responsive-close {
  width: 100%;
}
.has-modal-open .wp-block-navigation__responsive-close {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wp--style--global--wide-size, 100%);
}
.wp-block-navigation__responsive-close:focus {
  outline: none;
}
.is-menu-open .wp-block-navigation__responsive-close,
.is-menu-open .wp-block-navigation__responsive-container-content,
.is-menu-open .wp-block-navigation__responsive-dialog {
  box-sizing: border-box;
}
.wp-block-navigation__responsive-dialog {
  position: relative;
}
.has-modal-open
  .admin-bar
  .is-menu-open
  .wp-block-navigation__responsive-dialog {
  margin-top: 46px;
}
@media (min-width: 782px) {
  .has-modal-open
    .admin-bar
    .is-menu-open
    .wp-block-navigation__responsive-dialog {
    margin-top: 32px;
  }
}
html.has-modal-open {
  overflow: hidden;
}
.wp-block-navigation .wp-block-navigation-item__label {
  overflow-wrap: break-word;
}
.wp-block-navigation .wp-block-navigation-item__description {
  display: none;
}
.link-ui-tools {
  outline: 1px solid #f0f0f0;
  padding: 8px;
}
.link-ui-block-inserter {
  padding-top: 8px;
}
.link-ui-block-inserter__back {
  margin-left: 8px;
  text-transform: uppercase;
}
.wp-block-navigation .wp-block-page-list {
  align-items: var(--navigation-layout-align, initial);
  background-color: inherit;
  display: flex;
  flex-direction: var(--navigation-layout-direction, initial);
  flex-wrap: var(--navigation-layout-wrap, wrap);
  justify-content: var(--navigation-layout-justify, initial);
}
.wp-block-navigation .wp-block-navigation-item {
  background-color: inherit;
}
.wp-block-page-list {
  box-sizing: border-box;
}
.is-small-text {
  font-size: 0.875em;
}
.is-regular-text {
  font-size: 1em;
}
.is-large-text {
  font-size: 2.25em;
}
.is-larger-text {
  font-size: 3em;
}
.has-drop-cap:not(:focus):first-letter {
  float: left;
  font-size: 8.4em;
  font-style: normal;
  font-weight: 100;
  line-height: 0.68;
  margin: 0.05em 0.1em 0 0;
  text-transform: uppercase;
}
body.rtl .has-drop-cap:not(:focus):first-letter {
  float: none;
  margin-left: 0.1em;
}
p.has-drop-cap.has-background {
  overflow: hidden;
}
:root :where(p.has-background) {
  padding: 1.25em 2.375em;
}
:where(p.has-text-color:not(.has-link-color)) a {
  color: inherit;
}
p.has-text-align-left[style*="writing-mode:vertical-lr"],
p.has-text-align-right[style*="writing-mode:vertical-rl"] {
  rotate: 180deg;
}
.wp-block-post-author {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}
.wp-block-post-author__byline {
  font-size: 0.5em;
  margin-bottom: 0;
  margin-top: 0;
  width: 100%;
}
.wp-block-post-author__avatar {
  margin-right: 1em;
}
.wp-block-post-author__bio {
  font-size: 0.7em;
  margin-bottom: 0.7em;
}
.wp-block-post-author__content {
  flex-basis: 0;
  flex-grow: 1;
}
.wp-block-post-author__name {
  margin: 0;
}
.wp-block-post-author-biography {
  box-sizing: border-box;
}
:where(.wp-block-post-comments-form input:not([type="submit"])),
:where(.wp-block-post-comments-form textarea) {
  border: 1px solid #949494;
  font-family: inherit;
  font-size: 1em;
}
:where(
  .wp-block-post-comments-form
    input:where(:not([type="submit"]):not([type="checkbox"]))
),
:where(.wp-block-post-comments-form textarea) {
  padding: calc(0.667em + 2px);
}
.wp-block-post-comments-form {
  box-sizing: border-box;
}
.wp-block-post-comments-form[style*="font-weight"]
  :where(.comment-reply-title) {
  font-weight: inherit;
}
.wp-block-post-comments-form[style*="font-family"]
  :where(.comment-reply-title) {
  font-family: inherit;
}
.wp-block-post-comments-form[class*="-font-size"] :where(.comment-reply-title),
.wp-block-post-comments-form[style*="font-size"] :where(.comment-reply-title) {
  font-size: inherit;
}
.wp-block-post-comments-form[style*="line-height"]
  :where(.comment-reply-title) {
  line-height: inherit;
}
.wp-block-post-comments-form[style*="font-style"] :where(.comment-reply-title) {
  font-style: inherit;
}
.wp-block-post-comments-form[style*="letter-spacing"]
  :where(.comment-reply-title) {
  letter-spacing: inherit;
}
.wp-block-post-comments-form :where(input[type="submit"]) {
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  overflow-wrap: break-word;
  text-align: center;
}
.wp-block-post-comments-form
  .comment-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="hidden"]),
.wp-block-post-comments-form .comment-form textarea {
  box-sizing: border-box;
  display: block;
  width: 100%;
}
.wp-block-post-comments-form .comment-form-author label,
.wp-block-post-comments-form .comment-form-email label,
.wp-block-post-comments-form .comment-form-url label {
  display: block;
  margin-bottom: 0.25em;
}
.wp-block-post-comments-form .comment-form-cookies-consent {
  display: flex;
  gap: 0.25em;
}
.wp-block-post-comments-form
  .comment-form-cookies-consent
  #wp-comment-cookies-consent {
  margin-top: 0.35em;
}
.wp-block-post-comments-form .comment-reply-title {
  margin-bottom: 0;
}
.wp-block-post-comments-form .comment-reply-title :where(small) {
  font-size: var(--wp--preset--font-size--medium, smaller);
  margin-left: 0.5em;
}
.wp-block-post-comments-count {
  box-sizing: border-box;
}
.wp-block-post-content {
  display: flow-root;
}
.wp-block-post-comments-link,
.wp-block-post-date {
  box-sizing: border-box;
}
:where(.wp-block-post-excerpt) {
  box-sizing: border-box;
  margin-bottom: var(--wp--style--block-gap);
  margin-top: var(--wp--style--block-gap);
}
.wp-block-post-excerpt__excerpt {
  margin-bottom: 0;
  margin-top: 0;
}
.wp-block-post-excerpt__more-text {
  margin-bottom: 0;
  margin-top: var(--wp--style--block-gap);
}
.wp-block-post-excerpt__more-link {
  display: inline-block;
}
.wp-block-post-featured-image {
  margin-left: 0;
  margin-right: 0;
}
.wp-block-post-featured-image a {
  display: block;
  height: 100%;
}
.wp-block-post-featured-image :where(img) {
  box-sizing: border-box;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: 100%;
}
.wp-block-post-featured-image.alignfull img,
.wp-block-post-featured-image.alignwide img {
  width: 100%;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim {
  background-color: #000;
  inset: 0;
  position: absolute;
}
.wp-block-post-featured-image {
  position: relative;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-gradient {
  background-color: initial;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-0 {
  opacity: 0;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-10 {
  opacity: 0.1;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-20 {
  opacity: 0.2;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-30 {
  opacity: 0.3;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-40 {
  opacity: 0.4;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-50 {
  opacity: 0.5;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-60 {
  opacity: 0.6;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-70 {
  opacity: 0.7;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-80 {
  opacity: 0.8;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-90 {
  opacity: 0.9;
}
.wp-block-post-featured-image
  .wp-block-post-featured-image__overlay.has-background-dim-100 {
  opacity: 1;
}
.wp-block-post-featured-image:where(.alignleft, .alignright) {
  width: 100%;
}
.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous {
  display: inline-block;
  margin-right: 1ch;
}
.wp-block-post-navigation-link
  .wp-block-post-navigation-link__arrow-previous:not(.is-arrow-chevron) {
  transform: scaleX(1);
}
.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next {
  display: inline-block;
  margin-left: 1ch;
}
.wp-block-post-navigation-link
  .wp-block-post-navigation-link__arrow-next:not(.is-arrow-chevron) {
  transform: scaleX(1);
}
.wp-block-post-navigation-link.has-text-align-left[style*="writing-mode: vertical-lr"],
.wp-block-post-navigation-link.has-text-align-right[style*="writing-mode: vertical-rl"] {
  rotate: 180deg;
}
.wp-block-post-terms {
  box-sizing: border-box;
}
.wp-block-post-terms .wp-block-post-terms__separator {
  white-space: pre-wrap;
}
.wp-block-post-time-to-read,
.wp-block-post-title {
  box-sizing: border-box;
}
.wp-block-post-title {
  word-break: break-word;
}
.wp-block-post-title :where(a) {
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
}
.wp-block-post-author-name {
  box-sizing: border-box;
}
.wp-block-preformatted {
  box-sizing: border-box;
  white-space: pre-wrap;
}
:where(.wp-block-preformatted.has-background) {
  padding: 1.25em 2.375em;
}
.wp-block-pullquote {
  box-sizing: border-box;
  margin: 0 0 1em;
  overflow-wrap: break-word;
  padding: 4em 0;
  text-align: center;
}
.wp-block-pullquote blockquote,
.wp-block-pullquote p {
  color: inherit;
}
.wp-block-pullquote blockquote {
  margin: 0;
}
.wp-block-pullquote p {
  margin-top: 0;
}
.wp-block-pullquote p:last-child {
  margin-bottom: 0;
}
.wp-block-pullquote.alignleft,
.wp-block-pullquote.alignright {
  max-width: 420px;
}
.wp-block-pullquote cite,
.wp-block-pullquote footer {
  position: relative;
}
.wp-block-pullquote .has-text-color a {
  color: inherit;
}
.wp-block-pullquote.has-text-align-left blockquote {
  text-align: left;
}
.wp-block-pullquote.has-text-align-right blockquote {
  text-align: right;
}
.wp-block-pullquote.has-text-align-center blockquote {
  text-align: center;
}
.wp-block-pullquote.is-style-solid-color {
  border: none;
}
.wp-block-pullquote.is-style-solid-color blockquote {
  margin-left: auto;
  margin-right: auto;
  max-width: 60%;
}
.wp-block-pullquote.is-style-solid-color blockquote p {
  font-size: 2em;
  margin-bottom: 0;
  margin-top: 0;
}
.wp-block-pullquote.is-style-solid-color blockquote cite {
  font-style: normal;
  text-transform: none;
}
.wp-block-pullquote :where(cite) {
  color: inherit;
  display: block;
}
.wp-block-post-template {
  box-sizing: border-box;
  list-style: none;
  margin-bottom: 0;
  margin-top: 0;
  max-width: 100%;
  padding: 0;
}
.wp-block-post-template.is-flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.25em;
}
.wp-block-post-template.is-flex-container > li {
  margin: 0;
  width: 100%;
}
@media (min-width: 600px) {
  .wp-block-post-template.is-flex-container.is-flex-container.columns-2 > li {
    width: calc(50% - 0.625em);
  }
  .wp-block-post-template.is-flex-container.is-flex-container.columns-3 > li {
    width: calc(33.33333% - 0.83333em);
  }
  .wp-block-post-template.is-flex-container.is-flex-container.columns-4 > li {
    width: calc(25% - 0.9375em);
  }
  .wp-block-post-template.is-flex-container.is-flex-container.columns-5 > li {
    width: calc(20% - 1em);
  }
  .wp-block-post-template.is-flex-container.is-flex-container.columns-6 > li {
    width: calc(16.66667% - 1.04167em);
  }
}
@media (max-width: 600px) {
  .wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid {
    grid-template-columns: 1fr;
  }
}
.wp-block-post-template-is-layout-constrained > li > .alignright,
.wp-block-post-template-is-layout-flow > li > .alignright {
  float: right;
  margin-inline-end: 0;
  margin-inline-start: 2em;
}
.wp-block-post-template-is-layout-constrained > li > .alignleft,
.wp-block-post-template-is-layout-flow > li > .alignleft {
  float: left;
  margin-inline-end: 2em;
  margin-inline-start: 0;
}
.wp-block-post-template-is-layout-constrained > li > .aligncenter,
.wp-block-post-template-is-layout-flow > li > .aligncenter {
  margin-inline-end: auto;
  margin-inline-start: auto;
}
.wp-block-query-pagination.is-content-justification-space-between
  > .wp-block-query-pagination-next:last-of-type {
  margin-inline-start: auto;
}
.wp-block-query-pagination.is-content-justification-space-between
  > .wp-block-query-pagination-previous:first-child {
  margin-inline-end: auto;
}
.wp-block-query-pagination .wp-block-query-pagination-previous-arrow {
  display: inline-block;
  margin-right: 1ch;
}
.wp-block-query-pagination
  .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron) {
  transform: scaleX(1);
}
.wp-block-query-pagination .wp-block-query-pagination-next-arrow {
  display: inline-block;
  margin-left: 1ch;
}
.wp-block-query-pagination
  .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron) {
  transform: scaleX(1);
}
.wp-block-query-pagination.aligncenter {
  justify-content: center;
}
.wp-block-query-title,
.wp-block-query-total,
.wp-block-quote {
  box-sizing: border-box;
}
.wp-block-quote {
  overflow-wrap: break-word;
}
.wp-block-quote.is-large:where(:not(.is-style-plain)),
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) {
  margin-bottom: 1em;
  padding: 0 1em;
}
.wp-block-quote.is-large:where(:not(.is-style-plain)) p,
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) p {
  font-size: 1.5em;
  font-style: italic;
  line-height: 1.6;
}
.wp-block-quote.is-large:where(:not(.is-style-plain)) cite,
.wp-block-quote.is-large:where(:not(.is-style-plain)) footer,
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite,
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer {
  font-size: 1.125em;
  text-align: right;
}
.wp-block-quote > cite {
  display: block;
}
.wp-block-read-more {
  display: block;
  width: fit-content;
}
.wp-block-read-more:where(:not([style*="text-decoration"])) {
  text-decoration: none;
}
.wp-block-read-more:where(:not([style*="text-decoration"])):active,
.wp-block-read-more:where(:not([style*="text-decoration"])):focus {
  text-decoration: none;
}
ul.wp-block-rss.alignleft {
  margin-right: 2em;
}
ul.wp-block-rss.alignright {
  margin-left: 2em;
}
ul.wp-block-rss.is-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
ul.wp-block-rss.is-grid li {
  margin: 0 1em 1em 0;
  width: 100%;
}
@media (min-width: 600px) {
  ul.wp-block-rss.columns-2 li {
    width: calc(50% - 1em);
  }
  ul.wp-block-rss.columns-3 li {
    width: calc(33.33333% - 1em);
  }
  ul.wp-block-rss.columns-4 li {
    width: calc(25% - 1em);
  }
  ul.wp-block-rss.columns-5 li {
    width: calc(20% - 1em);
  }
  ul.wp-block-rss.columns-6 li {
    width: calc(16.66667% - 1em);
  }
}
.wp-block-rss__item-author,
.wp-block-rss__item-publish-date {
  display: block;
  font-size: 0.8125em;
}
.wp-block-rss {
  box-sizing: border-box;
  list-style: none;
  padding: 0;
}
.wp-block-search__button {
  margin-left: 10px;
  word-break: normal;
}
.wp-block-search__button.has-icon {
  line-height: 0;
}
.wp-block-search__button svg {
  height: 1.25em;
  min-height: 24px;
  min-width: 24px;
  width: 1.25em;
  fill: currentColor;
  vertical-align: text-bottom;
}
:where(.wp-block-search__button) {
  border: 1px solid #ccc;
  padding: 6px 10px;
}
.wp-block-search__inside-wrapper {
  display: flex;
  flex: auto;
  flex-wrap: nowrap;
  max-width: 100%;
}
.wp-block-search__label {
  width: 100%;
}
.wp-block-search.wp-block-search__button-only .wp-block-search__button {
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  margin-left: 0;
  max-width: 100%;
}
.wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper {
  min-width: 0 !important;
  transition-property: width;
}
.wp-block-search.wp-block-search__button-only .wp-block-search__input {
  flex-basis: 100%;
  transition-duration: 0.3s;
}
.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden,
.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden
  .wp-block-search__inside-wrapper {
  overflow: hidden;
}
.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden
  .wp-block-search__input {
  border-left-width: 0 !important;
  border-right-width: 0 !important;
  flex-basis: 0;
  flex-grow: 0;
  margin: 0;
  min-width: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 0 !important;
}
:where(.wp-block-search__input) {
  appearance: none;
  border: 1px solid #949494;
  flex-grow: 1;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-left: 0;
  margin-right: 0;
  min-width: 3rem;
  padding: 8px;
  text-decoration: unset !important;
  text-transform: inherit;
}
:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
  background-color: #fff;
  border: 1px solid #949494;
  box-sizing: border-box;
  padding: 4px;
}
:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper)
  .wp-block-search__input {
  border: none;
  border-radius: 0;
  padding: 0 4px;
}
:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper)
  .wp-block-search__input:focus {
  outline: none;
}
:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper)
  :where(.wp-block-search__button) {
  padding: 4px 8px;
}
.wp-block-search.aligncenter .wp-block-search__inside-wrapper {
  margin: auto;
}
.wp-block[data-align="right"]
  .wp-block-search.wp-block-search__button-only
  .wp-block-search__inside-wrapper {
  float: right;
}
.wp-block-separator {
  border: none;
  border-top: 2px solid;
}
:root :where(.wp-block-separator.is-style-dots) {
  height: auto;
  line-height: 1;
  text-align: center;
}
:root :where(.wp-block-separator.is-style-dots):before {
  color: currentColor;
  content: "···";
  font-family: serif;
  font-size: 1.5em;
  letter-spacing: 2em;
  padding-left: 2em;
}
.wp-block-separator.is-style-dots {
  background: none !important;
  border: none !important;
}
.wp-block-site-logo {
  box-sizing: border-box;
  line-height: 0;
}
.wp-block-site-logo a {
  display: inline-block;
  line-height: 0;
}
.wp-block-site-logo.is-default-size img {
  height: auto;
  width: 120px;
}
.wp-block-site-logo img {
  height: auto;
  max-width: 100%;
}
.wp-block-site-logo a,
.wp-block-site-logo img {
  border-radius: inherit;
}
.wp-block-site-logo.aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
:root :where(.wp-block-site-logo.is-style-rounded) {
  border-radius: 9999px;
}
.wp-block-site-tagline,
.wp-block-site-title {
  box-sizing: border-box;
}
.wp-block-site-title :where(a) {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: inherit;
}
.wp-block-social-links {
  background: none;
  box-sizing: border-box;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  text-indent: 0;
}
.wp-block-social-links .wp-social-link a,
.wp-block-social-links .wp-social-link a:hover {
  border-bottom: 0;
  box-shadow: none;
  text-decoration: none;
}
.wp-block-social-links .wp-social-link svg {
  height: 1em;
  width: 1em;
}
.wp-block-social-links .wp-social-link span:not(.screen-reader-text) {
  font-size: 0.65em;
  margin-left: 0.5em;
  margin-right: 0.5em;
}
.wp-block-social-links.has-small-icon-size {
  font-size: 16px;
}
.wp-block-social-links,
.wp-block-social-links.has-normal-icon-size {
  font-size: 24px;
}
.wp-block-social-links.has-large-icon-size {
  font-size: 36px;
}
.wp-block-social-links.has-huge-icon-size {
  font-size: 48px;
}
.wp-block-social-links.aligncenter {
  display: flex;
  justify-content: center;
}
.wp-block-social-links.alignright {
  justify-content: flex-end;
}
.wp-block-social-link {
  border-radius: 9999px;
  display: block;
}
@media not (prefers-reduced-motion) {
  .wp-block-social-link {
    transition: transform 0.1s ease;
  }
}
.wp-block-social-link {
  height: auto;
}
.wp-block-social-link a {
  align-items: center;
  display: flex;
  line-height: 0;
}
.wp-block-social-link:hover {
  transform: scale(1.1);
}
.wp-block-social-links .wp-block-social-link.wp-social-link {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.wp-block-social-links
  .wp-block-social-link.wp-social-link
  .wp-block-social-link-anchor,
.wp-block-social-links
  .wp-block-social-link.wp-social-link
  .wp-block-social-link-anchor
  svg,
.wp-block-social-links
  .wp-block-social-link.wp-social-link
  .wp-block-social-link-anchor:active,
.wp-block-social-links
  .wp-block-social-link.wp-social-link
  .wp-block-social-link-anchor:hover,
.wp-block-social-links
  .wp-block-social-link.wp-social-link
  .wp-block-social-link-anchor:visited {
  color: currentColor;
  fill: currentColor;
}
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link {
  background-color: #f0f0f0;
  color: #444;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-amazon {
  background-color: #f90;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-bandcamp {
  background-color: #1ea0c3;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-behance {
  background-color: #0757fe;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-bluesky {
  background-color: #0a7aff;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-codepen {
  background-color: #1e1f26;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-deviantart {
  background-color: #02e49b;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-discord {
  background-color: #5865f2;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-dribbble {
  background-color: #e94c89;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-dropbox {
  background-color: #4280ff;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy {
  background-color: #f45800;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-facebook {
  background-color: #0866ff;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-fivehundredpx {
  background-color: #000;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-flickr {
  background-color: #0461dd;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-foursquare {
  background-color: #e65678;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-github {
  background-color: #24292d;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-goodreads {
  background-color: #eceadd;
  color: #382110;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-google {
  background-color: #ea4434;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-gravatar {
  background-color: #1d4fc4;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-instagram {
  background-color: #f00075;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-lastfm {
  background-color: #e21b24;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-linkedin {
  background-color: #0d66c2;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-mastodon {
  background-color: #3288d4;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-medium {
  background-color: #000;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-meetup {
  background-color: #f6405f;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-patreon {
  background-color: #000;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-pinterest {
  background-color: #e60122;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-pocket {
  background-color: #ef4155;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-reddit {
  background-color: #ff4500;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype {
  background-color: #0478d7;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-snapchat {
  background-color: #fefc00;
  color: #fff;
  stroke: #000;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-soundcloud {
  background-color: #ff5600;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-spotify {
  background-color: #1bd760;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-telegram {
  background-color: #2aabee;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-threads {
  background-color: #000;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-tiktok {
  background-color: #000;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-tumblr {
  background-color: #011835;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-twitch {
  background-color: #6440a4;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-twitter {
  background-color: #1da1f2;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo {
  background-color: #1eb7ea;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk {
  background-color: #4680c2;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-wordpress {
  background-color: #3499cd;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-whatsapp {
  background-color: #25d366;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x {
  background-color: #000;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp {
  background-color: #d32422;
  color: #fff;
}
:where(.wp-block-social-links:not(.is-style-logos-only))
  .wp-social-link-youtube {
  background-color: red;
  color: #fff;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link {
  background: none;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg {
  height: 1.25em;
  width: 1.25em;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon {
  color: #f90;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp {
  color: #1ea0c3;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance {
  color: #0757fe;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky {
  color: #0a7aff;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen {
  color: #1e1f26;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart {
  color: #02e49b;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-discord {
  color: #5865f2;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble {
  color: #e94c89;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox {
  color: #4280ff;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy {
  color: #f45800;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook {
  color: #0866ff;
}
:where(.wp-block-social-links.is-style-logos-only)
  .wp-social-link-fivehundredpx {
  color: #000;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr {
  color: #0461dd;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare {
  color: #e65678;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github {
  color: #24292d;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads {
  color: #382110;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google {
  color: #ea4434;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar {
  color: #1d4fc4;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram {
  color: #f00075;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm {
  color: #e21b24;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin {
  color: #0d66c2;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon {
  color: #3288d4;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium {
  color: #000;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup {
  color: #f6405f;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon {
  color: #000;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest {
  color: #e60122;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket {
  color: #ef4155;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit {
  color: #ff4500;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype {
  color: #0478d7;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat {
  color: #fff;
  stroke: #000;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud {
  color: #ff5600;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify {
  color: #1bd760;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram {
  color: #2aabee;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads {
  color: #000;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok {
  color: #000;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr {
  color: #011835;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch {
  color: #6440a4;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter {
  color: #1da1f2;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo {
  color: #1eb7ea;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk {
  color: #4680c2;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp {
  color: #25d366;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress {
  color: #3499cd;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x {
  color: #000;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp {
  color: #d32422;
}
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube {
  color: red;
}
.wp-block-social-links.is-style-pill-shape .wp-social-link {
  width: auto;
}
:root :where(.wp-block-social-links .wp-social-link a) {
  padding: 0.25em;
}
:root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a) {
  padding: 0;
}
:root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a) {
  padding-left: 0.6666666667em;
  padding-right: 0.6666666667em;
}
.wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color)
  .wp-social-link-snapchat
  .wp-block-social-link-label {
  color: #000;
}
.wp-block-spacer {
  clear: both;
}
.wp-block-tag-cloud {
  box-sizing: border-box;
}
.wp-block-tag-cloud.aligncenter {
  justify-content: center;
  text-align: center;
}
.wp-block-tag-cloud a {
  display: inline-block;
  margin-right: 5px;
}
.wp-block-tag-cloud span {
  display: inline-block;
  margin-left: 5px;
  text-decoration: none;
}
:root :where(.wp-block-tag-cloud.is-style-outline) {
  display: flex;
  flex-wrap: wrap;
  gap: 1ch;
}
:root :where(.wp-block-tag-cloud.is-style-outline a) {
  border: 1px solid;
  font-size: unset !important;
  margin-right: 0;
  padding: 1ch 2ch;
  text-decoration: none !important;
}
.wp-block-table {
  overflow-x: auto;
}
.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}
.wp-block-table thead {
  border-bottom: 3px solid;
}
.wp-block-table tfoot {
  border-top: 3px solid;
}
.wp-block-table td,
.wp-block-table th {
  border: 1px solid;
  padding: 0.5em;
}
.wp-block-table .has-fixed-layout {
  table-layout: fixed;
  width: 100%;
}
.wp-block-table .has-fixed-layout td,
.wp-block-table .has-fixed-layout th {
  word-break: break-word;
}
.wp-block-table.aligncenter,
.wp-block-table.alignleft,
.wp-block-table.alignright {
  display: table;
  width: auto;
}
.wp-block-table.aligncenter td,
.wp-block-table.aligncenter th,
.wp-block-table.alignleft td,
.wp-block-table.alignleft th,
.wp-block-table.alignright td,
.wp-block-table.alignright th {
  word-break: break-word;
}
.wp-block-table .has-subtle-light-gray-background-color {
  background-color: #f3f4f5;
}
.wp-block-table .has-subtle-pale-green-background-color {
  background-color: #e9fbe5;
}
.wp-block-table .has-subtle-pale-blue-background-color {
  background-color: #e7f5fe;
}
.wp-block-table .has-subtle-pale-pink-background-color {
  background-color: #fcf0ef;
}
.wp-block-table.is-style-stripes {
  background-color: initial;
  border-collapse: inherit;
  border-spacing: 0;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #f0f0f0;
}
.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color
  tbody
  tr:nth-child(odd) {
  background-color: #f3f4f5;
}
.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color
  tbody
  tr:nth-child(odd) {
  background-color: #e9fbe5;
}
.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color
  tbody
  tr:nth-child(odd) {
  background-color: #e7f5fe;
}
.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color
  tbody
  tr:nth-child(odd) {
  background-color: #fcf0ef;
}
.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th {
  border-color: #0000;
}
.wp-block-table.is-style-stripes {
  border-bottom: 1px solid #f0f0f0;
}
.wp-block-table .has-border-color td,
.wp-block-table .has-border-color th,
.wp-block-table .has-border-color tr,
.wp-block-table .has-border-color > * {
  border-color: inherit;
}
.wp-block-table table[style*="border-top-color"] tr:first-child,
.wp-block-table table[style*="border-top-color"] tr:first-child td,
.wp-block-table table[style*="border-top-color"] tr:first-child th,
.wp-block-table table[style*="border-top-color"] > *,
.wp-block-table table[style*="border-top-color"] > * td,
.wp-block-table table[style*="border-top-color"] > * th {
  border-top-color: inherit;
}
.wp-block-table table[style*="border-top-color"] tr:not(:first-child) {
  border-top-color: initial;
}
.wp-block-table table[style*="border-right-color"] td:last-child,
.wp-block-table table[style*="border-right-color"] th,
.wp-block-table table[style*="border-right-color"] tr,
.wp-block-table table[style*="border-right-color"] > * {
  border-right-color: inherit;
}
.wp-block-table table[style*="border-bottom-color"] tr:last-child,
.wp-block-table table[style*="border-bottom-color"] tr:last-child td,
.wp-block-table table[style*="border-bottom-color"] tr:last-child th,
.wp-block-table table[style*="border-bottom-color"] > *,
.wp-block-table table[style*="border-bottom-color"] > * td,
.wp-block-table table[style*="border-bottom-color"] > * th {
  border-bottom-color: inherit;
}
.wp-block-table table[style*="border-bottom-color"] tr:not(:last-child) {
  border-bottom-color: initial;
}
.wp-block-table table[style*="border-left-color"] td:first-child,
.wp-block-table table[style*="border-left-color"] th,
.wp-block-table table[style*="border-left-color"] tr,
.wp-block-table table[style*="border-left-color"] > * {
  border-left-color: inherit;
}
.wp-block-table table[style*="border-style"] td,
.wp-block-table table[style*="border-style"] th,
.wp-block-table table[style*="border-style"] tr,
.wp-block-table table[style*="border-style"] > * {
  border-style: inherit;
}
.wp-block-table table[style*="border-width"] td,
.wp-block-table table[style*="border-width"] th,
.wp-block-table table[style*="border-width"] tr,
.wp-block-table table[style*="border-width"] > * {
  border-style: inherit;
  border-width: inherit;
}
:root :where(.wp-block-table-of-contents) {
  box-sizing: border-box;
}
.wp-block-term-count {
  box-sizing: border-box;
}
:where(.wp-block-term-description) {
  box-sizing: border-box;
  margin-bottom: var(--wp--style--block-gap);
  margin-top: var(--wp--style--block-gap);
}
.wp-block-term-description p {
  margin-bottom: 0;
  margin-top: 0;
}
.wp-block-term-name {
  box-sizing: border-box;
}
.wp-block-term-template {
  box-sizing: border-box;
  list-style: none;
  margin-bottom: 0;
  margin-top: 0;
  max-width: 100%;
  padding: 0;
}
.wp-block-text-columns,
.wp-block-text-columns.aligncenter {
  display: flex;
}
.wp-block-text-columns .wp-block-column {
  margin: 0 1em;
  padding: 0;
}
.wp-block-text-columns .wp-block-column:first-child {
  margin-left: 0;
}
.wp-block-text-columns .wp-block-column:last-child {
  margin-right: 0;
}
.wp-block-text-columns.columns-2 .wp-block-column {
  width: 50%;
}
.wp-block-text-columns.columns-3 .wp-block-column {
  width: 33.3333333333%;
}
.wp-block-text-columns.columns-4 .wp-block-column {
  width: 25%;
}
pre.wp-block-verse {
  overflow: auto;
  white-space: pre-wrap;
}
:where(pre.wp-block-verse) {
  font-family: inherit;
}
.wp-block-video {
  box-sizing: border-box;
}
.wp-block-video video {
  height: auto;
  vertical-align: middle;
  width: 100%;
}
@supports (position: sticky) {
  .wp-block-video [poster] {
    object-fit: cover;
  }
}
.wp-block-video.aligncenter {
  text-align: center;
}
.wp-block-video :where(figcaption) {
  margin-bottom: 1em;
  margin-top: 0.5em;
}
.editor-styles-wrapper,
.entry-content {
  counter-reset: footnotes;
}
a[data-fn].fn {
  counter-increment: footnotes;
  display: inline-flex;
  font-size: smaller;
  text-decoration: none;
  text-indent: -9999999px;
  vertical-align: super;
}
a[data-fn].fn:after {
  content: "[" counter(footnotes) "]";
  float: left;
  text-indent: 0;
}
:root {
  --wp-block-synced-color: #7a00df;
  --wp-block-synced-color--rgb: 122, 0, 223;
  --wp-bound-block-color: var(--wp-block-synced-color);
  --wp-editor-canvas-background: #ddd;
  --wp-admin-theme-color: #007cba;
  --wp-admin-theme-color--rgb: 0, 124, 186;
  --wp-admin-theme-color-darker-10: #006ba1;
  --wp-admin-theme-color-darker-10--rgb: 0, 107, 160.5;
  --wp-admin-theme-color-darker-20: #005a87;
  --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
  --wp-admin-border-width-focus: 2px;
}
@media (min-resolution: 192dpi) {
  :root {
    --wp-admin-border-width-focus: 1.5px;
  }
}
.wp-element-button {
  cursor: pointer;
}
:root .has-very-light-gray-background-color {
  background-color: #eee;
}
:root .has-very-dark-gray-background-color {
  background-color: #313131;
}
:root .has-very-light-gray-color {
  color: #eee;
}
:root .has-very-dark-gray-color {
  color: #313131;
}
:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
  background: linear-gradient(135deg, #00d084, #0693e3);
}
:root .has-purple-crush-gradient-background {
  background: linear-gradient(135deg, #34e2e4, #4721fb 50%, #ab1dfe);
}
:root .has-hazy-dawn-gradient-background {
  background: linear-gradient(135deg, #faaca8, #dad0ec);
}
:root .has-subdued-olive-gradient-background {
  background: linear-gradient(135deg, #fafae1, #67a671);
}
:root .has-atomic-cream-gradient-background {
  background: linear-gradient(135deg, #fdd79a, #004a59);
}
:root .has-nightshade-gradient-background {
  background: linear-gradient(135deg, #330968, #31cdcf);
}
:root .has-midnight-gradient-background {
  background: linear-gradient(135deg, #020381, #2874fc);
}
:root {
  --wp--preset--font-size--normal: 16px;
  --wp--preset--font-size--huge: 42px;
}
.has-regular-font-size {
  font-size: 1em;
}
.has-larger-font-size {
  font-size: 2.625em;
}
.has-normal-font-size {
  font-size: var(--wp--preset--font-size--normal);
}
.has-huge-font-size {
  font-size: var(--wp--preset--font-size--huge);
}
.has-text-align-center {
  text-align: center;
}
.has-text-align-left {
  text-align: left;
}
.has-text-align-right {
  text-align: right;
}
.has-fit-text {
  white-space: nowrap !important;
}
#end-resizable-editor-section {
  display: none;
}
.aligncenter {
  clear: both;
}
.items-justified-left {
  justify-content: flex-start;
}
.items-justified-center {
  justify-content: center;
}
.items-justified-right {
  justify-content: flex-end;
}
.items-justified-space-between {
  justify-content: space-between;
}
.screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #ddd;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
html :where(.has-border-color) {
  border-style: solid;
}
html :where([style*="border-top-color"]) {
  border-top-style: solid;
}
html :where([style*="border-right-color"]) {
  border-right-style: solid;
}
html :where([style*="border-bottom-color"]) {
  border-bottom-style: solid;
}
html :where([style*="border-left-color"]) {
  border-left-style: solid;
}
html :where([style*="border-width"]) {
  border-style: solid;
}
html :where([style*="border-top-width"]) {
  border-top-style: solid;
}
html :where([style*="border-right-width"]) {
  border-right-style: solid;
}
html :where([style*="border-bottom-width"]) {
  border-bottom-style: solid;
}
html :where([style*="border-left-width"]) {
  border-left-style: solid;
}
html :where(img[class*="wp-image-"]) {
  height: auto;
  max-width: 100%;
}
:where(figure) {
  margin: 0 0 1em;
}
html :where(.is-position-sticky) {
  --wp-admin--admin-bar--position-offset: var(
    --wp-admin--admin-bar--height,
    0px
  );
}
@media screen and (max-width: 600px) {
  html :where(.is-position-sticky) {
    --wp-admin--admin-bar--position-offset: 0px;
  }
}
/*! This file is auto-generated */
.wp-block-button__link {
  color: #fff;
  background-color: #32373c;
  border-radius: 9999px;
  box-shadow: none;
  text-decoration: none;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  font-size: 1.125em;
}
.wp-block-file__button {
  background: #32373c;
  color: #fff;
  text-decoration: none;
}
:root {
  --wp--preset--aspect-ratio--square: 1;
  --wp--preset--aspect-ratio--4-3: 4/3;
  --wp--preset--aspect-ratio--3-4: 3/4;
  --wp--preset--aspect-ratio--3-2: 3/2;
  --wp--preset--aspect-ratio--2-3: 2/3;
  --wp--preset--aspect-ratio--16-9: 16/9;
  --wp--preset--aspect-ratio--9-16: 9/16;
  --wp--preset--color--black: #000000;
  --wp--preset--color--cyan-bluish-gray: #abb8c3;
  --wp--preset--color--white: #ffffff;
  --wp--preset--color--pale-pink: #f78da7;
  --wp--preset--color--vivid-red: #cf2e2e;
  --wp--preset--color--luminous-vivid-orange: #ff6900;
  --wp--preset--color--luminous-vivid-amber: #fcb900;
  --wp--preset--color--light-green-cyan: #7bdcb5;
  --wp--preset--color--vivid-green-cyan: #00d084;
  --wp--preset--color--pale-cyan-blue: #8ed1fc;
  --wp--preset--color--vivid-cyan-blue: #0693e3;
  --wp--preset--color--vivid-purple: #9b51e0;
  --wp--preset--color--dark-gray: #28303d;
  --wp--preset--color--gray: #39414d;
  --wp--preset--color--green: #d1e4dd;
  --wp--preset--color--blue: #d1dfe4;
  --wp--preset--color--purple: #d1d1e4;
  --wp--preset--color--red: #e4d1d1;
  --wp--preset--color--orange: #e4dad1;
  --wp--preset--color--yellow: #eeeadd;
  --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(
    135deg,
    rgb(6, 147, 227) 0%,
    rgb(155, 81, 224) 100%
  );
  --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(
    135deg,
    rgb(122, 220, 180) 0%,
    rgb(0, 208, 130) 100%
  );
  --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(
    135deg,
    rgb(252, 185, 0) 0%,
    rgb(255, 105, 0) 100%
  );
  --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(
    135deg,
    rgb(255, 105, 0) 0%,
    rgb(207, 46, 46) 100%
  );
  --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(
    135deg,
    rgb(238, 238, 238) 0%,
    rgb(169, 184, 195) 100%
  );
  --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(
    135deg,
    rgb(74, 234, 220) 0%,
    rgb(151, 120, 209) 20%,
    rgb(207, 42, 186) 40%,
    rgb(238, 44, 130) 60%,
    rgb(251, 105, 98) 80%,
    rgb(254, 248, 76) 100%
  );
  --wp--preset--gradient--blush-light-purple: linear-gradient(
    135deg,
    rgb(255, 206, 236) 0%,
    rgb(152, 150, 240) 100%
  );
  --wp--preset--gradient--blush-bordeaux: linear-gradient(
    135deg,
    rgb(254, 205, 165) 0%,
    rgb(254, 45, 45) 50%,
    rgb(107, 0, 62) 100%
  );
  --wp--preset--gradient--luminous-dusk: linear-gradient(
    135deg,
    rgb(255, 203, 112) 0%,
    rgb(199, 81, 192) 50%,
    rgb(65, 88, 208) 100%
  );
  --wp--preset--gradient--pale-ocean: linear-gradient(
    135deg,
    rgb(255, 245, 203) 0%,
    rgb(182, 227, 212) 50%,
    rgb(51, 167, 181) 100%
  );
  --wp--preset--gradient--electric-grass: linear-gradient(
    135deg,
    rgb(202, 248, 128) 0%,
    rgb(113, 206, 126) 100%
  );
  --wp--preset--gradient--midnight: linear-gradient(
    135deg,
    rgb(2, 3, 129) 0%,
    rgb(40, 116, 252) 100%
  );
  --wp--preset--gradient--purple-to-yellow: linear-gradient(
    160deg,
    #d1d1e4 0%,
    #eeeadd 100%
  );
  --wp--preset--gradient--yellow-to-purple: linear-gradient(
    160deg,
    #eeeadd 0%,
    #d1d1e4 100%
  );
  --wp--preset--gradient--green-to-yellow: linear-gradient(
    160deg,
    #d1e4dd 0%,
    #eeeadd 100%
  );
  --wp--preset--gradient--yellow-to-green: linear-gradient(
    160deg,
    #eeeadd 0%,
    #d1e4dd 100%
  );
  --wp--preset--gradient--red-to-yellow: linear-gradient(
    160deg,
    #e4d1d1 0%,
    #eeeadd 100%
  );
  --wp--preset--gradient--yellow-to-red: linear-gradient(
    160deg,
    #eeeadd 0%,
    #e4d1d1 100%
  );
  --wp--preset--gradient--purple-to-red: linear-gradient(
    160deg,
    #d1d1e4 0%,
    #e4d1d1 100%
  );
  --wp--preset--gradient--red-to-purple: linear-gradient(
    160deg,
    #e4d1d1 0%,
    #d1d1e4 100%
  );
  --wp--preset--font-size--small: 18px;
  --wp--preset--font-size--medium: 20px;
  --wp--preset--font-size--large: 24px;
  --wp--preset--font-size--x-large: 42px;
  --wp--preset--font-size--extra-small: 16px;
  --wp--preset--font-size--normal: 20px;
  --wp--preset--font-size--extra-large: 40px;
  --wp--preset--font-size--huge: 96px;
  --wp--preset--font-size--gigantic: 144px;
  --wp--preset--spacing--20: 0.44rem;
  --wp--preset--spacing--30: 0.67rem;
  --wp--preset--spacing--40: 1rem;
  --wp--preset--spacing--50: 1.5rem;
  --wp--preset--spacing--60: 2.25rem;
  --wp--preset--spacing--70: 3.38rem;
  --wp--preset--spacing--80: 5.06rem;
  --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
  --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--outlined:
    6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);
  --wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);
}
:where(.is-layout-flex) {
  gap: 0.5em;
}
:where(.is-layout-grid) {
  gap: 0.5em;
}
body .is-layout-flex {
  display: flex;
}
.is-layout-flex {
  flex-wrap: wrap;
  align-items: center;
}
.is-layout-flex > :is(*, div) {
  margin: 0;
}
body .is-layout-grid {
  display: grid;
}
.is-layout-grid > :is(*, div) {
  margin: 0;
}
:where(.wp-block-columns.is-layout-flex) {
  gap: 2em;
}
:where(.wp-block-columns.is-layout-grid) {
  gap: 2em;
}
:where(.wp-block-post-template.is-layout-flex) {
  gap: 1.25em;
}
:where(.wp-block-post-template.is-layout-grid) {
  gap: 1.25em;
}
.has-black-color {
  color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-color {
  color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-color {
  color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-color {
  color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-color {
  color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-color {
  color: var(--wp--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-color {
  color: var(--wp--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-color {
  color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-color {
  color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-color {
  color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-color {
  color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-color {
  color: var(--wp--preset--color--vivid-purple) !important;
}
.has-black-background-color {
  background-color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-background-color {
  background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-background-color {
  background-color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-background-color {
  background-color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-background-color {
  background-color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-background-color {
  background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-background-color {
  background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-background-color {
  background-color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-background-color {
  background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-background-color {
  background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-background-color {
  background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-background-color {
  background-color: var(--wp--preset--color--vivid-purple) !important;
}
.has-black-border-color {
  border-color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-border-color {
  border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-border-color {
  border-color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-border-color {
  border-color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-border-color {
  border-color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-border-color {
  border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-border-color {
  border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-border-color {
  border-color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-border-color {
  border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-border-color {
  border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-border-color {
  border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-border-color {
  border-color: var(--wp--preset--color--vivid-purple) !important;
}
.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
  background: var(
    --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple
  ) !important;
}
.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
  background: var(
    --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan
  ) !important;
}
.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
  background: var(
    --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange
  ) !important;
}
.has-luminous-vivid-orange-to-vivid-red-gradient-background {
  background: var(
    --wp--preset--gradient--luminous-vivid-orange-to-vivid-red
  ) !important;
}
.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
  background: var(
    --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray
  ) !important;
}
.has-cool-to-warm-spectrum-gradient-background {
  background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}
.has-blush-light-purple-gradient-background {
  background: var(--wp--preset--gradient--blush-light-purple) !important;
}
.has-blush-bordeaux-gradient-background {
  background: var(--wp--preset--gradient--blush-bordeaux) !important;
}
.has-luminous-dusk-gradient-background {
  background: var(--wp--preset--gradient--luminous-dusk) !important;
}
.has-pale-ocean-gradient-background {
  background: var(--wp--preset--gradient--pale-ocean) !important;
}
.has-electric-grass-gradient-background {
  background: var(--wp--preset--gradient--electric-grass) !important;
}
.has-midnight-gradient-background {
  background: var(--wp--preset--gradient--midnight) !important;
}
.has-small-font-size {
  font-size: var(--wp--preset--font-size--small) !important;
}
.has-medium-font-size {
  font-size: var(--wp--preset--font-size--medium) !important;
}
.has-large-font-size {
  font-size: var(--wp--preset--font-size--large) !important;
}
.has-x-large-font-size {
  font-size: var(--wp--preset--font-size--x-large) !important;
}
.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}
.wpcf7 .hidden-fields-container {
  display: none;
}
.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
}
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
  display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232;
}
.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
}
.wpcf7-form-control-wrap {
  position: relative;
}
.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: 400;
  display: block;
}
.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: relative;
  top: -2ex;
  left: 1em;
  z-index: 100;
  border: 1px solid #dc3232;
  background: #fff;
  padding: 0.2em 0.8em;
  width: 24em;
}
.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: " ";
}
.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
}
form.submitting .wpcf7-spinner {
  visibility: visible;
}
.wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@media (prefers-reduced-motion: reduce) {
  .wpcf7-spinner::before {
    animation-name: blink;
    animation-duration: 2000ms;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.wpcf7 [inert] {
  opacity: 0.5;
}
.wpcf7 input[type="file"] {
  cursor: pointer;
}
.wpcf7 input[type="file"]:disabled {
  cursor: default;
}
.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}
.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  direction: ltr;
}
.wpcf7-reflection > output {
  display: list-item;
  list-style: none;
}
.wpcf7-reflection > output[hidden] {
  display: none;
}
#cookie-notice {
  position: fixed;
  min-width: 100%;
  height: auto;
  z-index: 100000;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 20px;
  left: 0;
  text-align: center;
  font-weight: 400;
  font-family:
    -apple-system, BlinkMacSystemFont, Arial, Roboto, "Helvetica Neue",
    sans-serif;
}
#cookie-notice,
#cookie-notice * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cookie-notice.cn-animated {
  -webkit-animation-duration: 0.5s !important;
  animation-duration: 0.5s !important;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#cookie-notice.cn-animated.cn-effect-none {
  -webkit-animation-duration: 1ms !important;
  animation-duration: 1ms !important;
}
#cookie-notice .cookie-notice-container {
  display: block;
}
#cookie-notice.cookie-notice-hidden .cookie-notice-container {
  display: none;
}
#cookie-notice .cookie-revoke-container {
  display: block;
}
#cookie-notice.cookie-revoke-hidden .cookie-revoke-container {
  display: none;
}
.cn-position-top {
  top: 0;
}
.cn-position-bottom {
  bottom: 0;
}
.cookie-notice-container {
  padding: 15px 30px;
  text-align: center;
  width: 100%;
  z-index: 2;
}
.cookie-revoke-container {
  padding: 15px 30px;
  width: 100%;
  z-index: 1;
}
.cn-close-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  margin: -10px 0 0 0;
  width: 15px;
  height: 15px;
  opacity: 0.5;
  padding: 10px;
  border: none;
  outline: 0;
  background: 0 0;
  box-shadow: none;
  cursor: pointer;
}
.cn-close-icon:focus,
.cn-close-icon:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.cn-close-icon:hover {
  opacity: 1;
}
.cn-close-icon:after,
.cn-close-icon:before {
  position: absolute;
  content: " ";
  height: 15px;
  width: 2px;
  top: 3px;
  background-color: grey;
}
.cn-close-icon:before {
  transform: rotate(45deg);
}
.cn-close-icon:after {
  transform: rotate(-45deg);
}
#cookie-notice .cn-revoke-cookie {
  margin: 0;
}
#cookie-notice .cn-button {
  margin: 0 0 0 10px;
  display: inline-block;
}
#cookie-notice .cn-button:not(.cn-button-custom) {
  font-family:
    -apple-system, BlinkMacSystemFont, Arial, Roboto, "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.25px;
  line-height: 20px;
  margin: 0 0 0 10px;
  text-align: center;
  text-transform: none;
  display: inline-block;
  cursor: pointer;
  touch-action: manipulation;
  white-space: nowrap;
  outline: 0;
  box-shadow: none;
  text-shadow: none;
  border: none;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  border-radius: 2rem;
  text-decoration: none;
  padding: 8.5px 10px;
  line-height: 1;
  color: inherit;
}
.cn-text-container {
  margin: 0 0 6px 0;
}
.cn-buttons-container,
.cn-text-container {
  display: inline-block;
}
.cn-compliance-warning {
  display: block;
  color: #f5a623 !important;
  font-size: 12px;
  line-height: 18px;
  margin: 4px 0 8px 0;
}
.cn-compliance-warning .cn-warning-icon {
  color: #f5a623 !important;
  margin-right: 4px;
}
.cn-compliance-warning strong {
  color: #f5a623 !important;
}
.cn-compliance-warning a {
  color: #f5a623 !important;
  text-decoration: underline;
}
.cn-compliance-warning a:hover {
  color: #ffb84d !important;
}
#cookie-notice.cookie-notice-visible.cn-effect-none,
#cookie-notice.cookie-revoke-visible.cn-effect-none {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
#cookie-notice.cn-effect-none {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
#cookie-notice.cookie-notice-visible.cn-effect-fade,
#cookie-notice.cookie-revoke-visible.cn-effect-fade {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
#cookie-notice.cn-effect-fade {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
#cookie-notice.cookie-notice-visible.cn-effect-slide,
#cookie-notice.cookie-revoke-visible.cn-effect-slide {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
#cookie-notice.cn-effect-slide {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
#cookie-notice.cookie-notice-visible.cn-position-top.cn-effect-slide,
#cookie-notice.cookie-revoke-visible.cn-position-top.cn-effect-slide {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
#cookie-notice.cn-position-top.cn-effect-slide {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@media all and (max-width: 900px) {
  .cookie-notice-container #cn-notice-text {
    display: block;
  }
  .cookie-notice-container #cn-notice-buttons {
    display: block;
  }
  #cookie-notice .cn-button {
    margin: 0 5px 5px 5px;
  }
}
@media all and (max-width: 480px) {
  .cookie-notice-container,
  .cookie-revoke-container {
    padding: 15px 25px;
  }
}

/* My css */

.acc-content {
  display: none;
}

.accbox.active .acc-content {
  display: block;
}

.ft-branding img {
  width: 25%;
}

.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.projects-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.projects-grid a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.projects-grid a:hover img {
  transform: scale(1.05);
}

/* No Images Error Message */
.no-images-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 40px 20px;
}

.no-images-inner {
  text-align: center;
  background: #f9f6f2;
  border: 2px dashed #c8b89a;
  border-radius: 16px;
  padding: 60px 50px;
  max-width: 500px;
  width: 100%;
}

.no-img-icon {
  font-size: 52px;
  display: block;
  margin-bottom: 18px;
}

.no-images-inner h3 {
  font-size: 22px;
  font-weight: 700;
  color: #3a3a3a;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
}

.no-images-inner p {
  font-size: 15px;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

/* =====================================================
   BLOG IMAGE FIXES — flawless display across all devices
   ===================================================== */

/* Blog card image: force fill, cover, rounded */
.property-box .imgbox {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--cream);
}
.property-box .imgbox img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}
.property-box:hover .imgbox img {
  transform: scale(1.04);
}

/* Empty imgbox placeholder (no featured image fallback) */
.property-box .imgbox:not(:has(img)) {
  height: 300px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--lightblue) 100%);
}
.property-box .imgbox:empty {
  height: 300px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--lightblue) 100%);
}

/* Banner hero featured image on Inspirations listing */
.inner-banner.inspiration .banner-grid .featurebox img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.inner-banner.inspiration .banner-grid .featurebox {
  overflow: hidden;
  border-radius: 8px;
}

/* Single post hero featured image */
.inner-banner.inspired-inner .featurebox.detail > img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.inner-banner.inspired-inner .featurebox.detail {
  overflow: hidden;
  border-radius: 8px;
}

/* Blog card desc - remove fixed width so it's fluid */
.property-box .property-desc {
  width: 100% !important;
}

/* Blog grid: 3 cols desktop, 2 cols tablet, 1 col mobile */
.project-listings.inspired .perform-row,
.perform-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 24px;
}

/* Renovation/single-post content images */
.renovation .renovation-work-triangle img,
.revonation-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin: 16px 0;
  display: block;
}

/* Responsive overrides */
@media (max-width: 1280px) {
  .project-listings.inspired .perform-row,
  .perform-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}

@media (max-width: 1024px) {
  .inner-banner.inspired-inner .featurebox.detail > img {
    height: 440px;
  }
  .inner-banner.inspiration .banner-grid .featurebox img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .project-listings.inspired .perform-row,
  .perform-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  .property-box .imgbox img {
    height: 220px;
  }
  .inner-banner.inspiration .banner-grid {
    grid-template-columns: 1fr;
  }
  .inner-banner.inspiration .banner-grid .featurebox {
    display: none;
  }
  .inner-banner.inspired-inner .banner-grid {
    grid-template-columns: 1fr;
  }
  .inner-banner.inspired-inner .featurebox.detail {
    display: none;
  }
}

@media (max-width: 480px) {
  .project-listings.inspired .perform-row,
  .perform-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .property-box .imgbox img {
    height: 240px;
  }
  .property-box .property-desc h4 {
    font-size: 20px;
    line-height: 28px;
  }
}

.project-listing-tab {
  margin-top: 0;
}

/* =====================================================
   CF7 CHECKBOX — pinetreelane-exact style
   ===================================================== */

/* Checklist wrapper: flex row, wrap, large gap between items */
.checklist .wpcf7-form-control.wpcf7-checkbox,
.contact-form .checklist .wpcf7-form-control {
  display: flex;
  gap: 10px 50px;
  align-items: center;
  flex-wrap: wrap;
}

/* Each item: inline, no extra margin */
.checklist .wpcf7-list-item {
  margin: 0 !important;
}

/* Label: flex row, light weight */
.checklist .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  color: var(--blue);
  user-select: none;
}

/* Custom checkbox box: 20×20, square with rounded corners */
.checklist .wpcf7-list-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid var(--blue);
  border-radius: 3px;
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

/* Checkmark via clip-path — hidden by default */
.checklist .wpcf7-list-item input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: #fff;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform-origin: bottom left;
}

/* Checked: fill box, show checkmark */
.checklist .wpcf7-list-item input[type="checkbox"]:checked {
  background-color: var(--blue);
  border-color: var(--blue);
}

.checklist .wpcf7-list-item input[type="checkbox"]:checked::before {
  transform: scale(1);
}

/* Hover: subtle fill */
.checklist .wpcf7-list-item label:hover input[type="checkbox"]:not(:checked) {
  background-color: var(--lightblue);
}

/* Phone field: plain input, no country wrapper */
.contact-form .field input[type="tel"],
.contact-form .field input.wpcf7-tel {
  width: 100%;
  box-sizing: border-box;
}

/* Remove any leftover country-inner styles */
.contact-form .country-inner {
  display: contents;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .checklist .wpcf7-form-control.wpcf7-checkbox,
  .contact-form .checklist .wpcf7-form-control {
    gap: 10px 30px;
  }
  .checklist .wpcf7-list-item label {
    font-size: 15px;
  }
}

/* === Logo sizing === */
.header-main .brand a > img,
.header-main .brand-mob a > img {
  width: auto;
  height: 44px;
  display: block;
}
.ft-bottom .brand a img {
  height: 70px;
  width: auto;
  display: block;
}
.copyright-txt a.ftlogo_bottom img {
  height: 44px;
  width: auto;
  display: block;
}


/* ── Contact form: remove country-inner layout ── */
.country-inner { display: block; }

/* ── Contact form: Services checkbox grid ── */
.contact-form .form .field .wpcf7-checkbox {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 10px;
   width: 100%;
}

.contact-form .form .field .wpcf7-list-item {
   margin: 0;
}

.contact-form .form .field .wpcf7-list-item label {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 11px 16px;
   border: 1.5px solid rgba(255,255,255,0.18);
   border-radius: 8px;
   cursor: pointer;
   transition: border-color 0.25s ease, background 0.25s ease;
   font-size: 14px;
   font-weight: 400;
   color: #fff;
   user-select: none;
   white-space: nowrap;
}

.contact-form .form .field .wpcf7-list-item label:hover {
   border-color: var(--yellow);
   background: rgba(201,169,110,0.08);
}

/* Hide native checkbox, show custom square */
.contact-form .form .field .wpcf7-list-item input[type="checkbox"] {
   appearance: none;
   -webkit-appearance: none;
   width: 16px;
   height: 16px;
   min-width: 16px;
   border: 1.5px solid rgba(255,255,255,0.4);
   border-radius: 4px;
   background: transparent;
   cursor: pointer;
   position: relative;
   transition: background 0.2s ease, border-color 0.2s ease;
   flex-shrink: 0;
}

.contact-form .form .field .wpcf7-list-item input[type="checkbox"]:checked {
   background: var(--yellow);
   border-color: var(--yellow);
}

.contact-form .form .field .wpcf7-list-item input[type="checkbox"]:checked::after {
   content: "";
   position: absolute;
   left: 4px;
   top: 1px;
   width: 5px;
   height: 9px;
   border: 2px solid #1c1410;
   border-top: none;
   border-left: none;
   transform: rotate(45deg);
}

.contact-form .form .field .wpcf7-list-item input[type="checkbox"]:checked ~ .wpcf7-list-item-label {
   color: var(--yellow);
}

/* Checked card highlight */
.contact-form .form .field .wpcf7-list-item:has(input:checked) label {
   border-color: var(--yellow);
   background: rgba(201,169,110,0.1);
}

@media (max-width: 768px) {
   .contact-form .form .field .wpcf7-checkbox {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 480px) {
   .contact-form .form .field .wpcf7-checkbox {
      grid-template-columns: 1fr 1fr;
   }
}

/* ── Mobile homepage: hide showroom popup bar, show Contact Us ── */
.mob-contact-btn { display: none; }

@media (max-width: 767px) {
   .hero-banner .pop-box-outer { display: none !important; }
   .mob-contact-btn { display: inline-block !important; }
}

/* ── Contact form: equal-width phone & email columns ── */
.contact-form .form .field {
   min-width: 0;
}
.contact-form .form {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 24px 32px;
}
.contact-form .form .field.full {
   grid-column: 1 / -1;
}

/* Force phone field input to full width of its column */
.contact-form .form .field input[type="tel"],
.contact-form .form .field .wpcf7-tel {
   width: 100%;
   box-sizing: border-box;
}

/* ── Banner: buttons side by side ── */
.banner-btns {
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 20px;
}
/* Remove the old margin-top since banner-btns handles it */
.banner-text a.btn { margin-top: 0; }

/* ── Banner subheading: prevent mid-word breaks ── */
.banner-text p {
   word-break: normal;
   overflow-wrap: normal;
   hyphens: none;
}

@media (max-width: 480px) {
   .banner-btns { gap: 10px; }
   /* Scale down buttons slightly so both fit on narrow screens */
   .banner-btns .btn.big {
      font-size: 14px;
      padding: 11px 20px;
   }
}

/* ── Banner text + buttons: mobile fix ── */

/* Remove conflicting global override added previously */
.banner-text a.btn { margin-top: 0; }

@media (max-width: 767px) {
   /* Fix paragraph — remove the 251px hard width that breaks layout */
   .banner-text p {
      width: auto;
      max-width: 100%;
      word-break: normal;
      overflow-wrap: normal;
      hyphens: none;
      font-size: 18px;
      line-height: 26px;
   }

   /* Buttons row — no extra top margin since banner-text gap handles it */
   .banner-btns {
      margin-top: 0;
      gap: 10px;
      flex-wrap: nowrap;
   }

   /* Scale buttons so both fit side by side on narrow screens */
   .banner-btns .btn.big {
      font-size: 13px;
      padding: 11px 18px 10px 18px;
      white-space: nowrap;
   }
   /* Hide the arrow pseudo-element on mobile to save space */
   .banner-btns .btn.big:after {
      display: none;
   }
}

@media (max-width: 400px) {
   .banner-btns {
      flex-wrap: wrap;
   }
   .banner-btns .btn.big {
      flex: 1 1 auto;
      text-align: center;
   }
}



/* ── Hero banner: dark text, no overlay ── */
.hero-banner .swiper-slide::before,
.hero-banner .swiper-slide::after { display: none !important; }

.hero-banner .container,
.hero-banner .banner-text { position: relative; z-index: 2; }

.banner-text h1,
.banner-text h2 { color: var(--blue); text-shadow: 0 1px 0 rgba(255,255,255,0.4); }

.banner-text p { color: var(--blue); text-shadow: none; }

.banner-text .btn { box-shadow: 0 4px 20px rgba(0,0,0,0.18); }

/* ── Hero banner: image fills full slide, text overlays it ── */
.hero-banner .hero-slider,
.hero-banner .swiper-wrapper,
.hero-banner .swiper-slide {
   height: 90vh;
   min-height: 580px;
}

.hero-banner .swiper-slide {
   position: relative;
   overflow: hidden;
}

/* Image covers the full slide absolutely */
.hero-banner .swiper-slide .hero_img {
   position: absolute !important;
   inset: 0;
   width: 100% !important;
   height: 100% !important;
   object-fit: cover !important;
   z-index: 0;
}

/* Text container overlays on top */
.hero-banner .swiper-slide .container {
   position: absolute;
   inset: 0;
   z-index: 2;
   display: flex;
   align-items: flex-end;
   padding-bottom: 80px;
}

/* ── Banner: light black overlay + white text ── */
.hero-banner .swiper-slide::before {
   content: '';
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.35);
   z-index: 1;
   pointer-events: none;
   display: block !important;
}

.banner-text h1,
.banner-text h2 {
   color: #fff !important;
   text-shadow: 0 2px 12px rgba(0,0,0,0.3) !important;
}

.banner-text p {
   color: #fff !important;
   text-shadow: none !important;
}

/* ── Banner heading size reduction ── */
.banner-text h1,
.banner-text h2 {
   font-size: 72px !important;
}

/* ── Contact form: phone field full width ── */
.contact-form .field input[type=tel],
.contact-form .field .wpcf7-tel {
   width: 100% !important;
   box-sizing: border-box;
}

/* ── Projects scroll section ── */
.projects-scroll-section .projects-scroll-track {
   display: flex;
   gap: 24px;
   overflow-x: auto;
   padding: 40px 40px 50px;
   scroll-snap-type: x mandatory;
   -webkit-overflow-scrolling: touch;
   scrollbar-width: none;
}
.projects-scroll-section .projects-scroll-track::-webkit-scrollbar {
   display: none;
}
.projects-scroll-section .projects-scroll-track .property-box {
   flex: 0 0 340px;
   scroll-snap-align: start;
}
@media (max-width: 767px) {
   .projects-scroll-section .projects-scroll-track .property-box {
      flex: 0 0 80vw;
   }
}

/* ── Contact form: tel input same height as other inputs ── */
.contact-form .form .field input[type=tel] {
   height: calc(54px - 35px) !important;
   padding: 17px 20px 16px !important;
   width: calc(100% - 40px) !important;
   box-sizing: content-box !important;
}

/* ── Projects slider ── */
.projects-slider-section { padding: 60px 0; }
.projects-swiper-wrap { position: relative; }
.projectsSwiper .property-box .imgbox {
   height: 320px;
   border-radius: 12px;
   overflow: hidden;
   margin-bottom: 16px;
}
.projectsSwiper .property-box .imgbox img {
   width: 100%; height: 100%; object-fit: cover;
   transition: transform 0.4s ease;
}
.projectsSwiper .property-box:hover .imgbox img { transform: scale(1.04); }
.projectsSwiper .property-desc h4 { font-size: 18px; margin-bottom: 8px; }
.projectsSwiper .swiper-button-prev,
.projectsSwiper .swiper-button-next {
   color: var(--yellow);
   top: 38%;
}

/* ── Contact page: header stays white over dark banner ── */
.page-contact header {
   background: #fff !important;
   box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* ── Products menu: compact dropdown directly below the item ── */
li.prcm {
   position: relative;
}
li.prcm .sub-menu {
   position: absolute !important;
   left: 0 !important;
   top: 100% !important;
   width: 220px !important;
   padding: 8px 0 !important;
   flex-direction: column !important;
   justify-content: flex-start !important;
   border-radius: 8px !important;
   box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
}
li.prcm .sub-menu .sub-menu-parent {
   border: none !important;
   padding: 0 !important;
}
li.prcm .sub-menu .sub-menu-parent h4 > a {
   display: block;
   padding: 10px 20px !important;
   font-size: 15px !important;
   font-weight: 400 !important;
}
li.prcm .sub-menu .sub-menu-parent h4 > a:hover {
   background: var(--lightblue) !important;
}

/* ── Contact page: light background so header logo is visible ── */
.inner-banner.contact {
   background: var(--lightblue) !important;
}
.inner-banner.contact .breadcrum > ul li a,
.inner-banner.contact .headbox,
.inner-banner.contact .headbox h1,
.inner-banner.contact .headbox h5.headmain,
.inner-banner.contact .contact-infos .txtbox .head,
.inner-banner.contact .contact-infos .txtbox a,
.inner-banner.contact .contact-infos .txtbox p {
   color: var(--blue) !important;
}
.inner-banner.contact .breadcrum > ul li + li:before,
.inner-banner.contact .breadcrum > ul li a img {
   filter: none !important;
}
.inner-banner.contact .contact-form h4.contact-title {
   color: var(--blue) !important;
}

/* ── Contact page: cream background override ── */
.inner-banner.contact {
   background: var(--cream) !important;
}

/* ── Contact page: dark checkboxes for light background ── */
.inner-banner.contact .contact-form .form .field .wpcf7-checkbox .wpcf7-list-item-label {
   color: var(--blue) !important;
}
.inner-banner.contact .contact-form .form .field .checkbox input {
   border-color: var(--blue) !important;
   background-color: transparent !important;
}
.inner-banner.contact .contact-form .form .field .checkbox input:checked {
   background-color: var(--blue) !important;
}
.inner-banner.contact .contact-form .form .field .checkbox input:checked::before {
   border-color: #fff !important;
}

/* ── Contact page: fully custom dark checkboxes on light background ── */
.inner-banner.contact .wpcf7-checkbox .wpcf7-list-item-label {
   color: var(--blue) !important;
}
.inner-banner.contact .wpcf7-checkbox input[type='checkbox'] {
   appearance: none !important;
   -webkit-appearance: none !important;
   width: 18px !important;
   height: 18px !important;
   min-width: 18px !important;
   border: 2px solid var(--blue) !important;
   border-radius: 3px !important;
   background: transparent !important;
   cursor: pointer;
   display: inline-grid;
   place-content: center;
   vertical-align: middle;
   margin-right: 6px;
}
.inner-banner.contact .wpcf7-checkbox input[type='checkbox']::before {
   content: '';
   width: 10px;
   height: 10px;
   transform: scale(0);
   background: var(--blue) !important;
   clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
   transition: transform 0.15s ease;
}
.inner-banner.contact .wpcf7-checkbox input[type='checkbox']:checked {
   background: var(--blue) !important;
}
.inner-banner.contact .wpcf7-checkbox input[type='checkbox']:checked::before {
   transform: scale(1);
   background: #fff !important;
}

/* ── Contact page: dark placeholder text on light background ── */
.inner-banner.contact .contact-form .form .field input::placeholder,
.inner-banner.contact .contact-form .form .field textarea::placeholder {
   color: #999 !important;
   opacity: 1 !important;
}
