@font-face {
    font-family: "OpenSans-Bold";
    src: url(../fonts/OpenSans-Bold.ttf);
    font-display: swap;
}
@font-face {
    font-family: "OpenSans-Medium";
    src: url(../fonts/OpenSans-Medium.ttf);
    font-display: swap;
}
@font-face {
    font-family: "OpenSans-Regular";
    src: url(../fonts/OpenSans-Regular.ttf);
    font-display: swap;
}
@font-face {
    font-family: "OpenSans-Light";
    src: url(../fonts/OpenSans-Light.ttf);
    font-display: swap;
}
@font-face {
    font-family: "OpenSans-Semibold";
    src: url(../fonts/OpenSans-Semibold.ttf);
    font-display: swap;
}
@font-face {
    font-family: "Georgia-Bold";
    src: url(../fonts/Georgia-Bold.ttf);
    font-display: swap;
}
body{
    margin: 0px;
    overflow-x: hidden;
    font-family: "OpenSans-Regular";
    background-color: #000000;
}
.padding{
    padding-left: 13.2%;
    padding-right: 13.2%;
}
header{
    position: absolute;
    top: 0px;   
    width: 100%;
    z-index: 9999;
}
header .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 42px;
    padding-bottom: 42px;   
}
.headerLeft,
.headerRight{
    display: flex;
    column-gap: 12.5px;
    align-items: center;
}
.headerLeft span{
    margin-right: 12.5px;
    font-size: 16px;
    color: #FFFFFF;
}
.bannerSection{
    /* height: 640px; */
    height: 500px;
    position: relative;
}
.bannerSection img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.overlayBanner{
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.33);
    top: 0px;
}
.logoAndTitle{
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
    display: flex;
    flex-direction: column;
    text-align: center;   
}
.logoAndTitle h1{
    font-size: 31px;
    color: white;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 9px;
    margin-top: 10px;
}
.logoAndTitle img {
    max-width: 350px;
}
.productsSection{
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 25px;
    margin-top: -80px;
    position: relative;
    z-index: 9;
}
.productCard{
    width: calc(33.33% - 20px);
    position: relative;
    border-radius: 15px;
}
.productCard img{
    width: 100%;
}
.topTitle{
    font-size: 2.85vw;
    font-family: "Georgia-Bold";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.16);
}
.productTitleSubtitle{
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    text-align: center;
    /*width: 100%;*/
    width: 100%;
}
.productTitle{
    margin: 0px;
    font-size: 35px;
    font-family: 'OpenSans-Regular';
    font-weight: 400;
    color: white;
}
.productSubtitle{
    font-size: 12px;
    font-family: 'OpenSans-Bold';
    color: white;
}
.aboutSection{
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    row-gap: 25px;
}
.aboutRow{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 90px;
    padding-right: 90px;
    column-gap: 8%;
}
.aboutRow img{
    border-radius: 26px;
    height: 435px;
    width: 46%;
    object-fit: cover;
}
.aboutText{
    color: white;
    font-size: 16px;
    line-height: 28px;
    max-width: 560px;
    width: 100%;
}
.aboutRow:nth-of-type(2n) .aboutText{
    text-align: right;
}
.contactSection{
    position: relative;
    margin-bottom: 30px;
}
.contactBackground{
    position: absolute;
    height: 840px;
    width: 600px;
    object-fit: contain;
    filter: opacity(0.1);
    left: 50%;
    transform: translateX(-50%);
}
.contactForm{
    height: 640px;
    padding-top: 75px;
    padding-bottom: 100px;
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.contactFormTitle{
    color: #FEDAF4;
    font-size: 61px;
    font-family: "Georgia-Bold";
    text-transform: uppercase;
}
.contactFormSubtitle{
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 50px;
}
.contactForm input, .contactForm textarea{
    border: 1px solid #FFDBF5;
    background: none;
    height: 60px;
    width: calc(48% - 40px);
    border-radius: 9px;
    padding-left: 20px;
    padding-right: 20px;
    color: white;
    z-index: 9;
    font-size: 14px;
    font-family: 'OpenSans-Regular';
}
.contactForm textarea{
    width: 100%;
    height: 100%;
    min-height: 175px;
    padding-top: 15px;
}
.contactForm input::placeholder, .contactForm textarea::placeholder{
    text-transform: uppercase;
    color: white;
    font-family: 'OpenSans-Regular';
    font-size: 14px;
}
.contactForm form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
}
#terms{
    width: 17px;
    height: 17px;
    accent-color: #FFDBF5;
    margin-top: 0px;
}
.terms label{
    color: #FFDBF5;
    font-size: 13px;
}
.terms{
    display: flex;
    align-items: center;
    column-gap: 5px;   
    text-align: left;
}
.sendButton{
    background-color: #9B7FEB;
    width: 250px;
    border-radius: 30px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-family: 'OpenSans-Medium';
    z-index: 99;
    cursor: pointer;
}
.termsAndSend{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    width: 100%;
    margin-top: 25px;
}
footer{
    background-color: #1F1F1F;
    height: 80px;
    padding-top: 25px;
    padding-bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 50px;
}
.footerLeft{
    display: flex;
    column-gap: 23px;
    align-items: center;
}
.footerLeftRight{
    display: flex;
    flex-direction: column;
    row-gap: 2px;
}
.footerLeftRightBot{
    font-size: 12px;
    color: #727272;
}
.footerRight a{
    display: flex;
    column-gap: 15px;
    text-decoration: none;
    align-items: center;
}
.footerRight{
    display: flex;
    column-gap: 70px;
}
.footerLinkTextDescription{
    font-size: 12px;
    color: #A7A7A7;
    text-transform: capitalize;   
}
.footerLinkTextValue{
    color: white;
    font-size: 16px;
}

