*{
    padding: 0;
    margin: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

.wrapper{
    display: flex;
    width: 100%;
    height: 100vh;
    flex-wrap: wrap;
}

.left-col, .right-col{
    flex-basis: 50%;
    height: 100vh;
    position: relative;
}


.logo{
    display: block;
    font-size: 28px;
    margin-top: 30px;
    margin-left: 120px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.logo span{
    color: #8b4eed;
}

.content{
    max-width: 700px;
    position: absolute;
    top: 50%;
    left: 120px;
    right: 50px;
    transform: translateY(-40%);
}

.content h1{
    color: #333;
    font-size: 60px;
    line-height: 60px;
    margin: 25px 0;
}

.content h1 span{
    color: #8b4eed;
    font-size: 50px;
}

.content p{
    color: #333;
    font-size: 20px;
    line-height: 30px;
}

button{
    width: 200px;
    border: none;
    background: #8b4eed;
    box-shadow: 0px 10px 10px rgba(219, 219, 219, 0.5);
    padding: 20px 0;
    color: white;
    outline: none;
    font-size: 12px;
    cursor: pointer;
    margin-top: 2em;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 1em;
    border: 3px solid transparent;
    transition: 0.3s ease-in-out;
}

button:hover{
    background-color: transparent;
    color: black;
    border: 3px solid #8b4eed;
    transform: scale (1.05);
}

.slider{
    width: 100%;
    height: 60%;
    display: flex;
}

.slider img{
    width: 100%;
    object-fit: cover;
}

.logo-img{
    width: 70px;
    position: absolute;
}
.slider-content{
    width: 100%;
    height: 60%;
    background: #8b4eed;
    padding-top: 30px;
    padding-left: 30px;
}

.slider-content h2{
    font-size: 26px;
    font-weight: 400;
    color: white;
}


.slider-content  p{
    color: white;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}
hr{
    border: none;
    width: 270px;
    height: 3px;
    border-radius: 1em;
    background: white;
    margin: 20px 0 30px;
}

.arrows{
    margin-top: 1em;
    width: 120px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 1em;
}

.arrows img{
    width: 35px;
    cursor: pointer;
}



.container{
    max-width: 1170;
    padding: 0 15px;
    margin: auto;
    background-color: aqua;
}

.section{
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    margin-top: 90px;
}

.section-cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.section-card{
    background-color: hsl(220, 6%, 10%);
    padding: 120px 30px 30px;
    position: relative;
    z-index: 1;
}

.section-card:nth-child(1){
    --color: hsl(180, 43%, 49%);
}


.section-card:nth-child(2){
    --color: hsl(180, 97%, 23%);
}


.section-card:nth-child(3){
    --color: #8b4eed;
}

.section-card::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0; 
    height: 100%;
    width: 100%;
    background-color: var(--color);
    z-index: -1;
    clip-path: circle(40px at 70px 70px);
    transition: clip-path 1s ease;
}

.section-card:hover::before{
    clip-path: circle(100%);
}

.section-card span{
    position: absolute;
    left: 0;
    top: 0;
    height: 80px;
    width: 80px;
    transform: translate(30px, 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1s ease;
}


.section-card span img{
    width: 100px;
}

.section-card:hover span{
    transform: translate(0, 30px);
}

.section-card h2{
    font-size: 27px;
    color: hsl(0, 0%, 100%);
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    line-height: 1.3;
}


.section-card p{
    color: hsl(0, 0%, 85%);
    line-height: 1.5;
    font-weight: 500;
}







.section-card a{
    display: inline-block;
    text-transform: capitalize;
    color: honeydew;
    margin-top: 30px;
    font-weight: 600;
}


.pricing{
    background-color: aqua;
    min-height: 100vh;
    padding: 100px 15px;
    margin-top: -120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden ;
}

.pricing-card{
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.pricing-card .box{
    background-color: hsl(0, 0%, 100%, 0.5);
    padding: 50px;
    border-radius: 15px;
    display: flex;
    gap: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid hsla(0, 0%, 10%, 0.25);
}

.pricing-card .hr{
    border: 2px solid hsl(0, 0%, 100%, 0.2);
    border-radius: 50%;
}


.pricing-card .title{
    color: hsl(0, 0%, 100%);
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
}

.pricing-card .price{
    font-size: 30px;
    font-weight: bold;
    margin-top: 10px;
    color: hsl(0, 9%, 18%);
}


.pricing-card .decoration-1,
.pricing-card .decoration-2{
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}


.pricing-card .decoration-1{
    left: 0;
    top: 0;
    height: 140px;
    width: 140px;
    background: linear-gradient(hsl(0, 0%, 100%), hsl(202, 93%, 47%));
    transform: translate(-20%, -20%);
}


.pricing-card .decoration-2{
    right: 0;
    bottom: 0;
    height: 180px;
    width: 180px;
    background: linear-gradient(hsl(0, 0%, 100%), hsl(202, 93%, 47%));
    transform: translate(20%, 20%);
}


.pic{
    width: 120%;
    margin-left: 0;
    position: relative;
    margin-top: 30px;
    border-radius: 5px;
    box-shadow: 1px 6px 10px 2px rgba(0, 0, 0, 0.2);
}







/* ----- CONTACT BOX ----- */
.contact-info{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    width: 100%;
    height: 315px;
    background: var(--second-color);
    border-radius: 10px;
    box-shadow: 1px 8px 10px 2px var(--first-shadow-color);
    overflow: hidden;
}
.contact-info>h2{
    color: var(--color-white);
    margin-bottom: 20px;
}
.contact-info>p{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    margin-block: 5px;
}
.contact-info p>i{
    font-size: 18px;
}
.contact-info::after{
    background: var(--color-white);
}
.contact-info:hover.contact-info h2,
.contact-info:hover.contact-info p,
.contact-info:hover.contact-info i{
    color: #777;
    z-index: 2;
}

/* ----- CONTACT FORM ----- */
.form-control{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.form-inputs{
    display: flex;
    gap: 10px;
    width: 100%;
}
.input-field{
    width: 50%;
    height: 55px;
    background: transparent;
    border: 2px solid #AAA;
    border-radius: 10px;
    padding-inline: 20px;
    outline: none;
}
textarea{
    width: 100%;
    height: 250px;
    background: transparent;
    border: 2px solid #AAA;
    border-radius: 10px;
    padding: 15px 20px;
    outline: none;
    resize: none;
}
.form-button>.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--second-color);
    color: var(--color-white);
}
.form-button>.btn:hover{
    background: #00B5E7;
}
.form-button i{
    font-size: 18px;
    rotate: -45deg;
}

.top-header h1{
    margin-left: 50px;
    font-size: 2.9rem;
}

#contact{
    padding: 50px;
}


.top-header span{
   
    font-size: 2rem;
    align-self: center;
}


/* ----- FOOTER BOX ----- */
footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 30px;
    background: #F8F8F8;
    padding-block: 40px 60px;
}
.top-footer p{
    font-size: 25px;
    font-weight: 600;
}
.middle-footer .footer-menu{
    display: flex;
}
.footer_menu_list{
    list-style: none;
}
.footer_menu_list a{
    text-decoration: none;
    color: var(--text-color-second);
    font-weight: 500;
    margin-inline: 20px;
}
.footer-social-icons{
    display: flex;
    gap: 30px;   
}
.bottom-footer{
    font-size: 14px;
    margin-top: 10px;
}





