/* @import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*
font-family: "Montserrat", sans-serif;
font-family: "EB Garamond", serif;
font-family: "Inter", sans-serif;
*/

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
    } */


:root {
    scroll-behavior: inherit;
    /* --bodyFont: "EB Garamond", serif; */
    --bodyFont: "Inter", sans-serif;
    --headingFont: "Montserrat", sans-serif;

    --white: #ffffff;
    --black: #000000;
    --blueColor: #00B3FF;
    --buttonBg: #009BDD;
    --bodyColor: #111111;
    --footerBg: #001F2C;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
    background-color: #171717;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #171717;
}

::-webkit-scrollbar-thumb {
    /* border-radius: 100px; */
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
    background-color: var(--blueColor);
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--bodyFont);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: normal;
    font-style: normal;
    color: var(--bodyColor);
    background-color: var(--white);
    font-weight: 400;
    font-size: 1.04vw;
    line-height: 1.6;
}


b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 1.04vw 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1.3vw 0;
    padding: 0;
    color: var(--black);
    font-weight: 500;
    letter-spacing: -0.04em;
    font-family: var(--headingFont);
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}



h1,
.h1-title {
    font-size: 4.38vw;
    line-height: 1.14;
}

h2,
.h2-title {
    font-size: 3.75vw;
    line-height: 1.14;
}

h3,
.h3-title {
    line-height: 1;
    font-size: 2.92vw;
}

h4,
.h4-title {
    font-size: 1.46vw;
    line-height: 1.2;

}

h5,
.h5-title {
    font-size: 1.25vw;
    line-height: 1.2;

}




a {
    margin: 0;
    padding: 0;
    display: inline-block;
    text-decoration: none !important;
    outline: none !important;
    color: var(--blueColor);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

a:hover {
    color: var(--bodyColor);
}

img {
    max-width: 100%;
}


input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.7);
    height: 58px;
    padding: 0 16px;
    outline: none !important;
}

textarea {
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 12px 16px;
    width: 100%;
    color: #000;
    height: 158px;
    outline: none !important;
}

select {
    border: 1px solid rgba(255, 255, 255, 0.7);
    width: 100%;
    padding: 0 11px;
    background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center transparent;
    background-size: 18px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

input[type="submit"] {
    background: #eab71e;
    color: #000000;
    height: 58px;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding-left: 30px;
    padding-right: 30px;

    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
    background: #000;
    color: #eab71e;
}

::-webkit-input-placeholder {
    opacity: 0.7;
    color: #000;
}

:-ms-input-placeholder {
    opacity: 0.7;
    color: #000;
}

::-moz-placeholder {
    opacity: 0.7;
    color: #000;
}

:-moz-placeholder {
    opacity: 0.7;
    color: #000;
}







/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    clear: both;
}



/* custom checkbox */

.form_input_check label {
    position: relative;
    margin: 0;
    padding-left: 40px;
    display: inline-block;
}

.form_input_check label span {
    margin: 0;
    padding: 0;
}

.form_input_check label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    border: 1px solid #3E3E42;
    background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/tick.svg) no-repeat center center;
    background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}



/* custom radio */

.form_input_radio label {
    position: relative;
    margin: 0;
    padding-left: 30px;
    display: inline-block;
}

.form_input_radio label span {
    margin: 0;
    padding: 0;
}

.form_input_radio label input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio label input[type="radio"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* custom radio end */

/* back to top */

#scroll {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 55px;
    height: 55px;
    background-color: #bdd653;
    display: none;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    line-height: 68px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    z-index: 9;
}

#scroll:hover {
    background: #88a725;
}

#scroll i {
    color: #fff;
    font-size: 44px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#scroll:hover i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}




/* navbar*/

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 11.09vw;
    display: inline-block;
    position: relative;
}

.navbar-brand img {
    width: 100%;
    transition: .5s all;
}

.navbar-brand .dark-logo {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}

.navbar {
    background: none;
    margin: 0;
    padding: 0;
    min-height: inherit;
    height: inherit;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    position: relative;
    z-index: 2;
}

.navbar-nav li {
    position: relative;
    list-style: none;
}

.navbar-nav>li {
    padding: 0;
    margin-bottom: 20px;
    position: relative;
}

.navbar-nav>li:last-child {
    margin-bottom: 0;
}

.navbar-nav>li>a {
    color: var(--white);
    font-family: var(--headingFont);
    font-size: 1.25vw;
    line-height: 1;
    position: relative;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.navbar-nav>li>a:hover {
    color: var(--blueColor);
}


/* navbar submenu*/

.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    width: 140px;
    padding: 0;
}

.sub-menu>li>a {
    color: #000;
    display: block;
    width: 100%;
    padding: 6px 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.sub-menu>li {
    width: 100%;
    display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
    background: #eab71e;
    color: #fff;
}



.navbar-nav>li:last-child>.sub-menu {
    right: 0;
    left: inherit;
    padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
}

#navoverlay {
    display: block;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    margin: 0;
    padding: 0;
    z-index: 1;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
    backdrop-filter: blur(0px);
    border-radius: 0;
}

#navoverlay::before {
    display: none;
}

/* for push-menu end*/

/* navbar*/
.navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 17px;
    width: 20px;
    height: 20px;
    background: url(images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 10px;
    cursor: pointer;
}

.navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.sub-menu>li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.navbar-nav>li.menu-item-has-children {
    padding-right: 20px;
}

.sub-menu>li.menu-item-has-children>a {
    padding-right: 20px;
}

.sub-menu.show {
    display: block;
}

/* navbar end*/

/* navbar*/
.navbar-main {
    width: 21.72vw;
    position: relative;
}

.custom-navbar-toggler {
    position: relative;
    width: 100%;
    margin-left: auto;
    height: 2.71vw;
    padding: 0.31vw 0.31vw 0.31vw 1.04vw;
    border-radius: 9999px;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    background-color: transparent;
}

.custom-navbar-toggler::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.19);
    backdrop-filter: blur(10px);
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    transition: .5s all;
}

.custom-navbar-toggler span {
    font-family: var(--headingFont);
    font-weight: 400;
    font-size: 0.73vw;
    line-height: 1;
    letter-spacing: 0.12em;
    color: var(--white);
    text-transform: uppercase;
    transition: .5s all;
}

.menu-btn-innr-part {
    width: 5.78vw;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.42vw 0.83vw;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    transition: .5s all;
}

.menu-btn-innr-part .stick {
    position: relative;
    width: 1.09vw;
    height: 0.36vw;
    display: block;
    transition: .5s all;
}

.stick:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0.05vw;
    background: var(--white);
    left: 0;
    top: 0;
    transition: 0.5s all;
}

.stick:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0.05vw;
    background: var(--white);
    left: 0;
    bottom: 0;
    transition: 0.5s all;
}

.stick.open:before {
    transform: rotate(32deg) translate(0.21vw, 0.31vw);
}

.stick.open:after {
    transform: rotate(-32deg) translate(0.16vw, -0.21vw);
}

.stick.flipping::before {
    animation: flipping1 0.3s ease-in-out;
}

.stick.flipping::after {
    animation: flipping2 0.3s ease-in-out;
}

@keyframes flipping1 {
    0% {
        transform: rotate(32deg) translate(0.21vw, 0.31vw);
    }

    50% {
        transform: rotate(0deg) translate(0vw, 0.31vw);
    }

    100% {
        transform: rotate(32deg) translate(0.21vw, 0.31vw);
    }
}

