/* Common css */
body {
    
    background-color: rgb(41, 56, 95); 
    font-family: 'Open Sans', sans-serif;
    
    
    
}


.bg {
    position: absolute;
    
    
    background-repeat: no-repeat;
    
    background-size:cover;
    height: 0px;
    width: 100%;
    z-index: -9999;
    padding-top: 56.24%;    /* Img-height / Img-width * container-width -> 1406 / 2500 * 100 (%) */ 
    margin-top: -7%;
    min-height: 1200px;
    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: black;
    font-family: 'Open Sans', sans-serif;
}
li {
	list-style: none;
    text-decoration: none;
}
a {
    color: black;
    text-decoration: none;
    font-size: max(1.7vw, 16px);
}
p {
    color: black;
    text-decoration: none;
    font-size: max(0.9vw, 14px);
}
.content-page {
    background-color: rgb(253, 253, 253);
    height: 100%;
}
.content-wrap {
    width: 80%;
    margin: 0 10%;
}

.content-item {
    
    padding: 60px 0;
    width: 100%;
}

.italic {
    font-style: italic;
}
.bold {
    font-weight: 700;
    font-size: max(3vw,22px);
}
.smalltext {
    font-size: 15px;
}
.text {
    font-weight: 400;
    font-size: max(1.5vw, 19px);
}
.text2 {
    font-weight: 400;
    font-size: max(23px, 0.7vw);
    
}
.header1{
    font-size: max(2.8vw,26px);
    font-weight: 700;
}
.header2 {
    font-size: max(1.9vw, 22px);
    font-weight: 600;
}

.light {
    color:rgb(25, 25, 25)
}
.bottomline {
    border-bottom: 1px solid rgb(95, 95, 95);
    
}

.div-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.center {
    width: 100%;
    height: 600px;
   
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}


.footer {
    height: 300px;
    background-color: rgb(41, 56, 95);  
}

.footer p {
    color: rgb(247, 247, 247);
}


@media only screen and (max-width: 950px) {
    .grid {
        
        grid-template-columns: repeat(auto-fit, 450px);
        
    }
    .footer {
        height: 400px;
    }
}