/*FONTS*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&family=Source+Sans+Pro:wght@300&display=swap');


/*ASSETS*/
:root {
    --main-bg-color: #3C454A;
    --cyan-bg-color: #00748A;
    --cyan-border-color: #459FB0;
    --main-text-color: #fff;
    --dark-text-color: #000;
    --blue-text-color: #67DBF1;
    --main-padding: 150px;
    --vertical-padding: 180px;
    --main-font-size: 16px;
    overflow-x: hidden;
}

html {
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
}

.page {
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

section {
    padding: 0 var(--main-padding);
}


/*HEADER*/
.header {
    background: var(--main-bg-color);
    padding-right: 0;
}

#masthead {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 0;
    color: var(--main-text-color);
    overflow-x: hidden;
}

#masthead > .menu > ul {
    display: flex;
    list-style: none;
}

#masthead > .menu > ul > li {
    padding: 0 40px;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    text-transform: capitalize;
}

#masthead > .menu > ul > li > a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

#masthead > .menu > ul > li > a:hover {
    color: var(--blue-text-color);
    transition: 0.3s;
}

#masthead > .flag {
    margin: -40px 0 0 0;
    min-height: 105px;
    min-width: 315px;
}

.phone-menu {
    display: none;
}


/*HERO*/
#hero {
    background: var(--main-bg-color);
    display: flex;
    justify-content: space-between;
    color: var(--main-text-color);
    padding: 0;
    padding-top: 100px;
}

#hero > .text-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

#hero > .text-box > h3 {
    font-size: 24px;
    font-weight: 300;
    line-height: 33px;
    margin-bottom: 33px;
    text-transform: uppercase;
}

#hero > .text-box > h1 {
    font-size: 70px;
    font-weight: 400;
    line-height: 95px;
    margin-top: 0;
    margin-bottom: 33px;
    color: var(--blue-text-color);
    text-shadow: 0 4px 3px rgba(0, 0, 0, 0.25);
}

#hero > .text-box > h2 {
    font-size: 32px;
    font-weight: 300;
    line-height: 46px;
    margin-bottom: 145px;
}

#hero > .text-box > h2 {
    font-size: 32px;
    font-weight: 300;
    line-height: 46px;
    margin-bottom: 145px;
}

/*#hero > .text-box > h2 > span:nth-child(1){*/
/*    animation: show 2s 1 ease-in-out backwards;*/
/*    animation-duration: 1s;*/
/*    animation-delay: 1s;*/
/*}*/

/*#hero > .text-box > h2 > span:nth-child(2){*/
/*    animation: show 2s 1 ease-in-out backwards;*/
/*    animation-duration: 1s;*/
/*    animation-delay: 1.5s;*/
/*}*/

/*#hero > .text-box > h2 > span:nth-child(3){*/
/*    animation: show 2s 1 ease-in-out backwards;*/
/*    animation-duration: 1s;*/
/*    animation-delay: 2s;*/
/*}*/

/*#hero > .text-box > h2 > span:nth-child(4){*/
/*    animation: show 2s 1 ease-in-out backwards;*/
/*    animation-duration: 1s;*/
/*    animation-delay: 2.5s;*/
/*}*/

/*#hero > .text-box > h2 > span:nth-child(5){*/
/*    animation: show 2s 1 ease-in-out backwards;*/
/*    animation-duration: 1s;*/
/*    animation-delay: 3s;*/
/*}*/

#hero > .text-box > .link-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-right: 50px;
    margin-bottom: 95px;
    font-weight: 400;
}

#hero > .text-box > .link-box > a {
    color: var(--main-text-color);
    text-decoration: none;
}

#hero > .text-box > .link-box > .read-more {
    transform: rotate(270deg);
    line-height: 25px;
}

#hero > .text-box > .link-box > .read-more::before {
    position: absolute;
    content: '';
    top: 0;
    left: -60px;
    width: 50px;
    height: 55px;
    transform: rotate(90deg) translate(-14px);
    transition: 0.3s;
}

