@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap');
/* font-family: 'Montserrat', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');
/* font-family: 'Dancing Script', cursive; */
@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@1,600&display=swap');
/* font-family: 'Prompt', sans-serif; */
:root{
    --bgblue:#7ab0d4; 
    --blue:#15b7ff;
    --darkblue:#021433;
    --gray:#cccccc; 
    --darkgray:#636668;
    --bggray:#ccc9c9;
}

em {
    font-style: italic;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    letter-spacing: .8px;
    color: var(--darkblue);
}

nav{
    width: fit-content;
}

span{
    color: var(--darkblue);
}

a {
    color: var(--darkblue);
    text-decoration: none;
}
b{
    font-weight: 600;
}
a:hover {
    color: var(--darkblue);
}

h1,h2,h3,h4,h5,h6 {
    line-height: 120%;
}

h1{
    font-size: 2rem;
    font-weight: 700;
}

h2{
    font-size: 1.7rem;
    font-weight: 600;
}
h3{
    font-size: 1.5rem;
    font-weight: 500;
}
h4{
    font-size: 1.3rem;
    font-weight: 400;
}
h5{
    font-size: 1.1rem;
    font-weight: 400;
}
h6{
    font-size: 1rem;
    font-weight: 400;
}

button {
    padding: 1rem;
    width: auto;
    border: none;
    cursor: pointer;
    color: white;
    background-color: var(--blue);
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    font-size: .9rem;
}

button:hover {
    background-color:var(--darkblue);
    transition: 300ms;
}

input,select,textarea {
    padding: .7rem;
    outline-color: var(--blue);
    border: 2px solid var(--gray);
    border-radius: 3px;
    margin: .4rem 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    color: var(--darkblue);
    display: block;
    width: 100%;
    font-size: 1rem;
}
.partition{
    margin: .8rem 0;
}
.partitionBox{
    margin: .8rem 0;
    border :2px solid var(--gray);
    border-radius: .2rem;
}
.partition a {
    font-weight: 500;
    transition: 0.4s;
    opacity: 70%;
}
.partition a:hover{
    opacity: 100%;
}

label {
    font-weight: 500;
    font-size: .9rem;
}

section, .section_padding {
    padding: 1rem 5rem;
}

ul {
    margin: .2rem 0;
}

li {
    font-size: .9rem;
}

hr {
    height: 4px;
    border: 1px solid var(--blue);
    margin: .5rem 0;
    border-radius: 5px;
    width: auto;
    background-color: var(--blue);
}

.container {
    width: 85%;
    margin: .5rem auto;
}

@media only screen and (min-width:1440px){
    .container{
        width: 75%;
    }
}

@media only screen and (max-width:768px){
    h1{
        font-size: 1.7rem;
        font-weight: 700;
    }
    
    h2{
        font-size: 1.5rem;
        font-weight: 600;
    }
    h3{
        font-size: 1.3rem;
        font-weight: 500;
    }
    h4{
        font-size: 1.1rem;
        font-weight: 400;
    }
    h5{
        font-size: 1rem;
        font-weight: 400;
    }
    h6{
        font-size: .84rem;
        font-weight: 400;
    }
    .container{
        width: 90%;
    }
    section, .section_padding {
        padding: 1rem 3rem;
    }
    input,select {
        padding: .5rem;
        font-size: .8rem;
    }
}

@media only screen and (max-width:425px){
    h1{
        font-size: 1.6rem;
        font-weight: 700;
    }
    
    h2{
        font-size: 1.4rem;
        font-weight: 600;
    }
    h3{
        font-size: 1.2rem;
        font-weight: 500;
    }
    h4{
        font-size: 1rem;
        font-weight: 400;
    }
    h5{
        font-size: .90rem;
        font-weight: 400;
    }
    h6{
        font-size: .8rem;
        font-weight: 400;
    }
    section, .section_padding{
        padding: 1rem 1rem;
    }
    input,select {
        padding: .4rem;
        font-size: .8rem;
    }
    button{
        padding: .7rem;
        font-size: .8rem;
    }
    .partition{
        margin: .3rem 0;
    }
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: 3rem auto 0;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }