/*NOTES
background-color: #5d4954;
burger & text color:     color: rgb(226, 226, 226);
Navigation ends at line 400!!!
Charts begins line 410 ends: 455
ce-popup 455
Table starts line 550
*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: #ffffff;
}

a{
    text-decoration: none;
    color: #3B6C84;
}

nav{
    display: flex;
    justify-content: space-around;
    z-index: 1000;
    top: 0;
    position: fixed;
    width: 100%;
    align-items: center;
    min-height: 56px;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8ff;
}

p {
    color: #848484;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
}

ul{
    list-style-type: none;
}

li{
    color: #848484;
    font-weight: 600;
    margin-bottom: 15px;
}

.logo{
    color: rgb(226, 226, 226);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 20px;
}

.nav-links{
   display: flex; 
   flex: 1;
   justify-content: space-between;
   width: 100%;
}

.nav-links li{
    list-style: none;
    text-align: center;
}

.nav-links li:hover{
    background-color: cadetblue;
}

.nav-links a{
    color: #5d4954;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 14px;
}

.nav-links li a:hover{
    color: #fff;
}

.burger{
    display: none;
}

.burger div{
    width: 25px;
    height: 3px;
    background-color: #5d4954;
    margin: 5px;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    margin: 20px 0 20px 0;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    box-sizing: border-box;
    text-align: center;
    letter-spacing: .03em;
}

.c-inner {
    width: 100%;
    margin: 20px 0 20px 0;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
    box-sizing: border-box;
    text-align: center;
    letter-spacing: .03em;
}

.ce-box {
    width: 100%;
    max-width: 500px;
    margin: auto;
    padding: 0 10px;
    align-self: center;
    display: flex;
    flex-direction: column;
}


.adsense-contain {
    background-color: wheat;
    width: 30%;
    min-height: 200px;
    max-height: 600px;
    overflow: hidden;
}

.adsense-tall-right{
    width: 100%;
    margin: 0px;
    margin-bottom: 20px;
    min-height: 200px;
    max-height: 600px;
}

.ce-popup{
    padding: 1rem 2rem;
    background-color: #3a589b;
    border-color: #3a589b;
    color: #fff;
    font-size: 18px;
    line-height: 1.333;
    border-radius: 6px;
    width: 300px;
    margin: 5px auto 30px;
    cursor: pointer;
}

.ce-box-stand {
    padding: 1rem 2rem;
    background-color: #3a589b;
    border-color: #3a589b;
    color: #fff;
    font-size: 18px;
    line-height: 1.333;
    border-radius: 6px;
    width: 300px;
    margin: 5px auto 30px;
    cursor: pointer;
}

@media screen and (min-width:800px){

    .adsense-tall-right{
        margin: 20px;
        margin-top: 0px;
        width: 310px;
        height: 610px;
        float: right;
    }
}

@media screen and (max-width:900px){

    .adsense-contain{
        width: 100%;
        max-height: 400px;
        margin-top: 20px;
    }
}

@media screen and (min-width:500px){

    .adsense-contain{
        width: 50%;
        max-height: 500px;
        align-self: center;
        margin-top: 50px;
    }
}

@media screen and (min-width:900px){

    .adsense-contain{
        width: 30%;
        background-color: wheat;
        margin-top: 50px;
    }
}


@media screen and (max-width:1024px){
    .nav-links{
        width: 100%;
        z-index: 1000;
    }
}

@media screen and (min-width: 900px){
    .container{
        width: 100%;
        flex-direction: row;
    }
    .c-inner {
        width: 65%;
    }
    .ce-box{
        width: 35%;
    }

}

@media screen and (min-width: 770px){
    .nav-links{
        display: flex;
        justify-content: space-evenly;
    }
}

@media screen and (max-width:768px){
    body{
        overflow-x: hidden;
    }

    .container.dim{
        opacity: 0.5;
        z-index: 1;
    }
    .nav-links{
        position: absolute;
        right: 0px;
        height: 91vh;
        top: 9vh;
        background-color: #f8f8ff;;
        display: flex;
        flex-direction: column;
        justify-content: start;
        z-index: 100;
        align-items: center;
        width: 75%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    .nav-links li{
        opacity: 0;
        margin-top: 20px;
    }
    .nav-links li:first-of-type{
        margin-top: 20%;
    }
    .burger{
        display: block;
        cursor: pointer;
    }
}

.nav-active{
    transform: translateX(0%)
}

/*keyframes animation*/