@media only screen and (max-width: 1024px) {
    .padding{
        padding-left: 20px;
        padding-right: 20px;
    }
    header .headerLeft span{
        display: none;
    }
    header .header {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .footerRight img{
        width: 30px;
        height: 30px;
    }
    footer{
        flex-direction: column;
        height: 100%;
        background: unset;
        padding-left: 0px !important;
        padding-right: 0px !important;
        padding-bottom: 0px;
    }
    .footerLinkTextValue {
        font-size: 10px;
    }
    .footerLinkTextDescription {
        font-size: 10px;
    }
    .footerRight {
        column-gap: 20px;
        justify-content: space-between;
        background: #1F1F1F;
        padding-left: 20px;
        padding-right: 20px;
        width: calc(100% - 40px);
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .contactBackground {
        width: calc(100% - 40px);
    }
    .logoAndTitle h1 {
        font-size: 24px;
        letter-spacing: 5px;
        margin-top: 5px;
    }
    .logoAndTitle img {
        max-width: 400px;
        width: 75%;
        margin-left: auto;
        margin-right: auto;
    }
    .logoAndTitle{
        width: 100%;
    }
    .bannerSection {
        height: 515px;
    }
    .productCard {
        width: calc(50% - 7.5px);
    }
    .productsSection {
        column-gap: 15px;
        row-gap: 15px;
        margin-top: -55px;
    }
    .topTitle {
        font-size: 4.85vw;
        top: 10px;
    }
    .productTitle {
        font-size: 15px;
    }
    .productTitleSubtitle {
        top: 20%;
        width: 100%;
        row-gap: 2px;
    }
    .productSubtitle {
        font-size: 7px;
    }
    .aboutSection{
        margin-top: 20px;
    }
    .aboutRow{
        flex-direction: column;
        padding: 0px;
    }
    .aboutRow img {
        height: 320px;
        width: 100%;
        margin-bottom: 30px;
    }
    .aboutRow:nth-of-type(2n){
        flex-direction: column-reverse;
    }
    .aboutRow:nth-of-type(2n) .aboutText {
        text-align: left;
    }
    .contactForm {
        height: 100%;
        padding-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 30px;
    }
    .contactFormTitle {
        font-size: 49px;
    }
    .contactFormSubtitle {
        font-size: 11px;
    }
    .contactForm input, .contactForm textarea {
        height: 50px;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 16px;
    }
    .contactForm input::placeholder, .contactForm textarea::placeholder{
        font-size: 16px;
        text-transform: capitalize;
    } 
    .termsAndSend {
        margin-top: 15px;
        flex-direction: column;
        row-gap: 20px;
    }
    .sendButton{
        width: 100%;
    }
    .terms{
        align-items: flex-start;
    }
    .footerLeft{
        flex-direction: column;
    }
    footer .headerLeft{
        margin-top: 20px;
        margin-bottom: 10px;
        justify-content: center;
    }
    footer .headerLeft span {
        font-size: 14px;
    }
    .footerLeftRightBot{
        margin-bottom: 50px;
    }
    .swiperProducts{
        padding-bottom: 40px !important;
    }
    .swiper-pagination-bullet{
        border: 1px solid #FFFFFF !important;
        opacity: 1 !important;
    }
    .swiper-pagination-bullet-active{
        background-color: white !important;
    }
    .alertify-notifier {
        top: 20px !important;
        bottom: auto !important;
        right: auto !important;
        left: 20px !important;
        right: 20px !important;
        width: calc(100% - 40px) !important;
    }
    .alertify-notifier div{
        transform: unset !important;
        width: calc(100% - 30px) !important;
    }
    .contactSection {
        margin-bottom: 5px;
    }    
  }
  @media only screen and (max-width: 768px) {
    .topTitle {
        font-size: 4.85vw;
    }
  }
  @media only screen and (max-width: 540px) {
    .productTitleSubtitle {
        top: 50px;
    }
  }
  @media only screen and (max-width: 480) {
    .topTitle {
        font-size: 6.85vw;
    }
  }