@keyframes flipping2 {
    0% {
        transform: rotate(-32deg) translate(0.16vw, -0.21vw);
    }

    50% {
        transform: rotate(0deg) translate(0vw, -0.31vw);
    }

    100% {
        transform: rotate(-32deg) translate(0.16vw, -0.21vw);
    }
}

.navbar-nav .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0)
}


.sub-menu,
.navbar-nav>li>.sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
}

.navbar-nav>li.menu-item-has-children {
    padding-right: 0;
}

.navbar-nav li.menu-item-has-children>a {
    padding-right: 30px;
}

.sub-menu>li>a {
    padding-left: 40px;
}

.sub-menu .sub-menu>li>a {
    padding-left: 60px;
}

.sub-menu .sub-menu .sub-menu>li>a {
    padding-left: 80px;
}

/* navbar end*/

/* push nav */

.navbar-collapse {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    width: 100%;
    transform: translateY(10px);
    overflow-y: auto;
    transition: inherit !important;
    margin: 0;
    display: block !important;
    /* -webkit-transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out !important; */
    z-index: 100;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: .5s all !important;
    overflow: hidden;
    padding: 2.08vw;
}

.navbarbx-ovrly {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.19);
    z-index: -1;
    pointer-events: none;
}

.navbar-collapse.show {
    display: block !important;
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    /* -webkit-transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out !important; */

}

#navoverlay.open {

    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
    border-radius: 0px;
    /* pointer-events: none; */
}

/* body.open-nav,
html.open-nav {
    height: 100%;
    overflow: hidden;
} */

/* navbar*/
.navbar-nav .clickD {
    display: none;
}

.navbar-nav li.menu-item-has-children:hover>.sub-menu {
    display: block;
}


.container {
    max-width: 100vw;
    width: 100%;
    padding: 0 2.08vw;
}

.main-head {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 1.82vw 0;
    transition: .5s all;
}

.main-head:not(.show) {
    transform: translateY(-100%);
}

.hideNav.main-head {
    -webkit-transition: opacity .4s ease-in, -webkit-transform .5s ease-out;
    transition: opacity .4s ease-in, -webkit-transform .5s ease-out;
    transition: transform .7s ease-out, opacity .4s ease-in, -webkit-transform .5s ease-out;
    -webkit-transition: transform .7s ease-out, opacity .4s ease-in;
    -moz-transition: transform .7s ease-out, opacity .4s ease-in;
    -ms-transition: transform .7s ease-out, opacity .4s ease-in;
    -o-transition: transform .7s ease-out, opacity .4s ease-in;
    transition: transform .7s ease-out, opacity .4s ease-in;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);

    opacity: 0;
}

.custom-navbar-toggler:hover .stick,
.stick.open {
    height: 0.65vw;
}

.bnnr-video-wrppr {
    width: 100%;
    height: 100dvh;
    position: relative;
    z-index: 1;
}

.bnnr-ovrly1 {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--black);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

.bnnr-ovrly2 {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 29.25%);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

.bnnr-video-wrppr video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bnnr-section {
    background-color: var(--black);
    position: relative;
    z-index: 1;
    width: 100%;
    height: calc(100dvh + 0.1vw);
    overflow: hidden;
    margin-bottom: -0.1vw;
}

.bnnr-split-txt-wrppr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    padding: 3.13vw 0;
    opacity: 0;
}

.bnnr-split-txt-wrppr h1,
.bnnr-split-txt-wrppr .h2-title {
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bnnr-split-txt-wrppr h1 span,
.bnnr-split-txt-wrppr .h2-title span {
    line-height: 1;
}

.bnnr-split-txt-wrppr h1 .blue-txt,
.bnnr-split-txt-wrppr .h2-title .blue-txt {
    color: var(--blueColor);
}

.cmn-btn {
    /* width: 10.57vw; */
    background: var(--buttonBg);
    border-radius: 5.21vw;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.26vw 0.26vw 0.26vw 1.04vw;
    font-family: var(--headingFont);
    font-weight: 500;
    font-size: 0.94vw;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cmn-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.19vw;
    height: 2.19vw;
    background-color: var(--white);
    border-radius: 50%;
    margin-left: 0.73vw;
    transition: .5s all;
}

.cmn-btn i {
    width: 0.68vw;
    height: 0.68vw;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cmn-btn i img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: inline-block;
    transition: all 0.25s ease-in-out;
}

.cmn-btn i img:last-child {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-100%, 100%);
}

.cmn-btn:hover span {
    background-color: var(--bodyColor);
}

.cmn-btn:hover img {
    filter: brightness(0) invert(1);
}

.cmn-btn:hover img:first-child {
    transform: translate(100%, -100%);
}

.cmn-btn:hover img:last-child {
    transform: translate(0, 0);
    transition-delay: 0.25s;
}

.cmn-btn .hvr-box {
    width: 0;
    height: 0;
    padding-left: 100%;
    padding-top: 100%;
    top: 50%;
    left: 50%;
    background-color: var(--white);
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 0.5),
        opacity 0.25s ease;
    border-radius: 100%;
    position: absolute;
    pointer-events: none;
}

.cmn-btn:hover .hvr-box {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
}

.bnnr-card-main {
    width: 100%;
    height: 100%;
    padding: 5.26vw 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    padding: 5.21vw 0;
    /* transform: translateY(100%); */
}

.bnnr-card-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    mask-image: linear-gradient(180deg, rgba(28, 26, 26, 0) 0%, #1C1A1A 100%);
}

.bnnr-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.bnnr-card-bg::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #171717;
    opacity: 0.86;
}

.bnnr-card-wrppr {
    width: 33.18vw;
    padding: 1.04vw 1.04vw 2.08vw;
    border-radius: 1.04vw;
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.bnnr-card-wrppr figure {
    width: 100%;
    position: relative;
    padding-top: 61%;
    overflow: hidden;
    border-radius: 1.04vw;
    margin-bottom: 1.46vw;
}

.bnnr-card-wrppr figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bnnr-card-content {
    text-align: center;
    font-size: 1.04vw;
    letter-spacing: -0.04em;
    color: var(--bodyColor);
}

.bnnr-card-content .h3-title {
    line-height: 0.83;
    margin-bottom: 1.04vw !important;
}

.bnnr-card-content .h3-title .blue-txt {
    color: var(--blueColor);
}

/* Dipu Css Start */
.content-picks {
    position: relative;
    background-color: #1C1A1A;
    color: var(--white);
    overflow: hidden;
}

.content-picks::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.35vw;
    background-color: var(--white);
}

.center-title {
    text-align: center;
    margin-bottom: 2.08vw;
    font-size: 1.04vw;
}

.center-title.white-text {
    color: var(--white);
}

.center-title.white-text h2 {
    color: var(--white);
}

.center-title.white-text h2 .blue-txt {
    color: var(--blueColor);
}

.center-para {
    max-width: 36.98vw;
    margin: 0 auto;
}

.picks-box {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.picks-imgwrap {
    position: relative;
    padding-top: 39%;
    width: 100%;
    overflow: hidden;
    border-radius: 0.78vw;
}

.picks-imgwrap::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(248.44deg, rgba(0, 0, 0, 0) 28.55%, #000000 87.83%);
    opacity: 0.79;
    z-index: 1;
}

.picks-imgwrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: 4s all;
}