@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2{
    opacity: 0;  
}

.toggle .line3{
    transform: rotate(45deg) translate(-5px, -6px); 
}
/* START IMAGES */
.img-box{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 0;
    position: relative;
    background-image: url(https://snn-images.s3.amazonaws.com/wp-content/uploads/2019/01/17142925/college_class_stock.jpg);
    margin-top: 30px;
    width: 100%;
    min-height: 200px;
}

.img-box::before{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(25, 41, 78, 0.8);    
}

.img-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 37px 10px;
    color: #fff; 
}

.img-title {
    margin-top: 0;
    font-weight: 400;
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2em;
}

.img-sub-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
    margin-top: 20px;
}

.img-text p {
    font-size: 1.125rem;
    margin-top: 20px;
    color: #fff;
}

/*BEGIN TEXT BLOCKS*/
.inner-title {
    font-family: "Muli", Arial, Verdana, Tahoma, Sans-serif;
    line-height: 1.45;
    font-size: 0.9rem;
    margin: 15px 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    color: #3B6C84;
}

/*MAP CONTAINER*/
.map-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}


/* =================BEGIN FLOAT IMAGES============================================== */
.float-left{
    float: left;
    text-align: left;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 24px 24px 0;
}

@media screen and (min-width: 700px){
    .float-left{
        width: 75%;
    }
}

/* =================END FLOAT IMAGES============================================== */

