/* GENERAL */

body{
    font-family: 'Raleway',
    sans-serif;
}

/* NAVBAR */
.nav-header{
    /* background-color: #9fd1c1; */
    background: linear-gradient(90deg, rgba(159, 25, 51, 1) 0%, rgba(226, 44, 51, 1) 100%);
}

.link {
    color: white !important;
    font-family: Verdana, Geneva, Tahoma, sans-serif !important;
    font-weight: bold !important;
    padding: 10px 20px !important;
    transition: 0.2s ease color !important;
}

.link:hover {
    color: white !important;
}

.navbar-brand img{
    width: 200px;
    margin-left: 10px;
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(255, 255, 255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.custom-toggler.navbar-toggler {
    border-color: rgb(255, 255, 255);
    padding-right: 10px;
    margin-right: 10px;
}

h2{
text-transform: uppercase;
color: #9F1933;
font-size: 35px;
margin-bottom: 80px;
margin-top: 30px;
}

.title{
    font-weight: bold;
    color: #3d7068;
    font-size: 18px;
}

/* ROW 3 BOXES */

.box{  
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 5px solid #3D7068;
    background-color: #DDF8E8;
    border-radius: 10px;
}

.main-row{
    align-items: center;
    margin-bottom: 65px;
}


/* FOOTER */

footer{
    width: 100%;
/* background-color: #9fd1c1; */
background: linear-gradient(90deg, rgba(159, 25, 51, 1) 0%, rgba(226, 44, 51, 1) 100%);
}

footer div{
    width: 60%;
    margin: 0px auto;
    padding: 10px;
    color: white !important;
}

.footer-text{
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
}
.margin{
    margin-top: 140px;
}

.img-container{
    text-align: center;
}
 
.main-text{
    display: flex;
}
.main-text p{
    padding: 20px 70px;
    padding-left: 100px;
    font-size: 20px;
}

.material-symbols-outlined{
    font-size: 150px;
}


.modal-dialog {
    overflow-y: initial !important
}

/* .modal-content.privacy-text {
    height: 600px;
    overflow-y: auto;
} */

/* .modal-content{
    height: 600px;
    overflow-y: auto;
} */

.modal-content {
    height: 600px;
    overflow-y: auto;
}

.modal-content.contact-text {
    height: inherit;
}


@media (max-width: 767px) {
    .main-row {
        height: inherit;
        margin: 30px 0px;
    }
    footer{
        font-size: 10px;
        text-align: center;
    }

    .material-symbols-outlined {
        font-size: 100px;
    }
    .main-text p {
        padding: inherit;
        font-size: 16px;
    }
    .navbar-brand img{
        width: 160px;
        margin-left: 10px;
    }

    footer div {
        width: 90%;
    }

    h2 {
        font-size: 25px;
        margin-bottom: 50px;
    }

    .margin{
        margin-top: 120px;
    }

    .footer-text {
        text-align: center;
        margin-top: 10px;
        font-size: 8.5px;
    }

    .modal-content {
        height: 600px;
        overflow-y: auto;
    }

    .modal-content.contact-text{
        height: inherit;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .main-row {
        height: 600px;
        align-items: center;
        margin-bottom: 0px;
    }

    .main-text p {
        padding: 20px;
        font-size: 25px;
    }

    footer div {
        width: 90%;
    }

    h2 {
        text-transform: uppercase;
        color: #9F1933;
        font-size: 35px;
        margin: 30px 0px;
    }
}

