@charset "UTF-8";

::-moz-selection {
    background: transparent;
    text-shadow: none;
    color: #ffffff;
}

::selection {
    background: transparent;
    text-shadow: none;
    color: #ffffff;
}

html,
body {
    width: 100%;
    height: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
    margin: 0;
    padding: 0;
}

body {
    /* background-image: url(/assets/static/images/bg.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 100vh;
    background: 
  radial-gradient(ellipse 100% 35% at 50% 0%, #8B5CC8 0%, #5B2D9A 30%, transparent 60%),
  radial-gradient(ellipse 90% 45% at 40% 75%, #6B1FD4 0%, #4A0FA8 25%, #1a0550 55%, transparent 75%),
  radial-gradient(ellipse 60% 25% at 20% 80%, #7B3AB8 0%, transparent 50%),
  linear-gradient(180deg,
    #6B3FA0 0%,
    #3D1878 12%,
    #120830 25%,
    #05020F 40%,
    #07030F 50%,
    #1A0848 60%,
    #4A18A0 72%,
    #5B1FB8 80%,
    #2A0848 92%,
    #080210 100%
  );
  background-attachment: fixed;
}

ul {
    list-style: none;
    margin: 0;
}

a {
    color: #000;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:link,
a:visited {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
}

*:focus,
a:focus,
a:active {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

figure {
    line-height: 0;
}

p:first-child {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

img {
    display: inline-block;
    max-width: 100%;
}

address {
    margin-bottom: 0;
}

/* -----------------------------------------
   Font Impliment
----------------------------------------- */

html,
body {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

body,
p {
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-rendering: optimizeLegibility;
    margin: 0;
    line-height: 1.3;
    padding: 0 0 15px;
    font-family: "Montserrat", sans-serif;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 14px;
}

em,
i {
    font-style: italic;
}

strong,
b {
    font-weight: bold;
}

h1 i,
h2 i,
h3 i,
h4 i,
h5 i,
h6 i {
    font-style: italic;
}

.btn-primary {
    background-color: transparent;
    border-color: #fff;
    color: #fff !important;
    width: 15%;
    padding: 8px 8px;
    font-weight: 500;
}

.btn-primary:hover {
    color: #020107 !important;
    background-color: #fff;
    border-color: #fff;
}

.btn-secondary {
    color: #fff;
    background-color: #fff;
    border-color: #fff;
    border-radius: 100px;
    margin-left: 20px;
}

.btn-secondary:hover {
    color: #020107;
    background-color: rgb(244, 244, 244);
    border-color: rgb(86, 94, 100);
}

btn-check:focus + .btn-primary,
.btn-primary:focus {
    color: #020107 !important;
    background-color: #ffffff;
    border-color: #ffffff !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}

.enquire-fixed {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    color: #020107 !important;
    background: #fff;
    padding: 12px;
}

/*  ==========================================================================
	Form Controls
	========================================================================== */
input,
select,
textarea {
    font-size: 14px;
    color: #4c4c4c;
    padding: 8px 12px;
    border: solid 1px #cdcdcd;
}

textarea {
    height: auto;
    padding: 12px;
    resize: vertical;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
    display: block;
    width: 100%;
    min-height: 40px;
}

input[type="checkbox"] {
    width: auto;
    height: auto;
    position: relative;
    outline: none;
    border: solid 1px #d7d7d7;
    margin: 0 5px 0;
    background: #fff;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
}

input[type="checkbox"]:hover:before,
input[type="checkbox"]:checked:before {
    content: "\2714";
    font-size: 14px;
    line-height: 18px;
    left: 1px;
    text-align: center;
    width: 20px;
    color: #ffff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

input[type="checkbox"]:checked:before {
    color: #00a79d;
}

input[type="radio"] {
    width: auto;
    height: auto;
    position: relative;
    outline: none;
    border: solid 1px #d7d7d7;
    margin: 0 5px 0;
    background: #fff;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

input[type="radio"]:hover:before,
input[type="radio"]:checked:before {
    content: "\2022";
    font-size: 17px;
    line-height: 18px;
    left: 1px;
    text-align: center;
    width: 20px;
    color: #ffff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

input[type="radio"]:checked:before {
    color: #00a79d;
}

input[type="file"] {
    height: auto;
    padding: 12px;
}

.home-active {
    overflow: hidden;
}

/*input.button[type="submit"],
input.button[type="button"]{
	width:auto;
}
*/
label {
    display: block;
    padding-top: 8px;
    font-weight: normal;
}

::-webkit-input-placeholder {
    color: #9b9b9b;
    opacity: 1;
}

::-moz-placeholder {
    color: #9b9b9b;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #9b9b9b;
    opacity: 1;
}

:-moz-placeholder {
    color: #9b9b9b;
    opacity: 1;
}

.nopadding {
    padding: 0;
}

.formRow {
    margin-bottom: 18px;
    position: relative;
}

.formRow label {
    margin: 0;
    padding: 5px 0 0 15px;
    font-size: 10px;
    line-height: 1;
}

.formRow.formSubmit {
    margin-bottom: 0;
}

.formRow.error:before,
.formRow .error:before,
.formRow.success:before,
.formRow .success:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    right: 3px;
    top: 3px;
    z-index: 10;
    font-size: 10px;
    line-height: 15px;
    text-align: center;
    font-family: "fontname" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
}

.formRow.error label,
.formRow .error label {
    color: #dd5044;
}

.formRow.error:before,
.formRow .error:before {
    content: "\e905";
    color: #dd5044;
}

.formRow.success label,
.formRow .success label {
    color: #fff36e;
}

.formRow.success:before,
.formRow .success:before {
    content: "\e904";
}

.form-control {
    color: #444;
    border: 1px solid #cbc6c9;
    background: transparent;
    box-shadow: none;
    padding: 12px;
    height: 44px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
}

.form-control:focus {
    border: 1px solid #cbc6c9;
    background-color: #fff;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

/*PRELOADING------------ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000;
    z-index: 99999;
    overflow: hidden;
    transition: height 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

#preloader::after {
    content: "";
    /* background-image: url("../images/moonley-logo-loader.gif"); */
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10%;
}

#preloader.slideup {
    height: 0;
    transition-timing-function: cubic-bezier(0.895, 0.03, 0.585, 0.22);
    transition-duration: 0.9s;
}

/*  Custom Upload  */
.upload {
    position: relative;
}

.upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    z-index: 50;
    opacity: 0;
}

.general-label {
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Effra";
    font-size: 14px;
    display: block;
    padding-bottom: 10px;
    margin: 0;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input[type="text"],
.input-wrapper input[type="email"],
.input-wrapper input[type="password"] {
    display: block;
    height: 45px;
    border: 0;
    padding: 10px;
    font-size: 12px;
    width: 100%;
    letter-spacing: 1px;
    color: #4e4c4c;
    font-family: "Effra";
}

.input-wrapper .error-text {
    font-size: 12px;
    color: #ea344a;
    font-weight: 300;
}

.input-wrapper.input-error .error-text {
    display: block;
}

.input-wrapper.input-error input {
    border: 1px solid #ea344a;
}

.input-wrapper input[type="text"]:disabled,
.input-wrapper input[type="password"]:disabled,
.input-wrapper input[type="email"]:disabled {
    background-color: #e3e4e5;
    color: #9b9b9b;
    cursor: not-allowed;
}

/******************SCROLL BAR***********************/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    opacity: 0;
    background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 16px;
    background: #000;
}

::selection {
    color: black;
    background: #ffffff;
}

/* -- Common Layout elements -- */
/* -----------------------------------------
   Bootstrap Overrides
----------------------------------------- */
.container-fluid {
    padding-left: 3%;
    padding-right: 3%;
}

/* -----------------------------------------
   Header Styles
----------------------------------------- */
header {
    height: 72px;
    /* background-color: #fff; */
    transition: 0.5s ease;
    transition-delay: 0.5s;
    opacity: 1;
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

header .main-logo {
    position: relative;
    z-index: 100;
}

header .main-logo a {
    display: block;
}

header .main-logo svg {
    display: block;
    fill: #000;
    transition: 0.3s ease;
}

header .main-logo .logo-placeholder {
    max-width: 100%;
    width: 104px;
    height: 55px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}

header .main-logo .logo-placeholder.black-logo {
    display: none;
    background-image: url("../images/bestx-logo.png");
}

header .main-logo .logo-placeholder.white-logo {
    display: block;
    background-image: url("../images/bestx-logo.png");
}

header.active:after {
    /* background-color: #fff; */
}

/* header.active .main-logo svg {
  fill: #000;
} */

header.active .main-logo .logo-placeholder.black-logo {
    display: block;
}

header.active .main-logo .logo-placeholder.white-logo {
    display: none;
}

header.hide {
    pointer-events: none;
    /* top: -50px; */
}

header.hide.navOpen {
    pointer-events: all;
}

header .container-fluid,
header .container,
header .row {
    height: 100%;
}

header:after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    /* background-color: transparent; */
    transition: none;
    z-index: -1;
}

/* -----------------------------------------
Footer page Styles
----------------------------------------- */

.pageFooter {
    position: relative;
    bottom: 0;
    width: 100%;
}

footer.pageFooter {
    /* background-color: #000; */
    background-image: url("/assets/static/images/footer-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    /* height: 100%; */
    /* border-top: 1px solid #FFF; */
    z-index: 100;
}

footer.pageFooter .footer-col {
    color: #fff;
    font-size: 15px;
    line-height: 18px;
}

footer.pageFooter .footer-col p img,
footer.pageFooter .footer-col a img {
    max-width: 114px;
    max-height: 30px;
    margin-right: 6px !important;
}

footer.pageFooter .footer-col p img {
    max-height: 18px;
}

footer.pageFooter .footer-col a {
    color: #fff;
    text-decoration: none;
    background-size: 0% 2px;
    position: relative;
    transition: background-size 0s;
}

footer.pageFooter .footer-col a:hover,
footer.pageFooter .footer-col a:focus {
    background-size: 100% 1px;
    transition: background-size 0s;
}

footer.pageFooter .footer-col h6 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 0;
    color: #fff;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 20px;
}

footer.pageFooter .footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer.pageFooter .footer-col ul li {
    display: flex;
    line-height: 1.3;
}

footer.pageFooter .footer-col p {
    color: #fff;
    line-height: 24px;
    font-size: 16px;
}

footer.pageFooter .footer-col p a {
    line-height: 30px;
}

footer.pageFooter .footer-copyright-section {
    color: #fff;
    padding-top: 20px;
    font-size: 16px;
    border-top: 1px solid #fff;
    margin-top: 25px;
}

footer.pageFooter .footer-copyright-section p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 0;
}

footer.pageFooter .footer-copyright-section svg {
    max-width: 70px;
    fill: #fff;
}

footer .pre-footer-text h3 {
    font-size: 55px;
    color: #fff;
    line-height: 1;
}

.footer_divider {
    display: inline-block;
    margin: 0 6px 0 5px;
}

.footer-col ul li {
    padding: 0 0 18px 0px;
}

.footer-col h6::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55px;
    height: 1px;
    background-color: #fff;
}

.social-icons {
    display: flex;
    gap: 20px;
    padding: 20px 0px 20px 0px;
}

.icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
}

