@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

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

:root {

    /* Background color variables */
    --body-bg-color: #F2F2F3;
    --primary-color: #2F3457;
    --accent: #B5A272;
    
    --main-sec-bg-color: #282c47;

    /* Text variables */
    --light-color-text: #fff;
    --dark-color-text: #2F3457;

}

html {
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

body {
    background-color: var(--body-bg-color);
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color-text);
}

p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    max-width: 500px;
    padding-right: 25px;
}

h1, h2, h3 {
    font-family: 'EB Garamond', serif;
}

h1 {
    font-size: clamp(45px, 7vw, 65px);
    font-weight: 500;
    letter-spacing: -1px;
    color: var(--light-color-text);
    padding: 0 25px 0px 25px;
}

/* low contrast text */
.lct {
    opacity: .8;
}

/* low contrast paragraph text */
.lcpt {
    opacity: .7;
}


.primary-sec {
    position: relative;
    left: 0;
    top: 0;
    height: clamp(400px, 50vh, 800px);
    display: flex;
    justify-content: center;
}

.primary-sec-wrap {
    width: min(85vw, 950px);

}

.primary-sec-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.primary-sec-cover {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--main-sec-bg-color);
    opacity: .75;
}

.primary-sec-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

.primary-sec h1 {
    position: absolute;
    z-index: 1;
    bottom: 50px;
}

.primary-sec h1 span {
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 45%;
    background-color: var(--main-sec-bg-color);
    z-index: -1;
    
}



/* practice info sec */

.practice-info-sec {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 60px 0 50px 0;
}

.practice-info-sec-wrap {
    width: min(85vw, 950px);

}





/* practice form sec */

.practice-form-sec {
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 150px;
}

.practice-form-sec-wrap {
    position: relative;
    width: min(85vw, 950px);
}

.practice-form {
    position: relative;
    max-width: 550px;

}



/* General styles */
@media screen and (max-width: 750px) {
    
    .button {
        height: 45px;
        width: 190px;
        font-size: 11px;
    }

    p {
        font-size: 16px;
    }

}