@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    font-size: 14px;
    scroll-behavior: smooth;
    --blue: #0b2e4b;
    --dark-blue: #021c32;
    --primary: #0db0f6;
    --white: #ffffff;
    --text: #9b9b9b;
}
body {
    margin: 0;
    font-family: "Poppins";
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    background-color: var(--blue);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(var(--primary), 0);
}

li {
    list-style: none;
}

ol,
ul,
dl,
p,
h1,
h2,
h3,
h4,
h5,
figure {
    padding: 0;
    margin: 0;
}
h1,
h2,
h3,
h4,
h5 {
    font-weight: 400;
    line-height: 24px;
}
h1,
h2 {
    font-size: 18px;
    margin-bottom: 2rem;
}
a {
    text-decoration: none;
    outline: 0;
}

p {
    font-size: 14px;
    line-height: 24px;
}

[hidden] {
    display: none !important;
}
.main {
    padding: 4rem 0 0;
    overflow: hidden;
}
canvas {
    width: 100% !important;
    height: 100% !important;
}
/* Display */
.d-flex {
    display: flex;
}
.justify-content-center {
    justify-content: center;
}
.justify-space-between {
    justify-content: space-between;
}
.pos-r {
    position: relative;
}
.align-items-center {
    align-items: center;
}
.d-inline-block {
    display: inline-block;
}
.d-block {
    display: block;
}
.d-none {
    display: none;
}
.hide {
    display: none !important;
}
.overflow-hiidle{
    overflow: hidden;
}

/* Text */
.text {
    color: #747579;
}
.t-accent {
    color: var(--accent);
}
.t-primary {
    color: var(--primary);
}
.t-right {
    text-align: right;
}
.t-left {
    text-align: left;
}
.t-center {
    text-align: center;
}
.t-white {
    color: var(--white);
}
.t-upper {
    text-transform: uppercase;
}
.fw-medium {
    font-weight: 500;
}
.small {
    font-size: 10px;
    line-height: 14px;
}

/* Background */
.bg-primary {
    background: var(--primary);
}
.bg-accent {
    background: var(--accent);
}
.bg-light {
    background: #f5f7f9;
}

/* Margin */
.mt-2 {
    margin-top: 0.5rem;
}
.mt-5 {
    margin-top: 3rem;
}
.ml-2 {
    margin-left: 0.5rem;
}
.mr-2 {
    margin-right: 0.5rem;
}
.mt-4 {
    margin-top: 1.5rem;
}
.ml-4 {
    margin-left: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 500;
    padding: 8px 20px;
    text-align: center;
    border-radius: 4px;
    color: var(--white);
    vertical-align: middle;
    user-select: none;
    border: 0;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    font-family: "Poppins";
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.15),
        0 1px 1px rgba(38, 31, 68, 0.075);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn.round {
    border-radius: 25px;
}
.btn-accent {
    background: var(--accent);
    color: var(--peach);
}
.btn-primary {
    background: var(--primary);
}
.btn-accent-border {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: var(--white);
}
.btn-primary-border {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: var(--white);
}
.btn-group {
    justify-content: end;
    column-gap: 20px;
}
.btn-next {
    width: 100%;
}
.btn.disabled {
    cursor: not-allowed;
    opacity: 0.65;
    pointer-events: none;
}
.btn-360 {
    margin-top: 50px;
}
.btn-360 .btn {
    padding: 8px 16px;
    transform: rotate(90deg);
}

/* cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    /* border: 1px solid black; */
    background-color: #021c32;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 28px;
    top: 20px;
    transform: translate(calc(-50% + 15px), -50%);
  }
.cursorinnerhover {
    width: 50px;
    height: 50px;
    opacity: .5;
}


