@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');


@font-face {
    font-family: futura;
    src: url(../fonts/Futura.ttf);
}

@font-face {
    font-family: futuraM;
    src: url(../fonts/Futura-medium.ttf);
    font-weight: 500;
}


@font-face {
    font-family: futuraB;
    src: url(../fonts/Futura-Heavy.ttf);
    font-weight: 700;
}


:root {
    --pitch: #ECC5BD;
    --black: #131E2A;
    --white: #FFFFFF;
    --darkgrey: #4B5058;
    --socondaryFont: 'FuturaStdBook', sans-serif;
}

html {
    font-size: 16px;
}

@media (min-width:1620px) {
    html {
        font-size: 16px;
    }

    .container {
        max-width: 1430px;
    }
}

@media (min-width:1720px) {
    .container {
        max-width: 1530px;
    }
}

@media (min-width:1820px) {
    html {
        font-size: 18px;
    }

    .container {
        max-width: 1630px;
    }
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--grey)
}

::-webkit-scrollbar-thumb {
    background-color: var(--black);
}

::selection {
    background: var(--black);
    color: #fff
}

::-moz-selection {
    background: var(--black);
    color: #fff
}


body {
    margin: 0;
    padding: 0;
    /*font-family: FuturaStdBook;*/
    font-family: futura;
    font-size: 1rem;
    line-height: 24px;
}


a {
    color: inherit;
    text-decoration: none;
    letter-spacing: 1px;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    color: #4B5058;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 22px;
}

main {
    overflow: hidden;
}

/* UI STARTS */

.smallTitle {
    display: block;
    position: relative;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 1rem;
}

.smallTitle:after {
    content: '';
    display: inline-block;
    width: 75px;
    height: 1px;
    background: var(--black);
    vertical-align: super;
    margin-left: 5px;
}

@media(max-width:1499.99px) {
    .smallTitle:after {
        width: 50px;
    }
}