#hero > .text-box > .link-box > .read-more:hover::before {
    left: -70px;
    transition: 0.3s;
}

#hero > .text-box > .link-box > .contact-us {
    font-size: 18px;
    padding-top: 18px;
    padding-bottom: 18px;
    width: 165px;
    line-height: 25px;
    border: 2px solid var(--blue-text-color);
    text-transform: capitalize;
    color: var(--blue-text-color);
    text-align: center;
    transition: 0.3s;
}

#hero > .text-box > .link-box > .contact-us:hover {
    color: var(--dark-text-color);
    background: var(--blue-text-color);
    transition: 0.3s;
}

#hero > .img-box {
    position: absolute;
    top: 105px;
    right: 0;
}


/*ABOUT*/
#about {
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
}

#about > div {
    width: 50%;
}

#about > .text-box > p {
    line-height: 22px;
    font-weight: 300;
    color: var(--dark-text-color);
    margin: 22px 0;
}

#about > .text-box > p > span {
    font-weight: 400;
    color: var(--blue-text-color);
}

#about > .text-box > p > b {
    font-weight: 400;
}

#about > .text-box > p:last-child {
    margin: 0;
}

#about > .text-box > a#about-more {
    display: none;
    margin: 0;
}


/*SERVICES*/
#services {
    display: flex;
    justify-content: space-between;
}

#services > .text-box {
    width: 30%;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

#services > .text-box > .section-title {
    padding-top: 44px;
    padding-bottom: 44px;
}

#services > .text-box > .section-title > h3 {
    color: var(--dark-text-color);
    font-weight: 300;
    font-size: 32px;
}

#services > .text-box > .description-box {
    background: var(--cyan-bg-color);
    color: white;
    margin-left: calc(-1 * var(--main-padding));
    padding: 52px var(--main-padding);
    padding-right: 47px;
    width: 185%;
}

#services > .text-box > .description-box > h4 {
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    text-transform: capitalize;
}

#services > .text-box > .description-box > p {
    margin: 10px 0;
}

#services > .text-box > .skill-box {
    margin-left: calc(-1 * var(--main-padding));
    background: var(--main-bg-color);
    height: -webkit-fill-available;
}

#services > .text-box > .skill-box > ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding-left: var(--main-padding);
    padding-top: 55px;
    padding-bottom: 55px;
}

#services > .text-box > .skill-box > ul > li {
    margin: 45px 0;
    color: var(--main-text-color);
    font-family: 'Miama', 'Open Sans', sans-serif;
    font-size: 28px;
    line-height: 88px;
}

#services > .services-box {
    width: calc(70% + var(--main-padding));
    z-index: 1;
    margin-right: calc(-1 * var(--main-padding));
    display: flex;
    flex-direction: column;
}

#services > .services-box > .container {
    padding: 100px var(--main-padding);
    background-size: cover;
    display: flex;
    justify-content: center;
}

#services > .services-box > .container > ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: calc(165px * 3 + 50px);
}

#services > .services-box > .container > ul > li {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: calc(165px + 30px);
}

#services > .services-box > .container > ul > li > .item-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--main-bg-color);
    background: var(--main-text-color);
    min-width: 165px;
    min-height: 165px;
    max-width: 165px;
    max-height: 165px;
    margin: 8px;
    border: 2px solid var(--cyan-border-color);
    border-radius: 20px;
    padding: 15px;
}

#services > .services-box > .container > ul > li > .item-box > img {
    margin-bottom: 15px;
}

#services > .services-box > .container > ul > li > .item-box > h6 {
    font-size: var(--main-font-size);
    text-align: center;
    text-transform: capitalize;
    margin: 0;
}

#services > .services-box > .desc-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px var(--main-padding);
    background: var(--cyan-bg-color);
    color: var(--main-text-color);
}

#services > .services-box > .desc-box > h3 {
    width: 100%;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    text-transform: capitalize;
}

#services > .services-box > .desc-box > p {
    width: 100%;
    margin: 10px 0;
}

