* {
    margin: 0; padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    outline: none;
    border: none;
    text-decoration: none;
   /* text-transform: capitalize;*/
    transition: .2s linear;
}

:root {
    --gray: #808080;
    --white: #fff;
    --black: #000;
    --primary-text: #333;
    --secondery-txt: #565656;
    --button:  #003380;
    --hover: #1E6BB0;
    --link-icon: #122f4d;
    --heading-color: #003e9c;

    --span-txt-size: clamp(1.5rem, 2vw, 3.3rem);
    --p-txt-size: clamp(.5rem, 1vw, 1.5rem);
    --heading: clamp(2.5rem, 4vw, 5rem);
    --max-w: 1600px;
}

::selection {
    background-color: var(--white);
    color: var(--black);
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}

section {
    padding: 2rem 9%;
}

.heading {
    text-align: center;
    font-size: 4rem;
    color: var(--hover);
    padding: 1rem;
    margin: 2rem 0;
    background: rgba(0, 159, 203, 0.121);
}

.heading span {
    color: var(--primary-text);
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: var(--button);
    color: var(--white);
    padding: .9rem 3.5rem;
    cursor: pointer;
    font-size: 1.7rem;
}

.btn:hover {
    background: var(--hover);
    color: var(--white);
}


.login_btn {
    width: 130px;
    height: 50px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 6px;
    cursor: pointer;
    outline: none;
    font-size: 1.7rem;
   /* margin-left: 40px; */
    font-weight: 500;
    transition: .5s;
}


.login_btn:hover {
    background: #fff;
    color: #162938;
}


header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--black);
    color: var(--white);
    padding: 1.6rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    width: 100%;
    height: 13%;
}

header .logo {
    margin: 1rem;
    user-select: none;
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    color: var(--white);
    position: relative;
    z-index: 10;
}

header .navbar {
    list-style: none;
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
}

header .navbar li  {
    position: relative;
}

header .navbar a {
    text-decoration: none;
    color: var(--white);
    padding: 10px 20px;
    transition: background 0.3s ease;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

header .navbar a::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 0%;
    height: 100%;
    border-bottom: 3px solid var(--white);
    transition: .2s linear;
}

header .navbar a:hover::before {
    width: 90%;
}


header #toggler {
    display: none;
}

header .fa-bars {
    font-size: 2.5rem;
    color: var(--white);
    border-radius: .5rem;
    padding: .5rem 1.5rem;
    cursor: pointer;
    display: none;
}

header .icon a{
    font-size: 2.5rem;
    color: var(--white);
    margin-left: 1.5rem;
}

header .icon a:hover {
    color: var(--white);
    text-shadow: 0 0 10px #fff;
}

.home {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(#0000009c, #00000062, #00000043, #0000001e) ,url("bg-fac.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.home .content {
    max-width: 60rem;
    align-items: center;
}

.home .content h3 {
    font-size: clamp(5rem, calc(2vw + 1rem), 10rem);
    color: var(--white);
}

.home .content span {
    font-size: 3.3rem;
    color: var(--white);
    padding: 1rem 0;
    line-height: 1.5;
}

.home .content p {
    font-size: 1.5rem;
    color: var(--white);
    padding: 1rem 0;
    line-height: 1.5;
}

.btn-one {
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: var(--white);
    color: var(--primary-text);
    padding: .9rem 3.5rem;
    cursor: pointer;
    font-size: 1.7rem;
}

.btn-one:hover {
    background: var(--hover);
    color: var(--white);
}

.about .row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    padding-bottom: 3rem;
}

.about .row .video-container {
    flex: 1 1 40rem;
    position: relative;
}

.about .row .video-container video {
    width: 100%;
    height: 100%;
    border: 1.5rem solid #fff;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    object-fit: cover;
}

.about .row .video-container h3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    background: #fff;
    width: 100%;
    padding: 1rem 2rem;
    text-align: center;
    mix-blend-mode: screen;
}

.about .row .content {
    flex: 1 1 40rem;
}

.about .row .content h3 {
    font-size: 3.5rem;
    color: var(--heading-color);
    text-align: center;
}

.about .row .content p {
    font-size: 1.5rem;
    color: var(--secondery-txt);
    padding: .5rem 0;
    padding-top: 1rem;
    line-height: 1.5;
}

.product .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.product .box-container .box {
    flex: 1 1 30rem;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    border-radius: .5rem;
    border: .1rem solid rgba(0, 0, 0, .1);
    position: relative;
}

.product .box-container .box .discount {
    position: absolute;
    top: 1rem; left: 1rem;
    padding: 1rem 7rem;
    font-size: 2rem;
    color: var(--primary-text);
    background: rgba(0, 166, 255, 0.05);
    z-index: 1;
    border-radius: .5rem;
}

.product .box-container .box .image {
    position: relative;
    /*align-items: center;*/
    text-align: center;
    /*justify-items: center;*/
    padding-top: 2rem;
    overflow: hidden;
}

.product .box-container .box .image img {
    /*width: 50px; height: 50px; */
    height: 25rem;
}

