@charset "utf-8";

:root {
  /* colors */
  --black: #000000;
  --black-02: #111111;
  --black-03: #050505;
  --white: #ffffff;
  --red: #c82d29;
  --red-02: #f2adab;
  --grey-01: #b1b1b1;
  --grey-02: #c1c1c1;
  --grey-03: #dbdbdb;
  --border-grey: #787878;
  --yellow: #fff200;

  /* Font sizes */
  --font-size-14: clamp(0.75em, 1vw, 0.875em);
  --font-size-16: clamp(0.875em, 1vw + 0.5em, 1em);
  --font-size-18: clamp(0.9em, 1vw + 0.5em, 1.125em);
  --font-size-24: clamp(1em, 1vw + 0.5em, 1.5em);
  --font-size-30: clamp(1.125em, 2vw + 0.5em, 1.875em);
  --font-size-36: clamp(1.25em, 2vw + 0.5em, 2.25em);
  --font-size-41: clamp(1.27em, 2vw + 0.5em, 2.5625em);
  --font-size-48: clamp(2em, 2vw + 0.75em, 3em);
  --font-size-60: clamp(2em, 2.5vw + 1em, 3.75em);
  --font-size-72: clamp(2.35em, 3vw + 1em, 4.5em);
  --font-size-100: clamp(2.8em, 4.5vw + 1em, 5.625em);
  /* --font-size-100: clamp(2.8em, 4.5vw + 1em, 6.25em); */
}

/* Common-css */
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  outline: none;
  border: none;
  position: relative;
  line-height: 1.2em;
  font-family: "Raleway", sans-serif;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body,
html {
  width: 100%;
  min-width: 320px;
  margin: 0 auto;
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--white);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  color: var(--black);
  min-width: 320px;
  font-family: "Raleway", sans-serif;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}
.rows {
  width: 100%;
}
.container,
.uagb-container-inner-blocks-wrap {
  width: 92% !important;
  margin: 0 auto !important;
  max-width: 1120px !important;
  padding: 0 !important;
}
.cover {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(5, 5, 5, 0.9);
  top: 0;
  left: 0;
  z-index: 20;
  display: none;
}