@media(max-width:991.99px) {
    .smallTitle {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .smallTitle:after {
        width: 30px;
    }
}

h2.title {
    font-family: 'Poiret One', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

@media(max-width:1499.99px) {
    h2.title {
        font-size: 3rem;
    }
}

@media(max-width:991.99px) {
    h2.title {
        font-size: 2rem;
    }
}

h1.title {
    font-family: 'Poiret One', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

@media(max-width:1499.99px) {
    h1.title {
        font-size: 3rem;
    }
}

@media(max-width:991.99px) {
    h1.title {
        font-size: 2rem;
    }
}

@media(min-width:992px) {
    .headh1 {
        margin: 0 auto;
        width: 70%;
        text-align: center;
    }
}

.ctaBtn {
    background: var(--pitch);
    color: var(--black);
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-block;
    padding: 0.75rem 2rem;
    text-align: center;
    letter-spacing: 1.6px;
    position: relative;
    z-index: 1;
}

.ctaBtn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    ;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-in-out;
}

.ctaBtn:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.ctaBtn:hover {
    color: var(--pitch);
}

.socialLinks li .socialSvg svg:hover {
    fill: var(--black);
}

.whiteCtaBtn {
    background: var(--white);
    color: var(--black);
}

.swiperArw .swiper-button-prev,
.swiperArw .swiper-button-next {
    border-width: 1px;
    border-style: solid;
    border-color: var(--white);
    position: relative;
    left: auto;
    right: auto;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: block;
    overflow: hidden;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
}

.swiperArw .swiper-button-prev {
    background-image: url("../images/icons/arrow-left-white.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px 50px;
}

/*Arrow hover*/
.homeBanner .swiperArw .swiper-button-prev:hover {
    background-image: url("../images/icons/arrow-left-black.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px 50px;
}

.homeBanner .swiperArw .swiper-button-next:hover {
    background-image: url("../images/icons/arrow-right-black.svg");
}

.swiperArw .swiper-button-next {
    background-image: url("../images/icons/arrow-right-white.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px 50px;
}

.swiperArw .swiper-button-prev:after,
.swiperArw .swiper-button-next:after {
    display: none;
}

.swiperArw .swiper-button-prev:hover,
.swiperArw .swiper-button-next:hover {
    background-color: var(--pitch);
    fill: #000;
}

.swiperBlackArw .swiper-button-prev,
.swiperBlackArw .swiper-button-next {
    border-color: #494949;
}

.swiperBlackArw .swiper-button-prev {
    background-image: url("../images/icons/arrow-left-black.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px 50px;
}

.swiperBlackArw .swiper-button-next {
    background-image: url("../images/icons/arrow-right-black.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px 50px;
}



@media(max-width:1499.99px) {

    .swiperArw .swiper-button-prev,
    .swiperArw .swiper-button-next {
        width: 40px;
        height: 40px;
    }
}


/* Animation */
.animateThis {
    position: relative;
    will-change: opacity transform
}

.slideLeft {
    opacity: 0;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    -moz-transform: translate3d(50px, 0px, 0px);
    -webkit-transform: translate3d(50px, 0px, 0px);
    -o-transform: translate3d(50px, 0px, 0px);
    -ms-transform: translate3d(50px, 0px, 0px);
    transform: translate3d(50px, 0px, 0px)
}

.slideLeft.in-view {
    opacity: 1;
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px)
}

.slideRight {
    opacity: 0;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    -moz-transform: translate3d(-50px, 0px, 0px);
    -webkit-transform: translate3d(-50px, 0px, 0px);
    -o-transform: translate3d(-50px, 0px, 0px);
    -ms-transform: translate3d(-50px, 0px, 0px);
    transform: translate3d(-50px, 0px, 0px)
}

.slideRight.in-view {
    opacity: 1;
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px)
}

.slideTop {
    opacity: 0;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    -moz-transform: translate3d(0px, 50px, 0px);
    -webkit-transform: translate3d(0px, 50px, 0px);
    -o-transform: translate3d(0px, 50px, 0px);
    -ms-transform: translate3d(0px, 50px, 0px);
    transform: translate3d(0px, 50px, 0px)
}

.slideTop.in-view {
    opacity: 1;
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px)
}

.fadeGrow {
    opacity: 0;
    -moz-transition: all .7s ease;
    -webkit-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
    -moz-transform: scale(.5);
    -webkit-transform: scale(.5);
    -o-transform: scale(.5);
    -ms-transform: scale(.5);
    transform: scale(.5)
}

.fadeGrow.in-view {
    opacity: 1;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.fadeIn {
    opacity: 0;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

* .fadeIn.in-view {
    opacity: 1
}


/* UI Ends */

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    padding: 20px 0;
    transition: all 0.5s ease-in-out;
}

header.fixed {
    background: var(--white);
    box-shadow: 0px 2px 27px -9px rgba(0, 0, 0, 0.53);
    padding: 8px 0;
}

.logo {
    max-width: 250px;
    display: block;
    transition: all 0.3s ease-in-out;
}

.logo img {
    width: 100%;
}

.blueLogo {
    display: none;
}

@media(max-width:1400.99px) {
    .logo {
        max-width: 230px;
    }
}

@media(max-width:1199.99px) {
    .logo {
        max-width: 200px;
    }
}

@media(max-width:991.99px) {
    header {
        padding: 20px 0
    }
}

@media(max-width:768.99px) {
    header {
        padding: 15px 0
    }
}

/* Menu */
.menuPanel li a {
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.6px;
    position: relative;
    padding: 15px 10px;
    font-family: 'Poiret One', sans-serif;
    font-weight: 600;
}

/* Added for Wp */
body.error404 .menuPanel li a {
    color: black;
}


.collectionPic {
    height: 0;
    padding-top: 70%;
    overflow: hidden;
    position: relative;
}

.collectionPic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.colName {
    position: relative;
    margin: 1rem 0;
    color: var(--black);
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Poiret One', sans-serif;
    text-transform: uppercase;
    align-items: center;
    display: flex;
}

.colName::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-left: 4px;
    background-image: url("data:image/svg+xml,<svg fill='none' height='20' viewBox='0 0 32 32' width='20' xmlns='http://www.w3.org/2000/svg'><g clip-rule='evenodd' fill='%232E2E2E' fill-rule='evenodd'><path d='m4 16c0-.5523.44772-1 1-1h22c.5523 0 1 .4477 1 1s-.4477 1-1 1h-22c-.55228 0-1-.4477-1-1z'/><path d='m17.2929 6.29289c.3905-.39052 1.0237-.39052 1.4142 0l9 9.00001c.3905.3905.3905 1.0237 0 1.4142l-9 9c-.3905.3905-1.0237.3905-1.4142 0s-.3905-1.0237 0-1.4142l8.2929-8.2929-8.2929-8.29289c-.3905-.39053-.3905-1.02369 0-1.41422z'/></g></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}


@media(min-width:991.99px) {
    .menuPanel ul {
        display: flex;
    }

    .menuPanel li {
        margin: 0 15px;
    }

    header.fixed .menuPanel li a {
        color: var(--black);
    }

    .menuPanel li a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--white);
        transform: scaleX(0);
        transition: all 0.3s ease-in-out;
    }

    header.fixed .menuPanel li a::before {
        background: var(--blue);
    }

    .menuPanel li a:hover:before {
        transform: scaleX(1)
    }

    .dropdown {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 98%;
        transition: all 0.3s ease-in-out;
        padding-top: 3%;
    }

    .menuPanel li:hover .dropdown {
        opacity: 1;
        visibility: visible;
    }

    .dropdownContainer {
        background: #f5f5f5;
        padding: 30px;
    }

    .colBox:hover .productName {
        opacity: 1;
    }

    .colBox::before {
        display: none;
    }

    .colBox .collectionPic::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(19, 30, 42, 0.6);
        mix-blend-mode: multiply;
        opacity: 0;
        transition: all 0.3s ease-in-out;
    }

    .colBox:hover .collectionPic::after {
        opacity: 1;
    }

    .colBox:hover .collectionPic img {
        transform: scale(1.1) rotate(-5deg);
    }

    header.fixed .dropdown {
        padding-top: 2%;
    }

    .application .hbSlideText {
        padding-top: 20px;
    }

    .aboutSpace {
        --bs-gutter-x: 8rem;
    }
}

@media(max-width:1199.99px) {
    .menuPanel li {
        margin: 0 10px;
    }
}

@media(max-width:991.99px) {
    .menuBtn {
        width: 30px;
        height: 30px;
        position: relative;
        background: transparent;
        border: 0
    }

    .menuBtn span {
        width: 100%;
        height: 2px;
        display: block;
        background: var(--white);
        margin: auto;
        position: absolute;
        left: 0;
        right: 0;
        transition: all .25s ease-in-out;
        border-radius: 2px
    }

    header.fixed .menuBtn span {
        background: var(--black);
    }

    .menuBtn span:nth-child(1) {
        top: 15%
    }

    .menuBtn span:nth-child(2),
    .menuBtn span:nth-child(3) {
        top: 50%
    }

    .menuBtn span:nth-child(4) {
        top: 85%
    }

    .menuBtn.active span:nth-child(1),
    .menuBtn.active span:nth-child(4) {
        width: 0;
        top: 50%
    }

    .menuBtn.active span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .menuBtn.active span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    .menuPanel {
        position: fixed;
        top: 0;
        left: -120%;
        background: var(--pitch);
        box-shadow: 0 0 50px rgba(0, 0, 0, .8);
        padding-top: 2rem;
        overflow-y: auto;
        transition: all .5s ease;
        max-width: 600px;
        width: 80%;
        height: 100%;
    }

    .menuPanel.open {
        left: 0;
    }

    .menuPanel li {
        border-bottom: 1px solid #000;
    }

    .menuPanel li>a {
        padding: 2rem;
        display: block;
        font-size: 1.4rem;
        color: #000 !important;
        text-align: center;
        text-transform: uppercase
    }

    .colName {
        color: #000000;
        font-size: 1rem;
        line-height: 1.1rem;
    }

    .colName::after {
        background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23000' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z' clip-rule='evenodd'/></svg>");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
    }

    .dropdown .colName {
        color: #000;
    }

    .dropdown .colName::after {
        background-image: url("data:image/svg+xml,<svg fill='none' height='20' viewBox='0 0 32 32' width='20' xmlns='http://www.w3.org/2000/svg'><g clip-rule='evenodd' fill='%232E2E2E' fill-rule='evenodd'><path d='m4 16c0-.5523.44772-1 1-1h22c.5523 0 1 .4477 1 1s-.4477 1-1 1h-22c-.55228 0-1-.4477-1-1z'/><path d='m17.2929 6.29289c.3905-.39052 1.0237-.39052 1.4142 0l9 9.00001c.3905.3905.3905 1.0237 0 1.4142l-9 9c-.3905.3905-1.0237.3905-1.4142 0s-.3905-1.0237 0-1.4142l8.2929-8.2929-8.2929-8.29289c-.3905-.39053-.3905-1.02369 0-1.41422z'/></g></svg>");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
    }

    .newIcons img {
        width: 100% !important;
        margin-bottom: 25px;
    }
}

/* Banner */
.homeBannerSection {
    position: relative
}

.homeBanner {
    width: 100%;
    background: var(--grey)
}

.hbSlide {
    position: relative;
    overflow: hidden
}

.hbImg {
    overflow: hidden;
    position: relative;
}

.hbImg:after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #2A2525 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hbImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 9s linear;
    transform: scale(1.2)
}

.swiper-slide-active .hbImg img {
    transform: scale(1)
}

.homeBanner .hbSlideText {
    opacity: 0;
    transition: all 1s 1.4s ease;
    filter: blur(30px);
    transform: translateX(-200px)
}

.homeBanner .swiper-slide-active .hbSlideText {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0)
}

.hbSlideText span {
    display: block;
    position: relative;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.hbSlideText span:after {
    content: '';
    display: inline-block;
    width: 75px;
    height: 1px;
    background: var(--white);
    vertical-align: super;
}

.hbContent h2.title {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 2rem 0;
}

.hbContent h1.title {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 2rem 0;
}

.hb-dots-arw {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    z-index: 1;
}

.hb-dots-arw .swiper-pagination {
    position: relative;
    bottom: auto;
    display: flex;
}

.hb-dots-arw .swiper-pagination span {
    display: block;
    width: 10px;
    height: 10px;
    transform: scale(0.65);
    background: #D9D9D9;
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

.hb-dots-arw .swiper-pagination span.swiper-pagination-bullet-active {
    transform: scale(1);
    background: var(--white);
    opacity: 1;
}

.hb-dots-arw .swiper-button-prev,
.hb-dots-arw .swiper-button-next {
    background-color: rgb(0 0 0 / 20%);
}

@media (min-width:991.99px) {
    .homeBanner {
        height: 100vh
    }

    .hbImg,
    .cdImg {
        height: 100%;
    }
}

@media (min-width:575.99px) {
    .hbSlideText {
        max-width: 650px
    }

    .spaCollection .hbSlideText {
        max-width: 700px;
    }

    .about .hbSlideText {
        max-width: 750px;
    }

    .hbContent {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        /*z-index: 1;*/
    }

    .hbContent span.smallTitle {
        color: #fff;
    }

    .hbContent h2.title {
        color: #fff;
    }

    .hbContent h1.title {
        color: #fff;
    }
}

@media (max-width:991.99px) {

    .hbImg,
    .cdImg {
        aspect-ratio: 16/9;
    }
}

@media (max-width:768.99px) {
    .hbSlideText span {
        letter-spacing: 5px;
    }

    .hbSlideText span:after {
        width: 35px;
    }

    .hbContent h2.title {
        font-size: 2.5rem !important;
        margin: 1.5rem 0;
    }

    .hbContent h1.title {
        font-size: 2.5rem !important;
        margin: 1.5rem 0;
    }

}

@media (max-width:575.99px) {
    .hbSlide {
        background: var(--grey);
    }

    .hbImg,
    .cdImg {
        aspect-ratio: 1/1
    }

    .hbContent .hbSlideText {
        padding: 20px 0;
    }

    .hbContent h2.title {
        font-size: 2.5rem !important;
        padding-bottom: 20px;
    }

    .hbContent h1.title {
        font-size: 2.5rem !important;
        padding-bottom: 20px;
    }

    .hbSlideText span:after {
        background: var(--blue);
    }

    .hb-dots-arw {
        bottom: 3%;
        left: auto;
        width: auto;
    }

    .innerBannerSection .insideBanner {
        height: 40vh;
    }

    .innerBannerSection .scrollupBtn {
        bottom: 50%;
        right: 0;
    }

    .innerBannerSection {
        margin-bottom: 0 !important;
    }

    .application .smallText {
        margin-bottom: 35px;
        color: #000;
    }

    .application .hbSlideText h2 {
        padding-bottom: 0;
    }
}

.swiper-3d .swiper-slide-shadow {
    background: unset !important;
}



/* Features */
.featWrp {
    background: var(--pitch);
}

.featImage {
    border: 10px solid var(--pitch);
    margin-top: -10px;
}

.featTxtWrp .smallTitle,
.featTxtWrp h2.title,
.featTxtWrp p {
    color: var(--black);
}

.featTxtWrp .smallTitle:after {
    background: var(--black);
}

.featSwiper .swiper-slide {
    height: auto;
}

.featBox {
    text-align: center;
    color: var(--black);
    text-transform: capitalize;
    position: relative;
    height: 100%;
    padding: 0 2rem;
}

.featBox::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 0;
    width: 1px;
    background: rgba(19, 30, 42, 0.26)
}

.featBox img {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto 15px auto;
}

@media(max-width:1499.99px) {
    .featBox img {
        width: 50px;
        height: 50px;
    }
}

/* Collection */
.collContainer {
    overflow: hidden;
}

.collectionSideImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(min-width:991.99px) {
    .collContainer {
        max-width: inherit;
    }

    .collectionSideImg {
        height: 0;
        padding-top: 50%;
        position: relative;
    }

    .collectionSideImg img {
        position: absolute;
        top: 0;
        left: 0;
    }

}


.collectionBox {
    border: 5px solid var(--white);
    display: block;
}

.collectionBox .productPic {
    height: 0;
    position: relative;
    padding-bottom: 56.56%;
    overflow: hidden;
}

.collectionBox .productPic img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.productName {
    font-family: 'Poiret One', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.LinkIcon {
    width: 25px;
    height: 25px;
    display: block;
    background: url(../images/link.svg) no-repeat center;
    background-size: 100%;
}

@media(min-width:991.99px) {
    .collContainer:nth-child(odd) .collectionSwpr {
        margin-left: -50%;
    }

    .collContainer:nth-child(even) .collectionSwpr {
        margin-right: -50%;
    }

    .collContainer:nth-child(odd) .collectionSwpr .swiperArw {
        margin-left: 25%;
    }

    .collContainer:nth-child(even) .collectionSwpr .swiperArw {
        margin-right: 25%;
    }

    .collectionBox .productPic::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(19, 30, 42, 0.6);
        mix-blend-mode: multiply;
        opacity: 0;
        transition: all 0.3s ease-in-out;
    }

    .collectionBox:hover .productPic::after {
        opacity: 1;
    }

    .collectionBox:hover .productPic img {
        transform: scale(1.1) rotate(-5deg);
    }

    .productName {
        opacity: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 5px;
        left: 5px;
        bottom: 5px;
        right: 5px;
        color: var(--white);
        transition: all 0.3s ease-in-out;
    }

    .collectionBox:hover .productName {
        opacity: 1;
    }

    .LinkIcon {
        width: 35px;
        height: 35px;
        margin-bottom: 1rem;
    }
}

@media(max-width:991.99px) {
    .collectionSideImg {
        height: 0;
        position: relative;
        padding-bottom: 56.56%;
    }

    .collectionSideImg img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .collectionBox .productPic {
        margin-bottom: 1rem;
    }
}

/* Applications */
.applicationBg {
    overflow: hidden;
    position: relative;
}

.applicationBg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 40%;
    background: var(--grey);
    z-index: -1;
}

.applicationBox {
    overflow: hidden;
    position: relative;
}

.applicationPic {
    height: 0;
    padding-bottom: 100%;
    position: relative;
    display: block;
}

.applicationPic img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.applicationSwiper {
    overflow: inherit;
}

.LinkIcon {
    width: 25px;
    height: 25px;
    display: block;
    background: url(../images/link.svg) no-repeat center;
    background-size: 100%;
}

.applicationPic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 35px;
    height: 35px;
    z-index: 1;
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M6.5 12a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11zM13 6.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0z'/><path d='M10.344 11.742c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1 6.538 6.538 0 0 1-1.398 1.4z'/><path fill-rule='evenodd' d='M6.5 3a.5.5 0 0 1 .5.5V6h2.5a.5.5 0 0 1 0 1H7v2.5a.5.5 0 0 1-1 0V7H3.5a.5.5 0 0 1 0-1H6V3.5a.5.5 0 0 1 .5-.5z'/></svg>");
    background-repeat: no-repeat;
    background-size: 100%;
    transform: scale(0);
    transform-origin: 50% 50%;
    transition: all 0.3s ease-in-out;
}

