@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
section
{
    padding: 100px;
}
.banner
{
    position: relative;
    min-height: 100vh;
    background: url(images/banner_back.png);
    background-size: cover;
    background-position: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.banner h2
{
    font-size: 3em;
    color: black;
    font-weight: 500;
    line-height: 1.5em;
}
.banner h2 span
{
    font-size: 1.5em;
    font-weight: 700;
}
.banner h3
{
    font-size: 1.5em;
    color: black;
    font-weight: 500;
}
.btn
{
    position: relative;
    background: red;
    display: inline-block;
    color: #fff;
    margin-top: 20px;
    padding: 10px 30px;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 500;
}
header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
}
header.sticky
{
    background: #111;
    opacity: 0.7;
    padding: 20px 100px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
header .logo
{
    color: red;
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
}
header ul
{
    position: relative;
    display: flex;
}
header ul li
{
    position: relative;
    list-style: none;
}
header ul li a
{
    position: relative;
    display: inline-block;
    margin: 0 15px;
    color: black;
    text-decoration: none;
}
header.sticky ul li a
{
    color: #fff;
}
.about
{
    background-color: #000;
}
.heading
{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}
.heading h2
{
    font-weight: 600;
    font-size: 30px;
}
.content
{
    display: flex;
    justify-content: space-between;
    color: #fff;
}
.contentBx
{
    padding-right: 30px;
}
.contentBx h3
{
    font-size: 24px;
    margin-bottom: 10px;
}
.w50
{
    min-width: 50%;
}
img
{
    max-width: 100%;
}
.certifications
{
    background-color: #fff;
}
.header_certif
{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: black;
}
.header_certif h2
{
    font-weight: 600;
    font-size: 30px;
}
.certifications .content
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.certifications .content .certifBx
{
    padding: 40px 20px;
    background: #222;
    color: #fff;
    max-width: 340px;
    margin: 20px;
    text-align: center;
    transition: 0.5s;
}
.certifications .content .certifBx:hover
{
    background: firebrick;
}
.certifications .content .certifBx img
{
    max-width: 80px;
    /* filter: grayscale(1); */
}
.certifications .content .certifBx h2
{
    font-size: 20px;
    font-weight: 600;
}
.certifications .content .certifBx a
{
    color: #fff;
    font-style: normal;
}
.contact
{
    background-color: black;
}
.formBx
{
    min-width: 60%;
}
.formBx .gform .form-elements
{
    display: flex;
    flex-direction: column;
}


.formBx .gform .form-elements h3,
.contactInfo h3
{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}



.formBx .gform .form-elements input,
.formBx .gform .form-elements textarea
{
    margin-bottom: 20px;
    padding: 15px;
    font-size: 16px;
    color: white;
    background: #222;
    border: none;
    outline: none;
    resize: none;
}
.formBx .gform .form-elements textarea
{
    min-height: 200px;
}


.formBx .gform .form-elements input::placeholder,
.formBx .gform .form-elements textarea::placeholder
{
    color: #999;
}

.formBx .gform .form-elements .g-recaptcha
{
    max-width: 100px;
    background: firebrick;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    font-weight: bold;
}


.contactInfo
{
    min-width: 40%;
}
.contactInfoBx
{
    position: relative;
}
.contactInfoBx .box
{
    position: relative;
    padding: 17px 0;
    display: flex;
}
.contactInfoBx .box .icon
{
    min-width: 40px;
    padding-top: 4px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 24px;
}
.contactInfoBx .box .text
{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
}
.contactInfoBx .box .text h3
{
    font-weight: 500;
    color: firebrick;
    margin-bottom: 0;
}
.contactInfoBx .box .text p a
{
    color: #fff;
}
.copyright
{
    background: #fff;
    color: black;
    text-align: center;
    padding: 10px;
}


/* Responsive */

@media (max-width: 991px)
{
    header,
    header.sticky
    {
        padding: 20px 50px;
        z-index: 1000;
        opacity: 1;
    }
    .menu
    {
        position: fixed;
        top: 75px;
        left: -100%;
        display: block;
        padding: 100px 50px;
        text-align: center;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: 0.5s;
        z-index: 999;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
    }
    .menu.active
    {
        left: 0;
    }
    header ul li a
    {
        color: #111;
        font-size: 24px;
        margin: 10px;
    }
    .toggle
    {
        width: 40px;
        height: 40px;
        background: url(./images/menu.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30px;
        cursor: pointer;
        filter: invert(1);
    }
    .toggle.active
    {
        background: url(./images/close.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 25px;
        cursor: pointer;
    }
    header.sticky .toggle
    {
        filter: none;
    }
    header.sticky ul li a 
    {
        color: black;
    }
    section
    {
        padding: 100px 50px;
    }
    .banner
    {
        padding: 150px 50px 100px;
    }
    .banner h2
    {
        font-size: 1.5em;
    }
    .banner h3
    {
        font-size: 1em;
    }
    .btn
    {
        margin-top: 10px;
        padding: 10px 20px;
        font-size: 16px;
    }
    .heading h2
    {
        font-size: 24px;
    }
    .contentBx h3
    {
        font-size: 20px;
    }
    .content
    {
        flex-direction: column;
    }
    .w50
    {
        margin-bottom: 20px;
    }
    .certifications .content .certifBx
    {
        margin: 10px;
    }
    .contactInfo
    {
        margin: 20px 0;
    }
}

@media (max-width: 600px)
{
    header,
    header.sticky
    {
        padding: 20px 20px;
    }
    .banner
    {
        padding: 150px 20px 100px;
        position: relative;
        min-height: 100vh;
        background: url(images/banner_back_mq600.png);
        background-size: cover;
        background-position: right;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .banner h2 span 
    {
        font-size: 0.82em;
    }
    .banner h3
    {
        font-size: 0.49em;
    }
}