.icon i {
    color: #000;
    font-size: 18px;
}

.icon:hover {
    background-color: #ffff;
    transform: scale(1.1);
}

.phone-numbers a {
    color: #ffff;
    text-decoration: none;
    transition: 0.3s;
}

.phone-numbers a:hover {
    color: #fff;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #ffffff;
}

.footer-contact i {
    color: #fff;
    font-size: 14px;
    margin-top: 4px;
    background: transparent;
    height: auto;
    width: auto;   
}

/* -----------------------------------------
   Navigation
----------------------------------------- */
.main-nav {
    text-align: right;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.main-nav li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 15px;
    font-size: 16px;
}

.main-nav li:first-child {
    padding-left: 0;
}

.main-nav li a {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    position: relative;
    font-family: "Montserrat", sans-serif;
}

.main-nav li a:after {
    content: "";
    width: 0;
    height: 2px;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 100%;
    transition: 0.5s ease;
}

.main-nav li a:hover:after {
    width: 100%;
}

.main-nav li a.active:after {
    width: 100%;
}

.main-nav li.post-nav-content,
.main-nav li:last-child {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    display: block;
    line-height: normal;
    position: absolute;
    line-height: normal;
    display: none;
    bottom: 60px;
}

.main-nav li.post-nav-content a,
.main-nav li:last-child a {
    display: block;
    text-transform: none;
    color: #fff;
}

.main-nav li.current-menu-item a::after {
    width: 100%;
}

.active .main-nav a {
    color: #000;
}

/* .body-wrapper {
  padding-top: 50px;
} */

.body-wrapper header {
    /* background-color: #fff; */
    border-bottom: 1px solid #fff;
}

.body-wrapper header .main-nav li a {
    color: #000;
}

.body-wrapper header .main-nav li a:after {
    background-color: #ffffff;
}

.body-wrapper header .main-logo svg {
    fill: #000;
}

.body-wrapper header .main-logo .logo-placeholder.black-logo {
    display: block;
}

.body-wrapper header .main-logo .logo-placeholder.white-logo {
    display: none;
}

.body-wrapper header.active .main-logo svg {
    fill: #000;
}

.body-wrapper header.active .main-logo .logo-placeholder.black-logo {
    display: block;
}

.body-wrapper header.active .main-logo .logo-placeholder.white-logo {
    display: none;
}

.body-wrapper header.active .main-nav li a {
    color: #000;
}

.body-wrapper header.active .main-nav li a:hover:after {
    background-color: #000;
}

/* -----------------------------------------
  Elements appears in general
----------------------------------------- */
.clearfix:before,
.clearfix:after,
.home-navigation:before {
    content: " ";
    display: table;
    clear: both;
}

[class^="icon-"],
[class*=" icon-"] {
    display: inline-block;
    vertical-align: text-top;
    background-repeat: no-repeat;
}

.clr,
.clear {
    clear: both;
}

iframe {
    background-color: transparent;
}

hr {
    border-top: 1px solid #8c8c8c;
    margin: 15px 0;
    opacity: 8;
}

/* *:empty {
  padding: 0 !important;
  margin: 0 !important;
} */

.wd-100 {
    width: 100% !important;
}

.wd-50 {
    width: 50% !important;
}

.m-30 {
    margin: 30px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.my-30 {
    padding-bottom: 30px !important;
    padding-top: 30px !important;
}

.p-30 {
    padding: 30px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.py-30 {
    padding-bottom: 30px !important;
    padding-top: 30px !important;
}

.p-35 {
    padding: 35px !important;
}

.pt-35 {
    padding-top: 35px !important;
}

.pb-35 {
    padding-bottom: 35px !important;
}

.py-35 {
    padding-bottom: 35px !important;
    padding-top: 35px !important;
}

.p-40 {
    padding: 40px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.py-40 {
    padding-bottom: 40px !important;
    padding-top: 40px !important;
}

.m-40 {
    margin: 40px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.my-40 {
    margin-bottom: 40px !important;
    margin-top: 40px !important;
}

.p-45 {
    padding: 45px !important;
}

.pt-45 {
    padding-top: 45px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.py-45 {
    padding-bottom: 45px !important;
    padding-top: 45px !important;
}

.m-45 {
    margin: 45px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.my-45 {
    margin-bottom: 45px !important;
    margin-top: 45px !important;
}

.p-50 {
    padding: 50px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.py-50 {
    padding-bottom: 50px !important;
    padding-top: 50px !important;
}

.m-50 {
    margin: 50px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.my-50 {
    margin-bottom: 50px !important;
    margin-top: 50px !important;
}

.py-6,
.pb-6 {
    padding-bottom: 4.5em !important;
}

.py-6,
.pt-6 {
    padding-top: 4.5em !important;
}

.p-6 {
    padding: 4.5em !important;
}

.px-6,
.pl-6 {
    padding-left: 4.5em !important;
}

.px-6,
.pr-6 {
    padding-right: 4.5em !important;
}

.no-text-decoration {
    text-decoration: none !important;
}

.text-decoration-underline {
    text-decoration: underline !important;
}

.bold {
    font-weight: bold !important;
}

.more-button {
    color: #000;
    text-decoration: none;
    padding: 0 0 4px 0;
    line-height: 1;
    font-size: 22px;
    margin-left: 30px;
    display: inline-block;
    position: relative;
    border-bottom: 2px solid transparent;
    font-family: "Montserrat", sans-serif;
}

.more-button:before {
    content: "";
    background: url("../images/right-arrow.svg") no-repeat;
    height: 20px;
    width: 26px;
    position: absolute;
    left: -22px;
    top: 0px;
    transition: left 0.5s;
}

.more-button:hover:before {
    left: -30px;
}

.more-button:link,
.more-button:visited {
    color: #000;
}

p a,
footer li a,
.cta-block h2 a {
    /* line-height: 1.2; */
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 5px;
    transition: background-size 0s;
}

p a:hover,
p a:focus,
footer li a:hover,
footer li a:focus,
.cta-block h2 a:hover,
.cta-block h2 a:focus {
    background-size: 100% 5px;
}

.more-button {
    line-height: 1.2;
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 1s;
}

.more-button:hover,
.more-button:focus {
    background-size: 100% 2px;
}

.wow {
    visibility: hidden;
}

/* -----------------------------------------
   Banner
----------------------------------------- */

/* MAIN HERO SECTION */
.hero {
    position: relative;
    /* background: #000; */
    text-align: center;
    padding: 120px 0 80px;
    overflow: hidden;
    color: white;
}

/* TITLE */
.hero-content h1 {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* SUBTITLE */
.hero-content p {
    font-size: 16px;
    margin-bottom: 50px;
}

/* IMAGE */
.hero-image img {
    width: 70%;
    max-width: 1100px;
    /* border-radius: 10px; */
    display: block;
    margin: 0 auto;
    position: relative;
}

.shape1 {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(/assets/static/images/elements.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.body-wrapper .banner figure {
    height: 100%;
    margin: 0;
}

.body-wrapper .banner .banner-slider {
    height: 100%;
}

.body-wrapper .banner .banner-slider div {
    height: 100%;
    position: relative;
}

.body-wrapper .banner .banner-slider .video-bg {
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: rgba(35, 35, 35, 0.5);
}

.banner h1 {
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -0.4px;
}

@media (min-aspect-ratio: 16/9) {
    .banner .video-bg {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .banner .video-bg {
        width: auto;
        height: 100%;
    }
}

.banner img {
    max-width: 80%;
}

.banner p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.body-wrapper .banner .banner-slider .slider-content {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 40%;
    z-index: 10;
}

.body-wrapper .banner .banner-slider .slider-content h2 {
    font-size: 85px;
    color: #fff;
    line-height: 1;
    padding-top: 30px;
}

.body-wrapper .banner .banner-slider .banner-bg {
    width: 100vw;
    height: 100vh;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.body-wrapper .banner .banner-slider .video-bg video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    position: absolute;
}

.body-wrapper .banner .banner-slider .slick-next,
.body-wrapper .banner .banner-slider .slidk-prev {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
}

.body-wrapper .banner .banner-slider .embed-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.body-wrapper .banner .banner-slider .embed-container iframe {
    width: 100vw;
    height: 56.25vw;
    /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 177.77vh;
    /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.body-wrapper .inner-banner {
    height: calc(100vh - 50px);
    width: 100%;
    margin-bottom: 0;
}

.body-wrapper .inner-banner figure {
    height: 100%;
    margin: 0;
}

.body-wrapper .inner-banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.body-wrapper .inner-banner .video-iframe-wrap {
    --video--width: 1296;
    --video--height: 540;
    position: relative;
    padding-bottom: calc(var(--video--height) / var(--video--width) * 100%);
    /* 41.66666667% */
    overflow: hidden;
    max-width: 100%;
    background: black;
}

.body-wrapper .inner-banner .video-iframe-wrap iframe,
.body-wrapper .inner-banner .video-iframe-wrap object,
.body-wrapper .inner-banner .video-iframe-wrap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.body-wrapper .feat-img {
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
    margin: 0 3% 30px;
}

.body-wrapper .feat-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-height: 100%;
    width: 100%;
}

/* -- Common Components -- */
/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list {
    background: #fff url("../img/ajax-loader.gif") center center no-repeat;
}

/* Icons */
/* @font-face {
    font-family: "slick";
    font-weight: normal;
    font-style: normal;
    src: url("../fonts/slick.eot");
    src:
        url("../fonts/slick.eot?#iefix") format("embedded-opentype"),
        url("../fonts/slick.woff") format("woff"),
        url("../fonts/slick.ttf") format("truetype"),
        url("../fonts/slick.svg#slick") format("svg");
} */

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    z-index: 20;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    font-family: "slick";
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    opacity: 0.75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -3%;
}

[dir="rtl"] .slick-prev {
    left: -3%;
}

.slick-prev:before {
    content: "ΓåÉ";
}

[dir="rtl"] .slick-prev:before {
    content: "ΓåÆ";
}

.slick-next {
    right: -3%;
}

[dir="rtl"] .slick-next {
    right: -3%;
}

.slick-next:before {
    content: "ΓåÆ";
}

[dir="rtl"] .slick-next:before {
    content: "ΓåÉ";
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: 0px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-family: "slick";
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "ΓÇó";
    text-align: center;
    opacity: 0.25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: black;
}

/* -- Pages -- */
/* -----------------------------------------
   home Page
----------------------------------------- */
.home .body-wrapper {
    padding-top: 0;
}

/* .home .body-wrapper header {
  background-color: rgba(0, 0, 0, 0.15);
} */

.home .body-wrapper header .main-nav li a {
    color: #fff;
}

/* .home .body-wrapper header .main-nav li a:after {
  background-color: #fff;
} */

/* .home.about .body-wrapper header.active .main-nav li a:after {
  background-color: #000;
} */

.home .body-wrapper header .main-logo svg {
    fill: #fff;
}

.home .body-wrapper header .main-logo .logo-placeholder.black-logo {
    display: none;
}

.home .body-wrapper header .main-logo .logo-placeholder.white-logo {
    display: block;
}

.home .body-wrapper header.active .main-logo svg {
    fill: #000;
}

.home .body-wrapper header.active .main-logo .logo-placeholder.black-logo {
    display: block;
}

.home .body-wrapper header.active .main-logo .logo-placeholder.white-logo {
    display: none;
}

.home .body-wrapper header.active .main-nav li a {
    color: #ffffff;
}

.home .body-wrapper header.active .main-nav li a:hover:after {
    background-color: #ffffff;
}

.home .body-wrapper .col-2-block .view-all,
.home .body-wrapper .full-width-block .view-all {
    margin-bottom: 10px;
}

.body-wrapper .col-2-block .block-img.has-iframe .video-iframe-wrap {
    z-index: 1;
}

.body-wrapper .col-2-block .block-img.has-iframe .video-iframe-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s ease;
    opacity: 1;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.home .body-wrapper .news-slider .home-insight {
    overflow: hidden;
    height: 195px;
    position: relative;
}

.home .body-wrapper .news-slider .home-insight iframe {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s ease;
    opacity: 1;
    width: 200%;
    height: 200%;
}

/* .body-wrapper {
  padding-top: 50px;
} */

.body-wrapper .more {
    display: inline-block;
}

.body-wrapper .col-2-block .blocks-gallery-item figure,
.body-wrapper .full-width-block .blocks-gallery-item figure {
    position: relative;
}

.body-wrapper .col-2-block .blocks-gallery-item figure a,
.body-wrapper .full-width-block .blocks-gallery-item figure a {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

.body-wrapper .col-2-block .blocks-gallery-item figure a:after,
.body-wrapper .full-width-block .blocks-gallery-item figure a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0;
    transition: 0.5s ease;
    pointer-events: none;
}

.body-wrapper .col-2-block .blocks-gallery-item figure a:hover:after,
.body-wrapper .full-width-block .blocks-gallery-item figure a:hover:after {
    opacity: 0.3;
}

.body-wrapper .col-2-block,
.body-wrapper .full-width-block {
    padding-bottom: 4%;
}

.body-wrapper .col-2-block .block-img,
.body-wrapper .full-width-block .block-img {
    margin: 0 0 25px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.body-wrapper .col-2-block .block-img figure,
.body-wrapper .full-width-block .block-img figure {
    height: 100%;
    margin: 0;
}

.body-wrapper .col-2-block .block-img a,
.body-wrapper .full-width-block .block-img a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.body-wrapper .col-2-block .block-img a:after,
.body-wrapper .full-width-block .block-img a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0;
    transition: 0.5s ease;
    pointer-events: none;
    z-index: 999;
}

.body-wrapper .col-2-block .block-img a:hover:after,
.body-wrapper .full-width-block .block-img a:hover:after {
    opacity: 0.3;
}

.body-wrapper .col-2-block .block-img img,
.body-wrapper .full-width-block .block-img img {
    transition: transform 0.8s ease;
    width: 100%;
    height: auto;
}

.body-wrapper .col-2-block .block-content h6,
.body-wrapper .full-width-block .block-content h6 {
    font-size: 21px;
    font-weight: normal;
    padding: 0 0 10px;
}

.body-wrapper .col-2-block .block-content h2,
.body-wrapper .full-width-block .block-content h2 {
    padding: 0 0 10px 0;
    font-weight: bold;
    font-size: 45px;
    line-height: 1;
}

.body-wrapper .col-2-block .block-content h2 a,
.body-wrapper .full-width-block .block-content h2 a {
    font-size: 1em;
    color: #000000;
}

.body-wrapper .col-2-block .block-content h2 span,
.body-wrapper .full-width-block .block-content h2 span {
    font-weight: 500;
}

.body-wrapper .col-2-block .block-content h3,
.body-wrapper .full-width-block .block-content h3 {
    font-size: 40px;
}

.body-wrapper .col-2-block .block-content h4,
.body-wrapper .full-width-block .block-content h4 {
    font-size: 34px;
}

.body-wrapper .col-2-block .block-content h5,
.body-wrapper .full-width-block .block-content h5 {
    font-size: 21px;
}

.body-wrapper .col-2-block .block-content h6,
.body-wrapper .full-width-block .block-content h6 {
    font-size: 21px;
}

.body-wrapper .col-2-block .block-content p,
.body-wrapper .full-width-block .block-content p {
    padding: 0 0 10px 0;
    font-weight: 300;
    font-size: 21px;
}

.body-wrapper .col-2-block .block-content a,
.body-wrapper .full-width-block .block-content a {
    font-size: 18px;
}

.body-wrapper .col-2-block .block-content blockquote,
.body-wrapper .full-width-block .block-content blockquote {
    line-height: 1.2;
    font-size: 45px;
    padding-top: 15px;
}

.body-wrapper .col-2-block .block-content blockquote p,
.body-wrapper .full-width-block .block-content blockquote p {
    line-height: inherit;
    font-size: inherit;
}

.body-wrapper .col-2-block ol,
.body-wrapper .full-width-block ol {
    padding-left: 20px;
}

.body-wrapper .col-2-block ol li,
.body-wrapper .full-width-block ol li {
    margin: 0;
    padding: 0 0 15px 15px;
    font-weight: 300;
    font-size: 21px;
}

.body-wrapper .col-2-block ul:not(.sorting-list):not(.blocks-gallery-grid),
.body-wrapper
    .full-width-block
    ul:not(.sorting-list):not(.blocks-gallery-grid) {
    margin: 0;
    padding: 0;
}

.body-wrapper .col-2-block ul:not(.sorting-list):not(.blocks-gallery-grid) li,
.body-wrapper
    .full-width-block
    ul:not(.sorting-list):not(.blocks-gallery-grid)
    li {
    position: relative;
    margin: 0;
    padding: 0 0 15px 15px;
    font-weight: 300;
    font-size: 21px;
    list-style: none;
}

.body-wrapper
    .col-2-block
    ul:not(.sorting-list):not(.blocks-gallery-grid)
    li:before,
.body-wrapper
    .full-width-block
    ul:not(.sorting-list):not(.blocks-gallery-grid)
    li:before {
    content: "-";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 21px;
}

.body-wrapper .welcome-block {
    padding: 4% 0 3%;
    /* height: 100vh; */
}

.body-wrapper .welcome-block h1 {
    font-size: 42px;
    line-height: 1.4;
    word-break: break-word;
    width: 85%;
    font-weight: 400;
    margin-top: 12px;
}

.body-wrapper .cta-block {
    padding: 4% 0;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    background: #000;
    color: #fff;
}

.body-wrapper .cta-block h2 {
    font-size: 75px;
    font-weight: normal;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    letter-spacing: -2px;
}

.body-wrapper .cta-block h2 a {
    transition: background-size 1s;
    color: #fff;
}

.body-wrapper .col-4-block .title-wrap {
    padding-top: 50px;
    padding-bottom: 35px;
}

.body-wrapper .col-4-block .title-wrap h3 a {
    font-weight: 700;
}

.body-wrapper .col-4-block .wrap-news {
    width: 100%;
    display: inline-block;
}

.body-wrapper .col-4-block .wrap-news .news-slider {
    width: 100%;
    padding-bottom: 30px;
}

.body-wrapper .col-4-block .wrap-news .news-slider .slick-slide > div {
    padding: 0 15px;
}

.body-wrapper .col-4-block .wrap-news .news-slider a {
    display: block;
    height: 195px;
    width: 100%;
    margin-bottom: 15px;
}

.body-wrapper .col-4-block .wrap-news .news-slider a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.body-wrapper .col-4-block .wrap-news .news-slider figure {
    margin: 0 0 30px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.body-wrapper .col-4-block .wrap-news .news-slider figure:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0;
    transition: 0.5s ease;
    pointer-events: none;
}

.body-wrapper .col-4-block .wrap-news .news-slider figure img {
    transition: transform 0.8s ease;
}

.body-wrapper .col-4-block .wrap-news .news-slider figure:hover:after {
    opacity: 0.3;
}

.body-wrapper .col-4-block .wrap-news .news-slider .block-content h2 {
    font-size: 21px;
    padding: 0 0 20px;
    font-weight: bold;
}

.body-wrapper .col-4-block .wrap-news .news-slider .block-content h2 a {
    font-size: 21px;
    color: #000000;
    font-weight: bold;
}

.body-wrapper .col-4-block .wrap-news .news-slider .block-content p {
    padding: 0 0 20px;
    font-size: 21px;
    font-weight: 300;
}

.body-wrapper .col-4-block .wrap-news .news-slider .block-content a {
    font-size: 21px;
    font-weight: normal;
    height: auto;
    padding: 0;
    margin: 0;
}

.body-wrapper .latest-news-block h3 {
    font-weight: bold;
    font-size: 21px;
}

.body-wrapper .latest-news-block a:not(.more-button):not(.more) {
    position: relative;
}

.body-wrapper .latest-news-block a:not(.more-button):not(.more):after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0;
    transition: 0.5s ease;
}

.body-wrapper .latest-news-block a:not(.more-button):not(.more):hover:after {
    opacity: 0.3;
}

.body-wrapper .latest-news-block h2 a:after,
.body-wrapper .latest-news-block h3 a:after,
.body-wrapper .latest-news-block p a:after {
    content: none !important;
}

.sec-main span {
    text-transform: uppercase;
    color: #fff;
}

/* -----------------------------------------
   Work Page
----------------------------------------- */
.body-wrapper .col-2-block.inner-template {
    padding-bottom: 2%;
}

.body-wrapper .col-2-block.inner-template h6 {
    font-size: 21px;
}

.body-wrapper .col-2-block.inner-template h3 {
    font-size: 25px;
}

.body-wrapper .col-2-block.inner-template h3 a {
    color: #000000;
    font-size: 25px;
}

.body-wrapper .col-2-block.inner-template .grid {
    width: 100%;
    padding: 0;
}

.body-wrapper .col-2-block.inner-template .grid:after {
    content: "";
    display: block;
    clear: both;
}

.body-wrapper .col-2-block.inner-template .grid .grid-item {
    width: 50%;
    float: left;
    padding: 0 15px;
}

.body-wrapper .col-2-block.inner-template .grid .grid-item .block-img {
    position: relative;
}

.body-wrapper
    .col-2-block.inner-template
    .grid
    .grid-item
    .block-img
    figure.wp-block-image {
    margin: 0;
}

.body-wrapper
    .col-2-block.inner-template
    .grid
    .grid-item
    .block-img
    .featured-thumbnail {
    height: 100%;
    width: 100%;
}

.body-wrapper
    .col-2-block.inner-template
    .grid
    .grid-item
    .block-img.has-iframe {
    position: relative;
    height: 380px;
}

.body-wrapper
    .col-2-block.inner-template
    .grid
    .grid-item
    .block-img.has-iframe
    a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0;
    transition: 0.5s ease;
    pointer-events: none;
    z-index: 999;
}

.body-wrapper
    .col-2-block.inner-template
    .grid
    .grid-item
    .block-img.has-iframe
    a:hover:after {
    opacity: 0.3;
}

.body-wrapper
    .col-2-block.inner-template
    .grid
    .grid-item
    .block-img.has-iframe
    .featured-thumbnail {
    position: relative;
    transition: 0.5s ease;
    opacity: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.body-wrapper
    .col-2-block.inner-template
    .grid
    .grid-item
    .block-img.has-iframe
    .video-iframe-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s ease;
    opacity: 1;
    width: 100%;
    height: 100%;
}

.body-wrapper
    .col-2-block.inner-template
    .grid
    .grid-item
    .block-img.has-iframe
    .video-iframe-wrap
    iframe {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s ease;
    opacity: 1;
    width: 130%;
    height: 130%;
}

.body-wrapper
    .col-2-block.inner-template
    .grid
    .grid-item
    .block-img.has-iframe
    .featured-thumbnail {
    z-index: 10;
}

.body-wrapper
    .col-2-block.inner-template
    .grid
    .grid-item
    .block-img.has-iframe
    .video-iframe-wrap {
    z-index: 1;
}

.body-wrapper
    .col-2-block.inner-template
    .grid
    .grid-item
    .block-img.has-iframe:hover
    .featured-thumbnail {
    opacity: 0;
    pointer-events: none;
}

.body-wrapper
    .col-2-block.inner-template
    .grid
    .grid-item
    .block-img.has-iframe
    .video-iframe-wrap
    iframe {
    pointer-events: none;
}

.body-wrapper
    .col-2-block.inner-template
    .grid
    .grid-item
    .block-img.has-iframe:after {
    content: none;
}

.body-wrapper .col-2-block.inner-template .my-sizer-element {
    width: 8.33333%;
}

.body-wrapper .col-2-block.inner-template .block-content h6 {
    padding: 0;
    margin: 0;
}

.body-wrapper .col-2-block.inner-template .block-content h3 {
    padding: 0;
    margin: 0;
}

.body-wrapper .col-2-block.inner-template .block-img {
    height: 380px;
}

.body-wrapper .col-2-block.inner-template .block-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.body-wrapper .col-2-block.inner-template .block-img a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.body-wrapper .col-2-block.insight-template .grid .grid-item .block-img {
    height: auto;
}

.body-wrapper
    .col-2-block.insight-template
    .grid
    .grid-item
    .block-img.has-iframe {
    height: 360px;
}

.body-wrapper
    .col-2-block
    .wp-block-column.col-md-6
    figure
    .blocks-gallery-grid
    li:last-child {
    margin-bottom: 0;
}

.body-wrapper .col-2-block .wp-block-column.col-md-6 figure.wp-block-image {
    height: 100%;
    margin: 0;
}

.body-wrapper .col-2-block .wp-block-column.col-md-6 figure.wp-block-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.body-wrapper .col-2-block .wp-block-column.col-md-6 > figure {
    padding-bottom: 30px;
}

.body-wrapper .inner-banner + .wp-block-uagb-section {
    padding-top: 60px;
}

.body-wrapper .col-2-block.wp-block-uagb-section,
.body-wrapper .full-width-block.wp-block-uagb-section {
    max-width: 100%;
}

.body-wrapper .col-2-block.wp-block-uagb-section .wp-block-columns,
.body-wrapper .full-width-block.wp-block-uagb-section .wp-block-columns {
    margin-bottom: 0;
}

.body-wrapper .col-2-block.wp-block-uagb-section .wp-block-column,
.body-wrapper .full-width-block.wp-block-uagb-section .wp-block-column {
    padding: 0 15px;
    margin-left: 0 !important;
    color: #000;
}

.body-wrapper .col-2-block.wp-block-uagb-section .wp-block-column h1,
.body-wrapper .full-width-block.wp-block-uagb-section .wp-block-column h1 {
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    padding: 0 0 20px;
}

.body-wrapper .col-2-block.wp-block-uagb-section .wp-block-column h2,
.body-wrapper .full-width-block.wp-block-uagb-section .wp-block-column h2 {
    font-size: 45px;
    font-weight: 500;
    line-height: 1;
    color: #000;
    padding: 0 0 20px;
}

.body-wrapper .col-2-block.wp-block-uagb-section .wp-block-column h3,
.body-wrapper .full-width-block.wp-block-uagb-section .wp-block-column h3 {
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
    color: #000;
    padding: 14px 0 20px;
}

.body-wrapper .col-2-block.wp-block-uagb-section .wp-block-column h5,
.body-wrapper .col-2-block.wp-block-uagb-section .wp-block-column h6,
.body-wrapper .full-width-block.wp-block-uagb-section .wp-block-column h5,
.body-wrapper .full-width-block.wp-block-uagb-section .wp-block-column h6 {
    color: #000;
    font-size: 21px;
    padding: 0 0 20px;
    margin: 0;
    font-weight: 400;
}

.body-wrapper .wp-block-column p,
.body-wrapper .wp-block-column p {
    color: #000;
    padding: 0 0 20px;
    font-size: 28px;
}

.body-wrapper .col-2-block.wp-block-uagb-section .wp-block-column blockquote,
.body-wrapper
    .full-width-block.wp-block-uagb-section
    .wp-block-column
    blockquote {
    color: #000;
    font-size: 21px;
    font-weight: normal;
    padding: 20px 0;
    font-weight: 500;
    font-style: italic;
}

.body-wrapper .col-2-block.wp-block-uagb-section .wp-block-column blockquote p,
.body-wrapper
    .full-width-block.wp-block-uagb-section
    .wp-block-column
    blockquote
    p {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    padding-bottom: 10px;
}

.body-wrapper
    .col-2-block.wp-block-uagb-section
    .wp-block-column
    blockquote
    cite,
.body-wrapper
    .full-width-block.wp-block-uagb-section
    .wp-block-column
    blockquote
    cite {
    font-size: 16px;
}

.body-wrapper .wp-block-uagb-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.body-wrapper .wp-block-uagb-section .wp-block-columns {
    margin-bottom: 0;
}

.body-wrapper
    .wp-block-uagb-section
    .wp-block-columns
    .wp-block-column
    .blocks-gallery-grid,
.body-wrapper
    .wp-block-uagb-section
    .wp-block-columns
    .wp-block-column
    .wp-block-gallery {
    height: 100%;
}

.body-wrapper
    .wp-block-uagb-section
    .wp-block-columns
    .wp-block-column
    .wp-block-image.size-large
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.body-wrapper .wp-block-uagb-section figure.wp-block-embed {
    margin-bottom: 0;
}

.body-wrapper .wp-block-uagb-section .wp-block-embed__wrapper {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.body-wrapper .wp-block-uagb-section .wp-block-embed__wrapper iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.body-wrapper .blocks-gallery-item img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

.body-wrapper.works-detail
    .col-2-block.wp-block-uagb-section
    .wp-block-column
    h3,
.body-wrapper.body-wrapper.works-detail
    .full-width-block.wp-block-uagb-section
    .wp-block-column
    h3 {
    font-weight: normal;
}

.body-wrapper .wp-block-gallery.columns-2 .blocks-gallery-image,
.body-wrapper .wp-block-gallery.columns-2 .blocks-gallery-item {
    width: calc((100% - 30px) / 2);
    margin: 0 30px 30px 0;
}

.body-wrapper .wp-block-gallery.columns-2 .blocks-gallery-image:last-child,
.body-wrapper .wp-block-gallery.columns-2 .blocks-gallery-item:last-child {
    margin-right: 0;
}

.body-wrapper .blocks-gallery-grid .blocks-gallery-image,
.body-wrapper .blocks-gallery-grid .blocks-gallery-item,
.body-wrapper .wp-block-gallery .blocks-gallery-image,
.body-wrapper .wp-block-gallery .blocks-gallery-item {
    margin-bottom: 30px;
}

.body-wrapper .wp-block-image {
    margin-bottom: 30px;
    text-align: center;
}

.body-wrapper .wp-block-image figure {
    text-align: center;
}

.body-wrapper .wp-block-image.size-full img {
    width: 60%;
}

.body-wrapper
    .blocks-gallery-grid.columns-2
    .blocks-gallery-image:nth-of-type(2n),
.body-wrapper
    .blocks-gallery-grid.columns-2
    .blocks-gallery-item:nth-of-type(2n),
.body-wrapper .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),
.body-wrapper .wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n) {
    margin-right: 0;
}

.body-wrapper .wp-block-cover,
.body-wrapper .wp-block-cover-image {
    margin-bottom: 30px;
}

.body-wrapper .col-2-block.inner-template .block-img,
.body-wrapper .full-width-block.inner-template .block-img {
    margin-bottom: 15px;
}

.body-wrapper .col-2-block.inner-template .block-content,
.body-wrapper .full-width-block.inner-template .block-content {
    padding-bottom: 50px;
}

.sorting-list {
    margin: 0;
    padding: 40px 0 50px;
}

.sorting-list li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: #000;
    font-size: 16px;
    padding-right: 10px;
}

.sorting-list li a {
    font-size: 20px;
    padding-bottom: 10px;
    position: relative;
}

.sorting-list li a:after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: transparent;
    transition: 0.5s ease;
}

.sorting-list li a.active:after,
.sorting-list li a:hover:after {
    background-color: #000;
    width: 100%;
}

/*work*/

.work .col-2-block {
    padding-bottom: 2%;
}

.work .col-2-block h6 {
    font-size: 21px;
}

.work .col-2-block h3 {
    font-size: 25px;
}

.work .col-2-block h3 a {
    color: #000000;
    font-size: 25px;
}

.work .col-2-block .block-img {
    position: relative;
    border-radius: 10px;
}

.work .col-2-block .block-img figure.wp-block-image {
    margin: 0;
}

.work .col-2-block .block-img .featured-thumbnail {
    height: 100%;
    width: 100%;
}

.work .col-2-block .block-img.has-iframe .featured-thumbnail {
    position: relative;
    transition: 0.5s ease;
    opacity: 1;
    width: 100%;
    height: 100%;
    position: relative;
}

.work .col-2-block .block-img.has-iframe .video-iframe-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s ease;
    opacity: 1;
    width: 100%;
    height: 100%;
}

.work .col-2-block .block-img.has-iframe .video-iframe-wrap iframe {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s ease;
    opacity: 1;
    width: 130%;
    height: 130%;
}

.work .col-2-block .block-img.has-iframe .featured-thumbnail {
    z-index: 10;
}

.work .col-2-block .block-img.has-iframe .video-iframe-wrap {
    z-index: 1;
}

.work .col-2-block .block-img.has-iframe:hover .featured-thumbnail {
    opacity: 0;
    pointer-events: none;
}

.work .block-img.has-iframe .video-iframe-wrap iframe {
    pointer-events: none;
}

.work .block-img.has-iframe:after {
    content: none;
}

.work .my-sizer-element {
    width: 8.33333%;
}

.work .block-content h6 {
    padding: 0;
    margin: 0;
}

.work .block-content h3 {
    padding: 0;
    margin: 0;
}

.work .col-2-block .block-img {
    height: 380px;
}

.work .col-2-block .block-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.work .col-2-block .block-img a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.work .col-2-block.insight-template .block-img {
    height: auto;
}

.work .wp-block-uagb-section .iframe-container {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    /* margin-left: 15px;
  margin-right: 15px; */
    margin-bottom: 8px;
}

.work .wp-block-uagb-section .iframe-container iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* -----------------------------------------
   About Page
----------------------------------------- */
.body-wrapper .about-banner-wrap {
    padding: 0 3%;
}

.body-wrapper .about-banner-wrap figure {
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
    margin: 0 0 30px;
    width: 100%;
}

.body-wrapper .about-banner-wrap img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-height: 100%;
    width: 100%;
}

.body-wrapper .content-block {
    margin-bottom: 3%;
}

.body-wrapper .content-block .img-block figure {
    margin: 0;
    padding: 0;
}

.body-wrapper .content-block h6 {
    font-size: 21px;
    padding: 0;
    margin: 0 0 50px;
    font-weight: 700;
}

.body-wrapper .content-block h5 {
    font-size: 21px;
    padding: 0;
    margin: 0 0 10px;
    font-weight: 700;
}

.body-wrapper .content-block h2 {
    padding: 0;
    margin: 0 0 50px;
    padding-right: 3%;
    font-size: 75px;
    font-weight: 400;
    line-height: 1;
}

.body-wrapper .content-block.features,
.body-wrapper .content-block.clients {
    padding: 0 0 30px 0;
    border-bottom: solid 1px #000;
}

.body-wrapper .content-block.features.no-bdr,
.body-wrapper .content-block.clients.no-bdr {
    padding: 0;
    border-bottom: 0;
}

.body-wrapper .content-block.features .col-4-block figure img {
    max-width: 50%;
}

.body-wrapper .content-block .client-list {
    width: 100%;
}

.body-wrapper .content-block .client-list li {
    display: inline-block;
    width: 16%;
    padding: 15px;
    margin: 0 0 0 0;
    box-sizing: border-box;
}

.body-wrapper .content-block.leadership .block-content h4 {
    margin: 0;
    padding: 0;
    font-size: 21px;
}

.body-wrapper .content-block.leadership .block-content h6 {
    font-size: 21px;
    margin: 0 0 25px;
    font-weight: 400;
}

.body-wrapper .content-block.leadership .block-content p {
    padding-bottom: 15px;
}

.body-wrapper .content-block.leadership .leadership-single-block figure,
.body-wrapper .content-block.leadership .leadership-single-block .titles {
    cursor: pointer;
}

.body-wrapper .content-block.leadership .leadership-single-block .show-det {
    display: none;
}

.contact-block .contact-map {
    position: relative;
    width: 100%;
    height: 100%;
}

.contact-block .contact-map .map {
    height: 100%;
    min-height: 300px;
}

.contact-block .map {
    margin-bottom: 25px;
}

.contact-block.col-2-block .block-content p {
    font-weight: 400;
}

.bussiness-email img {
    max-width: 15px;
    margin-right: 10px !important;
}

.form-block {
    background-color: #e5e5e5;
    padding: 30px 0;
    margin-bottom: -50px;
}

.form-block h3 {
    padding-right: 10%;
    font-size: 45px;
    padding-bottom: 1%;
    font-weight: 400;
    line-height: 1;
}

.form-block h4 {
    font-size: 22px;
    font-weight: 400;
}

.form-block .contact {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    flex-direction: column;
}

.form-block .contact-form {
    width: 100%;
    position: relative;
}

.form-block .contact-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    font-size: 21px;
    padding-left: 0;
    padding-bottom: 0;
    margin-bottom: 10px;
}

.form-block .contact-form button,
.form-block .contact-form .form-submit {
    margin-top: 30px;
    border: none;
    background: transparent;
    font-size: 21px;
    padding-top: 1%;
    padding-left: 0;
    padding-right: 0;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
    margin-left: 30px;
    color: #000;
}

.form-block .contact-form button:after,
.form-block .contact-form .form-submit:after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: 0.5s ease;
    bottom: 10px;
    left: 0;
    pointer-events: none;
}

.form-block .contact-form button:before,
.form-block .contact-form .form-submit:before {
    content: "";
    background: url("../images/right-arrow.svg") no-repeat;
    height: 20px;
    width: 26px;
    position: absolute;
    left: -30px;
    top: 5px;
    transition: left 0.5s;
}

.form-block .contact-form button:hover:after,
.form-block .contact-form .form-submit:hover:after {
    width: 100%;
}

.form-block .contact-form button:hover:before,
.form-block .contact-form .form-submit:hover:before {
    left: -35px;
}

.form-block .contact-form .form-submit {
    display: inline-block;
}

.form-block .contact-form .form-submit input {
    display: block;
    border: none;
    color: #000;
    margin: 0;
    padding: 0;
}

.form-block .contact-form span.wpcf7-not-valid-tip {
    font-size: 12px;
}

.form-block .contact-form div.wpcf7-validation-errors,
.form-block .contact-form div.wpcf7-acceptance-missing {
    margin: 0;
    padding: 14px 10px 10px;
    border-color: #b3b3b3;
    font-size: 14px;
}

.mail-link {
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
    padding-left: 25px;
}

.mail-link:before {
    content: "";
    background: url("../images/right-arrow.svg") no-repeat;
    background-size: 18px;
    height: 20px;
    width: 18px;
    position: absolute;
    left: 0;
    top: 1px;
    transition: left 0.5s;
    pointer-events: none;
}

.mail-link:after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: 0.5s ease;
    bottom: 10px;
    left: 25px;
    pointer-events: none;
}

.mail-link:hover {
    background-size: 0;
}

.mail-link:hover:before {
    left: -10px;
}

.mail-link:hover:after {
    width: calc(100% - 25px);
}

.mail-link:focus {
    background-size: 0;
}

/*
.contact-image {
  height: 100%;
} */
.contact-image img {
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

/*Insight page style*/
body.bg-black {
    background: #000;
}

/* body.bg-black .body-wrapper header {
  background: #000;
} */

body.bg-black .body-wrapper header .main-logo .logo-placeholder.black-logo {
    display: none;
}

body.bg-black .body-wrapper header .main-logo .logo-placeholder.white-logo {
    display: block;
}

body.bg-black .body-wrapper header .main-nav li a {
    color: #ffffff;
}

/* body.bg-black .body-wrapper header .main-nav li a:after {
  background-color: #ffffff;
} */

body.bg-black .sorting-list li,
body.bg-black .sorting-list li a,
body.bg-black .body-wrapper .col-2-block.inner-template .block-content h6,
body.bg-black .body-wrapper .col-2-block.inner-template h3 a {
    color: #ffffff;
}

body.bg-black .sorting-list li a.active:after,
body.bg-black .sorting-list li a:hover:after {
    background-color: #ffffff;
}

.wp-block-group.container p a {
    background-size: 0 1px;
}

.wp-block-group.container p a:hover {
    background-size: 100% 1px;
}

@media (max-width: 767px) {
    body.bg-black .body-wrapper header .mob-nav-trigger a,
    body.bg-black .body-wrapper header .mob-nav-trigger a:before,
    body.bg-black .body-wrapper header .mob-nav-trigger a:after {
        color: #fff;
    }
}

.gap-0 {
    gap: 0 !important;
}

.contact-form .wpcf7-spinner {
    position: absolute;
    bottom: 12px;
    left: 150px;
    width: 20px;
    height: 20px;
    display: block;
}

/* counter */

.counter {
    display: inline-block;
    line-height: 1;
    font-family: var(--counter-font);
    font-weight: var(--counter-weight);
    font-size: var(--counter-size);
    color: var(--counter-color);
    /* subtle pop-in on mount */
    transform: translateZ(0);
}

.counter #count1,
#count2,
#count3 {
    display: inline-block;
    filter: blur(8px);
    opacity: 0;
    transform: scale(0.92);
    transition:
        filter var(--counter-duration) ease-out,
        opacity var(--counter-duration) ease-out,
        transform var(--counter-duration) ease-out;
}

/* When JS toggles this class, only the number animates in */
.counter.ready #count1,
#count2,
#count3 {
    filter: blur(0px);
    opacity: 1;
    transform: scale(1);
    font-size: 156px;
    font-weight: 600;
    letter-spacing: -3.3px;
    background: linear-gradient(180deg, #d78fff 0%, #ffffff 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

/* -----------------------------------------
   Service  Page
----------------------------------------- */

.grid-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 14px;
    margin-bottom: 25px;
}

.card {
    padding: 30px 20px 26px 20px;
    justify-content: space-between;
    /* height: 65vh; */
    min-height: 430px;
    border-radius: 16px;
    overflow: hidden;
}

.card-text h6 {
    color: #020107;
    font-size: 22px;
    font-weight: 600;
    padding-top: 15px;
}

.card-text p {
    color: #020107;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.2px;
    line-height: 24px;
}

.counter-head {
    margin-bottom: auto;
    margin-top: auto;
}

.modal {
    background-color: rgb(129 129 129 / 48%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.modal-content {
    border-radius: 16px;
    padding: 4%;
}

.modal-body {
    color: #020107;
    font-size: 16px;
    line-height: 1.6;
    padding: 0px;
}

.modal-title {
    color: #020107;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    padding: 0px;
}

.modal-header {
    padding: 0px 0px 20px 0px;
}

.modal-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
}

.modal-button {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    border: none;
    padding: 15px 0px 0px 0px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Add custom SVG icon */
.modal-button::after {
    content: "";
    background-color: #000;
    /* black circle background */
    background-image: url("/assets/static/images/services/fe_plus.svg");
    /* your icon path */
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Optional hover effect */
.modal-button:hover::after {
    background-color: #444;
}

.my-custom-width-desktop {
    width: 68% !important;
}

/* -----------------------------------------
  Event  Page
----------------------------------------- */

/* Scrollable tab bar */
.custom-tabs-container {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0;
}

.custom-tabs-container::-webkit-scrollbar {
    display: none;
}

/* Tabs layout */
.custom-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    margin: 0;
    border: 0;
}

/* Tab buttons */
.custom-tabs .nav-link {
    color: white;
    border: 1px solid white;
    font-size: 16px;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: -0.5px;
    padding: 10px 24px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Active tab */
.custom-tabs .nav-link.active {
    background-color: white;
    color: black;
    border-color: white;
}

.custom-tabs .nav-link:hover {
    background-color: white;
    color: black;
}

/* Gallery grid */
.gallery {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 30px 20px;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.03);
}

.tab-content {
    padding-bottom: 60px;
}

.image-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* keeps images even */
    overflow: hidden;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ensures no image distortion */
    display: block;
    transition: transform 0.4s ease;
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: #b126ff1f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Hover effects */
.image-item:hover .overlay {
    opacity: 1;
}

.image-item:hover img {
    transform: scale(1.05);
}

/* -----------------------------------------
  work  Page
----------------------------------------- */

/* Masonry layout container */
.gallery-container {
    column-count: 4;
    column-gap: 15px;
    max-width: 1300px;
    width: 100%;
}

@media (max-width: 1200px) {
    .gallery-container {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        column-count: 2;
    }
}

/* Each gallery item */
.gallery-container a {
    display: inline-block;
    width: 100%;
    margin-bottom: 6px;
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-container img {
    width: 100%;
    height: auto;
    /* ✅ Auto height for natural aspect ratio */
    display: block;
    border-radius: 8px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.gallery-container a:hover img {
    transform: scale(1.03);
    opacity: 0.9;
}

/* ▶️ Play icon overlay */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.play-icon::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 5px;
    border-left: 15px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.gallery-container a:hover .play-icon {
    background-color: rgba(255, 255, 255, 0.4);
}

/* -----------------------------------------
  Contact  Page
----------------------------------------- */

.social-section {
    padding-top: 100px;
    padding-bottom: 70px;
}

.contact-section {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    /* min-height: 100vh; */
    padding-top: 50px;
    gap: 50px;
}

/* LEFT PANEL */
.contact-left {
    color: #fff;
    /* padding: 60px 40px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left h1 {
    font-size: 2.5rem;
    font-weight: 400;
    /* margin-bottom: 20px; */
}

.contact-left p {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 500;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    border-bottom: 1px solid rgb(255 255 255);
    padding-bottom: 17px;
    column-gap: 11px;
}

.info-item i {
    font-size: 24px;
    margin-right: 15px;
    color: #fff;
    margin-top: 5px;
}

.info-item h5 {
    font-weight: 600;
    margin-bottom: 6px;
    line-height: normal;
    padding: 0px;
}

.info-item a {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* .info-item p {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0;
} */

/* RIGHT PANEL */
.contact-right {
    background: #fff;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

form {
    width: 100%;
    /* max-width: 500px; */
    display: grid;
    gap: 20px;
}

form input,
form textarea {
    width: 100%;
    border: 1px solid #5c5a5a;
    padding: 12px 15px;
    font-size: 0.9rem;
    background: transparent;
    resize: none;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #000;
}

form button {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: #333;
}

/* GRID FIELDS */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
}

/* -----------------------------------------
  about  Page
----------------------------------------- */

.mission-vision-section {
    background: white;
    border: 1px solid #ddd;
    border-radius: 18px;
    padding: 52px;
}

.mission-vision-section h2,
.mission-vision-section h3 {
    color: #111;
    font-size: 35px;
}

.mission-vision-section p {
    color: #020107;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.icon-star {
    position: relative;
    display: inline-block;
}

.main-misvis h3 {
    font-size: 35px;
}

.main-misvis p {
    color: #020107;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.border-end {
    border-right: 1px solid #a6a6a6 !important;
}

.rotating {
    animation: rotating 12s linear infinite;
}

@keyframes rotating {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(1turn);
    }
}

/* ===== Our Team Section ===== */

.team-section {
    background: transparent;
    padding-bottom: 80px;
}

.team-section span {
    text-transform: uppercase;
    color: #fff;
}

.team-section h2 {
    font-size: 42px;
    line-height: 1.4;
    word-break: break-word;
    font-weight: 400;
    padding: 0;
    margin-top: 15px;
}

.team-section h4 {
    font-size: 42px;
    line-height: 1.4;
    word-break: break-word;
    font-weight: 500;
    padding: 0;
    margin-bottom: 50px;
}

.team-subtitle span {
    /* color: #c084fc; */
    font-weight: 500;
    letter-spacing: 1px;
    background: linear-gradient(20deg, #b126ff -10%, #ffffff 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #5c2f2f00;
}

/* CSS GRID LAYOUT */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    justify-content: center;
}

/* Team Card */
.team-card {
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 16px solid #fff;
}

.team-img-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 4 / 3;
}

.team-img-wrapper img {
    width: 100%;
    height: auto;
    min-height: 100%;
}

.team-card img {
    width: 100%;
    /* height: 280px;              */
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 4px;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.team-info {
    background: linear-gradient(90deg, #000000 15%, #7705b7 54%);
    color: white;
    padding: 1rem;
    text-align: left;
    margin-top: 8px;
    border-radius: 4px;
}

.team-info h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    padding: 0;
    margin-bottom: 2px;
}

.team-info p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* -----------------------------------------
  Home  Page
----------------------------------------- */

.expert {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    background-image: url("/assets/static/images/expert.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    height: 420px;
    color: #fff;
    /* optional if the background is dark */
}

.expert h5 {
    font-size: 42px;
    font-weight: 400;
}

.expert a {
    padding: 12px 21px;
    border-radius: 2px;
}

.about-txt {
    /* width: 100vw; */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    /* padding: 2rem 4rem; */
    padding: 8% 0 3%;
}

.about-txt span {
    text-transform: uppercase;
    color: #fff;
}

.about-txt .container {
    max-width: 80%;
}

.about-txt h3 {
    color: #d07eff;
    font-size: clamp(2rem, 3vw, 4rem);
    line-height: 1.3;
    text-align: center;
    font-weight: 400;
    margin-top: 20px;
}

.faq-head {
    max-width: 80%;
}

/* FAQ heading with top line */
.faq-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-top: 10px;
}

/* Accordion container */
.accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgb(255, 255, 255);
    transition: background-color 0.3s ease;
    position: relative;
}

/* Full white background when open */
.accordion-item.active {
    background-color: #fff;
    color: #000;
    transition: background-color 0.3s ease;
    padding: 22px;
}

/* Accordion button */
.accordion-button {
    background-color: transparent;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 20px 10px;
    border: none;
    box-shadow: none;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

/* Custom plus icon */
.accordion-button::after {
    content: "";
    font-size: 1.5rem;
    color: #fff;
    transform: rotate(0deg);
    transition: all 0.3s ease;
    margin-left: auto;
}

/* Hover color for icon */
.accordion-button:hover::after {
    color: #007bff;
}

/* When open, change to minus */
.accordion-button:not(.collapsed)::after {
    content: "";
    color: #000;
    transform: rotate(180deg);
}

/* Text color when opened */
.accordion-item.active .accordion-button {
    color: #020107;
    background-color: transparent;
    box-shadow: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0px;
    margin-bottom: 12px;
}

/* Accordion body */
.accordion-body {
    color: #000;
    padding: 0px;
    transition: all 0.3s ease;
}

/* Hover effect for question text */
.accordion-button:hover {
    color: #ffffff;
    transition: color 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: "";
    background-image: url("/assets/static/images/icons/neg.svg");
    background-size: 24px 24px;
    /* Controls size */
    background-repeat: no-repeat;
    width: 28px;
    /* Container */
    height: 28px;
}

.accordion-header {
    margin-bottom: 0;
    padding: 0px;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #ffffff;
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #020107;
    background-color: #fff;
    box-shadow: none;
}

.accordion-button .icon {
    width: 24px;
    height: 24px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.accordion-button::after {
    content: "";
    background-image: url("/assets/static/images/icons/plus-fill.svg");
    background-size: 24px 24px;
    /* Controls size */
    background-repeat: no-repeat;
    width: 28px;
    /* Container */
    height: 28px;
}

/* Testimonials */

.client-section {
    width: 100%;
    padding: 50px 0;
    text-align: center;
}

.client-section h2 {
    font-size: clamp(2rem, 3vw, 4rem);
    font-weight: 500;
}

.client-card {
  background: #ffffff;
  padding: 30px 30px;
  border-radius: 16px;
  min-height: 300px;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Softer shadow */
  margin: 15px;
  text-align: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  /* Subtle border */
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.client-card.client-card-expanded {
  height: auto;
  min-height: 300px;
  /* Ensure it doesn't shrink below base */
  overflow: visible;
  justify-content: flex-start;
  /* Let content flow naturally */
}

.client-card p {
  font-size: 16px;
  line-height: 1.7;
  /* Better readability */
  font-weight: 400;
  color: #020107;
  /* Softer text color */
  margin-bottom: 0;
  /* flex-grow: 1; - removed to avoid stretching the text block weirdly */
}

.client-user {
  display: flex;
  align-items: center;
  gap: 8px;
  /* margin-top: 20px; */
  padding-top: 20px;
  /* border-top: 1px solid #f0f0f0; */
  /* Separator line */
}

.client-user i {
  /* FontAwesome icon styling if used instead of img */
  font-size: 20px;
  color: #020107;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dedede;
  border-radius: 50%;
}

.client-user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.client-user span {
  font-weight: 600;
  color: #222;
  font-size: 16px;
  /* letter-spacing: 0.5px; */
}
/* Testimonial Truncation */

.testimonial-btn {
  background: transparent;
  border: none;
  color: #B126FF;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  text-decoration: underline;
  display: inline;
  margin-left: 5px;
}

.slick-prev:before {
    content: "\f104";
    /* FA-chevron-left */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 24px;
    color: #000;
}

.slick-next:before {
    content: "\f105";
    /* FA-chevron-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 24px;
    color: #000;
}

.slick-prev,
.slick-next {
    border-radius: 100%;
    background-color: #fff;
    width: 30px;
    height: 30px;
    box-shadow: 0 3px 8px 0 rgb(0 0 0 / 60%);
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: #fff;
}

/* GRID */
.image-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    position: relative;
}

/* IMAGE CARD */
.image-box {
    width: 100%;
    position: relative;
}

.image-box img {
    width: 100%;
}

/* BOTTOM ROW LINE */
.row-line {
    grid-column: 1 / -1;
    height: 1px;
    background: #ffffff;
}

.client-section5 {
    width: 100%;
    margin: 50px 0;
    text-align: center;
}

.clients-section5 h2 {
    text-transform: uppercase;
    background: linear-gradient(1deg, #b126ff, #ffffff, #ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    margin-bottom: 50px;
    font-size: clamp(2rem, 3vw, 4rem);
    text-transform: uppercase;
}

.clients-section5 p {
    text-transform: uppercase;
    color: #fff;
}

/* -----------------------------------------
   Policies Page
----------------------------------------- */

.policy {
    padding: 50px;
}

.policy h1 {
    font-size: 42px;
    text-transform: uppercase;
    font-weight: 500;
}

.policies-main {
    padding-top: 20px;
}

.policies-main h3 {
    font-size: 28px;
    margin-top: 30px;
}

.policies-main p {
    font-size: 17px;
    line-height: 24px;
}

.editor-content p {
    color: #111 !important;
    font-size: 16px;
}