.picks-box:hover .picks-imgwrap img {
    transform: scale(1.05);
}

.picks-content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 2.08vw;
    z-index: 1;
    max-width: 65vw;
    width: 100%;
}

.picks-content h3,
.picks-content h3 a {
    color: var(--white);
    transition: .5s all;
}

.picks-content h3 a:hover,
.picks-box:hover .picks-content h3 {
    color: var(--blueColor);
}


.picks-para {
    max-width: 32.97vw;
    font-size: 1.04vw;
    color: var(--white);
}

.content-picks .slick-list {
    overflow: visible;
}

.picks-slider {
    margin-left: -0.52vw;
    margin-right: -0.52vw;
}

.picks-item {
    padding: 0 0.52vw;
}

.picks-slider-outer {
    position: relative;
}

.picks-slider-outer .custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.picks-prev-arw {
    left: 0.78vw;
    right: auto;
}

.picks-next-arw {
    right: 0.78vw;
    left: auto;
}

.custom-arrow {
    width: 3.5vw;
    height: 3.5vw;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 0.05vw solid #B0B0B0;
    cursor: pointer;
    transition: .5s all;
}

.custom-arrow img {
    width: 1.2vw;
    transition: .5s all;
}

.custom-arrow:hover {
    background: linear-gradient(0deg, #009BDD, #009BDD);
    border-color: var(--blueColor);
    transition: .5s all;
}

.custom-arrow:hover img {
    filter: brightness(0) invert(1);
}

.picks-slider .slick-dots {
    position: absolute;
    bottom: -5.21vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    padding: 0 1.04vw;
    margin: 0;
    list-style: none;
    font-size: 0;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 10.42vw;
    height: 2.71vw;
    background: #FFFFFF;
    border: 0.05vw solid #CFCFCF;
    border-radius: 9999px;

}

.picks-slider .slick-dots li {
    margin: 0 0.47vw;
    padding: 0;
    display: inline-flex;
}

.picks-slider .slick-dots li button {
    border-radius: 100%;
    width: 0.73vw;
    height: 0.73vw;
    background: #E8E8E8;
    outline: none !important;
    box-shadow: none !important;
    border: none;
    transition: .5s all;
    padding: 0;
}

.picks-slider .slick-dots li.slick-active button {
    background-color: var(--blueColor);
}

.cmn-gap {
    padding: 5.21vw 0;
}

/* Dipu Css End */
.sec-head h2 {
    line-height: 0.9;
}

.sec-head h2 .blue-txt {
    color: var(--blueColor);
}

.clnt-item {
    padding: 2.08vw 0.63vw;
}

.clnt-img-wrppr {
    width: 100%;
    height: 5.68vw;
    background-color: var(--white);
    border: 0.05vw solid #D8D8D8;
    border-radius: 0.26vw;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s all;
    padding: 0.78vw;
}

.clnt-img-wrppr img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.clnt-img-wrppr:hover {
    box-shadow: 0 1.04vw 1.56vw rgba(148, 148, 148, 0.15);
    border-color: var(--white);
}

.clnt-slider .splide__track {
    margin: -2.08vw 0;
}

.clnt-slider-outtr {
    position: relative;
    z-index: 1;
}

.clnt-slider-outtr::before {
    position: absolute;
    content: "";
    width: 17.71vw;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.561859) 42.1%, #FFFFFF 100%);
    z-index: 1;
    pointer-events: none;
}

.clnt-slider-outtr::after {
    position: absolute;
    content: "";
    width: 17.71vw;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.561859) 42.1%, #FFFFFF 100%);
    z-index: 1;
    pointer-events: none;
}

.viewship-sec .sec-head {
    max-width: 72.08vw;
    width: 100%;
    margin: 0 auto 2.6vw;
}

.viewship-sec .cmn-btn .hvr-box {
    background-color: #d1d1d1;
}

.viewship-img-wrppr {
    width: 100%;
    position: relative;
    padding-top: 43.4%;
    margin-bottom: 0;
    border-radius: 1.04vw;
    overflow: hidden;
}

.viewship-img-wrppr img {
    width: 100%;
    height: 140%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
}

.publisher-sec {
    position: relative;
    z-index: 1;
}

.logo-shpe {
    width: auto;
    height: calc(100% - 2.6vw);
    position: absolute;
    left: 25%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.05;
    pointer-events: none;
}

.logo-shpe img {
    height: 100%;
}

.publisher-main {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.04vw;
}

.publisher-head-col {
    padding: 0 1.04vw;
    width: 55%;
}

.publisher-content-col {
    padding: 0 1.04vw;
    width: 45%;
}

.publisher-head {
    max-width: 47vw;
    width: 100%;
    margin-bottom: 0;
}

.publisher-head h2 {
    line-height: 1.2;
}

.publisher-content>p {
    font-size: 1.46vw;
    line-height: 1.4;
    margin-bottom: 2.08vw;
}

.each-counter:not(:last-child) {
    margin-bottom: 1.56vw;
}

.each-counter h3 {
    font-weight: 500;
    font-size: 4.17vw;
    line-height: 0.69;
    text-transform: capitalize;
    color: var(--black);
    margin-bottom: 1.3vw;
}

.each-counter p {
    font-size: 1.04vw;
    line-height: 1.4;
}

.each-counter {
    max-width: 16.41vw;
    width: 100%;
    padding-left: 1.46vw;
    position: relative;
    z-index: 1;
}

.each-counter::before {
    position: absolute;
    content: "";
    width: 0.05vw;
    height: 80%;
    top: 0;
    left: 0;
    background-color: #4D4D4D;
}

.newsletter-outtr {
    padding: 4.95vw 3.13vw;
    background: #F8F8F8;
    border-radius: 1.04vw;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-outtr .sec-head {
    width: 55%;
    flex: 0 0 auto;
    margin-bottom: 0;
    padding-right: 1.04vw;
    font-size: 1.46vw;
    line-height: 1.4;
}

.newsletter-outtr .sec-head h2 {
    margin-bottom: 0.78vw;
}

.newsletter-form-block-col {
    width: 45%;
    padding-left: 1.04vw;
    flex: 0 0 auto;
}

.newsletter-form-block {
    max-width: 30.78vw;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-left: auto;
}

.newsletter-form-block form {
    width: 100%;
    position: relative;
    z-index: 1;
}

.newsletter-form-block form input[type="email"] {
    border: none !important;
    box-shadow: none !important;
    font-family: var(--headingFont);
    font-weight: 400;
    font-size: 0.94vw;
    line-height: 1.6;
    color: var(--bodyColor);
}

.subscribe-now input#input_1_1 {
    padding-top: 20px !important;
    padding-left: 5px !important;
}

/* .newsletter-form-block form input[type="email"] {
    width: 100%;
    height: 3.96vw;
    background: var(--white);
    border: 0.05vw solid #EEEEEE;
    box-shadow: 0vw 1.56vw 2.6vw rgba(0, 0, 0, 0.08);
    border-radius: 3.13vw;
    font-family: var(--headingFont);
    font-weight: 400;
    font-size: 0.94vw;
    line-height: 1.6;
    color: var(--bodyColor);
    transition: .5s all;
    padding-left: 1.67vw;
    padding-right: 12.08vw;
} */