.applicationBox:hover .applicationPic::before {
    transform: scale(1);
}

.applicationBox .ctaBtn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: table;
    margin: 0 auto;
}

@media(min-width:991.99px) {
    .applicationSwiper {
        position: relative;
    }

    .applicationSwiper .swiperArw {
        position: absolute;
        top: -150px;
        right: 0;
    }

    .applicationPic::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #003D4D;
        mix-blend-mode: multiply;
        opacity: 0;
        transition: all 0.3s ease-in-out;
    }

    .applicationBox:hover .applicationPic::after {
        opacity: 1;
    }

    .applicationBox .ctaBtn {
        bottom: -100px;
        opacity: 0;
        transition: all 0.3s ease-in-out;
    }

    .applicationBox:hover .ctaBtn {
        bottom: 30px;
        opacity: 1;
    }
}

@media(max-width:991.99px) {
    .applicationBox .ctaBtn {
        bottom: 0;
    }
}

/* Projects */
.projectsBg {
    background: url(../images/footer-banner.png) no-repeat center;
    background-size: cover;
    position: relative;
}

.projectsBg h2.title {
    color: var(--black);
    max-width: 600px;
    display: table;
    margin: 0 auto;
    text-align: center;
}


/* Footer */
footer {
    background: url(../images/footBg.jpg) no-repeat center;
    background-size: cover;
    padding-top: 8%;
    margin-top: -5%;
}