/* Form Controls */
.select-custom {
    position: relative;
}
.form-control {
    border: 0;
    border-bottom: 1px solid var(--white);
    font-size: 14px;
    padding: 1rem;
    width: 100%;
    font-family: "Poppins";
    background-color: transparent;
    position: relative;
    color: var(--white);
}
.form-control option{
    color: var(--dark-blue);
}
.form-control::placeholder {
    color: var(--white);
}
.select-custom .form-control {
    -webkit-appearance: none;
    color: var(--white);
    padding: 1.1rem;
}
.select-custom option {
    color: var(--dark-blue);
}
.select-custom:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    pointer-events: none;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    top: 50%;
    right: 16px;
    border-top: 8px solid var(--white);
    margin-top: -4px;
}
.form-label {
    margin-bottom: 8px;
    display: block;
}
.form-control:focus-visible {
    outline: 0;
}
.field-error {
    font-size: 12px;
    color: #f44336;
}

/* col */
[class*="col-"] {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
}
.col-12 {
    width: 100%;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.container {
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}
.section {
    padding: 40px 0;
}
.sec-title {
    color: var(--white);
    font-weight: 400;
    margin-bottom: 8px;
}
.page-title {
    font-size: 32px;
    line-height: 36px;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.row-direction {
    flex-direction: column;
}
.is-web {
    display: none;
}
.card {
    background: var(--white);
    border-radius: 8px;
    position: relative;
    z-index: 999;
}

/* Header */
.header-wrap {
    height: 40px;
    align-items: center;
}
.header-fixed {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0.75rem 0;
    background-color: transparent;
    font-size: 1rem;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    z-index: 9999;
    transition: top 0.3s ease-in-out;
}
.dropdown-wrap {
    position: relative;
    cursor: default;
    cursor: pointer;
}
.dropdown {
    display: none;
    padding: 10px 0;
    flex-direction: column;
    margin-bottom: 0;
}
#nav-menu .dropdown a {
    display: block;
    padding: 8px 16px;
    color: var(--dark-blue);
}
#nav-menu a {
    color: var(--white);
}
#nav-menu ul {
    column-gap: 45px;
}
#nav-menu li:not(.dropdown li):hover:before  {
    content: "";
    width: 100%;
    background: var(--primary);
    height: 6px;
    position: absolute;
    top: -32px;
}
.header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    z-index: 1;
    background: linear-gradient(
        0deg,
        rgba(12, 40, 63, 0) 0%,
        #0c283f 76.64%,
        #0a1128 100%
    );
}
.hamburger-menu {
    display: inline-flex;
    font-size: 2rem;
}

/* Banner */
.hero-banner {
    position: relative;
}
.hero-banner:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(12, 40, 63, 0) 0%,
        #0c283f 76.64%,
        #0b2e4b 100%
    );
}