.newsletter-form-block form input[type="email"]::placeholder {
    color: #4D4D4D;
    opacity: 1;
}

.newsletter-form-block form input[type="email"]:focus,
.newsletter-form-block form input[type="email"]:focus-visible {
    border-color: var(--blueColor);
}

.newsletter-form-block form input[type="submit"] {
    font-family: var(--headingFont);
    font-weight: 500;
    font-size: 0.94vw;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--white);
    background-color: var(--buttonBg);
    background-image: url(images/arw-with-round.svg);
    background-size: 2.19vw;
    background-position: right 0.42vw center;
    background-repeat: no-repeat;
    min-width: 10.89vw;
    height: 3.13vw;
    text-align: left;
    padding-left: 1.09vw;
    border-radius: 5.21vw;
    transition: .5s all;
    position: absolute;
    top: 0.42vw;
    right: 0.42vw;
}

.newsletter-form-block form input[type="submit"]:hover {
    background-color: #d1d1d1;
    color: var(--black);
    background-image: url(images/arrw-rotate.svg);
    background-size: 2.19vw;
    background-position: right 0.42vw center;
    background-repeat: no-repeat;
}

.footer {
    position: relative;
    width: 100%;
    /* height: 200dvh; */
    min-height: 100svh;
    overflow: hidden;
    z-index: 1;
    display: flex;
    /* align-items: flex-end; */
    justify-content: center;
}

.footer-main {
    width: 100%;
    height: 100%;
    padding: 2.08vw;
    position: fixed;
    background-color: var(--footerBg);
    z-index: 1;
    top: 0;
    left: 0;
}

.footer-box-all {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    z-index: 1;
}

.each-fttr-bx {
    width: 10%;
    height: 20%;
    padding: 0.78vw;
    border: 0.05vw solid rgba(141, 141, 141, 0.1);
    margin-bottom: -0.05vw;
    margin-right: -0.05vw;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    transition: 1s flex cubic-bezier(0.215, 0.61, 0.355, 1);
}

.each-fttr-bx:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    opacity: 0;
    transition: opacity .8s .3s;
}

.each-fttr-bx:hover:before {
    opacity: .1;
    transition: opacity .3s;
}

.each-fttr-bx p {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
    font-family: var(--headingFont);
    font-size: 0.78vw;
    line-height: 1.5;
    text-transform: capitalize;
    color: #FFFFFF;
    opacity: 0.8;
    transition: 1s flex cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: flicker 2s infinite alternate;
}

.blinker {
    display: inline-block;
    background-color: var(--white);
    /* animation: blinking 1s infinite; */
    width: 0.26vw;
    height: 0.63vw;
    margin-left: -0.1em;
    opacity: 0.8;
}

.each-fttr-bx.bottom p {
    flex: 1 0 auto;
}

.each-fttr-bx:nth-child(5n+2) p {
    animation-delay: .6s
}

.each-fttr-bx:nth-child(7n+1) p {
    animation-delay: 2.3s
}

.each-fttr-bx:nth-child(8n+9) p {
    animation-delay: 3s;
    animation-duration: 3.5s
}

@keyframes blinking {
    0% {
        opacity: 1
    }

    49% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    99% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes flicker {
    0% {
        opacity: .2
    }

    5% {
        opacity: .8
    }

    10% {
        opacity: .2
    }

    15% {
        opacity: .8
    }

    100% {
        opacity: .8
    }
}

.footer-content-outtr {
    /* position: fixed;
    top: 0;
    left: 0; */
    z-index: 2;
    pointer-events: none;
    width: 100%;
    min-height: 100svh;
}

.footer-content-main {
    height: 100%;
    min-height: 100%;
    display: flex;
    /* align-items: center; */
    padding: 5.21vw 0;
}

.footer-content-wrppr {
    max-width: 38vw;
    width: 100%;
    margin: auto;
    position: relative;
    z-index: 1;
    pointer-events: all;
    padding: 1.56vw;
    text-align: center;
    border-radius: 1.04vw;
    overflow: hidden;
}

.footer-content-wrppr::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #00354B;
    box-shadow: 0vw 1.51vw 3.02vw 2.24vw rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.footer-logo-wrppr {
    position: relative;
    z-index: 1;
    padding-bottom: 1.56vw;
    margin-bottom: 1.56vw;
    text-align: center;
}

.footer-logo-wrppr::before,
.footer-list-wrppr::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0.1vw;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(25, 25, 25, 0) 0%, #8D8D8D 51%, rgba(25, 25, 25, 0) 100%);
    opacity: 0.4;
}

.footer-logo-wrppr a {
    max-width: 13.54vw;
    width: 100%;
}

.footer-logo-wrppr a img {
    width: 100%;
}

.footer-list-wrppr {
    position: relative;
    z-index: 1;
    padding-bottom: 1.56vw;
    margin-bottom: 1.56vw;
}

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

.footer-list-wrppr li:not(:last-child) {
    margin-bottom: 0.52vw;
}

.footer-list-wrppr li a {
    font-family: var(--headingFont);
    font-size: 0.94vw;
    line-height: 1;
    color: var(--white);
}

.footer-list-wrppr li a:hover {
    color: var(--blueColor);
}

.footer-copy-right p {
    line-height: 1.2;
    font-family: var(--headingFont);
    font-size: 0.94vw;
    line-height: 1.6;
    color: var(--white);
    max-width: 75%;
    margin: 0 auto 0.63vw;
}

.footer-copy-right p a {
    color: var(--white);
}

.footer-copy-right p a:hover {
    color: var(--blueColor);
}

.fttr-social-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: center;
}

.fttr-social-list li:not(:last-child) {
    margin-right: 0.52vw;
}

.fttr-social-list a {
    width: 1.98vw;
    height: 1.98vw;
    background: var(--blueColor);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.fttr-social-list a img {
    width: 0.94vw;
}

.fttr-social-list a:hover {
    background-color: var(--bodyColor);
    transform: scale(1.1);
}

.main-head.light .navbar-brand .light-logo {
    opacity: 0;
}

.main-head.light .navbar-brand .dark-logo {
    opacity: 1;
}

.main-head.light .custom-navbar-toggler::before {
    background: rgba(0, 0, 0, 0.19);
}

.main-head.light .menu-btn-innr-part {
    background: rgba(0, 0, 0, 0.1);
}

.main-head.light .custom-navbar-toggler span {
    color: var(--black);
}

.main-head.light .stick:before,
.main-head.light .stick::after {
    background-color: var(--black);
}

.main-head.light .navbar-nav>li>a {
    color: var(--bodyColor);
}

/* .main-head.light .navbarbx-ovrly {
    background: rgba(0, 0, 0, 0.19);
} */

.company-bx-rw {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.52vw;
}

.each-cmpny-bx-col {
    padding: 0 0.52vw;
    flex: 0 0 auto;
    transition: .5s all;
    width: 12.7%;
}

.each-cmpny-bx {
    /* width: 11.2vw; */
    width: 100%;
    height: 35.57vw;
    border-radius: 1.04vw;
    overflow: hidden;
    position: relative;
    transition: .5s all;
}

.each-cmpny-bx-col.active {
    width: 36.5%;
}

/* .each-cmpny-bx-col.active .each-cmpny-bx {
    width: 34.3vw;
} */

.each-cmpny-bx figure {
    width: 100%;
    height: 100%;
    margin: 0;
}

.each-cmpny-bx figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.each-cmpny-bx figure::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 59.15%);
    opacity: 0.79;
    transition: .5s all;
}

.cmpny-bx-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1.56vw;
    transition: all ease 0.5s;
    z-index: 2;
    transition: .5s all;
}

.cmpny-bx-content p {
    writing-mode: vertical-lr;
    font-family: var(--headingFont);
    font-weight: 500;
    font-size: 1.3vw;
    line-height: 1;
    text-transform: capitalize;
    color: #FFFFFF;
    transform: rotate(-180deg);
    margin: 0;
    /* transition: .5s all; */
}

.cmpny-bx-content h3 {
    writing-mode: vertical-lr;
    font-size: 1.46vw;
    line-height: 1.2;
    color: #FFFFFF;
    transform: rotate(-180deg);
    /* transition: .5s all; */
}

.each-cmpny-bx-col.active .cmpny-bx-content {
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
}

/* .each-cmpny-bx-col.active .cmpny-bx-content p {
    writing-mode: inherit;
    transform: rotate(0deg);
    margin-bottom: 1.3vw;
    color: var(--blueColor);
}

.each-cmpny-bx-col.active .cmpny-bx-content h3 {
    writing-mode: inherit;
    transform: rotate(0deg);
}

.each-cmpny-bx-col.active .cmpny-bx-content h3 br {
    display: none;
} */

.anim-slider {
    width: 100%;
    height: 100dvh;
}

.anim-slider .slick-list {
    height: 100%;
}

.anim-slider .slick-track {
    display: flex !important;
    height: 100%;
}

.anim-video-item {
    height: inherit !important;
    /* opacity: 1 !important; */
    /* transition: 0.5s all; */
}

.anim-item-wrppr {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.anim-video-wrppr {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.anim-video-wrppr::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.28);
}

.anim-video-wrppr video,
.anim-video-wrppr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.anim-item-content {
    max-width: 29.69vw;
    width: 100%;
    position: absolute;
    left: 4.69vw;
    bottom: 3.13vw;
    z-index: 2;
    font-size: 1.04vw;
    line-height: 1.6;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    z-index: 2;
}

.anim-item-content>*:not(:last-child) {
    margin-bottom: 1.3vw;
}

.anim-item-content p {
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: .5s all;
    transition-delay: 1s;
}

.anim-item-content .cmn-btn {
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition-delay: 1.5s;
}

.anim-logo-wrppr {
    max-width: 12.86vw;
    width: 100%;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    transition: .5s all;
    transition-delay: 1s;
}

.anim-logo-wrppr img {
    width: 100%;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--headingFont);
    font-weight: 500;
    font-size: 0.94vw;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--blueColor);
}

.learn-more-btn i {
    line-height: 0;
    margin-left: 0.63vw;
    transition: .3s all;
}

.learn-more-btn i img {
    width: 100%;
}

.learn-more-btn:hover {
    color: var(--white);
}

.learn-more-btn:hover i {
    transform: rotate(45deg);
    filter: brightness(0) invert(1);
}

.anim-video-item.slick-current .anim-item-content p,
.anim-video-item.slick-current .anim-item-content .cmn-btn {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.anim-video-item.slick-current .anim-logo-wrppr {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.anim-ovrlay-main {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    pointer-events: none;
}

.each-div-col {
    width: 25%;
    height: 100%;
    flex: 0 0 auto;
}

.each-div-col:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.each-div {
    width: 100%;
    height: 100%;
    background-color: #1C1A1A;
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    transition: clip-path 0.6s ease;
}

.anim-ovrlay-main.active .each-div {
    animation: sutter 0.9s alternate;
}

.sliderovrlay-main {
    position: relative;
}

@keyframes sutter {
    0% {
        clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    }

    45% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    100% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }
}


.anim-slider .slick-dots {
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    right: 2.08vw;
    /* bottom: 3.13vw; */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.anim-slider .slick-dots li {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.anim-slider .slick-dots li:not(:last-child) {
    margin-bottom: 0.57vw;
}

.anim-slider .slick-dots button {
    width: 1.67vw;
    height: 1.25vw;
    border: none;
    outline: none !important;
    cursor: pointer;
    transition: .5s all;
    position: relative;
    z-index: 1;
    padding: 0.52vw 0;
    background: transparent;
}

.anim-slider .slick-dots button::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0.21vw;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    transition: .5s all;
}

.anim-slider .slick-dots button span {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
    transition: .5s all;
    font-family: var(--headingFont);
    font-size: 1.3vw;
    line-height: 1;
    color: #FFFFFF;
    pointer-events: none;
    opacity: 0;
}

.anim-slider .slick-dots li.slick-active button {
    width: 3.23vw;
}

.anim-slider .slick-dots li.slick-active button::before {
    background-color: var(--blueColor);
}

.anim-slider .slick-dots li.slick-active button span {
    transform: translate(-140%, -50%);
    opacity: 1;
}

.company-sec .sec-head {
    max-width: 73.33vw;
    width: 100%;
    margin: 0 auto 2.6vw;
}

.company-sec .sec-head h2 {
    line-height: 1;
}

.anim-slider>.anim-video-item:not(:first-child),
.picks-slider>.picks-item:not(:first-child) {
    position: absolute;
}

/* loader animation css */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #151515;
    z-index: 300;
    pointer-events: none;
    overflow: hidden;
}

.first-loader {
    width: 100%;
    height: 100%;
    background-color: var(--white);
}

.first-loader-innr {
    width: 100%;
    height: 100%;
}

.bnnr-video-anim-wrppr {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: var(--white);
}

.bnnr-video-anim-outtr {
    width: 100%;
    height: 100%;
    /* animation: blink 1s ease-in-out;
    animation-delay: 0.3s; */
}

.bnnr-video-anim-innr {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    clip-path: inset(25% 45% 25% 45% round 20px 20px);
    -webkit-clip-path: inset(25% 45% 25% 45% round 20px 20px);
    transition: .5s all;
}

.bnnr-video-anim-innr.completed {
    animation: cliping 1.5s ease-in-out forwards;
}

.color-div {
    width: 15%;
    height: 50%;
    background-color: var(--blueColor);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    border-radius: 20px;
    transform: translate(-50%, -50%);
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes cliping {
    0% {
        clip-path: inset(25% 45% 25% 45% round 20px 20px);
    }

    30% {
        clip-path: inset(25% 15% 25% 15% round 20px 20px);
    }

    50% {
        clip-path: inset(25% 15% 25% 15% round 20px 20px);
    }

    100% {
        clip-path: inset(0% 0% 0% 0% round 0px 0px);
    }
}

[data-title],
[data-banner-title] {
    opacity: 0;
}

[data-title] span.title_wrapper,
[data-banner-title] span.title_wrapper {
    margin-bottom: -2vw;
    padding-bottom: 1.7vw;
}

.main-wrapper {
    /* padding-bottom: 100vh; */
    position: relative;
    z-index: 9;
    background-color: var(--white);
    overflow-x: hidden;
}

.loader-play {
    overflow: hidden;
}

.bnnr-video-anim-wrppr.secnd-time {
    background-color: var(--bodyColor);
}

.bnnr-video-anim-wrppr.secnd-time .bnnr-video-anim-outtr {
    animation: none;
}

.bnnr-video-anim-wrppr.secnd-time .bnnr-video-anim-innr {
    clip-path: inherit;
}

.bnnr-video-anim-wrppr.secnd-time .color-div {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #015493 0%, #00A2E2 100%);
    border-radius: 0;
}

.bnnr-video-anim-wrppr.secnd-time .color-div::before {
    position: absolute;
    content: "";
    width: 1.24vw;
    height: 2.48vw;
    top: 50%;
    left: 50%;
    background-color: var(--white);
    border-radius: 0.26vw;
    transform: translate(-50%, -50%);
    animation: secndAnim 1s ease-in-out forwards;
}

@keyframes secndAnim {
    0% {
        width: 1.24vw;
        height: 2.48vw;
    }

    70% {
        width: 1.24vw;
        height: 2.48vw;
        transform: translate(-50%, -50%) rotate(90deg);
    }

    75% {
        width: 1.24vw;
        height: 2.48vw;
        transform: translate(-50%, -50%) rotate(90deg);
    }

    100% {
        width: 3.48vw;
        height: 2.48vw;
        transform: translate(-50%, -50%) rotate(90deg);
    }
}

.cmpny-bx-content-double {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateY(50px);
    opacity: 0;
    pointer-events: none;
    transition: .5s all;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.56vw;
}

.cmpny-bx-content-double p {
    font-family: var(--headingFont);
    font-weight: 500;
    font-size: 1.3vw;
    line-height: 1;
    text-transform: capitalize;
    color: var(--blueColor);
    margin-bottom: 1.3vw;
}

.cmpny-bx-content-double h3 {
    font-size: 1.46vw;
    line-height: 1.2;
    color: var(--white);
}

.each-cmpny-bx-col.active .cmpny-bx-content-double {
    transition-delay: 0.5s;
    transform: translateY(0px);
    opacity: 1;
    pointer-events: all;
}

.cmn-anim-arrw {
    width: 3.5vw;
    height: 3.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 0.05vw solid rgba(255, 255, 255, 0.3);
}

.cmn-anim-arrw img {
    width: 1.2vw;
    filter: brightness(0) invert(0.7);
    transition: .5s all;
}

.cmn-anim-arrw:not(:last-child) {
    margin-right: 1.07vw;
}

.cmn-anim-arrw:hover {
    border-color: var(--white);
    background-color: var(--white);
}

.cmn-anim-arrw:hover img {
    filter: inherit;
}

.anim-arrw-wrppr {
    display: flex;
    align-items: center;
    position: absolute;
    right: 2.08vw;
    bottom: 3.13vw;
    z-index: 2;
}

.footer-content-wrppr-outtr {
    display: flex;
    width: 100%;
    height: 100%;
}


.landscape-message-block {
    z-index: 999;
    background-color: #fff;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100dvh;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
}

.landscape-msg-box {
    width: 500px;
    padding: 25px;
}

.landscape-msg-cont {
    text-align: center;
}

.landscape-msg-cont img {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
}

.landscape-msg-cont p {
    color: #000;
    margin-top: 25px;
}






/* ========== responsive css =========== */

@media(max-width:1399px) {

    body,
    .bnnr-card-content,
    .anim-item-content,
    .center-title,
    .picks-para,
    .each-counter p,
    .footer-list-wrppr li a {
        font-size: 1.29vw;
    }

    .cmn-btn {
        font-size: 1.14vw;
    }

    .each-fttr-bx p {
        font-size: 0.86vw;
    }

    .footer-content-wrppr {
        max-width: 24vw;
    }

    .newsletter-form-block {
        max-width: 100%;
    }

    .subscribe-now #gform_1 {
        height: 65px !important;
    }

    .subscribe-now #gform_1 input[type="submit"] {
        padding: 16px 45px 16px 25px !important;
        top: 16px !important;
    }

}