.flex {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.align-end {
  align-items: flex-end;
}
.justify-end {
  justify-content: flex-end;
}
.justify-left {
  justify-content: flex-start;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-column {
  flex-direction: column;
}
.ws-nowrap {
  white-space: nowrap;
}
.text-center {
  text-align: center;
}

br {
  line-height: 0;
}

h1 {
  font-size: var(--font-size-100);
  line-height: 0.88em;
  font-family: "Noto Serif Display", serif;
  font-weight: 800;
  letter-spacing: -2px;
}
h2 {
  font-size: var(--font-size-72);
  line-height: 0.916em;
  font-family: "Noto Serif Display", serif;
  font-weight: 800;
}
h3 {
  font-size: var(--font-size-48);
  line-height: 0.8333em;
  font-family: "Noto Serif Display", serif;
  font-weight: 800;
  letter-spacing: -1.5px;
}
h4 {
  font-size: var(--font-size-36);
  line-height: 1em;
  font-weight: 700;
}
h5 {
  font-size: var(--font-size-30);
  line-height: 1em;
  font-weight: 700;
}
h6 {
  font-size: var(--font-size-18);
  line-height: 1em;
  font-weight: 700;
}
p {
  font-size: var(--font-size-18);
  line-height: 1.33em;
  color: var(--black-02);
  font-weight: 400;
}
.with_border {
  color: var(--white);
}
.with_border::before {
  content: "";
  width: 1.47em;
  height: 1px;
  background-color: var(--white);
  display: inline-block;
  margin-right: 0.125rem;
}

.scrollToTop {
  bottom: 2rem;
  z-index: 4;
  display: none;
  position: fixed;
  right: 20px;
  background: rgba(0, 0, 0, 0.5) url("../images/arw-up.png") no-repeat center
    center;
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 3px;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 1px rgba(236, 236, 236, 0.5);
  cursor: pointer;
}

/*Button*/
.primary_btn,.primary_btn_invert {
  font-size: var(--font-size-18);
  text-transform: capitalize;
  padding: clamp(1em, 1vw + 0.5em, 1.38em) clamp(1.5em, 2vw + 1em, 3em);
  text-align: center;
  background-color: var(--white);
  color: var(--black);
  font-weight: 700;
  border-radius: 0.5em;
  cursor: pointer;
  border: 1px solid var(--white);
}
.primary_btn:hover{
  background-color: var(--black);
  border: 1px solid var(--white);
  color: var(--white);
}
.primary_btn_invert{
  background-color: var(--white);
  border: 1px solid var(--black);
}
.primary_btn_invert:hover{
  background-color: var(--black);
  border: 1px solid var(--white);
  color: var(--white);
}
.arrow_btn,
.arrow_btn_white,
.insights .inslight_slider .wp-block-button__link {
  font-size: var(--font-size-18);
  line-height: 1.33em;
  color: var(--black);
  background: url(../images/right_arrow.png) no-repeat left center;
  background-size: auto;
  padding: 0.4rem 0;
  padding-left: 2em;
  font-weight: 600;
  cursor: pointer;
}

.arrow_btn_white,
.insights .inslight_slider .wp-block-button__link {
  background: url(../images/right_arrow_white.png) no-repeat left center;
  background-size: auto;
  color: var(--white);
  cursor: pointer;
}
.play_btn,
.about_more_panel .uagb-infobox-cta-link {
  font-size: var(--font-size-18);
  line-height: 1.33em;
  color: var(--white);
  background: url(../images/play_btn.png) no-repeat left center;
  background-size: auto;
  padding: 0.4rem 0;
  padding-left: 2em;
  font-weight: 600;
  cursor: pointer;
}
.simple_arrow_btn {
  background: url(../images/arrow.png) no-repeat center;
  background-size: contain;
  cursor: pointer;
  width: 14px;
  height: 11px;
  display: inline-block;
}

.arrow_btn:hover,
.arrow_btn_white:hover,
.insights .inslight_slider .wp-block-button__link:hover {
  color: var(--red);
  background: url(../images/right_arrow_red.png) no-repeat left center;
  background-size: auto;
}
.we_love_panel .arrow_btn_white:hover {
  color: var(--white);
  background: url(../images/right_arrow_white.png) no-repeat left center;
  background-size: auto;
}
/*Button*/

/*Menu*/
.menu {
  height: 1em;
  width: 1.25em;
  cursor: pointer;
}

.menu > div {
  display: block;
  height: 0.125rem;
  width: 100%;
  background: var(--black);
  transition: all 0.3s ease-in-out;
}

.menu.active > div:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu.active > div:nth-child(2) {
  opacity: 0;
}

.menu.active > div:last-child {
  transform: translateY(-8px) rotate(-45deg);
}
/*Menu*/

/*Header*/
header {
  padding: 1.5em 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  width: 100%;
}
header.sticky {
  background-color: var(--white);
  -webkit-box-shadow: 2px 5px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 5px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 5px 5px 0px rgba(0, 0, 0, 0.1);
}
header.sticky.white {
  background-color: var(--black);
}
header .logo {
  width: 50%;
  max-width: 370px;
}

header.white .menu > div,
.primary_menu .menu > div {
  background-color: var(--white);
}

.primary_menu {
  position: fixed;
  top: 0;
  right: -150%;
  width: 100%;
  height: 100%;
  z-index: 99;
  background-color: var(--black);
  padding: 1em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shado: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.primary_menu.active {
  right: 0;
}
.primary_menu li {
  text-align: center;
  width: 100%;
}
.primary_menu li a {
  color: var(--white);
  font-size: var(--font-size-16);
  line-height: 1em;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.primary_menu ul {
  margin-top: 1.5em;
}
.primary_menu li.current-menu-item a,
.primary_menu li a:hover {
  font-weight: 700;
}
.primary_menu li:not(:last-child) a {
  padding-bottom: 2rem;
}
/*Header*/

/*Footer*/
footer {
  padding: clamp(3.5em, 5vw + 1em, 5.9375em) 0 clamp(4.5em, 2vw + 1em, 7.8125em)
    0;
  background-color: var(--black);
}
footer .top_panel .talk_panel {
  font-size: var(--font-size-41);
  line-height: 0.87em;
  font-weight: 700;
  color: var(--grey-02);
  font-family: "Noto Serif Display", serif;
  letter-spacing: -2px;
}
footer .top_panel .talk_panel br {
  display: none;
}
footer .top_panel .talk_panel span {
  color: var(--white);
}
footer .top_panel .get_in_touch_panel {
  margin-top: 0.875em;
  width: 100%;
}
footer .top_panel .get_in_touch_panel span {
  font-size: var(--font-size-18);
  font-weight: 600;
  color: var(--white);
  line-height: 1.33em;
}
footer .menu_items {
  padding-top: 1.5em;
  border-top: 1px solid var(--border-grey);
  margin-top: 1.5em;
}
footer .footer_logo {
  width: 38%;
}
footer .footer_menu {
  width: 47%;
  margin-bottom: 1.5em;
}
footer li a,
footer li {
  color: var(--white);
  font-size: var(--font-size-18);
  line-height: 1em;
}
.footer_menu li a {
  font-weight: 700;
  margin-bottom: 1.25em;
  display: block;
  letter-spacing: -1px;
}
footer .copy_rights ul {
  column-gap: 0.65em;
}
footer .copy_rights li:not(:last-child) {
  border-right: 1px solid var(--border-grey);
  padding-right: 0.65em;
}

footer .social_links {
  column-gap: 1.4375em;
  margin: 2em 0;
  width: 100%;
}
footer .social_links a {
  width: 20px;
  height: 20px;
}
footer .social_links .insta {
  background: url(../images/insta.png) no-repeat center;
  background-size: contain;
}
footer .social_links .youtube {
  background: url(../images/youtube.png) no-repeat center;
  background-size: contain;
}
footer .social_links .fb {
  background: url(../images/fb.png) no-repeat center;
  background-size: contain;
}
/*Footer*/

/*Home*/
.home_banner {
  background: rgb(210, 207, 201);
  background: -moz-linear-gradient(
    180deg,
    rgba(210, 207, 201, 1) 40%,
    rgba(245, 245, 245, 1) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(210, 207, 201, 1) 40%,
    rgba(245, 245, 245, 1) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(210, 207, 201, 1) 40%,
    rgba(245, 245, 245, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d2cfc9",endColorstr="#f5f5f5",GradientType=1);
  padding: 3em 0 3em 0 !important;
  background-image: url(../images/home-bg.jpg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 100%;
}
.home_banner .cont {
  margin-top: 12em;
  padding: 0 !important;
}
.home_banner .cont h1 {
  z-index: 3;
}
.home_banner h1 div {
  display: inline-block;
  line-height: 0.88em;
}
.home_banner .cont .title_sec {
  margin-bottom: 1.125em;
}
.home_banner .cont h1 span {
  font-family: "Noto Serif Display", serif;
  line-height: 1em;
}
.home_banner .cont .mask {
  content: "";
  position: absolute;
  bottom: -0.1875rem;
  left: 0;
  height: 0.25em;
  width: clamp(0.5em, 4vw + 1em, 1.08em);
  background-color: var(--yellow);
  z-index: 2;
  display: none;
}
.mask.anim {
  animation-name: example;
  animation-duration: 1s;
}

.home_banner .fadeanim span.anim {
  display: inline-block;
  animation: fadeIn 0.75s;
}


@keyframes example {
  from {
    left: 0;
  }
  to {
    left: 70%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(60%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes animtop {
  0%{transform:translateY(100%);opacity: 0;}
  25%{transform:translateY(50%);opacity: 0.5;}
  50%{transform:translateY(0%);opacity: 1;}
  60%{transform:translateY(0%);opacity: 1;}
  75%{transform:translateY(-50%);opacity: 0.5;}
  100%{transform:translateY(-85%);opacity: 0;}
}
@keyframes moveUP {
  0%{transform:translateY(0);opacity: 1;}
  50%{transform:translateY(-30%);opacity: 0.3;}
  80%{transform:translateY(-60%);opacity: 0;}
}

.home_banner .cont p {
  margin-bottom: 1.2222em;
  max-width: 923px;
}
.fadeanim {
  display: inline-block;
}


.fadeanim span {
  display: none;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.home_banner .fadeanim{
  clip-path: inset(0 0 0 0);
}
.home_banner .fadeanim span {
  opacity: 0;
  transition: none;
}
.fadeanim span.active {
  display: inline-block;
  opacity: 1;
  z-index: 3;
}
.home_banner .fadeanim span.active {
  display: inline-block;
  animation-name: animtop;
  animation-duration: 1.5s;
  /* animation-delay: 0.25s; */
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  opacity: 1;
  z-index: 3;
}
.home_banner .fadeanim span.animUp {
  animation-name: moveUP;
  animation-duration: 0.5s;
  opacity: 0;
}
.art {
  background-color: var(--red);
  padding: clamp(3em, 5vw + 1em, 6.1875em) 0 clamp(5em, 5vw + 1em, 7.1875em);
}
.art .col:first-child {
  order: 2;
  margin-top: 1.5em;
}
.art .col:last-child {
  order: 1;
}
.art h5,
.art h2 {
  color: var(--white);
}
.art .col .cont span {
  font-size: var(--font-size-18);
  line-height: 1.33em;
  color: var(--white);
  font-weight: 600;
}
.art .cont h5,
.art .cont span,
.art .cont a {
  display: none;
}
.art .cont h2 {
  margin-left: 1.45em;
  color: #f2adab;
}
.art .title {
  margin-bottom: clamp(3em, 4vw + 1em, 6.25em);
}

.welcome_panel {
  padding: clamp(3em, 5.875vw + 1em, 7.25em) 0 clamp(2em, 3vw + 1em, 5.15625em)
    0 !important;
}
.welcome_panel .details,
.welcome_panel .cont {
  padding: 0 !important;
  text-align: center;
}
.welcome_panel a {
  display: inline-block;
  width: auto !important;
  margin-top: 1.0466em;
}
.welcome_panel h4 {
  text-transform: uppercase;
  vertical-align: middle;
}
.welcome_panel .plus {
  display: inline-block;
  background: url(../images/plus.png) no-repeat center;
  background-size: contain;
  width: clamp(1.125em, 1.2vw + 0.5em, 1.4375em);
  height: clamp(1.25em, 1.2vw + 0.5em, 1.4375em);
  font-size: 1rem;
  margin: 0 0.875em;
}
.welcome_panel h1 {
  max-width: 880px;
  display: inline-block;
  line-height: 1em;
}
.welcome_panel .cont {
  margin-top: clamp(2em, 2.75vw + 1em, 4.125em);
}
.welcome_panel p {
  margin-top: clamp(0.65em, 1.2vw + 1em, 1.377em);
  margin-bottom: clamp(2em, 2.75vw + 1em, 3.877em);
  max-width: 856px;
  padding: 0 2%;
}
.welcome_panel .fadeanim {
  text-align: left;
}
.welcome_panel .fadeanim span {
  position: absolute;
  top: 0;
  left: 0;
}

.meet_panel {
  padding: clamp(2.5em, 8vw + 1em, 11em) 0 clamp(4em, 10.5vw + 1em, 12.75em) 0 !important ;
}
.meet_panel .meet_box,
.meet_panel .meet_col,
.meet_panel .meet_col .cont,
.meet_panel .meet_img {
  padding: 0 !important;
}
.meet_panel h2 {
  margin-bottom: 0.2214em;
  line-height: 0.8333em;
  letter-spacing: -2.2px;
}
.meet_panel .sub_title {
  font-size: var(--font-size-18);
  font-weight: 700;
}
.meet_panel .meet_box .cont p {
  display: none;
}
.meet_panel .meet_box .cont p:not(:last-child) {
  margin-bottom: 0.75rem;
}
.meet_panel .meet_box .btn_panel {
  margin-top: clamp(1em, 1.5vw + 1em, 1.8125em);
  column-gap: 1.5em;
}
.meet_panel .meet_img {
  margin-top: 1.5em;
}

.insights {
  padding: clamp(3.5em, 5.125vw + 1em, 7.125em) 0 !important;
  background: url(../images/insights-mob.jpg) no-repeat center;
  background-size: 100%;
}
.insights::before {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.insights h6 {
  font-size: var(--font-size-18);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  z-index: 2;
}
.inslight_slider {
  margin: clamp(2em, 1.875vw + 1em, 3.2125em) 0 0 0 !important;
  padding: 0 !important;
  z-index: 2;
}
.inslight_slider article {
  background-color: transparent !important;
  padding: 0 !important;
}
.inslight_slider article h4 {
  color: var(--white) !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: var(--font-size-60);
  line-height: 1em;
  font-weight: 800;
  letter-spacing: -1px;
}
.inslight_slider article h4 a {
  color: var(--white) !important;
  line-height: 1em;
}
.inslight_slider .slick-dots {
  z-index: 2;
  text-align: left !important;
  margin: 0 !important;
}
.inslight_slider ul.slick-dots li button::before {
  display: none;
}
.inslight_slider ul.slick-dots li {
  width: auto;
  height: auto;
}
.inslight_slider ul.slick-dots li:not(:last-child) {
  margin-right: 0.375em;
}
.inslight_slider ul.slick-dots li button {
  width: 50px;
  height: auto;
  background-color: #858980 !important;
  border-radius: 10px;
  padding: 0.15625rem;
}
.inslight_slider ul.slick-dots li.slick-active button {
  background-color: var(--white) !important;
}
.insights .btn_panel {
  position: absolute !important;
  bottom: -6px;
  right: 0;
  z-index: 3;
  width: auto !important;
}
.inslight_slider .uagb-post__text {
  padding: 0 !important;
  margin: 0 !important;
}
.inslight_slider .uagb-post__text.wp-block-button {
  margin: clamp(3em, 4.125vw + 1em, 5.3125em) 0 clamp(8em, 8.5vw + 1em, 9.75em)
    0 !important;
}

.our_customer_slider {
  padding: clamp(4.5em, 8vw + 1em, 10.0625em) 0
    clamp(2em, 3.25vw + 1em, 4.84375em) 0 !important;
}
.our_customer_slider h6.title {
  text-transform: uppercase;
  text-align: center;
}
.our_customer_slider .coustomers_slider_panel,
.our_customer_slider .coustomers_slider_panel .uagb-slider-container,
.coustomers_slider_panel .swiper-content,
.coustomers_slider_panel .swiper-content .wp-block-uagb-container {
  padding: 0 !important;
}
.our_customer_slider .coustomers_slider_panel .uagb-slider-container {
  padding-bottom: 3em !important;
}
.our_customer_slider .coustomers_slider_panel .uagb-ifb-title-wrap,
.our_customer_slider .coustomers_slider_panel .uagb-ifb-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.our_customer_slider .coustomers_slider_panel .uagb-ifb-title-wrap,
.our_customer_slider
  .coustomers_slider_panel
  .uagb-ifb-title-wrap
  .uagb-ifb-title-prefix {
  order: 2;
  width: 100%;
}
.our_customer_slider .coustomers_slider_panel .swiper-wrapper {
  align-items: flex-start;
  margin-top: clamp(2.5em, 3.65vw + 1em, 5.3125em);
}
.coustomers_slider_panel .uagb-ifb-desc {
  font-size: var(--font-size-36);
  font-family: "Noto Serif Display", serif;
  line-height: 1.11em;
  font-weight: 800;
  margin-bottom: 0 !important;
  letter-spacing: -2px;
}
.our_customer_slider .coustomers_slider_panel .uagb-ifb-title-wrap {
  margin-top: clamp(2em, 4vw + 1em, 5.6875em);
}
.our_customer_slider .swiper-pagination {
  bottom: 0 !important;
}
.our_customer_slider .swiper-pagination .swiper-pagination-bullet {
  width: 45px;
  height: 5px;
  border-radius: 10px;
  background-color: #e0e0df;
  opacity: 1;
}
.our_customer_slider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--black);
}
.our_customer_slider .swiper-button-next,
.our_customer_slider .swiper-button-prev,
.our_customer_slider .swiper-button-next::after,
.our_customer_slider .swiper-button-prev::after {
  display: none;
}
.our_customer_slider .swiper-button-prev,
.our_customer_slider .swiper-button-next {
  width: 51px !important;
  height: 51px !important;
  margin: 0;
  top: 56% !important;
}
.our_customer_slider .swiper-button-next {
  background: url(../images/slider-arrow-right.png) no-repeat;
  background-size: contain;
}
.our_customer_slider .swiper-button-prev {
  background: url(../images/slider-arrow-left.png) no-repeat;
  background-size: contain;
}
.our_customer_slider .coustomers_slider_panel .uagb-ifb-title {
  margin-bottom: 0.5rem;
}
.our_customer_slider .coustomers_slider_panel .uagb-ifb-title-prefix {
  margin: 0;
  padding: 0;
}
.our_customer_slider
  .coustomers_slider_panel
  .uagb-ifb-content
  .uagb-ifb-title-wrap,
.our_customer_slider .coustomers_slider_panel .uagb-ifb-content .uagb-ifb-desc {
  max-width: 830px;
}

.our_customers {
  padding: clamp(2em, 3.875vw + 1em, 5.0625em) 0 clamp(6em, 8.75vw + 1em, 10em)
    0 !important;
}
.our_customers h6 {
  text-transform: uppercase;
}
.our_customers .coustomers_box {
  padding: 0 !important;
  margin-top: clamp(2em, 1vw + 1em, 1.125em);
  justify-content: center;
  column-gap: 1em;
}
.our_customers .coustomers_box .wp-block-uagb-image {
  width: 21%;
}
.our_customers .coustomers_box img {
  aspect-ratio: 3/2;
  object-fit: contain;
}

.services_panel .uagb-container-inner-blocks-wrap,
.meet_team .uagb-container-inner-blocks-wrap {
  margin: 0 !important;
  width: 100% !important;
  padding-left: 4.25% !important;
}

.services_panel {
  padding: clamp(2em, 3.1vw + 1em, 4.625em) 0
    clamp(2.5em, 2.5vw + 1em, 3.4375em) 0 !important;
}
.services_panel h2 {
  letter-spacing: -2px;
}
.services_panel .services_tab {
  margin-top: clamp(2.125em, 2.25vw + 1em, 3.6875em);
  padding-left: 0.3125rem;
}
.services_panel .services_tab .category_tab .arrow_btn {
  display: none;
}
.services_panel .services_tab .cat_list {
  column-gap: 1em;
  width: 100%;
}
.services_panel .services_tab .cat_list span,
.project_list_sec .projects_catlist span {
  font-size: var(--font-size-18);
  font-weight: 700;
  line-height: 1em;
  width: 30%;
  padding-bottom: 0.375rem;
  color: var(--grey-01);
  cursor: pointer;
}
.services_panel .services_tab .cat_list span.active,
.project_list_sec .projects_catlist span.active {
  border-bottom: 1px solid var(--black);
  color: var(--black-02);
}
.services_panel .services_list {
  margin-top: clamp(1.5em, 1.25vw + 0.5em, 1.875em);
}
.services_panel .services_box img {
  margin-bottom: clamp(1.5em, 1.5vw + 0.5em, 2.125em);
}
.services_panel .services_box .subtitle {
  font-size: 0.875em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black-02);
  margin-bottom: 1.14em;
  display: block;
}
.services_panel .services_box .title {
  font-size: var(--font-size-24);
  font-weight: 700;
  text-transform: capitalize;
  color: var(--black-02);
  margin-bottom: 0.5525em;
  display: block;
}
.services_panel .services_tab .swiper-pagination {
  position: relative;
  width: auto;
  margin: 0;
  padding: 0;
  bottom: auto;
}
.services_panel .services_tab .btn_panel {
  padding-top: 2em;
  padding-right: 4%;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 5px;
  border-radius: 10px;
  background-color: #e0e0df;
  opacity: 1;
}
.swiper
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--black);
}

.we_love_panel {
  padding: clamp(2.5em, 3.5vw + 1em, 4.9375em) 0
    clamp(6em, 11vw + 1em, 13.8125em) 0 !important;
    height: 100% !important;
}
.we_love_panel .book_main_list,
.we_love_panel .book_list,
.we_love_panel .cont_panel,
.we_love_panel .book_box,
.we_love_panel .accordion_box,
.we_love_panel .accordion_cont,
.we_love_panel .accordion_panel {
  padding: 0 !important;
}
.we_love_panel .title,
.we_love_panel .accordion_box h2,
.we_love_panel .accordion_box h5,
.we_love_panel .accordion_box p {
  color: var(--white);
}
.we_love_panel .book_box {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(13em, 25.5vw + 1em, 28em) !important;
  height: 100%;
  min-height: 250px;
  justify-content: flex-start;
}
.we_love_panel .book_box:first-child {
  left: clamp(3.5em, 3.5vw + 1em, 5.5em);
  top: clamp(2em, 2.5vw + 1em, 3.625em);
}
.we_love_panel .book_box:nth-child(2) {
  left: clamp(5.25em, 5.5vw + 1em, 7.25em);
  top: clamp(4em, 3.5vw + 1em, 5.625em);
}
.we_love_panel .book_box:nth-child(3) {
  left: clamp(1.5em, 1vw + 1em, 2.25em);
}
.we_love_panel .book_box:last-child {
  top: clamp(1em, 1vw + 0.5em, 1.375em);
}
.we_love_panel .accordion_cont {
  display: none;
  margin-bottom: 1.9375em;
  margin-top: 0.875em;
}
.we_love_panel .title {
  text-transform: uppercase;
}
.we_love_panel .accordion_box h5 {
  margin-bottom: 0.625rem;
}
.we_love_panel .accordion_box p {
  margin-bottom: 1.33em;
}
.we_love_panel .book_box p {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  color: var(--white);
  padding: 1rem;
  display: none;
}

.we_love_panel .accordion_panel {
  margin-top: clamp(3em, 4.25vw + 1em, 5.6875em);
}
.we_love_panel .accordion_box {
  margin-bottom: 0.25rem;
  padding-left: clamp(3.5em, 3.75vw + 1em, 5em) !important;
}
.we_love_panel .accordion_box h2 {
  line-height: 1em;
  letter-spacing: -2px;
  color: var(--red-02);
}
.we_love_panel .accordion_box.active h2 {
  color: var(--white);
}
.we_love_panel .accordion_box.active h2::before {
  content: "";
  width: 1.4444em;
  height: 1px;
  background-color: var(--white);
  display: inline-block;
  position: absolute;
  left: -1.5em;
  bottom: 4px;
  z-index: 1;
}
.we_love_panel .book_main_list {
  order: 2;
  width: 90% !important;
  padding-left: clamp(0.25em, 1.85vw, 2.3125em) !important;
}
.we_love_panel .cont_panel {
  order: 1;
  margin-bottom: 2em;
}
/*Home*/

/*About*/
.about_title_panel {
  padding: clamp(6.5em, 12.5vw + 1em, 14.6875em) 0 0 0 !important;
}
.about_title_panel .uagb-container-inner-blocks-wrap {
  border-bottom: 1px solid var(--grey-03);
  padding: 0 0 clamp(2em, 3.9vw + 1em, 5.5625em) 0 !important;
}
.about_title_panel .cont {
  padding: 0 !important;
  margin-top: clamp(1.125em, 1.65vw + 0.75em, 2.625em);
  justify-content: flex-end;
}
.about_title_panel h2 {
  text-decoration: line-through;
}

.meet_team {
  padding: clamp(2.5em, 3vw + 1em, 4.6785em) 0 clamp(3.5em, 4.5vw + 1em, 6.25em)
    0 !important;
}
.meet_team .col_right,
.meet_team .col_left,
.rules_panel .col_right,
.rules_panel .col_left {
  padding: 0 !important;
}
.meet_team .col_left,
.rules_panel .col_left {
  margin-bottom: 1.5em;
}
.meet_team .uagb-ifb-title-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: clamp(0.5em, 1vw + 0.65em, 1.75em);
}
.meet_team .uagb-ifb-button-wrapper.wp-block-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.meet_team .uagb-ifb-button-wrapper.wp-block-button a {
  width: 100%;
  height: 100%;
}
.meet_team .uagb-ifb-title-wrap .uagb-ifb-title-prefix {
  order: 2;
  font-size: var(--font-size-18);
  line-height: 1em;
  font-weight: 500;
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  margin-bottom: 0;
}
.meet_team .uagb-ifb-title-wrap .uagb-ifb-title {
  order: 1;
  font-size: var(--font-size-24);
  line-height: 1em;
  text-decoration: underline;
  font-weight: 700;
  margin-bottom: 0;
}
.meet_team h3 br,
.rules_panel h3 br {
  display: none;
}

.rules_panel {
  padding: 0 0 clamp(3.25em, 4.5vw + 1em, 6.5625em) 0 !important;
}
.rules_panel .uagb-container-inner-blocks-wrap {
  border-top: 1px solid var(--grey-03);
  padding: clamp(2.5em, 2.75vw + 1em, 3.4375em) 0 0 0 !important;
}
.rules_panel .rule_box .uagb-ifb-title-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1.125em;
  margin-bottom: 1.125em;
}
.rules_panel .rule_box .uagb-ifb-title-prefix {
  font-size: clamp(3em, 3.875vw + 1em, 5.5em);
  font-weight: 100;
  margin: 0;
  line-height: 1em;
  margin-left: -0.25rem;
}
.rules_panel .rule_box .uagb-ifb-title {
  font-size: var(--font-size-30);
  font-weight: 700;
  width: 50% !important;
  margin: 0;
}
.rules_panel .rule_box .uagb-ifb-desc {
  margin: 0;
}

.meet_team .col_right .swiper,
.rules_panel .col_right .swiper {
  padding-bottom: 3em !important;
}
.meet_team .col_right .swiper .swiper-pagination,
.rules_panel .col_right .swiper .swiper-pagination {
  bottom: 0;
  text-align: left;
}

.about_more_panel {
  padding: clamp(4em, 12.5vw + 1em, 14.5em) 0
    clamp(11.5em, 12.5vw + 1em, 13.5em) 0 !important;
  background: url(../images/about-sm.jpg) no-repeat left top;
  background-size: cover;
}
.about_more_panel .info_card {
  max-width: 785px;
}
.about_more_panel .info_card .uagb-ifb-content {
  display: flex;
  flex-wrap: wrap;
}
.about_more_panel .info_card .uagb-ifb-title-wrap {
  order: 2;
  display: flex;
  flex-wrap: wrap;
  margin-top: clamp(2em, 2vw + 0.75em, 2.8125em);
}
.about_more_panel .info_card .uagb-ifb-desc {
  order: 1;
  font-size: var(--font-size-60);
  font-family: "Noto Serif Display", serif;
  font-weight: 800;
  line-height: 1.1em;
  color: var(--white);
  text-decoration: line-through;
  margin: 0;
  letter-spacing: -1px;
}
.about_more_panel .info_card .wp-block-button {
  order: 3;
  margin-top: clamp(2em, 1.875vw + 0.5em, 2.8125em);
}
.about_more_panel .info_card .uagb-ifb-title-wrap h5 {
  font-size: var(--font-size-24);
  line-height: 1em;
  color: var(--white);
  font-weight: 700;
  order: 1;
  margin: 0;
  margin-bottom: 0.25rem;
}
.about_more_panel .info_card .uagb-ifb-title-wrap .uagb-ifb-title-prefix {
  font-size: var(--font-size-18);
  line-height: 1em;
  color: var(--white);
  font-weight: 500;
  order: 2;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
/*About*/

/*Team*/
.team_title_panel {
  padding: clamp(6em, 10vw + 1em, 11.75em) 0 clamp(1.5em, 3.125vw + 1em, 4.75em)
    0 !important;
}
.team_title_panel h2 {
  margin-bottom: 0.125rem;
  letter-spacing: -2.5px;
}
.team_title_panel p {
  font-weight: 700;
}
.team_title_panel .img {
  margin-top: clamp(1.5em, 1.25vw + 1em, 2.5em);
  padding: 0 !important;
}
.team_title_panel .uagb-container-inner-blocks-wrap {
  width: 100% !important;
  margin: 0 !important;
}
.team_details {
  padding: 0 0 clamp(2.75em, 3.125vw + 1em, 4.25em) 0 !important;
}
.team_details .team_aside,
.team_details .more_details {
  padding: 0 !important;
}
.team_details .team_aside .social_icons {
  justify-content: flex-start;
  column-gap: 1.625em;
  margin-top: clamp(1em, 1.25vw + 0.75em, 1.75em);
  align-items: center;
}
.team_details .team_aside .social_icons .wp-block-uagb-social-share-child {
  margin: 0;
}
.team_details .team_aside .social_icons .uagb-ss__link {
  padding: 0 !important;
}
.team_details .team_aside .social_icons img,
.team_details .team_aside .social_icons .uagb-ss__source-wrap {
  width: auto !important;
}
.team_details .more_details {
  margin-top: 1.25em;
}
.team_details .more_details p:not(:last-child) {
  margin-bottom: clamp(1.125em, 1.5vw + 0.75em, 1.3854em);
}

.insights_details {
  padding-bottom: clamp(5em, 7.5vw + 1em, 9.375em);
}
.insights_details .insight_main_title {
  margin-bottom: 1em;
}
.insights_details .insight_main_title span {
  font-weight: 700;
  font-size: var(--font-size-18);
  text-transform: uppercase;
}
.insights_details .insight_slider_panel {
  padding-left: 1em;
}
.insights_details .swiper {
  padding-bottom: 4em;
  padding-right: 0.5em;
}
.insights_details .swiper-pagination {
  text-align: left;
  bottom: 0;
}
.insight_card .cont {
  padding-top: 1.25em;
}
.insight_card .cont h4 {
  font-family: "Noto Serif Display", serif;
  font-weight: 800;
  letter-spacing: -1px;
}
.insight_card .cont .btn_panel {
  margin-top: 1.75em;
}
.team_sublist {
  padding-bottom: clamp(3em, 7.5vw + 1em, 9.375em);
}
.team_sublist .sublist_card img {
  max-width: 110px;
}
.team_sublist .sublist_card .cont {
  padding-left: 1.125em;
}
.team_sublist .sublist_card .cont h6 {
  font-size: var(--font-size-18);
  text-transform: uppercase;
  margin-bottom: 0.625rem;
  width: 100%;
  align-self: flex-end;
}
.team_sublist .sublist_card .cont a {
  width: 23px;
  height: 23px;
  align-self: flex-start;
}
/*Team*/

/*Architectural */
.architech_panel {
  padding: clamp(6em, 8vw + 1em, 10.625em) 0 clamp(3em, 2.875vw + 1em, 4.25em) 0 !important;
}
.architech_panel figure {
  width: auto !important;
}
.new_art_panel {
  padding: 0 !important;
}
.new_art_panel h4 {
  font-family: "Noto Serif Display", serif;
  font-size: var(--font-size-24);
  font-weight: 800;
}
.new_art_panel .new_art_box {
  padding: 0 !important;
  margin-top: 1.625em;
  row-gap: 1em;
}

.art_categories {
  padding: clamp(2em, 2.75vw + 1em, 3.75em) 0 clamp(2.5em, 2.75vw + 1em, 3.75em)
    0 !important;
}
.art_categories h4 {
  font-size: var(--font-size-24);
  font-family: "Noto Serif Display", serif;
}
.art_categories .categories_box_panel {
  padding: 0 !important;
  row-gap: clamp(1.5em, 2.5vw + 1em, 4.625em);
  margin-top: clamp(1.5em, 1.75vw + 1em, 2.5em);
}
.art_categories .category_card {
  width: 33% !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.art_categories .category_card figure {
  min-height: 65px;
  align-self: flex-end;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.art_categories .category_card img {
  width: auto !important;
}
.art_categories .category_card .wp-block-media-text__content {
  width: auto !important;
  padding: 0 !important;
  width: 100% !important;
  text-align: left;
  font-weight: 500;
  font-size: var(--font-size-18);
  margin-top: 0.625rem;
}

.art_intelligence {
  padding: clamp(2.5em, 2.75vw + 1em, 3.75em) 0 clamp(3em, 5.75vw + 1em, 7.5em)
    0 !important;
}
.art_intelligence h2 {
  margin-bottom: clamp(1rem, 1vw + 0.5em, 1.25rem);
  letter-spacing: -1px;
  line-height: 1em;
}
.art_intelligence h5 {
  font-family: "Noto Serif Display", serif;
  font-weight: 800;
}
.art_intelligence .intelligence_tab_panel,
.art_intelligence .intelligence_box,
.art_intelligence .cont {
  padding: 0 !important;
}
.art_intelligence .intelligence_tab_panel {
  margin-top: clamp(1.5em, 1.75vw + 1em, 3.125em);
}
.art_intelligence .slide_art .cont {
  order: 2;
  margin-top: 1.25em;
}
.art_intelligence .slide_art figure {
  order: 1;
}
.art_intelligence .cont h4 {
  font-family: "Noto Serif Display", serif;
  font-weight: 800;
  margin-bottom: 0.5em;
}
.art_intelligence .cont p {
  font-weight: 500;
}
.tab_panel_art {
  display: none;
}
.art_intelligence .swiper {
  padding-bottom: 3.5em;
  padding-right: 0.5em;
}
.art_intelligence .swiper .swiper-pagination {
  text-align: left;
}
.art_intelligence .uagb-container-inner-blocks-wrap {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 0 0 4% !important;
}
/*Architectural */

/*Services*/
.services_title_section {
  padding: clamp(6.5em, 12vw + 1em, 14em) 0 0 0 !important;
}
.services_title_section .uagb-container-inner-blocks-wrap {
  border-bottom: 1px solid var(--grey-03);
  padding: 0 0 clamp(2em, 3.5vw + 1em, 4.875em) 0 !important;
}
.services_title_section h6 {
  margin-bottom: clamp(0.875em, 1vw + 0.25em, 1.077em);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.services_title_section h2 {
  margin-bottom: clamp(0.3em, 1vw + 0.25em, 0.4em);
  letter-spacing: -2.5px;
}
.services_title_section p {
  max-width: 785px;
}

.services_items {
  padding: clamp(2em, 1.25vw + 1em, 2.5em) 0 clamp(6em, 9.5vw + 1em, 10.8125em)
    0 !important;
}
.services_items .services_list_box,
.services_list_box .cont,
.services_list_box .img {
  padding: 0 !important;
}
.services_items .services_list_box {
  row-gap: 1.5em;
}
.services_items .services_list_box:not(:last-child) {
  border-bottom: 1px solid var(--grey-03);
  padding-bottom: 2.6255em !important;
  margin-bottom: 3.1875em;
}
.services_list_box .cont h3 {
  margin-bottom: 0.52em;
}
.services_list_box .cont p {
  font-weight: 700;
  color: var(--black-02);
  letter-spacing: -0.5px;
}
.services_list_box .cont ul {
  margin-top: clamp(1.125em, 1.5vw + 0.5em, 2.1875em);
  margin-bottom: clamp(1.75em, 1.5vw + 0.5em, 2.1875em);
}
.services_list_box .cont ul li {
  font-size: var(--font-size-18);
  line-height: 1em;
  font-weight: 300;
  color: var(--black-02);
  margin-bottom: 0.35rem;
}
/*Services*/

/*Projects*/
.project_title_panel {
  padding: clamp(6em, 11vw + 1em, 13em) 0 2.125em 0 !important;
}
.project_title_panel h6 {
  font-size: var(--font-size-18);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2.5em;
}
.project_list_sec {
  padding: 0 0 clamp(5em, 7.5vw + 1em, 9.875em) 0;
}
.project_list_sec .project_box_sec.desk_panel,
.project_list_sec .category_tab {
  display: none;
}
.project_list_sec .project_box_sec {
  row-gap: 2em;
}
.project_list_sec .cat_name {
  border-bottom: 1px solid var(--black-02);
}
.project_list_sec .cat_name span {
  font-size: var(--font-size-24);
  font-weight: 700;
  padding-bottom: 0.25rem;
  width: 100%;
  display: block;
}
.project_list_sec .list_item_sec {
  row-gap: 1.5em;
}
.project_list_sec .project_card {
  justify-content: space-between;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.project_list_sec .project_card:hover {
  transform: scale(1.04);
  -webkit-transform: scale(1.04);
}
.project_list_sec .project_card .img {
  width: 40%;
}
.project_list_sec .project_card .cont {
  width: 55%;
}
.project_list_sec .project_card h5 {
  color: var(--black);
  font-size: var(--font-size-24);
  margin-bottom: 0.66em;
  line-height: 1.1em;
}
.project_list_sec .project_card .subtext {
  color: var(--black);
  font-size: var(--font-size-14);
  font-weight: 600;
  margin-bottom: 0.88em;
  display: block;
  width: 100%;
}
.project_list_sec .more_projects {
  font-size: var(--font-size-18);
  line-height: 1em;
  display: block;
  text-transform: capitalize;
  text-decoration: underline;
  margin: 2.25em 0 1.25em 0;
  font-weight: 600;
  cursor: pointer;
}
.link_box.hide {
  display: none;
}
.project_list_sec .projects_catlist {
  column-gap: 0.65rem;
  margin-bottom: 2.1875em;
}
.project_list_sec .projects_catlist span {
  width: 12%;
}
.project_list_sec .btn_sec {
  display: none;
}

.single-project {
  padding-top: clamp(6.5em, 10vw + 1em, 12em);
  background-color: var(--black);
}
.single-project .project_single_title_panel {
  padding: 0 0 clamp(3em, 3vw + 1em, 5em) 0 !important;
}
.single-project .project_single_title_panel h5 {
  margin-bottom: 2em;
  font-size: var(--font-size-24);
  color: var(--white);
}
.single-project .project_single_title_panel h2 {
  color: var(--white);
  max-width: 82%;
  letter-spacing: -1px;
  line-height: 1.01em;
}
.single-project .project_img_panel,
.single-project .project_banner_panel {
  padding: 0 !important;
}
.single-project .project_img_panel .lg {
  display: none;
}
.single-project .project_details_panel {
  padding: clamp(1.25em, 1.25vw + 1em, 2.625em) 0 !important;
}
.single-project .project_details_panel p {
  line-height: 1.6em;
}
.single-project .project_details_panel p,
.single-project .project_details_panel h5,
.single-project .testimonials_sec .tesimonial_box p,
.single-project .testimonials_sec .tesimonial_box h5 {
  color: var(--white);
}
.single-project .project_details_panel h5 {
  font-family: "Noto Serif Display", serif;
  margin-bottom: 0.88em;
}
.single-project .single_project_box {
  padding: 1.875em 0 !important;
}
.single-project .single_project_box:not(:last-child) {
  border-bottom: 1px solid #4f4f4f;
}
.single-project .project_banner_panel .uagb-container-inner-blocks-wrap {
  width: 100% !important;
  margin: 0 !important;
}
.single-project .testimonials_sec {
  padding: clamp(2em, 3vw + 1em, 5em) 0 !important;
}
.single-project .testimonials_sec .tesimonial_box {
  padding: 0 0 0 clamp(1.5em, 3.5vw + 1em, 5.375em) !important;
}
.single-project .testimonials_sec .tesimonial_box::before {
  content: "\201c";
  font-size: clamp(3em, 7.5vw + 1em, 9.5em);
  font-weight: 700;
  color: #555555;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  line-height: 0.75em;
}
.single-project .testimonials_sec .tesimonial_box .lg_text {
  font-size: var(--font-size-30);
  font-weight: 500;
  line-height: 1.33em;
  margin-bottom: 1.33em;
}
.single-project .testimonials_sec .tesimonial_box h5 {
  font-size: var(--font-size-24);
  margin-bottom: 0.45rem;
}
.single-project .testimonials_sec .tesimonial_box p {
  font-size: var(--font-size-16);
  font-weight: 500;
}
.single-project .project_video_panel {
  padding: 0 !important;
}
.single-project .project_video_panel figure::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.single-project .project_video_panel .play_btn {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: auto !important;
  z-index: 3;
}
.single-project .bottm_btn_panel {
  padding-top: clamp(2em, 2.75vw + 1em, 4.25em);
  padding-bottom: clamp(4em, 6.75vw + 1em, 8.75em);
}
/*Projects*/

/*Insight post*/
.insight_post,
.insights_single_panel {
  padding: clamp(6em, 10vw + 1em, 12.5em) 0 3.125em 0;
}
.insight_post .title {
  margin-bottom: clamp(1.5em, 1.5vw + 1em, 2.8125em);
}
.insight_post .insights_listing_sec {
  row-gap: clamp(2.5em, 2.75vw + 1em, 4.25em);
}
.insight_post .insight_cards {
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.insight_post .insight_cards:not(:first-child):hover {
  transform: scale(1.04);
}
.insight_post .insight_cards.hide {
  display: none;
}
.insight_post .insight_cards .col-img {
  margin-bottom: clamp(1em, 1.25vw + 1em, 2.5em);
}
.insight_post .insight_cards .cont h5 {
  margin-bottom: 0.833em;
  font-family: "Noto Serif Display", serif;
  line-height: 1.2em;
}
.insight_post .insight_cards .date {
  color: #8c8c8c;
  font-size: var(--font-size-18);
  font-weight: 500;
  margin-bottom: 1.1em;
  display: block;
}
.insight_post .insight_cards:not(:first-child) .date {
  margin-bottom: 0.75rem;
}
.insight_post .load_more {
  padding-top: 3.375em;
}
.insight_post .load_more h6 {
  cursor: pointer;
}
.insights_single_panel .date {
  font-size: var(--font-size-18);
  font-weight: 500;
  color: var(--black-02);
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 0.875rem;
}
.insights_single_panel h2 {
  max-width: 935px;
  letter-spacing: -2.25px;
  text-align: center;
  line-height: 1.05em;
}
.insights_single_panel .img {
  margin-top: clamp(2em, 1.5vw + 1em, 2.8125em);
}
.insights_single_panel .content_panel {
  margin-top: clamp(2em, 2.5vw + 1em, 4.0625em);
  padding-bottom: 14.7%;
}
.insights_single_panel .cont_panel {
  padding: 0 !important;
  max-width: 732px;
  margin: 0 auto;
  row-gap: 1.25em;
}

.latest_posts .insight_cards:not(:last-child) {
  margin-bottom: 1.5em;
}
.latest_posts .insight_cards {
  border-top: 1px solid var(--grey-03);
  padding-top: 1.5em;
}
.latest_posts .insight_cards .col-img {
  margin-bottom: 1em;
}
.latest_posts .insight_cards .cont h5 {
  margin-bottom: 0.875rem;
}

.project_slider_panel,
.project_slider_panel .project_slider_box_panel {
  padding: 0 !important;
}
.project_slider_panel {
  padding-bottom: 1.875em !important;
}
.project_slider_panel p {
  color: var(--white);
  margin-top: 1em;
}
.project_slider_panel .swiper {
  padding-bottom: 4em;
}
.project_slider_panel .swiper-pagination {
  text-align: left;
}
.project_slider_panel .swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #252525;
}
.project_slider_panel
  .swiper
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--white);
}
.project_slider_panel .swipeCardPr .parent_img {
  display: block;
}
.project_slider_panel .swipeCardPr > img {
  display: none;
}
/*Insight post*/

/*GetInTouch*/
.get_in_touch_sec {
  padding: clamp(6em, 12.5vw + 1em, 14.0625em) 0 clamp(4em, 8.5vw + 1em, 10em);
}
.get_in_touch_sec .title {
  margin-bottom: clamp(1.75em, 2.5vw + 1em, 3.625em);
}
.contact_info .contact_col h3 {
  margin-bottom: 0.583em;
}
.contact_info .contact_col span {
  display: block;
  width: 100%;
  font-size: var(--font-size-18);
  font-weight: 500;
  margin-bottom: 0.375rem;
}
.get_in_touch_sec .contact_info {
  padding-bottom: clamp(2em, 3.75vw + 1em, 5.9375em);
  border-bottom: 1px solid var(--grey-03);
  row-gap: 2em;
  column-gap: clamp(4em, 5.5vw + 1em, 6.25em);
}
.contact_info .contact_col span a {
  color: var(--black-02);
}
.contact_info .contact_col span a.mail {
  color: #ff0000;
}
.get_in_touch_sec .title h6 {
  text-transform: uppercase;
}
.get_in_touch_sec .form_panel {
  padding-top: clamp(3em, 4.75vw + 1em, 6.875em);
}
.get_in_touch_sec .form_panel {
  row-gap: clamp(2.5em, 4vw + 1em, 5.9375em);
}
.get_in_touch_sec .input_card {
  column-gap: 1.75em;
  row-gap: 1.375em;
}
.get_in_touch_sec .form_panel .sub_title {
  margin-bottom: clamp(1em, 1vw + 0.5em, 1.625em);
}
.get_in_touch_sec .form_panel input[type="text"],.get_in_touch_sec .form_panel input[type="email"],.get_in_touch_sec .form_panel input[type="tel"],
.get_in_touch_sec .form_panel select {
  width: 100%;
}
.contact_panel small {
  font-size: var(--font-size-18);
  display: block;
  text-align: center;
  width: 100%;
}
.get_in_touch_sec input[type="radio"] {
  padding: 0;
  width: auto;
}
.get_in_touch_sec .primary_btn_invert{min-width: 220px;}
.get_in_touch_sec .wpcf7-form-control-wrap,.get_in_touch_sec .radio_card .wpcf7-form-control-wrap{width: 100%;}
.get_in_touch_sec .wpcf7-form-control.wpcf7-radio{display: flex;flex-wrap: wrap;width: 100%;justify-content: center;column-gap: clamp(1em, 1vw + 0.5em, 1.875em);
  margin-top: clamp(1.25em , 1vw + 1em , 2em);
  row-gap: 1em;}
.get_in_touch_sec .wpcf7-form-control.wpcf7-radio .wpcf7-list-item{margin: 0;}
.wpcf7-not-valid-tip{display: none;}
/*GetInTouch*/

/*INput*/
input[type="text"],input[type="email"],input[type="tel"],input[type="date"],
textarea,
select {
  border: 1px solid var(--grey-03);
  color: var(--black-02);
  padding: 0.875rem clamp(1em , 1vw + 0.5em ,1.875rem);
  font-size: var(--font-size-16);
  border-radius: 20px;
  width: 100%;
}
::placeholder,
::-webkit-input-placeholder {
  color: #8f8f8f;
}
textarea {
  height: clamp(5em, 7vw + 1em, 8.75em);
  width: 100%;
  resize: none;
}
select {
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../images/down_arrow.png) no-repeat 95% center;
  cursor: pointer;
}
select * {
  background-color: transparent;
}
input[type="radio"] {
  margin-right: 0.25rem;
}

.radio_card label{
  padding-left: 1.75rem;
  cursor: pointer;
  font-size: var(--font-size-18);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 1em;
}

/* Hide the browser's default radio button */
.radio_card label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: auto !important;
  left: 0;
  top: 0;
 
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--border-grey);
}


.radio_card label input[type="radio"]:checked ~ .checkmark {
  background-color: var(--white);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio_card label input[type="radio"]:checked ~ .checkmark:after {
  display: block;
  background-color: var(--border-grey);
}

/* Style the indicator (dot/circle) */
.radio_card label .checkmark:after {
 	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--white);
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
}
/*INput*/

/*Datepicker*/
.ui-datepicker{
  width: 20em;
}
.ui-datepicker td span, .ui-datepicker td a{
  padding: .5em .2em;
  text-align: center;
}
/*Datepicker*/
@media screen and (min-width: 360px) {
  /*Footer*/
  footer .top_panel .talk_panel br {
    display: inline-block;
  }
  /*Footer*/
}
@media screen and (min-width: 640px) {
  .primary_menu .close {
    position: absolute;
    top: 1em;
    left: 80%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: auto;
    z-index: 1;
  }
  /*Home */
  .home_banner {
    background-image: url(../images/home-bg-lg.jpg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 100%;
    background-color: #f6f6f6;
  }
  .home_banner {
    background-image: url(../images/webp/home-bg-lg.webp);
  }

  .we_love_panel .book_main_list {
    order: 1;
    width: 50% !important;
  }
  .we_love_panel .cont_panel {
    order: 2;
    margin-bottom: 0;
    width: 50% !important;
  }
  .we_love_panel .title {
    padding-left: clamp(2.5em, 4vw + 1em, 2.7266em);
  }
  .we_love_panel .accordion_box h2 {
    color: var(--white);
  }

  .meet_team .uagb-container-inner-blocks-wrap {
    width: 92% !important;
    margin: 0 auto !important;
    max-width: 1120px !important;
    padding: 0 !important;
  }

  .meet_team .col_right .swiper,
  .rules_panel .col_right .swiper {
    padding-bottom: 0 !important;
  }
  /*Home */

  /*About*/
  .meet_team .col_right,
  .rules_panel .col_right {
    column-gap: clamp(1.35em, 1vw + 0.5em, 1.875em);
    justify-content: space-between;
  }
  .meet_team .team_box {
    width: 48% !important;
    margin-top: 0.25rem;
  }

  .rules_panel .rule_box {
    width: 48% !important;
  }
  .rules_panel .col_right {
    row-gap: clamp(2em, 2.75vw + 1em, 3.5em);
  }
  .rules_panel .rule_box .uagb-ifb-title {
    width: 66% !important;
    margin-top: 0.375rem;
  }
  .rules_panel .rule_box:nth-child(3) .uagb-ifb-title {
    letter-spacing: -1.875px;
  }

  .about_more_panel {
    background: url(../images/about-lg.jpg) no-repeat left top;
    background-size: cover;
  }
  /*About*/

  /*Team*/
  .insights_details .insight_slider_panel {
    padding-left: 0;
    margin: 0 auto;
    max-width: 1120px;
    width: 92%;
  }
  .insights_details .swiper {
    padding-bottom: 0;
    padding-right: 0;
  }
  .insights_details .swiper-pagination {
    display: none;
  }
  .insights_details .insight_col {
    display: flex;
    flex-wrap: wrap;
  }
  .insight_card {
    padding-bottom: 2.5em;
    margin-bottom: 2.5em;
    border-bottom: 1px solid var(--grey-03);
    column-gap: clamp(1.25em, 1vw + 0.75em, 1.875em);
  }
  .insight_card:last-child {
    margin-bottom: 0;
  }
  .insight_card .img {
    width: 31.5%;
  }
  .insight_card .cont {
    width: 65%;
    padding-top: 0;
  }
  .insight_card .cont h4 {
    align-self: flex-end;
  }

  /*Team*/
}
@media screen and (min-width: 768px) {
  header .logo {
    width: 35%;
    max-width: 370px;
  }

  /*Home*/
  .home_banner {
    padding: 17.37% 0 9.844% 0 !important;
  }
  .home_banner .cont {
    margin: 0;
  }
  .art .col {
    width: 47%;
  }
  .art .col:first-child {
    order: 1;
    margin-top: 0;
  }
  .art .col:last-child {
    order: 2;
  }
  .art .cont h5,
  .art .cont span,
  .art .cont a {
    display: block;
  }
  .art .cont h2 {
    margin-left: 0;
    color: var(--white);
    margin-top: 0.55em;
  }
  .art .title,
  .art .cont {
    margin-left: 6.75em;
    margin-top: 1.5625em;
  }
  .art .cont h5 {
    margin-bottom: 0.46em;
  }
  .art .cont a {
    margin-top: 1.3em;
  }

  .services_panel .uagb-container-inner-blocks-wrap {
    width: 92% !important;
    margin: 0 auto !important;
    max-width: 1120px !important;
    padding: 0 !important;
  }
  .services_panel .services_list {
    column-gap: 2em;
    row-gap: 2em;
  }
  .services_panel .services_box {
    width: 31.4%;
    margin: 0 !important;
  }
  .services_panel .services_tab .cat_list {
    width: 40%;
    column-gap: 0.5em;
    justify-content: flex-start;
  }
  .services_panel .services_tab .category_tab .arrow_btn {
    display: block;
  }
  .services_panel .services_tab .arrow_btn.mb_only,
  .services_panel .services_tab .swiper-pagination {
    display: none;
  }

  .we_love_panel .cont_panel {
    padding-top: 1.125em !important;
  }
  /*Home*/

  /*Team*/
  .team_title_panel .uagb-container-inner-blocks-wrap {
    width: 92% !important;
    margin: 0 auto !important;
  }

  .team_details .uagb-container-inner-blocks-wrap {
    column-gap: clamp(1.25em, 1vw + 0.75em, 1.875em) !important;
  }
  .team_details .team_aside {
    width: 31.5% !important;
  }
  .team_details .more_details {
    width: 65% !important;
    margin-top: 0;
  }
  .insights_details .insight_main_title {
    justify-content: flex-end;
    padding-bottom: 1.75em;
    margin-bottom: 2.5em;
    border-bottom: 1px solid var(--grey-03);
  }
  .insights_details .insight_main_title span {
    width: 66%;
  }
  /*Team*/

  /*Architectural */
  .art_categories .category_card {
    width: 25% !important;
  }
  .art_intelligence .uagb-container-inner-blocks-wrap {
    width: 92% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  .tab_panel_art {
    display: flex;
    margin-top: clamp(2em, 1.5vw + 1em, 3.125em);
    column-gap: 1em;
  }
  .tab_panel_art h6 {
    color: var(--grey-01);
    padding-right: 5%;
    cursor: pointer;
  }
  .tab_panel_art h6.active {
    color: var(--black-02);
    border-bottom: 2px solid var(--black-02);
    padding-bottom: 0.25rem;
  }
  .art_intelligence .intelligence_box {
    align-items: center;
    justify-content: space-between;
    display: none;
  }
  .art_intelligence .intelligence_box.active {
    display: flex;
  }
  .art_intelligence .intelligence_box .cont {
    width: 31.6%;
  }
  .art_intelligence .intelligence_box figure {
    width: 61.6% !important;
  }
  /*Architectural */

  /*Service*/
  .services_items .services_list_box {
    column-gap: 2.375em;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .services_list_box .cont {
    width: 29% !important;
    padding-top: clamp(2em, 2.65vw + 1em, 4.0625em) !important;
  }
  .services_list_box .img {
    width: 67% !important;
    justify-content: flex-end;
  }
  .services_list_box .img figure {
    width: auto !important;
    text-align: right;
  }
  /*Service*/

  /*Projects*/
  .project_list_sec {
    padding-top: 2.125em;
  }
  .project_list_sec .project_box_sec.mobile_panel {
    display: none;
  }
  .project_list_sec .project_box_sec.desk_panel,
  .project_list_sec .category_tab {
    display: flex;
  }
  .project_box_sec {
    justify-content: flex-start;
    column-gap: 2.875%;
  }
  .project_box_sec .project_card {
    width: 31.4%;
  }
  .project_box_sec .project_card.hide {
    display: none;
  }
  .project_box_sec .project_card a {
    width: 100%;
    display: block;
  }
  .project_list_sec .project_card .img {
    width: 100%;
    margin-bottom: 2em;
  }
  .project_list_sec .project_card .cont {
    width: 100%;
  }
  .project_list_sec .btn_sec {
    margin-top: 3em;
    display: block;
  }

  .single-project .project_img_panel .lg {
    display: block;
  }
  .single-project .project_img_panel .lg img {
    width: 100% !important;
  }
  .single-project .project_img_panel .sm {
    display: none;
  }
  .single-project .single_project_box {
    justify-content: flex-end;
  }
  .single-project .project_details_panel h5 {
    width: 33.75% !important;
  }
  .single-project .project_details_panel p {
    width: 66.25% !important;
  }
  .single-project .single_project_box:not(:first-child) p {
    padding-right: 9%;
  }
  .single-project .project_banner_panel .uagb-container-inner-blocks-wrap {
    width: 92% !important;
    margin: 0 auto !important;
  }
  .single-project .testimonials_sec .tesimonial_box {
    padding: 0 clamp(1.5em, 3.5vw + 1em, 5.375em) !important;
  }

  .project_slider_panel .project_slider_box_panel .projectSwiper figure {
    width: 66% !important;
  }
  .project_slider_panel .project_slider_box_panel .projectSwiper p {
    width: 32% !important;
  }
  .project_slider_panel .swipeCardPr > img {
    display: block;
    width: 32% !important;
    position: absolute;
    top: 0;
    right: 0;
  }
  /*Projects*/

  /*Insights*/
  .insight_post .insights_listing_sec {
    column-gap: 2.6%;
  }
  .insight_post .insight_cards {
    justify-content: space-between;
    width: 100%;
    border: 0 !important;
    align-items: flex-start;
  }
  .insight_post .insight_cards:not(:first-child) {
    width: 31.6%;
  }
  .insight_post .insight_cards:first-child .col-img {
    margin-bottom: 0;
    width: 65.8%;
    min-height: 400px;
    height: 100%;
  }
  .insight_post .insight_cards:first-child .col-img img {
    width: 100%;
    height: 100%;
  }
  .insight_post .insight_cards:first-child .cont {
    width: 31.5%;
  }
  .insight_post .insight_cards:first-child .cont h5 {
    font-size: var(--font-size-48);
    letter-spacing: -2px;
    margin-bottom: 0.583em;
    line-height: 1em;
  }
  .insight_post .insight_cards:not(:first-child) .col-img img {
    width: 100%;
    max-width: 352px;
  }
  .latest_posts .insight_cards:not(:last-child) {
    margin-bottom: 2.5em;
  }
  .latest_posts .insight_cards {
    column-gap: 1.875em;
    padding-top: 2.5em;
  }
  .latest_posts .insight_cards .col-img {
    width: 31.6%;
    margin-bottom: 0;
  }
  .latest_posts .insight_cards .col-img img {
    width: 100%;
    height: 100%;
  }
  .latest_posts .insight_cards .cont {
    width: 57.6%;
  }
  .latest_posts .insight_cards .cont h5 {
    margin-bottom: 1em;
  }
  /*Insights*/

  /*Getintouch*/
  .get_in_touch_sec .form_panel .wpcf7-form-control-wrap{
    width: 31.5%;
  }
  .get_in_touch_sec .radio_card .wpcf7-form-control-wrap{width: 100%;}
  /*Getintouch*/
}
@media screen and (min-width: 1024px) {
  /*Header*/
  header {
    padding: 2.6875em 0 1.5em 0;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
  }
  header.sticky {
    padding: 1.5em 0;
  }
  .header_main_panel {
    align-items: flex-start;
  }
  header.sticky .header_main_panel {
    align-items: center;
  }
  header .logo {
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
  }
  header.sticky .logo {
    max-width: 185px;
  }
  /*Header*/
  /*Footer*/
  footer .top_panel .get_in_touch_panel {
    width: auto;
    column-gap: 3.375em;
    margin-top: 0;
  }
  footer .footer_logo {
    width: 100%;
    order: 2;
    margin-bottom: 1.375em;
  }
  footer .footer_menu {
    width: 100%;
    margin-bottom: 0;
    order: 1;
    padding-bottom: 2.625em;
    border-bottom: 1px solid var(--border-grey);
    margin-bottom: 4.1875em;
  }
  footer .primary_btn {
    margin-right: 5px;
  }
  footer .footer_menu li:not(:last-child) {
    border-right: 1px solid var(--border-grey);
    padding-right: 0.875em;
  }
  footer .copy_rights {
    width: 100%;
    order: 3;
  }
  footer .footer_menu .menu_list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1em;
  }
  footer .social_links {
    margin: 0;
    width: auto;
  }
  .footer_menu li a {
    margin-bottom: 0;
  }
  footer .menu_items {
    padding-top: 2.5em;
    margin-top: 3.5625em;
  }
  footer .copy_rights ul {
    column-gap: 0.875em;
  }
  footer .copy_rights li:not(:last-child) {
    padding-right: 0.875em;
  }
  /*Footer*/

  /*Home*/
  .meet_panel .meet_box .cont {
    margin-top: clamp(1.5em, 1.5vw + 1em, 2.75em);
  }
  .meet_panel .meet_box .cont p {
    display: block;
  }
  .meet_panel .meet_box .meet_col {
    width: 46%;
  }
  .meet_panel .meet_img {
    position: absolute;
    top: 47%;
    right: 0;
    z-index: 3;
    width: 50% !important;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    margin-top: 0;
  }
  .meet_panel .uagb-container-inner-blocks-wrap {
    position: static !important;
  }
  .meet_panel .btn_panel {
    flex-direction: column;
    align-items: flex-start;
  }
  .meet_panel .btn_panel a:not(:last-child) {
    margin-bottom: 0.6577em;
  }

  .insights {
    background: url(../images/insights.jpg) no-repeat center;
    background-size: cover;
  }
  .insights::before {
    width: 51.25%;
  }
  .inslight_slider {
    width: 50% !important;
  }
  .inslight_slider article {
    max-width: 493px;
    margin-bottom: 2em !important;
  }
  .insights .btn_panel {
    right: 0;
    left: 12.13125em;
  }

  .our_customer_slider .coustomers_slider_panel .uagb-slider-container {
    padding-bottom: 0 !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
  .our_customer_slider .swiper-pagination {
    display: none;
  }
  .our_customer_slider .swiper-button-next,
  .our_customer_slider .swiper-button-prev {
    display: flex;
  }

  .our_customers .coustomers_box {
    column-gap: 5em;
  }
  .our_customers .coustomers_box .wp-block-uagb-image {
    width: auto;
  }
  .our_customers .coustomers_box img {
    aspect-ratio: auto;
    object-fit: none;
  }

  /*Home*/

  /*About*/
  .about_title_panel h2 {
    width: 94% !important;
  }
  .about_title_panel .cont p {
    max-width: 736px;
    width: 65.7% !important;
  }

  .meet_team .col_left,
  .rules_panel .col_left {
    width: 34.3% !important;
  }
  .meet_team .col_right,
  .rules_panel .col_right {
    width: 65.7% !important;
  }
  .meet_team h3 br,
  .rules_panel h3 br {
    display: inline-block;
  }
  .meet_team .col_left,
  .rules_panel .col_left {
    margin-bottom: 0;
  }

  .rules_panel .col_left {
    padding-top: 1.25em !important;
  }

  .team_sublist .sublist_card {
    padding-left: 1.25em;
  }
  /*About*/

  /*Architectural */
  .new_art_panel .new_art_box {
    column-gap: clamp(1.25em, 1vw + 0.75em, 1.875em);
  }
  .new_art_panel .new_art_box p {
    width: 31.25% !important;
  }
  /*Architectural */

  .insight_post .insight_cards:first-child .cont {
    padding-top: clamp(0.5em, 1.25vw + 1em, 2.5em);
  }
  .latest_posts .insight_cards .cont {
    padding-top: 1.25em;
  }
  .latest_posts {
    padding-bottom: 1.875em;
  }
}

@media screen and (min-width: 1920px) {
  /*Home*/
  .home_banner .cont .title_sec {
    margin-bottom: 2.33em;
  }
  .meet_panel .meet_img {
    width: 59% !important;
    top: 49.5%;
  }
  .we_love_panel .book_main_list {
    width: 55% !important;
  }
  .we_love_panel .cont_panel {
    width: 45% !important;
  }
  .welcome_panel h4 {
    display: inline-block;
    width: auto !important;
  }
  .welcome_panel h4::before {
    content: "";
    display: inline-block;
    width: 2.5em;
    height: 1px;
  }
  /*Home*/
}
