.modern-1-hex { color: #2685BF; }
.modern-2-hex { color: #3D9DD9; }
.modern-3-hex { color: #5FB6D9; }
.modern-4-hex { color: #94D7F2; }
.modern-5-hex { color: #BBE8F2; }

@font-face {
    font-family: OpenSans;
    src: url('fonts/OpenSans-Regular.ttf') format('truetype');
}

@font-face {
    font-family: OpenSansBold;
    src: url('fonts/OpenSans-Bold.ttf') format('truetype');
}

html {
    font-family: OpenSans;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
}


/*header*/
.header {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    z-index: 100;
    background-color: #2684bf00;
    box-shadow: 0px 0px 15px #00000000;
    transition: 0.2s all ease-in-out;
}

.header.scrolled {
    background-color: #2685BF;
    box-shadow: 0px 0px 15px #00000096;
}

.header-social-content-wrapper {
    display: flex;
    width: 100%;
    background-color: #2685bf;
}

.header .header-social-content {
    display: flex;
    width: 100%;
    max-width: 1300px;
    height: 36px;
    background-color: #2685bf;
    margin: auto;
}

.header .header-social-content .left {
    display: flex;
}

.header .header-social-content .left a {
    display: flex;
    text-decoration: none;
    color: white;
    margin-left: 15px;
}

.header .header-social-content .left a i {
    margin: auto;
    font-size: 26px;
}

.header .header-social-content .right {
    display: flex;
    margin-left: auto;
}

.header .header-social-content .right a {
    display: flex;
    text-decoration: none;
    color: white;
}

.header .header-social-content .right a p {
    margin: auto;
    margin-right: 20px;
}

.header .header-social-content .right a:hover p {
    text-decoration: underline;
}

.header .header-social-content .right a i {
    margin: auto;
    margin-left: 0;
    margin-right: 10px;
    font-size: 26px;
}

.header .header-menu-content-wrapper {
    display: flex;
    width: 100%;
}

.header .header-menu-content {
    display: flex;
    width: 100%;
    max-width: 1300px;
    margin: auto;
}

.header .header-menu-content .header-logo {
    display: flex;
    padding: 10px;
    text-decoration: none;
}

.header .header-menu-content .header-logo img {
    max-width: 280px;
}

.header .header-menu-content .header-logo h2 {
    color: white;
    margin: auto;
    margin-left: 15px;
    text-shadow: 2px 2px 5px #00000047;
}

.header .header-menu-content .header-menu {
    margin-left: auto;
    display: flex;
    flex-direction: row;
}

.header .header-menu-content .header-menu a {
    display: block;
    margin: auto;
    margin-right: 15px;
    font-family: OpenSansBold;
    color: white;
    text-decoration: none;
    text-shadow: 2px 2px 5px #000000b3;
    transition: all 0.2s ease-in-out;
}

.header.scrolled .header-menu-content .header-menu a {
    text-shadow: 2px 2px 5px #00000047;
}

@media (max-width: 860px) {
    .header .header-menu-content .header-logo img {
        max-width: 210px;
    }

    .header .header-menu-content .header-menu a {
        font-size: 14px;
    }
}

@media (max-width: 580px) {
    .header .header-menu-content .header-menu {
        display: none;
    }

    .header .header-menu-content .header-logo {
        margin: auto;
    }
}

@media (max-width: 490px) {
    .header .header-social-content .right a:first-child p {
        display: none;
    }
}

@media (max-width: 320px) {
    .header .header-social-content .right a p {
        display: none;
    }

    .header .header-social-content .left,
    .header .header-social-content .right {
        margin: auto;
        display: flex;
        width: 100%;
    }

    .header .header-social-content .left a,
    .header .header-social-content .right a {
        margin: auto;
    }
}

/*Hire us container*/
.hireus-container {
    max-width: 1300px;
    margin: auto;
    padding-left: 10px;
    padding-right: 10px;
}

.hireus-container h2 {
    text-align: center;
    color: #2685bf;
    font-family: OpenSansBold;
    font-size: 36px;
}

.hireus-container .phone-container {
    background-image: url("../img/phone.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 75px;
    height: 75px;
    display: flex;
    margin-bottom: 50px;
}

.hireus-container .phone-container a {
    text-decoration: none;
    color: #2685bf;
    text-align: center;
    display: block;
    margin: auto;
    font-size: 22px;
    font-family: OpenSansBold;
}

.hireus-container .mail-container {
    background-image: url("../img/envelope.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 75px;
    height: 75px;
    display: flex;
}

.hireus-container .mail-container a {
    text-decoration: none;
    color: #2685bf;
    text-align: center;
    display: block;
    margin: auto;
    font-size: 22px;
    font-family: OpenSansBold;
}

@media (max-width: 700px) {
    .hireus-container {
        margin-bottom: 50px;
    }
}

@media (max-width: 400px) {
    .hireus-container h2 {
        font-size: 28px;
    }

    .hireus-container .phone-container {
        height: 55px;
        background-size: 55px;
    }

    .hireus-container .phone-container a {
        font-size: 20px;
    }

    .hireus-container .mail-container {
        height: 55px;
        background-size: 55px;
    }

    .hireus-container .mail-container a {
        font-size: 20px;
    }
}

/*contact container*/
.contact-wrapper {
    width: 100%;
    display: flex;
}

.contact-wrapper .block {
    background-color: #2685bf;
    width: 100%;
    display: block;
}

.contact-wrapper .filler {
    background-color: #2685bf;
    width: 100%;
}

.contact-wrapper .filler .white-block {
    height: 57px;
    width: 100%;
    background-color: white;
}

.contact-container {
    max-width: 1300px;
    width: 100%;
    margin: auto;
    flex: none;
}

.contact-container .separator {
    display: flex;
    margin-bottom: -3px;
}

.contact-container .separator .separator-block {
    width: 200px;
    height: 60px;
    background-color: #2685bf;
}

.contact-container .separator .separator-triangle {
    width: 0;
    height: 0;
    border-bottom: 60px solid #2685bf;
    border-right: 60px solid transparent;
}

.contact-container-data {
    display: flex;
    background-color: #2685bf;
    width: 100%;
}

.contact-container-data .left {
    width: 50%; 
    display: flex;
    flex-direction: column;
    margin-left: 25px;
    margin-right: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.contact-container-data .right {
    width: 50%;
    display: flex;
    flex-direction: column;
    margin-left: 25px;
    margin-right: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.contact-container-data .left p {
    margin: 0;
    color: white;
}

.contact-container-data .left .title {
    font-family: OpenSansBold;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-container-data .left .data2 {
    margin-bottom: 10px;
}

.contact-container-data .left a {
    text-decoration: none;
    font-family: OpenSansBold;
    color: white;
    width: max-content;
}

.contact-container-data .right p {
    margin: 0;
    color: white;
}

.contact-container-data .right .title {
    font-family: OpenSansBold;
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.contact-container-data .right a {
    text-decoration: none;
    color: white;
}

@media (max-width: 580px) {
    .contact-container .separator .separator-block {
        width: 140px;
        height: 40px;
    }

    .contact-container .separator .separator-triangle {
        border-bottom: 40px solid #2685bf;
        border-right: 40px solid transparent;
    }
}

@media (max-width: 400px) {
    .contact-container .contact-container-data {
        flex-direction: column-reverse;
    }

    .contact-container .contact-container-data .right {
        margin-bottom: 0;
    }

    .contact-container .contact-container-data .left, .contact-container .contact-container-data .right {
        width: unset;
        text-align: center;
    }

    .contact-container .contact-container-data .left a {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 300px) {
    .contact-container .separator .separator-block {
        width: 70px;
    }
}