@media(max-width:1199px) {}

@media(max-width:1024px) {}


@media (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

    body,
    .bnnr-card-content,
    .anim-item-content,
    .center-title,
    .picks-para,
    .each-counter p,
    .footer-list-wrppr li a {
        font-size: 16px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 20px;
    }

    h1,
    .h1-title {
        font-size: 50px;
    }

    h2,
    .h2-title {
        font-size: 46px;
    }

    h3,
    .h3-title {
        line-height: 1;
        font-size: 34px;
    }

    .navbar-brand {
        width: 160px;
    }

    .custom-navbar-toggler {
        padding: 6px 6px 6px 20px;
        height: 52px;
    }

    .custom-navbar-toggler span {
        font-size: 14px;
    }

    .navbar-main {
        max-width: 417px;
        width: 100%;
    }

    .menu-btn-innr-part {
        width: 111px;
        padding: 8px 16px;
    }

    .menu-btn-innr-part .stick {
        width: 21px;
        height: 8px;
    }

    .custom-navbar-toggler:hover .stick,
    .stick.open {
        height: 12px;
    }

    .stick.open:before {
        transform: rotate(30deg) translate(3px, 5px);
        animation: none;
    }

    .stick.open:after {
        transform: rotate(-30deg) translate(3px, -5px);
        animation: none;
    }

    .navbar-collapse {
        padding: 25px;
    }

    .navbar-nav>li {
        line-height: 1;
    }

    .navbar-nav>li>a {
        font-size: 18px;
    }

    .navbar-nav>li {
        margin-bottom: 18px;
    }

    .cmn-btn {
        font-size: 16px;
        border-radius: 50px;
        padding: 5px 5px 5px 20px;
    }

    .cmn-btn span {
        width: 35px;
        height: 35px;
        margin-left: 14px;
    }

    .cmn-btn i {
        width: 11px;
        height: 11px;
    }

    .bnnr-card-main {
        padding: 60px 0;
    }

    .bnnr-card-wrppr {
        max-width: 450px;
        width: 100%;
        padding: 15px 15px 30px;
        border-radius: 15px;
    }

    .bnnr-card-content .h3-title {
        margin-bottom: 15px;
    }

    .anim-slider .slick-dots button {
        width: 30px;
        height: 2px;
        padding: 5px 0;
    }

    .anim-slider .slick-dots li:not(:last-child) {
        margin-bottom: 6px;
    }

    .anim-slider .slick-dots li.slick-active button {
        width: 40px;
    }

    .anim-slider .slick-dots button::before {
        height: 2px;
    }

    .anim-slider .slick-dots button span {
        font-size: 16px;
    }

    .cmn-anim-arrw {
        width: 45px;
        height: 45px;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .cmn-anim-arrw img {
        width: 20px;
    }

    .cmn-anim-arrw:not(:last-child) {
        margin-right: 15px;
    }

    .anim-item-content>*:not(:last-child) {
        margin-bottom: 20px;
    }

    .anim-item-content {
        max-width: 450px;
        left: 25px;
        bottom: 35px;
    }

    .company-sec .sec-head {
        max-width: 100%;
        margin: 0 auto 35px;
    }

    .each-cmpny-bx-col {
        padding: 0 8px;
    }

    .company-bx-rw {
        margin: 0 -8px;
    }

    .each-cmpny-bx {
        height: 380px;
        border-radius: 10px;
    }

    .cmpny-bx-content {
        padding: 15px;
    }

    .cmpny-bx-content p {
        font-size: 14px;
    }

    .cmpny-bx-content h3 {
        font-size: 16px;
    }

    .cmpny-bx-content-double p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .cmpny-bx-content-double h3 {
        font-size: 16px;
    }

    .cmn-gap {
        padding: 60px 0;
    }

    .center-para {
        max-width: 650px;
    }

    .center-title {
        margin-bottom: 35px;
    }

    .picks-imgwrap {
        padding-top: 60%;
        border-radius: 10px;
    }

    .picks-item {
        padding: 0 10px;
    }

    .picks-para {
        max-width: 450px;
        width: 100%;
    }

    .custom-arrow {
        width: 40px;
        height: 40px;
        border: 1px solid #B0B0B0;
    }

    .picks-next-arw {
        right: 25px;
    }

    .picks-prev-arw {
        left: 25px;
    }

    .picks-slider .slick-dots {
        bottom: -60px;
        padding: 0 10px;
        min-width: 130px;
        height: 30px;
        border: 1px solid #CFCFCF;
    }

    .picks-slider .slick-dots li {
        margin: 0 5px;
    }

    .picks-slider .slick-dots li button {
        width: 8px;
        height: 8px;
    }

    .content-picks::after {
        height: 15px;
    }

    .clnt-img-wrppr {
        height: 55px;
        border: 1px solid #D8D8D8;
        border-radius: 5px;
        padding: 10px;
    }

    .clnt-item {
        padding: 15px 6px;
    }

    .clnt-slider .splide__track {
        margin: -15px 0;
    }

    .viewship-sec .sec-head {
        max-width: 730px;
        margin: 0 auto 35px;
    }

    .viewship-img-wrppr {
        padding-top: 52%;
        border-radius: 10px;
    }

    .publisher-head h2 {
        line-height: 1;
    }

    .publisher-content>p {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .each-counter h3 {
        font-size: 46px;
        margin-bottom: 15px;
    }

    .each-counter {
        max-width: 270px;
        padding-left: 20px;
    }

    .each-counter:not(:last-child) {
        margin-bottom: 25px;
    }

    .each-counter::before {
        width: 1px;
    }

    .newsletter-outtr {
        padding: 40px 25px;
        border-radius: 10px;
    }

    .newsletter-outtr .sec-head {
        padding-right: 0;
        width: 100%;
        margin-bottom: 35px;
        font-size: 18px;
        text-align: center;
    }

    .newsletter-form-block-col {
        padding-left: 0;
        width: 100%;
    }

    .newsletter-form-block {
        max-width: 500px;
        margin: 0 auto;
    }

    .newsletter-form-block form input[type="email"] {
        height: 56px;
        border: 1px solid #EEEEEE;
        border-radius: 50px;
        font-size: 16px;
        padding-left: 25px;
        padding-right: 160px;
        box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.08);
    }

    .newsletter-form-block form input[type="submit"] {
        font-size: 14px;
        background-size: 35px;
        background-position: right 5px center;
        min-width: 160px;
        height: 44px;
        padding-left: 15px;
        padding-right: 50px;
        border-radius: 50px;
        top: 6px;
        right: 6px;
    }

    .newsletter-form-block form input[type="submit"]:hover {
        background-size: 35px;
        background-position: right 5px center;
    }

    .each-fttr-bx p {
        font-size: 10px;
    }

    .blinker {
        width: 3px;
        height: 10px;
    }

    .footer-content-main {
        padding: 60px 0;
    }

    .footer-content-wrppr {
        max-width: 350px;
        padding: 25px;
        border-radius: 10px;
    }

    .footer-logo-wrppr {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .footer-logo-wrppr a {
        max-width: 180px;
    }

    .footer-logo-wrppr::before,
    .footer-list-wrppr::before {
        height: 1px;
    }

    .footer-list-wrppr li:not(:last-child) {
        margin-bottom: 10px;
    }

    .footer-list-wrppr {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .footer-copy-right p {
        font-size: 14px;
        margin: 0 auto 15px;
    }

    .fttr-social-list a {
        width: 35px;
        height: 35px;
    }

    .fttr-social-list a img {
        width: 15px;
    }

    .logo-shpe {
        height: calc(100% - 50px);
    }

    .bnnr-video-anim-wrppr.secnd-time .color-div::before {
        width: 30px;
        height: 60px;
        border-radius: 5px;
    }

    @keyframes secndAnim {
        0% {
            width: 30px;
            height: 60px;
        }

        70% {
            width: 30px;
            height: 60px;
            transform: translate(-50%, -50%) rotate(90deg);
        }

        75% {
            width: 30px;
            height: 60px;
            transform: translate(-50%, -50%) rotate(90deg);
        }

        100% {
            width: 60px;
            height: 60px;
            transform: translate(-50%, -50%) rotate(90deg);
        }
    }

    .bnnr-video-anim-innr {
        clip-path: inset(25% 35% 25% 35% round 20px 20px);
        -webkit-clip-path: inset(25% 35% 25% 35% round 20px 20px);
    }

    .color-div {
        width: 30%;
    }

    @keyframes cliping {
        0% {
            clip-path: inset(25% 35% 25% 35% round 20px 20px);
        }

        30% {
            clip-path: inset(25% 15% 25% 15% round 20px 20px);
        }

        50% {
            clip-path: inset(25% 15% 25% 15% round 20px 20px);
        }

        100% {
            clip-path: inset(0% 0% 0% 0% round 0px 0px);
        }
    }

    .subscribe-now #gform_1 input[type="submit"] {
        font-size: 14px !important;
    }


}

/*---------CSS R----------*/
.subscribe-now input[type="submit"] {
    background-color: #009BDD !important;
    padding: 20px 60px 20px 25px !important;
    border-radius: 100px !important;
    /* position: absolute !important;
    right: 107px !important;*/
    top: 10px !important;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.94vw !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
}

/* .subscribe-now input#input_1_1 {
    height: 79px !important;
    border-radius: 50px !important;
} */

/* .subscribe-now .gfield--type-email {
    width: 570px !important;
} */

/* New --- */
.subscribe-now #gform_1 {
    height: 79px !important;
    border-radius: 50px !important;
    padding: 0 27px !important;
    font-size: 16px;
    font-weight: 500;
    color: #939393;
    text-transform: lowercase;
    background-color: #FFFFFF;
    box-shadow: 0vw 1.56vw 2.6vw rgba(0, 0, 0, 0.08);
}

.subscribe-now .gfield--type-submit {
    position: absolute !important;
    right: 10px !important;
    width: 380px !important;
}

.subscribe-now input[type="submit"]:hover {
    background-color: #d1d1d1 !important;
    color: #000000 !important;
}

.subscribe-now .gform-loader {
    display: none !important;
}

.subscribe-now div#validation_message_1_1 {
    margin-left: 35px !important;
    bottom: -20px;
    left: 0;
}