@media only screen and (max-width:945px){
    .logo{
       margin: 35px; 
    }

    br{
        display: none;
    }

    .content h1 span{
        font-size: 30px;
    }
    

    .left-col, .right-col{
        flex-basis: 100%;
    }
    .left-col{
        margin-top: 50px;
    }
    .content{
        left: 0;
        right: 0;
        padding: 20px;
        text-align: center;
    }
    
    .content h1{
        font-size: 34px;
        line-height: 38px;
    }

    .slider{
        height: auto;
    }

    .slider-content{
        height: auto;
    }

    .section-cards{
        grid-template-columns: repeat(2, 1fr);
    }

    .section{
        margin-top: 250%;
    }

    .pic{
        width: 100%;
        margin-left: 0;
        position: relative;
        margin-top: 30px;
        border-radius: 5px;
        box-shadow: 1px 6px 10px 2px rgba(0, 0, 0, 0.2);
    }
}

@media(max-width:575px){
    .section-cards{
        grid-template-columns: repeat(1, 1fr);
    }

    .pricing-card .box{
        align-self: center;
        flex-direction: column;
    }

    .pic{
        width: 100%;
        margin-left: 0;
        position: relative;
        margin-top: 30px;
        border-radius: 5px;
        box-shadow: 1px 6px 10px 2px rgba(0, 0, 0, 0.2);
    }
    #contact{
        display: flex;
        flex-direction: column;
        margin-top: -5px;
    }


    .top-header h1{
        font-size: 1.8rem;
        margin-left: 0;
    }
    
    #contact{
        padding: 20px;
        align-items: center;
        text-align: center;
    }
    
    
    .top-header span{
       
        font-size: 1.5rem;
        align-self: center;
    }


    .input-field{
        margin-top: 20px;
        margin-bottom: 20px;
    }

    b{
        position: absolute;
    }

}


@media only screen and (min-width:768px){
   

    #contact{
        margin-top: 12px;
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .contact-info h2{
        font-size: 25px;
    }

    .contact-info p{
        font-size: 25px;
    }

    .top-header h1{
        font-size: 40px;
    }

    .top-header p{
        font-size: 25px;
    }

    .input-field{
        margin-bottom: 20px;
    }
}