/* =================BEGIN FLEX CHARTS============================================== */
.flex-charts-2{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
/* =================END FLEX CHARTS============================================== */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!END NAVIGATION!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */


/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!BEGIN CHARTS CONTENT BOX!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
.just-content-box {
    width: 100%;
    margin: 20px 0 60px 0;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
    box-sizing: border-box;
    text-align: center;
    letter-spacing: .03em;
}

@media (min-width: 600px) {
    .h1-title {
        font-size: 30px;
        }
    .just-content-box{
        width: 70%;
        margin: auto;
        margin-bottom: 60px;
    }    
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!END CHARTS CONTENT BOX!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */

.a-container {
    width: 100%;
    margin: 20px 0 20px 0;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
    box-sizing: border-box;
    text-align: center;
    letter-spacing: .03em;
}

@media screen and (min-width:700px){
    .a-container{
        width: 80%;
        margin-right: 20px;
    }
}

@media screen and (min-width:1100px){
    .a-container{
        width: 70%;
    }
} 

.ce-popup{
    padding: 1rem 2rem;
    background-color: #3a589b;
    border-color: #3a589b;
    color: #fff;
    font-size: 18px;
    line-height: 1.333;
    border-radius: 6px;
    width: 300px;
    margin: 5px auto 30px;
    cursor: pointer;
}

#modal-background {
    display: none;
    /* display: block; */
    background-color: rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#modal-background-two {
    display: none;
    /* display: block; */
    background-color: rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ce-box-popup{
    width: 80%;
    margin: 10%;
    padding: 50px 0 50px 0;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!BEGIN READ MORE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/*
.expand-button {
    cursor: pointer;
    display: block;
    width: 50%;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    border: 4px solid #005858;
    border-radius: 3px;
    background-color: darkcyan;
    color: white;
    font-size: 1rem;
    padding: 0.5rem;
}
.expand-button:hover, .expand-button:active {
    /* background-color: #007272;  .expand-button:active, , .expand-button:focus 
    background-color: #ffffff;
    color: #007272;
}
.special-text {
    position: relative;
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.special-text.-expanded {
    max-height: 100%;
}
.special-text:not(.-expanded)::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}
*/
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!END READ MORE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!BEGIN SALARY TABLE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}

table.table-striped {
    border-collapse: collapse;
    border-width: 0;
    border-style: outset;
    margin: 20px 0;
    line-height: 2em;
    text-align: center;
    vertical-align: top;
    width: 100%;
    max-width: 600px;
    border-top: 1px solid #1d5791;
    border-bottom: 1px solid #1d5791;
    box-shadow: 0 2px 3px rgb(0 0 0 / 40%);
}

.bg-info {
    background-color: #17a2b8!important;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05);
}

.table td, .table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

th{ 
    color:#fff;
}

tr:hover{ 
    background-color: lightblue;
    color: #fff;
}
.table-striped tbody tr:nth-of-type(odd):hover {
    background-color: lightblue;
    color: #fff;
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!END SALARY TABLE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */

/* =================BEGIN FOOTER============================================== */

footer{
    bottom: 0px;
    width: 100%;
    background: #646464;
    color: #c7c7c7;
}

.main-content{
    display: flex;
}

.main-content .box{
    flex-basis: 50%;
    padding: 10px 20px;
}

.box h2{
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}

.box .content{
    margin: 20px 0 0 0;
    position: relative;
}

.box .content:before{
    position: absolute;
    content: '';
    top: -10px;
    height: 2px;
    width: 100%;
    background: #1a1a1a;
}

.box .content:after{
    position: absolute;
    content: '';
    height: 2px;
    width: 15%;
    background: #f12020;
    top: -10px;
}

.content a{
    color: #c7c7c7;
    text-decoration: none;
}

.content a:hover{
    color: #fff;
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!BEGIN LEFT!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */

.left .content .social{
    margin: 20px 0 0 0;
}

.left .content .social a{
    padding: 0 2px;
}

.left .content .social a span{
    height: 40px;
    width: 40px;
    background: #1a1a1a;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
}

.left .content .social a span:hover{
    background: #f12020;
}

.left .content p{
    text-align: justify;
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!END LEFT!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!BEGIN CENTER!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
.center .content .fas{
    font-size: 1.4375rem;
    background: #1a1a1a;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}

.center .content .fas:hover{
    background: #f12020;
}

.center .content .text{
    font-size: 1.0625rem;
    font-weight: 500;
    padding-left: 10px;
}

.center .content .phone{
    margin: 10px 0;
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!END CENTER!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!BEGIN RIGHT!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
.right form .text{
    font-size: 1.0625rem;
    margin-bottom: 2px;
    color: #656565;
}

.right form .msg{
    margin-top: 10px;
}

.right form input, .right form textarea{
    width: 100%;
    font-size:  1.0625rem;
    background: #151515;
    padding-left: 10px;
    border: 1px solid #222222;
}

.right form input:focus, 
.right form textarea:focus{
    outline-color: #3498db;
}

.right form input{
    height: 35px;
}

.right form .btn{
    margin-top: 10px;
}

.right form .btn button{
    height: 40px;
    width: 100%;
    border: none;
    outline: none;
    background: #f12020;
    font-size: 1.0625rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.right form .btn button:hover{
  background: #000;  
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!END RIGHT!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */

.bottom center{
    padding: 5px;
    font-size: 0.9375rem;
    background: #151515;
}

.bottom center span{
    color: #656565;
}

.bottom center a{
    color: #f12020;
    text-decoration: none;
}

.bottom center a:hover{
    color: #f12020;
    text-decoration: underline;
}

@media screen and (max-width: 900px){
    footer{
        /* position: relative; */
        bottom: 0px;
    }

    .main-content{
        flex-wrap: wrap;
        flex-direction: column;
    }

    .main-content .box{
        margin: 5px 0;
    }
}
/* =================END FOOTER============================================== */