/*div#field_submit input#gform_submit_button_1{
     background: #009BDD !important;
}*/

@media (max-width: 767px) {

    .navbar-main {
        max-width: inherit;
        width: auto;
    }

    .custom-navbar-toggler span {
        font-size: 12px;
    }

    .custom-navbar-toggler,
    .navbar-main {
        position: static;
    }

    .custom-navbar-toggler::before {
        border-radius: 50px;
    }

    .custom-navbar-toggler {
        padding: 0;
        width: auto;
        height: 40px;
    }

    .custom-navbar-toggler>span {
        display: none;
    }

    .navbar {
        padding: 8px;
    }

    .navbar-brand {
        width: 120px;
    }

    h1,
    .h1-title {
        font-size: 40px;
    }

    h2,
    .h2-title {
        font-size: 36px;
    }

    h3,
    .h3-title {
        line-height: 1;
        font-size: 30px;
    }

    .bnnr-card-wrppr figure {
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .anim-slider {
        height: 65dvh;
    }

    .each-cmpny-bx-col {
        padding: 10px;
        width: 100%;
    }

    .each-cmpny-bx-col.active {
        width: 100%;
    }

    .company-bx-rw {
        margin: -10px;
    }

    .each-cmpny-bx {
        height: 260px;
    }

    .cmpny-bx-content {
        padding: 20px;
        flex-direction: column;
        justify-content: flex-end;
    }

    .cmpny-bx-content>* {
        writing-mode: inherit !important;
        transform: inherit !important;
    }

    .cmpny-bx-content p {
        font-size: 18px;
        margin-bottom: 25px;
        color: var(--blueColor);
    }

    .cmpny-bx-content-double {
        display: none;
    }

    .each-cmpny-bx-col.active .cmpny-bx-content {
        transform: translateY(0px);
        opacity: 1;
        pointer-events: all;
    }

    .cmpny-bx-content h3 {
        font-size: 20px;
    }

    .cmpny-bx-content h3 br {
        display: none;
    }

    .content-picks .slick-list {
        padding: 0 !important;
    }

    .picks-slider {
        margin-left: -10px;
        margin-right: -10px;
    }

    .custom-arrow img {
        width: 15px;
    }

    .picks-prev-arw {
        margin-right: 10px;
    }

    .picks-content {
        padding: 15px;
        max-width: 440px;
    }

    .picks-slider-outer .custom-arrow {
        position: static;
        transform: none;
    }

    .custom-arrows {
        display: flex;
        align-items: center;
        position: absolute;
        right: 15px;
        bottom: 15px;
    }

    .center-title {
        margin-bottom: 25px;
    }

    .publisher-head-col,
    .publisher-content-col {
        padding: 0;
        width: 100%;
    }

    .publisher-head {
        max-width: 100%;
        margin-bottom: 25px;
    }

    .each-counter {
        max-width: 100%;
    }

    /* .footer {
        height: inherit;
        min-height: 150dvh;
    } */

    .sec-head h2 br {
        display: none;
    }

    .each-fttr-bx.hovr::before {
        opacity: .1;
        transition: opacity .3s;
    }

    .each-fttr-bx.hovr p {
        flex: 0 0 auto;
    }

    .sec-head h2 {
        line-height: 1;
    }

    .subscribe-now #gform_1 {
        height: 65px !important;
    }

    .subscribe-now input#input_1_1 {
        padding-top: 10px !important;
    }

    .subscribe-now #gform_1 input[type="submit"] {
        top: 9px !important;
    }

}


