

:root {
    --clr-white: #FFFFFF;
    --clr-black: #000000;
    --clr-faded-black: #343434;
    --clr-grey: #F5F5F5;
    --clr-text-grey: #424242;
    --clr-pink: #FF5959;
    --clr-offtone-blue: #E9EDF3;
    --clr-blue: #1361FF;
    --ff-primary: 'Work Sans', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--ff-primary);
    line-height: 1;
    height: 100vh;
    background: var(--clr-white);
    font-size: 1.3125rem;  
    font-weight: normal;
    
}
/* 
.container {
    margin-inline: auto;
    width: min(95%, 70.5rem);
    display: block;
    padding-top: 6.5%;
} */

/* .navbar {
    background: var(--clr-blue)
    
} */
/* adjustment for ip5/SE */
/* @media (max-width: 321px) {
    .container {
        padding-top: 0;
    }
    
} */

h1 {
    font-family: var(--ff-primary);
    color: var(--clr-black);
    font-size: 6rem;
    font-weight: bold;   
}

h2 {
    font-family: var(--ff-primary);
    font-size: 2.5rem;
    font-weight: bold;

}

@media (max-width: 768px) {
    h2 {
        max-width: 20rem;
    }
    h1 {
        font-size: 4rem;
    }
}

p {
    color: var(--clr-text-grey);
}

h3 {
    font-size: 1.3rem;
    font-family: var(--ff-primary);
    font-weight: bold;
}

h4 {
    font-size: 1.3125rem;
    
}

.big-intro {
    margin-top: 7rem;
}

.button-filled a {
    background: var(--clr-pink);
    padding: 1.5rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    color: var(--clr-white);
    border-radius: 20px;   
}

.button-filled {
    margin-top: 3.5rem;
}

.button-outlined a {
    padding: 1.4rem 4.6rem;
    text-decoration: none;
    font-weight: 700;
    color: var(--clr-pink);
    border-radius: 20px;
    border: 3px solid #FF5959;
}

.button-outlined {
    margin-top: 5rem;   
}

.hero-desktop {
    display: none;
}

.desktop-button {
    display: none;
}


@media (min-width: 600px ) {
    .desktop-button {
        display: flex;
        flex-direction: row;
        margin-left: 15%;
        
    }

    .mob-button {
        display: none;
    }

    .button-outlined {
        transform: translateY(-1.3rem);
    }

    .button-filled {
        margin-right: 1rem;
    }

}

@media (min-width: 1310px) {
    .desktop-button {
        display: flex;
        flex-direction: row;
        margin-left: 2rem;
        gap: 1rem;
    }

    .mob-button {
        display: none;
    }

    .button-outlined {
        transform: translateY(-1.3rem);
    }
}



.button-filled-blue a {
    background: var(--clr-blue);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: normal;
    font-size: 1rem;
    color: var(--clr-white);
    border-radius: 40px;
    cursor: pointer;
    transition: 200ms ease-in;
}

.button-filled-blue {
    margin-top: 2rem;
    padding-bottom: 2rem;
    margin-left: 45%;    
}

/* .card-container:hover .button-filled-blue a {
    background: var(--clr-pink)
} */

/* adjustment for galaxy s5 / moto g4 */
@media (width: 360px) {
    .button-filled-blue {
        margin-left: 45%;
        margin-top: 20%;
    }
}
/* " for ip 5/se */
@media (width: 320px) {
    .button-filled-blue {
        margin-left: 35%;
        margin-top: 3rem;
    }

}
/* " for Pixel 2 XL */
@media (width: 411px) {
    .button-filled-blue {
        margin-left: 55%
    }
}

/* " for bigger screen */
@media (min-width: 500px) {
    .button-filled-blue {
        margin-left: 60%;
    }
}

/* " for ip 6/7/8 plus */
@media (width: 414px) {
    .button-filled-blue {
        margin-left: 55%;
    }
}

/* " for ip X */
@media (width: 375px) {
    .button-filled-blue {
        margin-left: 48%;;
    }
}
@media (min-width: 1104px) {
    .button-filled-blue{
        margin-left: 72%;
        margin-top: 20%;
    }
    
    h2 {
        font-size: 3rem;
    }

    p {
        font-size: 1.1rem;
    }

    .card-container {
        margin-left: 8rem;
        margin-right: 8rem;
    }
}

@media (max-width: 579px) {
    .hero-video {
        margin-top: -9rem;
        margin-bottom: -9rem;
    }
}


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

.ig-container img {
    max-width: 100%;
    align-items: center;
    margin-bottom: 2rem;
}



.contact-box {
    width: 85%;
    max-width: 600px;
    background: #3d5af1;
    
    
    transform: translate(8.5%, 8.5%);
    
    padding: 30px 40px;
    /* border: 1px solid #000000; */
    box-sizing: border-box;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 7rem;

    
} 

/* Adaptation to specific screen sizes */
/* Surface Duo */
@media (width: 540px) {
    .contact-box {
        margin-top: 8rem;
    }
}
/* iPad */
@media (width: 1024px) {
    .contact-box {
        margin-top: 4rem;
    }
}
/* iPhone X */
@media (width: 375px) {
    .contact-box {
        margin-top: 5rem;
    }

    .text-box input,
    .text-box textarea {
    font-size: 0.9rem;
    }
}
/* iPhone 6/7/8 Plus */
@media (width: 414px) {
    .contact-box {
        margin-top: 7rem;
    }

    .text-box input,
    .text-box textarea {
    font-size: 1rem;
    }
}
/* iPhone 6/7/8 */
@media (width: 375px) {
    
    .contact-box {
        margin-top: 10rem;
        
    }
    
    .text-box input,
    .text-box textarea {
        font-size: 0.9rem;
    }
    
}
/* iPhone 5/SE */
@media (width: 320px) {
    .contact-box {
        margin-top: 16rem;
    }
    .text-box input,
    .text-box textarea {
        font-size: 0.7rem;
    }
}
/* Pixel 2 XL */ 
@media (width: 411px) {
    .contact-box {
        margin-top: 6rem;
    }
    .text-box input,
    .text-box textarea {
        font-size: 1rem;
    }
}
/* Pixel 2 */
@media (width: 411px) {
    .contact-box {
        margin-top: 7rem;
    }
    .text-box input,
    .text-box textarea {
        font-size: 1rem;
    }
}
/* Galaxy S5 */
@media (width: 360px) {
    .contact-box {
        margin-top: 11rem;
        margin-bottom: 2rem;
    }
    .text-box input,
    .text-box textarea {
        font-size: 1rem;
    }
}
/* Galaxy Fold */
@media (width: 280px) {
    .contact-box {
        margin-top: 11rem;
        margin-bottom: 2rem;
    }
    .text-box input,
    .text-box textarea {
        font-size: 1rem;
    }
}

.btn {
    background: var(--clr-pink);
    border-radius: 20px;
    color: var(--clr-white);
    padding: 0.7rem 2rem;
    margin-top: 1rem;
    /* border: 1px solid #000000; */
    display: block;
    cursor: pointer;
}

.text-box {
    border: 1px #000000;
    /* margin: 5px 0; */
    padding: 5px 0px;

}

.text-box label {
    display: block;
    text-align: left;
    color: var(--clr-offtone-blue);
    
}

.text-box input,
.text-box textarea {
    width: 100%;
    margin-top: 6px;
    height: 2rem;

}

.text-box textarea {
    height: 10rem;
}

.container {
    text-align: center;
}