footer p {
    font-weight: 400;
}

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

.footTitle {
    color: #5F5F5F;
    letter-spacing: 2.4px;
    margin-bottom: 1rem;
    font-family: futuraM;
}

.footList li {
    margin-bottom: 10px;
    color: #5F5F5F;
    letter-spacing: 1.6px;
    text-transform: capitalize;
}

.footList li a {
    display: block;
    transition: all 0.3s ease-in-out;
}

.copyRight {
    border-top: 1px solid #C2C0C0;
    padding: 1.3rem 0;
}

.socialLinks li {
    margin: 1rem 0;
}

.socialLinks li .socialSvg {
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #ccc
}

.socialLinks li .socialSvg svg {
    fill: var(--black);
    width: 1.3rem;
    height: 1.3rem;
}

.socialLinks li .socialSvg:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale(0);
    background: #ECC5BD;
    z-index: -1;
    border-radius: 100%;
    transform-origin: 50% 50%;
    transition: all 0.3s ease-in-out;
}

/* .socialLinks li .socialSvg:hover:before {transform: scale(1.1);} */
footer a:hover,
.socialLinks li a p:hover {
    color: var(--pitch)
}

@media (max-width:768.99px) {
    .footList li {
        margin: 0 10px 0 0;
    }
}


.hbContent h2.title {
    font-size: 3rem;
}