@media (max-width: 575px) {

    h2,
    .h2-title {
        font-size: 30px;
    }

    .picks-imgwrap {
        padding-top: 75%;
    }

    .picks-content {
        max-width: 360px;
    }
}

@media (max-width: 479px) {

    h1,
    .h1-title {
        font-size: 30px;
    }

    h2,
    .h2-title {
        font-size: 24px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 15px;
    }

    body,
    .bnnr-card-content,
    .anim-item-content,
    .center-title,
    .picks-para,
    .each-counter p,
    .footer-list-wrppr li a {
        font-size: 14px;
    }

    .main-head {
        padding: 15px 0;
    }

    .bnnr-split-txt-wrppr h1,
    .bnnr-split-txt-wrppr .h2-title {
        text-align: center;
        font-size: 30px;
    }

    .cmn-btn {
        font-size: 14px;
    }

    .cmn-btn span {
        width: 30px;
        height: 30px;
        margin-left: 10px;
    }

    .bnnr-card-main {
        padding: 40px 15px;
    }

    .anim-item-content {
        max-width: 330px;
        left: 15px;
        bottom: 75px;
    }

    .anim-slider .slick-dots {
        right: 15px;
        bottom: 15px;
        top: auto;
        transform: none;
    }

    .anim-arrw-wrppr {
        right: auto;
        bottom: 15px;
        left: 15px;
    }

    .cmn-gap {
        padding: 40px 0;
    }

    .anim-logo-wrppr {
        max-width: 180px;
    }

    .cmpny-bx-content h3 {
        font-size: 18px;
    }

    .cmpny-bx-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .picks-imgwrap {
        padding-top: 100%;
    }

    .picks-content h3,
    .picks-content h3 a {
        font-size: 20px;
    }

    .content-picks {
        padding-bottom: 100px;
    }

    .picks-slider .slick-dots {
        bottom: -100px;
    }

    .content-picks::after {
        height: 16px;
    }

    .custom-arrows {
        right: auto;
        bottom: -55px;
        left: 50%;
        transform: translateX(-50%);
    }

    .viewship-img-wrppr {
        padding-top: 100%;
    }

    .each-counter h3 {
        font-size: 38px;
    }

    .newsletter-outtr {
        padding: 20px 20px 90px 20px;
    }

    .newsletter-form-block form {
        text-align: center;
    }

    .newsletter-form-block form input[type="email"] {
        margin-bottom: 15px;
        padding: 0 20px;
        font-size: 14px;
        height: 45px;
        text-align: left;
    }

    .newsletter-form-block form input[type="submit"] {
        position: static;
    }

    .newsletter-outtr .sec-head {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .footer-content-outtr {
        padding: 0 15px;
    }

    .each-fttr-bx {
        width: 20%;
        height: 10%;
        padding: 5px;
        border: 1px solid rgba(141, 141, 141, 0.1);
        margin-bottom: -1px;
        margin-right: -1px;
    }

    .bnnr-video-anim-innr {
        clip-path: inset(25% 20% 25% 20% round 10px 10px);
        -webkit-clip-path: inset(25% 20% 25% 20% round 10px 10px);
    }

    .color-div {
        width: 60%;
        border-radius: 10px;
    }

    @keyframes cliping {
        0% {
            clip-path: inset(25% 20% 25% 20% round 10px 10px);
        }

        30% {
            clip-path: inset(25% 10% 25% 10% round 10px 10px);
        }

        50% {
            clip-path: inset(25% 10% 25% 10% round 10px 10px);
        }

        100% {
            clip-path: inset(0% 0% 0% 0% round 0px 0px);
        }
    }

    .each-cmpny-bx {
        height: 220px;
    }

    .footer-content-wrppr {
        padding: 25px 15px;
    }

    .footer-logo-wrppr a {
        max-width: 160px;
    }

    .footer-content-main {
        padding: 40px 0;
    }

    .subscribe-now #gform_fields_1 {
        display: block;
    }

    .subscribe-now #gform_1 input[type="submit"] {
        margin: auto;
    }

    .subscribe-now #gform_1 #field_submit {
        padding-top: 12px;
    }

    .subscribe-now .gfield--type-submit {
        width: 100% !important;
    }

    .subscribe-now div#validation_message_1_1 {
        margin-left: unset !important;
        position: unset !important;
    }

}

@supports (-webkit-touch-callout: none) {
    .bnnr-section {
        height: calc(100vh + 100px);
    }
}

@media only screen and (max-height: 575px) and (orientation: landscape) {
    .landscape-message-block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    body {
        overflow: hidden;
    }
}