/* Landing page */
#landing {
    position: relative;
    overflow: hidden;
}
#landing:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 85%;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(12, 40, 63, 0) 0%,
        rgba(12, 40, 63, 0.7) 25%,
        #0c283f 43%,
        rgba(12, 40, 63, 0.7) 75%,
        rgba(12, 40, 63, 0) 100%
    );
}
#landing .bnr-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 99;
    width: 100%;
}
#landing .product-info {
    position: absolute;
    top: 120px;
    right: 16px;
    z-index: 99;
    max-width: 90%;
}
#landing .product-info h2 {
    font-size: 28px;
    line-height: 34px;
}
#landing .product-info h2 span {
    color: var(--primary);
}
#landing .product-info p {
    margin: 0 0 50px;
}
#landing .banner-img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}
.product-gallery .card{
    width: calc(50% - 10px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-blue);
}
.product-gallery .gallery-wrap{
    gap: 20px;
    flex-wrap: wrap;
}
.product-gallery .gallery-wrap img{
    max-width: 100%;
    max-height: 220px;
}
/* prod Details section */
.prod-details-wrap {
    margin-top: 30px;
}
.prod-details-sec .prod-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    row-gap: 70px;
}
.prod-details .prod-img {
    max-width: 250px;
    position: relative;
    z-index: 99;
    filter: drop-shadow(0px 0px 45px #0db0f666);
}
.prod-details-sec .details h2 {
    font-size: 26px;
    font-weight: 400;
}
.prod-details-sec .details p {
    font-size: 14px;
}
.prod-details-sec .prod-img {
    border-radius: 6px;
}
.prod-details-sec .details .btn-info span {
    font-size: 14px;
}

/* Product details page */
.product-details {
    overflow: hidden;
    z-index: 99;
    position: relative;
}
.product-details-wrap {
    row-gap: 60px;
    flex-flow: column-reverse;
}
.product-details .img-holder {
    position: relative;
    text-align: center;
}
.product-details .img-holder .prod-img {
    z-index: 99;
    position: relative;
    max-height: 350px;
    left: 30px;
}
.product-details .img-holder:after {
    content: "";
    background-color: var(--dark-blue);
    height: 250px;
    width: 600px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 30px;
    border-radius: 20rem 0 0 20rem;
}
.variants {
    margin-top: 40px;
}
.variants h3 {
    font-size: 22px;
    font-weight: 400;
}
.variants ul {
    column-gap: 12px;
    margin-top: 15px;
}
.variants li {
    text-align: center;
    padding: 18px 24px;
    border-radius: 6px;
    background-color: var(--dark-blue);
}
.variants li h4 {
    font-size: 18px;
}
.variants li p {
    font-size: 10px;
    margin-top: 8px;
    color: var(--text);
}
.prod-info {
    flex-direction: column;
    row-gap: 50px;
    margin-top: 8rem;
}
.prod-info .img-holder {
    width: 320px;
    height: 320px;
    text-align: center;
    background-color: var(--dark-blue);
    border-radius: 50%;
}
.prod-info .img-holder img {
    max-height: 320px;
    position: relative;
    bottom: 60px;
}
.prod-info ul {
    flex-direction: column;
    gap: 20px;
}
.prod-info li {
    display: flex;
    column-gap: 15px;
    line-height: 22px;
    align-items: center;
}

/* contact us page */
.contact-us {
    background: url(../images/contact-us-bg.png) center no-repeat;
    background-size: cover;
}
.contact-us-sec {
    padding: 5rem 0;
}
.contact-form {
    margin-top: 3rem;
}
.contact-form .row {
    row-gap: 30px;
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    padding: 30px 20px;
}
.footer-nav {
    flex-direction: column;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--text);
}
.footer .social {
    column-gap: 20px;
    font-size: 20px;
    color: var(--primary);
}
.footer .social i {
    border: 1px solid var(--primary);
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 20px;
}
.copyright {
    flex-direction: column;
    row-gap: 20px;
}
.content-page p, .content-page h3, .content-page ul {
    margin-bottom: 20px;
	font-size: 16px;
}
.content-page h3 {
	font-weight: bold;
}
.content-page a{
	color: var(--primary);
}
/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.modal.open {
    visibility: visible;
    opacity: 1;
}
.modal-body {
    max-width: 800px;
    width: 100%;
    transition: all 0.3s ease-in-out;
    background: #fff;
    z-index: 602;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 4px;
}
.modal:after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    z-index: 601;
}
.modal-content {
    max-height: 80vh;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}