#services > .services-box > .desc-box > #desc-more {
    display: none;
}


/*TESTTIMONIALS*/
#testimonials {
    padding-top: 120px;
    padding-bottom: 120px;
    background-size: cover;
}

#testimonials > figure {
    margin: 0;
}

#testimonials > figure > blockquote {
    color: var(--main-bg-color);
    font-weight: 300;
    font-size: 24px;
    line-height: 33px;
    max-width: 670px;
    position: relative;
    padding: 20px;
}

#testimonials > figure > blockquote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    width: 21px;
    height: 16px;
}

#testimonials > figure > blockquote::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 21px;
    height: 16px;
    transform: rotate(180deg);
}

#testimonials > figure > blockquote > b {
    color: var(--cyan-bg-color);
    font-weight: 600;
}

#testimonials > figure > figcaption {
    color: var(--dark-text-color);
    font-weight: 300;
    font-size: 24px;
    line-height: 33px;
    margin-top: 70px;
    text-align: center;
}


/*PARTNERS*/
#partners {
    display: flex;
    flex-direction: column;
    padding-top: 120px;
    padding-bottom: 120px;
}

#partners > .section-title {
    color: var(--dark-text-color);
    font-weight: 300;
    font-size: 32px;
    line-height: 44px;
    text-transform: capitalize;
    margin-bottom: 40px;
}

#partners > ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
}

/*#partners > ul > li:nth-child(1){*/
/*    animation: show 2s 1 ease-in-out backwards;*/
/*    animation-duration: 1s;*/
/*    animation-delay: 1s;*/
/*}*/

/*#partners > ul > li:nth-child(2){*/
/*    animation: show 2s 1 ease-in-out backwards;*/
/*    animation-duration: 1s;*/
/*    animation-delay: 2s;*/
/*}*/

/*#partners > ul > li:nth-child(3){*/
/*    animation: show 2s 1 ease-in-out backwards;*/
/*    animation-duration: 1s;*/
/*    animation-delay: 3s;*/
/*}*/

/*#partners > ul > li:nth-child(4){*/
/*    animation: show 2s 1 ease-in-out backwards;*/
/*    animation-duration: 1s;*/
/*    animation-delay: 4s;*/
/*}*/


/*DOCUMENTS*/
#documents {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 120px;
}

#documents > .section-title {
    color: var(--dark-text-color);
    font-weight: 300;
    font-size: 32px;
    line-height: 44px;
    text-transform: capitalize;
    margin-bottom: 40px;
}

#documents > ul {
    list-style: square;
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    line-height: 22px;
    list-style: none;
    color: var(--dark-text-color);
}

#documents > ul > li {
    position: relative;
    padding-left: 30px;
}

#documents > ul > li::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--cyan-border-color);
}

#documents > ul > li > a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

#documents > ul > li > a:hover {
    color: var(--cyan-bg-color);
    transition: 0.3s;
}


/*CONTACT*/
#contact {
    margin-top: 55px;
    padding-left: 0;
    background-size: cover;
    position: relative;
}

#contact > .overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(29, 34, 36, 0.7);
    width: 100%;
    height: 100%;
    z-index: 1;
}

#contact > .container {
    display: flex;
    position: relative;
    z-index: 2;
    color: var(--main-text-color);
}

#contact > .container > .map {
    transform: translateY(-55px);
    width: 60%;
}

#contact > .container > .map > iframe {
    border: 1px solid rgba(135, 128, 128, 0.25);
}

#contact > .container > .contact-info {
    width: 40%;
    display: flex;
    padding-left: 120px;
    padding-top: 120px;
    justify-content: space-between;
    align-items: flex-start;
}

#contact > .container > .contact-info h6 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: var(--main-font-size);
    line-height: 22px;
    color: var(--cyan-border-color);
    margin: 22px 0;
}

#contact > .container > .contact-info ul {
    list-style: none;
}

#contact > .container > .contact-info li {
    margin: 22px 0;
}