.product .box-container .box:hover .image img {
    transform: scale(1.1);
}

.product .box-container .box .image .icons {
    position: absolute;
    bottom: -7rem; left: 0; right: 0;
    display: flex;
}

.product .box-container .box:hover .image .icons {
    bottom: 0;
}

.product .box-container .box .image .icons a {
    height: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    width: 50%;
    background: var(--button);
    color: var(--white);
}

.product .box-container .box .image .icons a:hover {
    background: var(--hover);
}

.product .box-container .box .image .icons .cart-btn {
    border-left: .1rem solid #ffffffce;
    border-right: .1rem solid #ffffffce;
    width: 100%;
}

.product .box-container .box .content {
    padding: 2rem;
    text-align: center;
}

.product .box-container .box .content h3 {
    font-size: 2.5rem;
    color: var(--primary-text);
}

.product .box-container .box .price {
    font-size: 2.5rem;
    color: var(--secondery-txt);
    font-weight: 540;
}

.product .box-container .box .price span {
    font-size: 1.5rem;
    color: var(--gray);
    font-weight: lighter;
    text-decoration: line-through;
}

.service .services {
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 75px auto;
    text-align: center;
}

.service .services .card {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin: 0px 20px;
    padding: 20px 20px;
    background-color: #82bfedea;
    border-radius: 10px;
    cursor: pointer;
}

.service .services .card .icon {
    font-size: 35px;
    margin-bottom: 10px;
    color: var(--link-icon);
}

.service .services .card h3 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.service .services .card p {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.5;
}

.contact .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.contact .row form {
    flex: 1 1 40rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    border: .1rem solid rgba(0, 0, 0, .1);
    background: #fff;
    border-radius: .5rem;
}

.contact .row form .box {
    padding: 1rem;
    font-size: 1.7rem;
    color: #333;
    text-transform: none;
    border: .1rem solid rgba(0, 0, 0, .1);
    border-radius: .5rem;
    margin: .7rem 0;
    width: 100%;
}

.contact .row form .box:focus {
    border-color: var(--hover);
}

.contact .row form textarea {
    height: 15rem;
    resize: none;
}

.contact .row form .send-btn {
    display: inline-block;
    margin-top: 1rem;
    border-radius: .5rem;
    background: var(--button);
    color: var(--white);
    padding: .9rem 3.5rem;
    cursor: pointer;
    font-size: 1.7rem;
    border: none;
    width: 100%;
}

.contact .row .image {
    flex: 1 1 40rem;
}

.contact .row .image img{
    flex: 1 1 40rem;
}


.contact .map-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.contact .map-container .mapBg {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 90%;
    border-radius: 20px;
}

.contact .map-container .map {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90%;
}

.contact .map-container .map iframe {
    width: 100%;
    height: 100%;
}

.footer .box-container{
    padding: 4.5rem;
    background: var(--black);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer .box-container .box {
    flex: 1 1 25rem;
}

.footer .box-container .box h3 {
    padding: 1rem 0;
    font-size: 2.5rem;
    color: var(--white);
}

.footer .box-container .box a {
    display: block;
    padding: 1rem 0;
    font-size: 1.5rem;
    color: var(--gray);
}

.footer .box-container .box a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer .box-container .box img {
    margin-top: 1rem;
}

.footer .copyright {
    text-align: center;
    padding: 1.5rem;
  /*  margin-top: 1.5rem; 
    padding-top: 2.5rem; */
    font-size: 1.5rem;
    background: var(--black);
    color: var(--white);
    border-top: .1rem solid rgba(255, 255, 255, 0.523);
}




/*media queries*/

@media(max-width: 991px) {

    html {
        font-size: 55%;
    }

    header {
        padding: 2rem;
    }
}

@media(max-width: 768px) {

    header .fa-bars {
        display: block;
    }

    header .navbar {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--black);
        border-top: .1rem solid rgba(133, 133, 133, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    header .navbar a {
        color: var(--black);
    }

    header #toggler:checked ~ .navbar {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    header .navbar a {
        margin: 1.5rem;
        padding: 1.5rem;
        border: .1rem solid rgba(255, 255, 255, 0.203);
        display: block;
        color: var(--white);
    }

    header .navbar a::before {
        content: "";
        position: absolute;
        top: 0; 
        left: 0;
        width: 0%;
        height: 100%;
        border-bottom: 3px solid var(--white);
        transition: .2s linear;
    }

    header .navbar a:hover::before {
        width: 50%;

    }

    .home .content h3{
        font-size: 5rem;
    }

    .home .content span{
        font-size: 2.5rem;
    }

    .icon-container .icons h3 {
        font-size: 2rem;
    }

    .icon-container .icons span {
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 940px){

    .service .services {
        display: flex;
        flex-direction: column;
    }

    .service .services .card {
        width: 85%;
        display: flex;
        margin: 20px 0px;
    } 
}

@media(max-width: 450px) {
    html {
        font-size: 50%;
    }

    .heading {
        font-size: 3rem;
    }
}