@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}

section {
    padding: 2rem 9%;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 9%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1000;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,0.1);
}

header #toggler {
    display: none;
}

.fa-bars {
    font-size: 3rem;
    color: #333;
    border-radius: .5rem;
    padding: .5rem 1.5rem;
    cursor: pointer;
    border: .1rem solid rgba(0,0,0,0.3);
    display: none;
}

header h1 {
    font-size: 5rem;
    font-weight: bold;
}

header h1 a {
    text-decoration: none;
    color: #3FA796;
}

header h1 a span {
    color: #333;
}

.navbar ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.navbar ul li {
    margin: 0rem 2rem;
}

.navbar ul li a {
    font-size: 1.5rem;
    color: #7A4069;
    font-weight: bold;
}

.navbar ul li a:hover {
    border-bottom: 2px solid #3FA796;
}

.icons {
    font-size: 2rem;
    font-weight: bold;
}

.icons i {
    color: #7A4069;
    margin: 0rem 1rem;
    transition: all .5s;
}

.icons i:hover {
    color: #3FA796;
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
    background:linear-gradient(to top, rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url(../img/drone-1.jpg);
    min-height: 100vh;
    background-position: center;
    background-size: cover;
}

.content {
    color: #fff;
    font-weight: bold;
}

.content h2 {
    font-size: 4rem;
    color: #7A4069;
}

.content h3 {
    font-size: 3rem;
    position: relative;
    left: 20rem;
    color: #3FA796;
    width: 50%;
}

.content p {
    font-size: 2rem;
    width: 50%;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    font-size: 1.5rem;
    background-color: #7A4069;
    border-radius: .5rem;
    border: solid .1rem #fff;
    color: #3FA796;
    padding: 1rem;
}

.btn:hover {
    opacity: 0.8;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    color: #3FA796;
    background-color: rgba(202, 155, 188,0.3);
    padding: 2rem;
    margin-bottom: 2rem;
}

.section-title span {
    color: #7A4069;
}

.about .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.row .column {
    flex: 1;
}

.row img {
    width: 100%;
    height: 100%;
}

.content-1 {
    text-align: center;
    font-size: 2rem;
    line-height: 3.5rem;
    color: #7A4069;
}

.row .column .column-1,
.row .column .column-2 {
    height: 100%;
}

.row .column-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem;
    background-color: rgba(107, 199, 184,0.6);
}

.services {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2rem;
    background-color: #fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,0.1);
    padding: 2rem;
}

.services div {
    width: 50%;
}

.services .fa-solid {
    color: #3FA796;
    font-size: 3rem;
    background-color: #7A4069;
    padding: 1rem;
    border-radius: 50%;
}

.products .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.products .box-container .box {
    flex: 1 1 30rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,0.1);
    border-radius: .5rem;
    border: .1rem solid rgba(0,0,0,0.1);
    position: relative;
    cursor: pointer;
}

.products .box-container .box .discount {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .7rem 1rem;
    font-size: 2rem;
    color: #3FA796;
    background: rgba(255, 55, 153, .05);
    z-index: 1;
    border-radius: .5rem;
}

.products .box-container .box .image {
    position: relative;
    text-align: center;
    padding-top: 2rem;
    overflow: hidden;
}

.products .box-container .box .image img {
    height: 25rem;
    width: 25rem;
}

.products .box-container .box .image img:hover {
    transform: scale(1.1);
}

.products .box-container .box .image .icons {
    position: absolute;
    bottom: -7rem;
    left: 0;
    right: 0;
    display: flex;
    transition: all .5s;
}

.products .box-container .box:hover .image .icons {
    bottom: 0;
}

.products .box-container .box .image .icons a {
    height: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    width: 50%;
    background: #7A4069;
    color: #fff;
    transition: all .5s;
}

.products .box-container .box .image .icons a:hover {
    background-color: #3FA796;
}

.products .box-container .box .image .icons .card-btn {
    border-left: 1px solid #fff7;
    border-right: 1px solid #fff7;
    width: 100%;
}

.products .box-container .box .content-2 {
    padding: 2rem;
    text-align: center;
}

.products .box-container .box .content-2 h3 {
    font-size: 2.5rem;
    color: #333;
}

.products .box-container .box .content-2 .price {
    font-size: 2rem;
    color: #3FA796;
    font-weight: bold;
    padding-top: 1rem;
}

.products .box-container .box .content-2 .price span {
    font-size: 1.5rem;
    color: #7A4069;
    font-weight: lighter;
    text-decoration: line-through;
}

.contact .row {
    display: flex;
    justify-content: center;
    
}

.contact .row .column-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem;
    background-color:rgba(176, 105, 154,0.3);
}

.contact-form {
    width: 100%;
    font-size: 2rem;
    padding: 2rem 0;
}

.contact-form label {
    display: block;
    margin-bottom: .5rem;
}

.contact-form .form {
    margin-bottom: 1.5rem;
}

.form input {
    border-radius: .5rem;
    width: 100%;
    padding: 5px;
    height: 40px;
    border: 1px solid #f5f5f5;
}

.contact-form .btn {
    margin-top: 20px;
}

.contact h2 {
    font-size: 4rem;
}

.main-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem;
    background-color: #3FA796;
}

.social {
    font-size: 3rem;
}

.main-footer a {
    color: #D61C4E;
}

.main-footer a:hover {
    opacity: .7;
}













@media (max-width:991px) {
    html {
        font-size: 8px;
    }

    header {
        padding: 2rem;
    }
}

@media (max-width:768px) {
    header .fa-bars {
        display: block;
    }

    .content p {
        width: 90%;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #eee;
        border-top: .1rem solid rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    header #toggler:checked .navbar {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .navbar ul {
        display: block;
    }

    .navbar ul li {
        display: block;
    }

    .navbar a {
        margin: 1.5rem;
        padding: 1.5rem;
        background: #fff;
        border:.1rem solid rgba(0,0,0,0.1);
        display: block;
    }

    .about .row {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .services {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .contact .row {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width:450px) {
    html {
        font-size: 7px;
    }
}