footer {
    padding-top: 20px;
    padding-bottom: 30px;
    padding-left: var(--main-padding);
    text-align: center;
    color: var(--main-text-color);
    font-family: 'Source Sans Pro', 'Open Sans', sans-serif;
    position: relative;
    z-index: 2;
}


/*MEDIA*/
@media screen and (min-width: 1440px) {
    :root {
        --main-padding: 10vw;
        --main-font-size: 18px;
    }

    #masthead > .logo > img {
        height: 110px;
    }

    #masthead > .flag > img {
        width: 382px;
    }

    #hero > .img-box {
        top: 127px;
    }

    #hero > .img-box > img {
        width: 55vw;
        height: 768px;
    }

    #about {
        padding-top: 160px;
        padding-bottom: 140px;
    }

    #about > .text-box {
        font-size: var(--main-font-size);
    }

    #services > .services-box > .desc-box {
        padding: 30px 120px;
        font-size: var(--main-font-size);
    }

    #services > .text-box > .description-box {
        font-size: var(--main-font-size);
    }

    #testimonials {
        padding-top: 160px;
        padding-bottom: 160px;
    }

    #testimonials > figure > blockquote, #testimonials > figure > figcaption {
        font-size: 26px;
    }

    #documents > ul > li > a {
        font-size: var(--main-font-size);
    }

    #contact > .container > .contact-info {
        font-size: var(--main-font-size);
    }
}

@media screen and (min-width: 2000px) {
    :root {
        --main-padding: 20vw;
        --main-font-size: 24px;
    }

    .header {
        padding-right: var(--main-padding);
        margin-bottom: -1px;
    }

    #masthead > .menu > ul > li {
        font-size: 24px;
    }

    #hero > .text-box > h3 {
        font-size: 32px;
    }

    #hero > .text-box > h1 {
        font-size: 94px;
    }

    #hero > .text-box > h2 {
        font-size: 40px;
    }

    #hero > .text-box > .link-box {
        margin-bottom: 120px;
    }

    #hero > .text-box > .link-box > .read-more {
        font-size: 24px;
        transform: rotate(270deg) translateY(-30px);
    }

    #hero > .text-box > .link-box > .contact-us {
        font-size: 24px;
    }

    #hero > .img-box {
        right: var(--main-padding);
    }

    #hero > .img-box > img {
        width: 35vw;
        height: 800px;
    }

    #about > .text-box > p {
        font-weight: 400;
        line-height: 30px;
    }

    #services > .text-box > .section-title > h3, #partners > .section-title, #documents > .section-title {
        font-size: 48px;
        font-weight: 400;
    }

    #services > .text-box > .description-box {
        width: 50vw;
        padding-right: 100px;
    }

    #services > .text-box > .description-box > h4 {
        font-size: 28px;
    }

    #services > .services-box > .container {
        padding: 180px calc(var(--main-padding) * 0.7);
    }

    #services > .services-box > .container > ul {
        max-width: initial;
    }

    #services > .services-box > .container > ul > li {
        max-width: initial;
    }

    #services > .services-box > .container > ul > li > .item-box {
        min-width: 200px;
        min-height: 200px;
        max-width: 200px;
        max-height: 200px;
        margin: 14px;
    }

    #services > .services-box > .container > ul > li > .item-box > img {
        width: 85px;
    }

    #services > .text-box > .skill-box > ul {
        height: 100%;
        justify-content: space-around;
    }

    #services > .text-box > .skill-box > ul > li {
        font-size: 48px;
    }

    #services > .services-box > .desc-box {
        padding: 50px 120px;
        padding-right: calc(var(--main-padding) * 0.7);
    }

    #services > .services-box > .desc-box > h3 {
        font-size: 28px;
    }

    #testimonials > figure > blockquote, #testimonials > figure > figcaption {
        font-size: 34px;
    }

    #testimonials > figure > blockquote {
        max-width: 32vw;
        line-height: 48px;
    }

    #testimonials {
        padding-top: 200px;
        padding-bottom: 200px;
    }

    footer {
        font-size: 22px;
    }

}


