/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    font-family: var(--primary-font);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    transition: 0.3s;
}

.sticky {
    background-color: var(--secondary-light);
    -webkit-box-shadow: 0px 32px 100px rgba(18, 133, 153, 0.2);
    -moz-box-shadow: 0px 32px 100px rgba(18, 133, 153, 0.2);
    box-shadow: 0px 32px 100px rgba(18, 133, 153, 0.2);
    font-size: 1em;
    padding-block: 2rem;
}

nav {
    width: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav ul {
    float: right;
    margin: 0 20px 0 0;
    list-style: none;
}

nav ul li{
    display: inline;
    line-height: 80px;
    margin: 0 .8rem;
}

nav ul li a{
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.checkbtn{
    font-size: 30px;
    color: var(--primary-dark);
    cursor: pointer;
    display: none;
}

@media (max-width: 952px){
    nav ul li a{
        font-size: 16px;
    }
    .particle-3{
        width: 20%;
    }
}

@media (max-width: 858px) {
    .checkbtn{
        display: block;
    }
    nav ul{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: var(--secondary-light);
        top: 100px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }
    nav ul li{
        display: block;
    }
    nav ul li a{
        font-size: 20px;
    }
    .toggleMenu{
        left: 0;
    }
}

.logo {
    font-size: 1.2em;
    float: left;
    color: var(--primary-dark);
}

nav a:hover{
    color: var(--primary-dark);
}

main {
    max-width: 80rem;
    margin: 8rem auto;
}

section {
    min-height: 100vh;
    margin-block: 2rem;
}

/* Home */
#home{
    margin-top: -100px;
}


.home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-inline: 4rem;
}

.particle {
    position: absolute;
    z-index: -1;
}

.particle-1 {
    right: 0;
    top: 0;
}

.particle-2 {
    right: 10%;
    top: 30%;
}

.particle-3 {
    top: 20%;
    left: 25%;
}

.particle-4 {
    right: 40%;
    bottom: 5%;
}

.particle-5 {
    left: 0;
    bottom: -2%;
}

.content {
    max-width: 70%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

.content h1 {
    font-size: 4rem;
}

.home .hero-img {
    max-width: 30%;
    align-self: flex-end;
}

@media only screen and (max-width: 1300px) {
    #home{
        margin: 0 2rem;
    }

    .content{
        max-width: 100%;
    }

    .content h1 {
        font-size: 2.8em;
    }
}