.modal-close {
    position: absolute;
    top: -20px;
    right: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: #fff;
    border: 0;
    z-index: 999;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.modal-close:after,
.modal-close:before {
    content: "";
    position: absolute;
    background: #959595;
    height: 1px;
    left: 12px;
    top: 19px;
    width: 17px;
}
.modal-close:after {
    transform: rotate(45deg);
}
.modal-close:before {
    transform: rotate(-45deg);
}
#lottie-animation{
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.lottie-animation-wrap{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #021c32d1;
}
#landing.evplc-main:after {
    display: none;
}
.image-components{
    height: 100vh;
    padding: 250px 0 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.image-components .part {
    position: absolute;
    width: 100%;
    max-width: 1000px;
    height: auto;
}
.image-components .description{
    position: absolute;
    max-width: 300px;
    opacity: 0;
}
.image-components .description h4{
    font-size: 22px;
    color:#0db0f6;
    font-weight: 600;
}
.image-components .description p{
    font-size: 14px;
    line-height: 24px;
    margin-top: 8px;
}
.image-components .desc-1{
    text-align: left;
    top: 30%;
    left: 0;
}
.image-components .desc-2{
    text-align: right;
    top: 30%;
    right: 0;
}
.image-components .desc-5{
    text-align: left;
    bottom: 10%;
    left: 0;
}
.image-components .desc-3{
    text-align: left;
    bottom: 35%;
    left: 0;
}
.image-components .desc-4{
    text-align: right;
    bottom: 35%;
    right: 0;
}
.image-components .desc-6{
    text-align: right;
    bottom: 10%;
    right: 0;
}
.image-components .pointer{
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 14px;
    background-color:#0db0f6;
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}
#top-case { margin-top: -80px; }
#bottom-case { margin-top: 120px; }
@media only screen and (max-width: 767px) {
    .header #nav-menu {
        position: fixed;
        background: var(--dark-blue);
        width: 100%;
        height: 100%;
        bottom: 100%;
        right: 0;
        box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
        padding: 4rem 3rem;
        border-radius: 1rem 0 0 1rem;
        transition: 0.3s;
        z-index: 100;
    }
    .nav-close {
        font-size: 1.5rem;
        position: absolute;
        top: 1rem;
        right: 1.25rem;
    }
    #nav-menu ul {
        row-gap: 20px;
    }
    .header #nav-menu ul {
        flex-direction: column;
    }
    .footer #nav-menu ul {
        margin-top: 30px;
        flex-wrap: wrap;
    }
    .dropdown.primary{
        background: var(--blue);
        margin-top: 18px;
    }
    #nav-menu .dropdown a{
        color: var(--white);
    }
    #nav-menu.show-menu {
        bottom: 0;
    }
    .hero-banner {
        height: 480px;
    }
    .hero-banner img {
        object-fit: cover;
        height: 480px;
    }
}
@media only screen and (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media only screen and (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    .is-mobile {
        display: none;
    }
    .is-web {
        display: block;
    }
}
@media only screen and (min-width: 992px) {
    :root {
        font-size: 16px;
    }
    .container {
        max-width: 960px;
    }
    .main {
        padding: 8rem 0 0;
    }
    .section {
        padding: 70px 0;
    }
    p {
        font-size: 22px;
        line-height: 33px;
    }
    h1,
    h2 {
        font-size: 24px;
    }
    .sec-title {
        font-size: 34px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    .sec-desc {
        font-size: 18px;
        max-width: 750px;
        margin: 0 auto;
    }
    .page-title {
        font-size: 70px;
        line-height: 96px;
    }
    .col-lg-6 {
        width: 50%;
    }
    #lottie-animation{
        width: 600px;
    }
    .form-control {
        font-size: 18px;
    }
    .header-fixed.sticky {
        position: fixed;
        background-color: #021c32;
    }
    .header .brand-logo {
        width: 160px;
    }
    #nav-menu li {
        position: relative;
    }
    #nav-menu li.active:before {
        content: "";
        width: 100%;
        background: var(--primary);
        height: 6px;
        position: absolute;
        top: -32px;
    }
    .dropdown{
        position: absolute;
        top: 35px;
        width: 160px;
        border-radius: 6px;
        background: var(--white);
    }
    .dropdown.sub{
        top: 0;
        left: 170px;
    }
    .hamburger-menu,
    .nav-close {
        display: none;
    }
    .btn {
        font-size: 16px;
        padding: 14px 30px;
    }
    .screen-loader:before {
        width: 150px;
        height: 150px;
    }
    .header-wrap {
        height: 60px;
    }
    /* Landing page */
    .hero-banner:after {
        height: 450px;
    }
    #landing .banner-img {
        height: auto;
    }
    #landing .product-info {
        right: 250px;
        max-width: 650px;
    }
    #landing .product-info h2 {
        font-size: 52px;
        line-height: 64px;
        max-width: 500px;
    }
    .prod-details-sec .prod-details {
        flex-direction: row;
        margin-top: 100px;
        column-gap: 150px;
    }
    .prod-details .prod-img {
        max-width: 500px;
    }
    .prod-details-sec .details h2 {
        font-size: 28px;
        line-height: 44px;
    }
    .prod-details-sec .details p {
        font-size: 16px;
        line-height: 33px;
    }
    .prod-details-sec .details .btn-info span {
        font-size: 18px;
    }
    .prod-details-sec .prod-details.even {
        flex-direction: row-reverse;
    }
    .product-details-wrap {
        flex-direction: row;
        column-gap: 50px;
    }
    .product-details .details {
        width: 45%;
    }
    .product-details .details .prod-desc {
        font-size: 22px;
        line-height: 33px;
    }
    .variants {
        margin-top: 60px;
    }
    .variants h3 {
        font-size: 38px;
        line-height: 48px;
    }
    .variants ul {
        margin-top: 24px;
    }
    .variants li {
        padding: 28px 34px;
    }
    .variants li h4 {
        font-size: 38px;
        line-height: 40px;
    }
    .variants li p {
        font-size: 14px;
        margin-top: 18px;
    }
    .btn-360 {
        margin-top: 100px;
    }
    .product-details .img-holder .prod-img {
        left: 0;
        max-height: 650px;
        padding-left: 150px;
    }
    .product-details .img-holder:after {
        height: 500px;
        width: 1200px;
        left: 0;
    }
    .prod-info {
        flex-direction: row;
        column-gap: 70px;
        justify-content: space-between;
    }
    .prod-info .img-holder {
        width: 415px;
        height: 400px;
    }
    .prod-info .img-holder img {
        max-height: 400px;
    }
    .prod-info ul {
        flex-wrap: wrap;
        flex-direction: row;
        width: 60%;
    }
    .prod-info li {
        width: calc(50% - 20px);
    }
    .contact-us .page-title {
        font-size: 48px;
    }
    .contact-form .row {
        row-gap: 60px;
    }
    .product-gallery .gallery-wrap{
        gap: 50px;
    }
    .product-gallery .card{
        width: calc(25% - 40px);
    }
    .footer {
        padding: 110px 120px;
    }
    .footer .brand-logo {
        width: 160px;
    }
    .footer-nav {
        flex-direction: row;
        align-items: center;
    }
    .copyright {
        flex-direction: row;
    }
    .copyright p {
        font-size: 16px;
    }
    .modal-body {
        width: 70%;
        max-width: 950px;
        border-radius: 8px;
        top: 50%;
        left: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
    }
    .modal-body.sm {
        width: 550px;
    }
    .modal-content {
        padding: 2rem 2.5rem;
    }
    .modal-close {
        top: -23px;
        right: 30px;
        width: 46px;
        height: 46px;
    }
    .modal-close:after,
    .modal-close:before {
        left: 12px;
        top: 22px;
        width: 22px;
    }
    #modal-thank-you .btn {
        font-size: 12px;
        padding: 10px 30px;
    }
    #top-case { margin-top: -210px; }
    #bottom-case { margin-top: 360px; }
}
@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    .image-components .desc-1{
        top: 42%;
    }
    .image-components .desc-2{
        top: 42%;
    }
    .image-components .desc-3{
        bottom: 25%;
    }
    .image-components .desc-4{
        bottom: 25%;
    }
    .image-components .desc-5{
        bottom: 0;
    }
    .image-components .desc-6{
        bottom: 0;
    }
}
@media only screen and (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
}