@media screen and (max-width: 1366px) {
    :root {
        --img-width: 54vw;
    }

    #masthead > .menu {
        width: 60%;
    }

    #masthead > .menu > ul {
        justify-content: space-between;
        width: 100%;
        padding: 0 20px;
    }

    #masthead > .menu > ul > li {
        padding: initial;
    }

    #hero > .img-box > img {
        width: var(--img-width);
        height: 740px;
    }

}


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

    :root {
        --img-width: 50vw;
    }

}


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

    :root {
        --main-padding: 5vw;
    }

    #services > .text-box > .description-box {
        width: 35vw;
    }

}


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

    :root {
        --main-font-size: 16px;
    }

    #masthead > .menu > ul > li {
        font-size: var(--main-font-size);
    }

}


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

    :root {
        --main-font-size: 16px;
    }

    #hero {
        padding-top: 50px;
    }

    #hero > .text-box > h3 {
        margin-bottom: 20px;
    }

    #hero > .text-box > h1 {
        margin-bottom: 20px;
    }

    #hero > .text-box > h2 {
        margin-bottom: 88px;
    }

    #hero > .img-box > img {
        height: 610px;
    }

    #about {
        justify-content: space-around;
    }

    #about > div {
        width: 47%;
    }

    #services > .services-box > .container > ul > li > .item-box {
        min-width: 140px;
        min-height: 140px;
        max-width: 140px;
        max-height: 140px;
    }

    #services > .text-box > .description-box {
        width: 35vw;
    }

    #masthead > .flag {
        min-height: initial;
        min-width: initial;
    }

    #masthead > .flag > img {
        height: 90px;
        width: 100%;
    }

    #hero > .img-box {
        top: 90px;
    }

}


@media screen and (max-width: 940px) {
    :root {
        --img-width: 40vw;
    }
}


