@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');


body {   
    height: 100vh;
   
    border: 14px solid rgb(0, 51, 153);
    position: relative;
}

body:after {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    border: 14px solid red;
    top: 0;
    position: absolute;
}

body:before {
    content: "";
    height: 98%;
    width: 99%;
    display: block;    
    top: 1%;
    position: absolute;
    background-repeat: no-repeat;
    background-position: right;
    border: 21px solid rgb(255, 186, 8);
    left: 0.5%;
   
}

.main-content {
    background-image: url("images/image-2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;   
    min-height: 650px;
    text-align: center;
    justify-content: center;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 1;
    position: relative;
}

footer#footer {
    background-image: url("images/footer-background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 398px;
    width: 100%;
    padding: 60px 0;
    max-height: 407px;
    border-top: 4px solid white;
}


.col-sm-6,
.col-sm-8 {
    text-align: center;
}

h1 {
    font-size: 50px;
    line-height: 60px;
    font-weight: normal;
    color: black;  
    letter-spacing: 0;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

h1 span:nth-of-type(1) {
    font-size: 60px;
    line-height: 70px;
    color: rgb(255, 186, 8);
}

h1 span:nth-of-type(2) {
    font-size: 60px;
    line-height: 70px;
    color: rgb(0, 51, 153);
}

h1 span:nth-of-type(3) {
    font-size: 60px;
    line-height: 70px;
    color: red;
}

h2 {
    font-weight: bold;
    font-size: 30px;
    line-height: 40px;
    color: black;
    bottom: 0;
    position: relative;
    text-align: center;
    width: 65%;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    margin-top: 40px;
}

h3 {
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
    color: #f65c2c;
    font-size: 28px;
    line-height: 36px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0px;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    color: black;
    bottom: 0;
    line-height: 20px; 
    text-align: center;

    margin-top: 20px;
}

p:nth-of-type(1) {
    font-weight: bold;
    line-height: 24px;
}

strong {
    color:#ee2c41;
    font-weight: bold;
}

span {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    color: black;
    margin-top: 18px;
    line-height: 24px;
    display: inline-block;
}

a {
    transition: 0.4s all ease-in;
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-decoration: none;
    background-color: transparent;
    font-size: 22px;
    line-height: 30px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 20px;
    display: block;
}

a:hover {
    color: #f65c2c;
    text-decoration: none;
}

img.header-logo {
    margin: 0 auto 15px auto;
    display: block;
    text-align: center;
}


a.tel {
    font-size: 25px;
    line-height: 35px;
    display: block;
    color: rgb(0, 51, 153);
    margin-bottom: 0px;
}

a.tel:hover {
  color: rgb(255, 186, 8);
  text-decoration: none;
}

a.email {
    font-size: 18px;
    line-height: 22px;
    display: block;
    color: red;
    margin-bottom: 10px;
    margin-top: 2px;
}

a.email:hover {
  color: rgb(0, 51, 153);
  text-decoration: none;
}

.small-image {
    width: 100%;
    margin-top: 50px;
}
.footer-accreditations img {
    float: right;
}

.footer-bottom {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
}


.footer-copyright, .footer-branding {
    width: 50%;
}

.footer-copyright p {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-branding p {
    text-align: right;
    font-size: 12px;
    line-height: 16px;
    font-family: 'Montserrat', sans-serif;
}

.footer-branding p a {
    color: #ee2c41;
    font-size: 12px;
    line-height: 16px;
    transition: 0.4s all ease-in;
}

.footer-branding p a:hover {
    color: white;
    text-decoration: none;
    transition: 0.4s all ease-in;
}

.social-media {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    position: relative;
    text-align: center;
    justify-content: center;
}

.fa-brands.fa-facebook-f {
    background-image: url("images/facebook.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 23px;
    width: 20px;
    display: flex;
    margin-right: 15px;
    transition: 0.4s all ease-in; 
    margin: 20px auto; 
}

.fa-brands.fa-facebook-f:hover {
    filter: hue-rotate(34deg) brightness(3);
    transition: 0.4s all ease-in;
}

i.fa-brands.fa-instagram {
    background-image: url("images/instagram.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 23px;
    width: 20px;
    display: flex;
    margin-right: 15px;
    transition: 0.4s all ease-in;
    filter:hue-rotate(32deg) brightness(1.2);
}

i.fa-brands.fa-instagram:hover {
    filter: brightness(7);
    transition: 0.4s all ease-in;
}

i.fa-brands.fa-youtube {
    background-image: url("images/youtube.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 23px;
    width: 27px;
    display: flex;
    margin-right: 15px;
    transition: 0.4s all ease-in;
}

i.fa-brands.fa-youtube:hover {
    filter: brightness(7);
    transition: 0.4s all ease-in;
}

i.fa-brands.fa-linkedin-in {
    background-image: url("images/linkedin.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 23px;
    width: 20px;
    display: flex;
    transition: 0.4s all ease-in;
}

i.fa-brands.fa-linkedin-in:hover {
    filter: brightness(7);
    transition: 0.4s all ease-in;
}

@media (min-width: 960px) and (max-width:1199px) {
    .container {
        max-width: 58rem;
    }
}

@media (min-width: 768px) and (max-width: 959px) {
    img.header-logo {
        margin: 0 auto 30px auto;
        display: block;
        text-align: center;
        width: 100%;
    }

    .col-lg-4.col-md-4.footer-contact {
        width: 100% !important;
        flex: 1 100% !important;
        display: block;
        position: relative;
        max-width: 100% !important;
    }


    .col-lg-4.col-md-4.footer-contact img {
        margin: 30px auto 60px;
        display: block;
    }

    .col-lg-4.col-md-4.footer-links {
        width: 50%;
        flex: 1 50%;
        max-width: 50%;
    }

    .col-lg-4.col-md-4.footer-accreditations {
        width: 50%;
        flex: 1 50%;
        max-width: 50%;
    }

    h1 {
        font-size: 36px;
        line-height: 46px;
    }

    p {
        width: 90%;
        margin: 15px auto;
    }

    h2 {
        width: 85%;
    }

    .footer-copyright {
        width: 65%;
    }
    
    .footer-branding {
        width: 35%;
    }

    footer#footer {
        min-height: 398px;
        width: 100%;
        padding: 30px 0;
        max-height: 100%;
    }
    .main-content {
        position: relative;
    }

   
}

@media (min-width:320px) and (max-width: 767px) {

    body {
        border: 8px solid rgb(0, 51, 153);
    }

    body:before {
        border: 18px solid rgb(255, 186, 8);
    }

    body:after {
        border: 8px solid red;
    }

    .main-content {
        position: relative;
        width: 90%;
        margin: 0 auto;
    }

    .small-image {
        width: 100%;
        margin-top: 40px;
    }

    .col-sm-6:nth-of-type(2) {
        display: none;
    }

    
    h1 {
        font-size: 26px;
        line-height: 36px;   
        display: inline-block;   
    }

    h1 span {
        font-size: 30px !important;
        line-height: 40px !important;
        margin-top: 0;
        display: inline-block;
    }

    h2 {
        font-weight: bold;
        font-size: 18px;
        line-height: 22px;
        color: white;       
        width: 90%;
        margin: 0 auto;
    }
    h3 {
        font-size: 22px;
        line-height: 30px;
    }

    a.email {
        font-size: 15px;
        line-height: 20px;
    }

    img.header-logo {
        margin: 0 auto 30px auto;
        display: block;
        text-align: center;
        width: auto;
        max-width: 100%;
    }

    .col-lg-4.col-md-4.footer-contact {
        width: 100% !important;
        flex: 1 100% !important;
        display: block;
        position: relative;
        max-width: 100% !important;
    }


    .col-lg-4.col-md-4.footer-contact img {
        margin: 30px auto 60px;
        display: block;
    }

    .col-lg-4.col-md-4.footer-links {
        width: 100%;
        flex: 1 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 60px;
    }

    .col-lg-4.col-md-4.footer-accreditations {
        width: 100%;
        flex: 1 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 60px;
    }

    p {
        text-align: center;
        font-size: 16px;
    }

    .social-media {
        margin: 0 auto;
        width: 100%;
        justify-content: center;
    }

    .footer-copyright {
        width: 100%;
    }
    
    .footer-branding {
        width: 100%;
    }

    .footer-bottom {
        margin-top: 0;
    }

    footer#footer {
        min-height: 880px;
        width: 100%;
        padding: 30px 0;
        max-height: 100%;
    }

    .footer-accreditations img {
        float: none;
    }

    .footer-branding p {
        text-align: center;
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 0;
    }

    .footer-copyright p {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 8px;
    }
}