@media only screen and (max-width: 900px) {
    .home {
        min-height: 82vh;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .content {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .content h1 {
        font-size: 2em;
    }

    .home .hero-img {
        max-width: 100%;
        align-self: center;
        position: relative;
    }

    .home .hero-img::before{
        content: '';
        position: absolute;
        width: 100%;
        height: .6vh;
        background-color: var(--secondary-dark);
        bottom: 0;
    }
}

/* About */
.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.about img {
    width: 75%;
    height: auto;
}

.about p {
    text-align: justify;
    padding: 0;
}

.about-txt-container {
    width: 75%;
}

.about iframe{
    width: 100%;
    max-width: 62vw;
    height: 33.5rem;
}

@media only screen and (max-width: 1000px) {
    .about iframe{
        height: 25rem;
    }
}

@media only screen and (max-width: 980px) {
    .about iframe{
        height: 20rem;
    }
}

@media only screen and (max-width: 580px) {
    .about iframe{
        max-width: 75vw;
        height: 15rem;
    }
}

/* Services */
.services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.service__card {
    max-width: 16rem;
    padding: 1rem;
    align-items: flex-start;
}

.service__card img {
    width: 100%;
    height: 40%;
}

/* Pricing */
.pricing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.pricing__card {
    max-width: 26rem;
    align-items: center;
    padding: 2rem;
}

.pricing__card img {
    margin-inline: auto;
    width: 88px;
    height: 88px;
}

.pricing__card .btn-action {
    font-weight: 600;
    text-decoration: underline;
    color: var(--primary-dark);
}

.pricing-container {
    display: flex;
    max-width: 70%;
    justify-content: center;
    -webkit-box-shadow: 0px 32px 100px rgba(18, 133, 153, 0.2);
    -moz-box-shadow: 0px 32px 100px rgba(18, 133, 153, 0.2);
    box-shadow: 0px 32px 100px rgba(18, 133, 153, 0.2);
    background-color: white;
}

.pricing-text {
    padding: 3rem 3rem;
    font-weight: 600;
    text-align: center;
}

@media only screen and (max-width: 729px) {
    .pricing-container{
        max-width: 90%;
    }
    
    .pricing-text{
        /* font-weight: 500; */
        padding: 1rem 2rem;
    }
}

/* Contact */
.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

form {
    width: 100%;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
}

form .form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

form input,
textarea {
    text-align: left;
    padding: 0.6rem;
    border: 2px solid var(--primary-dark);
    font-family: var(--secondary-font);
}

form input::placeholder,
textarea::placeholder {
    color: var(--primary-dark);
}

.form-button{
    padding-block: 1rem;
    background-color: var(--primary-dark);
    color: var(--secondary-light);
    text-align: center;
    transition: all ease-in 0.25s;
    font-weight: 500;
    border: 2px solid var(--primary-dark);
    cursor: pointer;
}

.form-button:hover {
    background-color: var(--primary-light);
    border: 2px solid var(--primary-light);
}

.form-button:active{
    background-color: var(--primary-light);
}

@media only screen and (max-width: 640px) {
    form {
        max-width: 80%;
        font-size: 1em;
    }
}

/* Frequently Asked Quesiton */
.faq {
    max-width: 50rem;
    min-height: fit-content;
    margin: 0 auto 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq-section {
    width: 100%;
    margin-block: 1rem;
    padding-inline: 1rem;
}

.faq__title {
    margin-block: 2rem;
}

.accordion {
    border: 2px solid var(--primary-dark);
    background-color: var(--secondary-dark);
    color: var(--primary-dark);
    border-radius: 10px;

    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: all 0.4s ease-in-out;

    display: flex;
    justify-content: space-between;
    align-items: center;

}


.active,
.accordion:hover {
    background-color: var(--primary-light);
    color: #fff;
}

.panel {
    padding: 1rem;
    display: none;
    background-color: var(--secondary-dark);
    overflow: hidden;
    border-radius: 0 0 10px 10px;
    -webkit-box-shadow: 0px 2px 120px rgba(189, 119, 37, 0.2);
    -moz-box-shadow: 0px 2px 120px rgba(189, 119, 37, 0.2);
    box-shadow: 0px 2px 120px rgba(189, 119, 37, 0.2);
}


/* Footer */
footer {
    min-height: 38vh;
    padding: 2rem;
    background-color: var(--primary-dark);
    color: var(--secondary-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer a {
    color: var(--secondary-light);
}

.row-1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.row-1 img {
    width: 20vw;
    height: 18vh;
    object-fit: cover;
}

.social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
}

.media-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    font-size: 1.5em;
}

.app-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
}

.app-contact i{
    font-size: 1.5rem;
}

.row-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terms {
    text-decoration: underline;
}

.policy {
    display: flex;
    flex-direction: row;
}


@media only screen and (max-width: 1050px) {
    .row-1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .row-1 img {
        width: 80%;
        margin: 20px;
    }

    .row-2 {
        display: flex;
        flex-direction: column;
    }

    .app-contact {
        align-items: center;
        margin: 30px 0;
    }

    .social-media {
        margin: 30px 0;
    }

    .address {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .policy {
        margin: 1rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .copy {
        margin: 1rem 0;
    }
}

.items{
    list-style: none;
    text-align: center;
}

.margin-right-left{
    margin: 0 2rem;
}