@media screen and (max-width: 768px) {
    :root {
        --main-padding: 20px;
    }

    .header {
        padding: 0;
        background-size: cover !important;
    }

    #masthead {
        flex-direction: column-reverse;
        padding: 0;
    }

    #masthead > .logo {
        margin-top: 20px;
    }

    #masthead > .flag {
        height: 60px;
        width: 100vw;
        background: #fff;
        margin: 0;
        transform: translateX(-20px);
    }

    #masthead > .flag::before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        height: 20px;
        width: 100%;
        background: #006F2E;
    }

    #masthead > .flag::after {
        position: absolute;
        content: '';
        top: 40px;
        left: 0;
        height: 20px;
        width: 100%;
        background: #061B27;
    }

    header#masthead::after {
        content: '';
        right: 0;
        top: 0;
        position: absolute;
        width: 20vw;
        height: 60px;
        background: #F70000;
    }

    #masthead > .flag > img {
        display: none;
    }

    #hero, #masthead {
        background: rgba(60, 69, 74, 0.7);
        padding-left: 20px;
        padding-right: 20px;
    }

    #hero > .img-box, #hero > .text-box > .link-box {
        display: none;
    }

    #hero {
        justify-content: center;
    }

    #hero > .text-box > h3, #hero > .text-box > h1 {
        width: 100%;
        text-align: center;
    }

    #hero > .text-box > h2 {
        width: 100%;
        text-align: center;
    }

    #about {
        padding: 50px 20px;
    }

    #about > div {
        width: 100%;
    }

    #about > .img-box {
        display: none;
    }

    #about > .text-box > p {
        margin: 20px 0;
    }

    p.hidden-box {
        height: 0;
        overflow: hidden;
        margin: 0;
        transition: 0.3s;
    }

    .hidden-box.active {
        height: auto;
        overflow: hidden;
        margin: 20px 0;
        transition: 0.3s;
    }

    #about > .text-box > p.hidden-box {
        margin: 0;
    }

    #about > .text-box > p.hidden-box.active {
        margin: 20px 0;
    }

    #about > .text-box > a#about-more {
        display: block;
    }

    a.read-more {
        line-height: 25px;
        color: var(--cyan-border-color);
        text-decoration: none;
        position: relative;
        width: fit-content;
    }


    #services > .services-box > .desc-box > #desc-more {
        display: flex;
    }

    a.read-more::before {
        position: absolute;
        content: '';
        top: 0;
        right: -50px;
        width: 40px;
        height: 40px;
        transform: rotate(270deg) translate(7px);
        transition: 0.3s;
        background-position-x: center;
        background-position-y: 100%;
    }

    a.read-more:hover::before {
        right: -60px;
        transition: 0.3s;
    }

    #services {
        flex-direction: column;
        justify-content: center;
        background: var(--cyan-border-color);
    }

    #services > .text-box {
        width: 100%;
    }

    #services > .text-box > .section-title {
        padding-top: 50px;
        padding-bottom: 25px;
    }

    #services > .text-box > .section-title > h3 {
        text-align: center;
        color: var(--main-text-color);
        font-weight: 600;
    }

    #services > .text-box > .description-box {
        width: 100%;
        padding: 0;
        background: transparent;
        margin: 0;
        padding-bottom: 50px;
    }

    #services > .text-box > .description-box > p:last-child {
        display: none;
    }

    #services > .text-box > .skill-box {
        display: none;
    }

    #services > .services-box {
        width: calc(100% + 40px);
        z-index: 1;
        margin-left: calc(-1 * var(--main-padding));
    }

    #services > .services-box > .container > ul > li.empty {
        display: none;
    }

    #services > .services-box > .container > ul {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        width: 100%;
        grid-gap: 20px;
    }

    #services > .services-box > .container > ul > li {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        width: 100%;
    }

    #services > .services-box > .container > ul > li > .item-box {
        min-width: auto;
        min-height: auto;
        max-width: initial;
        max-height: initial;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 35px;
    }

    #services > .services-box > .container > ul > li > .item-box > img {
        width: 60%;
    }

    #services > .services-box > .desc-box {
        background: var(--main-bg-color);
        align-items: flex-start;
    }

    #services > .services-box > .desc-box > p.hidden-box {
        margin: 0;
    }

    #services > .services-box > .desc-box > p.hidden-box.active {
        margin: 10px 0;
    }

    #testimonials {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    #partners {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    #partners > .section-title {
        text-align: center;
        font-weight: 600;
    }

    #partners > ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        grid-gap: 20px;
    }

    #partners > ul > li {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #documents > .section-title {
        text-align: center;
        font-weight: 600;
    }

    #documents {
        padding-top: 0;
        padding-bottom: 50px;
    }

    #contact > .container > .map {
        display: none;
    }

    #contact > .container > .contact-info {
        width: 100%;
        padding: 0;
        justify-content: center;
        grid-gap: 40px;
    }

    #masthead > .menu {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 60px;
        right: 0;
        background: var(--main-text-color);
        padding: 67px 40px;
        color: var(--dark-text-color);
        width: 50%;
        transform: translateX(100%);
        transition: 0.7s;
        animation: show 2s 1 ease-in-out backwards;
        animation-duration: 1s;
        animation-delay: 2s;
    }

    #masthead > .menu.active {
        transform: translateX(0);
        transition: 0.7s;
    }

    #masthead > .menu > ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 0;
    }

    #masthead > .menu > ul > li {
        font-size: 20px;
        padding: 10px;
    }

    .phone-menu {
        width: 40px;
        height: 26px;
        position: absolute;
        top: 80px;
        right: 20px;
        transition: 0.7s;
        display: block;
    }

    .phone-menu.active {
        transform: rotate(90deg);
        transition: 0.7s;
    }

    .phone-menu > span {
        position: absolute;
        width: 40px;
        height: 2px;
        background: var(--main-text-color);
    }

    .phone-menu > span::before {
        position: absolute;
        top: 12px;
        content: '';
        right: 0;
        background: var(--main-text-color);
        width: 40px;
        height: 2px;
    }

    .phone-menu > span::after {
        position: absolute;
        top: 24px;
        content: '';
        right: 0;
        background: var(--main-text-color);
        width: 40px;
        height: 2px;
    }

    .phone-menu.active > span {
        background: var(--main-bg-color);
    }

    .phone-menu.active > span::before {
        background: var(--main-bg-color);
    }

    .phone-menu.active > span::after {
        background: var(--main-bg-color);
    }
}