.hbContent h1.title {
    font-size: 3rem;
}

.blueBtn {
    font-weight: 700;
    background: var(--pitch);
    color: var(--black);
    border: 0;
    padding: 12px 25px;
    display: table;
    overflow: hidden;
}

.blueCtaBtn {
    background: var(--black);
    color: var(--pitch);
}

.scrollBtn {
    width: 50px;
    height: 50px;
    z-index: 1;
    border: 0;
    border-radius: 5px;
    padding: 0;
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.scrollBtn svg {
    width: 30px;
    height: 30px;
}

#overlay {
    background: rgba(0, 0, 0, 0.5);
    display: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 5;
}

.blackCtaBtn {
    background: var(--black);
    color: var(--pitch);
}

.blackCtaBtn:hover {
    color: var(--pitch);
}

footer img {
    width: 70%;
}


@media screen and (min-width:575.99px) and (max-width:991.99px) {
    .newIcons img {
        margin-bottom: 0;
    }
}


/*Privacy Policy*/
.privacy-list {
    padding-left: 40px;
}

.privacy-item {
    padding-left: 1rem !important;
    list-style: unset !important;
    margin: unset !important;
}

.privacy-item li {
    list-style: unset !important;
    margin: unset !important;
}



/* >>>>>>>>>>>>>>>>>>>> Additional Styles for WP */

form.wpcf7-form p {
    margin: 0;
    position: relative;
}

form.wpcf7-form.contactForm .wpcf7-form-control.wpcf7-radio input[type="radio"] {
    /* background: aqua; */
}

form.wpcf7-form.contactForm .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
    color: #212529;
    letter-spacing: .1px;
}


form.wpcf7-form .wpcf7-response-output {
    padding: 20px 15px 0 !important;
    margin: 0 !important;
    border: 0 !important;
    color: #212529;
    font-size: 18px;
    line-height: 26px;
}

form.wpcf7-form .wpcf7-spinner {
    margin: 0 15px 0;
    position: absolute;
    bottom: 12px;
}

/* >>>>>>>>>>>> ENDS CSS */