@media screen and (max-width: 610px) {
    #hero > .text-box > h2 {
        transform: none;
    }

    #services > .services-box > .container > ul {
        grid-template-columns: repeat(2, 1fr);
    }

    #services > .services-box > .container > ul > li:nth-child(11) {
        grid-column: 1 / 3;
        width: 100%;
    }

    #services > .services-box > .container > ul > li:nth-child(11) > .item-box {
        width: 50%;
    }
}

@media screen and (max-width: 475px) {
    #hero > .text-box > h1 {
        font-size: 50px;
    }

    #hero > .text-box > h2 {
        font-size: 28px;
    }

    #testimonials > figure > blockquote {
        font-size: 18px;
    }

    #testimonials > figure > figcaption {
        font-size: 19px;
    }
}

@media screen and (max-width: 400px) {
    #services > .services-box > .container > ul > li > .item-box {
        padding: 10px;
    }
}

@media screen and (max-width: 375px) {
    #masthead > .logo {
        max-width: 45px;
    }

    #hero > .text-box > h1 {
        font-size: 40px;
        margin-bottom: 17px;
        line-height: 54px;
    }

    #hero > .text-box > h3 {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 7px;
    }

    #hero > .text-box > h2 {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 38px;
    }

    #about > div {
        font-size: 14px;
    }

    .phone-menu {
        width: 28px;
        height: 20px;
    }

    .phone-menu > span {
        width: 28px;
    }

    .phone-menu > span::before {
        top: 9px;
        width: 28px;
    }

    .phone-menu > span::after {
        top: 18px;
        width: 28px;
    }

    #masthead > .menu {
        width: 60vw;
    }

    #about > .text-box > p:first-child {
        margin-top: 0;
    }

    #services > .text-box > .section-title > h3 {
        font-size: 18px;
        line-height: 25px;
    }

    #services > .text-box > .description-box > h4 {
        font-size: 16px;
        line-height: 22px;
    }

    #services > .text-box > .description-box > p {
        font-size: 14px;
        margin-top: 8px;
        margin-bottom: 0;
    }

    #services > .services-box > .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    #services > .services-box > .container > ul > li > .item-box > img {
        width: 45px;
        height: 45px;
    }

    #services > .services-box > .container > ul > li:nth-child(11) {
        grid-column: 1 / 3;
    }

    #services > .services-box > .container > ul > li > .item-box {
        width: 158px;
        height: 165px;
    }

    #services > .services-box > .container > ul > li > .item-box > h6 {
        font-size: 14px;
    }

    #services > .services-box > .desc-box > h3 {
        font-size: 16px;
        line-height: 22px;
    }

    #services > .services-box > .desc-box > p {
        font-size: 14px;
        line-height: 19px;
    }

    #testimonials > figure > blockquote{
        margin: 0;
        padding: 30px 0;
        font-size: 16px;
        line-height: 22px;
    }

    #testimonials > figure > blockquote::before{
        left: 0;
    }

    #testimonials > figure > blockquote::after{
        right: 0;
    }

    #testimonials > figure > figcaption{
        margin-top: 0;
        font-size: 16px;
        line-height: 22px;
        max-width: 250px;
        text-align: start;
        margin-left: auto;
    }

    #partners > .section-title{
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 20px;
    }

    #documents > .section-title{
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 20px;
    }

    #contact{
        margin-top: 0;
        padding: 30px 20px;
    }
    #contact > .container > .contact-info h6{
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 19px;
        color: var(--main-text-color);
    }
    #contact > .container > .contact-info li{
        margin: 5px 0;
    }
    footer{
        padding-bottom: 0;
    }
}


@keyframes show {
    from {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}