@import url('https://fonts.googleapis.com/css2?family=Anton&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Lato:wght@300&display=swap');

* {
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 8.1rem;
}

body {
    font-family: 'Droid Sans', sans-serif;
    margin: 0;
    height: 100%;
}

.backdrop {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
}

#greeting_part {
    background: linear-gradient(to bottom, rgba(0, 39, 66, 0.8) 100%, transparent),
        url(/Images/network-jpg.jpg) center / cover no-repeat border-box;
    width: 100%;
    height: 47rem;
    display: flex;
    flex-direction: column;
    color: rgb(62, 120, 178, 0.7);
}

.main_nav {
    width: 100%;
    height: 110px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
    padding: 0 1.5rem;
    margin-top: 5%;
}

.brand {
    display: flex;
    flex-direction: row;
    align-items: center
}

.company_logo {
    height: 100px;
    width: 100px;

}

.company_name {
    font-size: 16px;
    font-weight: bold;
    padding: 0 1rem;
}

.company_name a {
    color: white;
    text-decoration: none;
    vertical-align: center;
}

.navigation_options {
    display: none;
}

.toggle-button {
    width: 3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding-top: 0;
    padding-bottom: 0;
}

.toggle-button:focus {
    outline: none;
}

.toggle-button__bar {
    width: 100%;
    height: 0.2rem;
    background: white;
    display: block;
    margin: 0.6rem 0;
}

.mobile-nav {
    display: none;
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, #24252A, #002642, rgba(0, 39, 66, 1));
    background-attachment: fixed;
    background-size: 500%;
    width: 80%;
    height: 100vh;
    animation: backgroundAnimation 20s infinite ease;
}

@keyframes backgroundAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.mobile-navigation_options {
    width: 90%;
    height: 100%;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.mobile-navigation_options a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 30px;
}

.mobile-navigation_option-logo {
    margin: 0rem;
}

.mobile-navigation_option {
    margin: 1rem 0;
}

.mobile-navigation_option a {
    font-size: 1.5rem;
}

.option_border {
    border-bottom: solid white 1px;
    padding: 0 30px;
}

#learn_more {
    font-size: 22px;
    text-align: center;
    background: #00a1e6;
    padding: 15px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 0 5px #00a1e6;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    max-width: 13rem;
    margin: auto;
    margin-top: 1rem;
}

#learn_more a {
    text-decoration: none;
    color: rgb(0, 39, 66);
}

#learn_more:hover,
#learn_more:active {
    background-color: #00b3ff;
    box-shadow: 0 0 5px #00b3ff;
    cursor: pointer;
}

.about-us_heading {
    color: white;
    font-size: 2em;
    text-align: center;
    margin: 4rem 0 4rem 0;

}

@media only screen and (orientation: landscape) {
    #greeting_part {
        height: 70rem;
    }

    #learn_more {
        margin-top: 5rem;
    }

    .mobile-navigation_option-logo {
        display: none;
    }

    .mobile-navigation_option {
        margin: 0.5rem 0;
    }

    .mobile-navigation_options a {
        font-size: 15px;
    }
}

@media (max-width: 300px) {
    .main_nav {
        padding: 0 0.5rem;
    }

    .company_name {
        font-size: 14px;
        padding: none;
    }

    #greeting_part {
        height: 37rem;
    }

}

@media (min-width: 375px) {
    .company_name {
        padding: 0 2rem;
    }

    #greeting_part {
        height: 630px;
    }
}

@media (min-width: 390px) {
    #greeting_part {
        height: 800px;
    }

    #learn_more {
        margin-top: 3rem;
    }
}

@media (min-width: 430px) {

    #greeting_part {
        height: 900px;
    }

    .company_name {
        padding: 0 0 0 3rem;
    }

}

@media (min-width: 768px) {
    #greeting_part {
        height: 1000px;
    }

}

@media (min-width: 1220px) {
    .toggle-button {
        display: none;
    }

    .navigation_options {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
}

.navigation_options a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.main_nav {
    margin-top: 2rem;
    padding: 0 2rem;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    z-index: 99;
}

.company_name {
    font-size: 24px;
}

.navigation_option {
    padding: 0 2rem;
}

.navigation_option:hover,
.navigation_option:active {
    background: none;
    color: #3e78b2;
    transition: all 0.3s ease 0s;
}

.nav-dropdown-button {
    background: none;
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    padding: 0 2rem;
}

.arrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin: 0 0 4px 8px;
}

.dropdown_nav:hover .nav-dropdown-button,
.dropdown_nav:active .nav-dropdown-button {
    color: #3e78b2;
    transition: all 0.3s ease 0s;
}

.dropdown_nav:hover .arrow,
.dropdown_nav:active .arrow {
    border-color: #3e78b2;
    transition: all 0.3s ease 0s;
}

.dropdown_nav {
    position: relative;
    display: inline-block;
}

.nav-dropdown {
    display: none;
    position: absolute;
    /* background-color: #3e78b2; */
    background-color: rgb(255, 255, 255, 0.2);
    /* border-radius:50px; */
    font-size: 24px;
    min-width: 120px;
    margin: 0px 0px 0px 31px;
    z-index: 1;
}

.nav-dropdown a {
    /* color: white; */
    color: #00a1e6;
    font-size: 20px;
    padding: 10px 10px;
    text-align: center;
    border: solid 1px #002642;
    text-decoration: none;
    display: block;
}

.nav-dropdown a:hover {
    background-color: rgb(255, 255, 255, 0.1);
    transition: all 0.3s ease 0s;
    /* border-radius:50px; */
}

.dropdown_nav:hover .nav-dropdown {
    display: block;
}

main {
    display: flex;
    flex-direction: column;
}

.section {
    color: #002742;
    font-size: 2em;
    text-align: center;
    margin: 4rem 0 3rem 0;
}

.services_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 2rem;
    margin-bottom: 1rem;
}

.services_h3 {
    color: #00b3ff;
    font-size: 20px;
}

.services_p {
    color: #40434e;
    line-height: 1.5rem;
    font-size: 20px;
}

.services_content {
    display: flex;
    flex-direction: column;
    text-align: center;
    border: solid 1px #9ebbd9;
    border-radius: 20px;
    box-shadow: 2px 2px 2px 2px rgb(112, 121, 140, 0.5);
    padding: 0 1rem 0 1rem;
    max-width: 23rem;
    height: 26rem;
    margin-bottom: 2rem;
    background: white;
}

.services_picture-background {
    background-color: white;
    border: solid 2px #9ebbd9;
    box-shadow: 2px 2px 2px 2px rgb(112, 121, 140, 0.5);
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    margin: auto;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services_picture {
    height: 5rem;
    width: 5rem;
    margin: auto;
    background-size: cover;
}


.about-us_section {
    background: #70798c;
    background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='29' height='50.115' patternTransform='scale(2) rotate(15)'><rect x='0' y='0' width='100%' height='100%' fill='%2370798cff'/><path d='M14.498 16.858L0 8.488.002-8.257l14.5-8.374L29-8.26l-.002 16.745zm0 50.06L0 58.548l.002-16.745 14.5-8.373L29 41.8l-.002 16.744zM28.996 41.8l-14.498-8.37.002-16.744L29 8.312l14.498 8.37-.002 16.745zm-29 0l-14.498-8.37.002-16.744L0 8.312l14.498 8.37-.002 16.745z'  stroke-width='1' stroke='%2379818fff' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,-0.46)' fill='url(%23a)'/></svg>");

}

.about_us {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.about_us-background {
    border: solid 1px #9ebbd9;
    border-radius: 20px;
    box-shadow: 2px 2px 2px 2px rgb(62, 120, 178, 0.5);
    max-width: 22rem;
    margin-bottom: 2rem;
    text-align: center;
    background: #9ebbd9;
}

.about_us-heading {

    text-align: center;
    color: #002642;
    padding: 1em 0 1rem 0rem;
    font-size: 1.7em;
    margin: 2rem 0 2rem 0;
}

.content {
    color: #40434e;
    line-height: 140%;
    padding: 0 1rem 3rem 1rem;
    font-size: 20px;
    text-align: center;
}

.about_picture {
    background: url(Images/team2_ex.svg) center/contain no-repeat border-box;
    width: 100%;
    height: 15rem;
    margin: auto;
}

.values_heading {
    background: #002642;
    color: #00a1e6;
    text-align: center;
    font-size: 1.7em;
    margin: 4rem 0 4rem 0;
}

.values_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 0 2rem 0 2rem;
    text-align: center;
}

.values_list-cards {
    max-width: 21rem;
    height: 31rem;
    margin-bottom: 2rem;
}

.values {
    display: flex;
    flex-direction: column;
    background-color: #002642;
    margin-bottom: 2;

}

.values_h3 {
    text-align: center;
    color: #9ebbd9;
    font-size: 20px;
}

.values_content {
    color: white;
    line-height: 140%;
    font-size: 20px;
    text-align: center;
}

.picture-background {
    background-color: #9ebbd9;
    border: solid 2px black;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;

}

.improvement_picture {
    background: url(/svg/1-mind-gears-svgrepo-com.svg);
    height: 5rem;
    width: 5rem;
    margin: auto;
    background-size: cover;
}

.honesty_picture {
    background: url(/svg/1-gears-setup-svgrepo-com.svg);
    height: 5rem;
    width: 5rem;
    margin: auto;
    background-size: cover;
}

.focus_picture {
    background: url(/svg/1-avatars-seo-and-web-svgrepo-com.svg);
    height: 5rem;
    width: 5rem;
    margin: auto;
    background-size: cover;
}

.contacts_flex {
    display: flex;
    flex-direction: column;
}

.section-3 {
    color: rgb(0, 39, 66);
    font-size: 2em;
    text-align: center;
    margin: 2rem 0 2rem 0;
}

.contacts_section {
    background-color: white;
    padding-top: 3rem;
}

.ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contacts_info {
    color: #24252a;
    list-style: none;
    text-align: center;
    font-weight: bold;
    font-size: larger;
    line-height: 140%;
    padding-bottom: 3rem;
}

.contacts_info a {
    color: #24252a;

}

.phone {
    font-size: 25px;
    margin-top: 2rem;
}

.phone a {
    text-decoration: none;
}

.phone a:hover,
.phone a:active {
    font-size: 25px;
    color: #00a1e6;
}

.mail {
    font-size: 25px;
}

.mail a:hover,
.mail a:active {
    font-size: 25px;
    color: #00a1e6;
}

.contacts_picture {
    position: relative;
    width: 90%;
    height: 23rem;
    display: flex;
    justify-content: center;
}


@media (max-width: 300px) {
    .contacts_picture {
        width: 55%;
    }
}

@media (min-width: 390px) {
    .about_picture {
        height: 16rem;
    }
}

@media (min-width: 430px) {
    .about_picture {
        height: 17rem;
    }

    .contacts_picture {
        height: 22rem;
    }
}

@media (min-width: 768px) {

    .about_us-background {
        max-width: 39rem;
        margin-bottom: 5rem;
    }

    .about_picture {
        min-height: 31rem;
        min-width: 25rem;
        max-width: 41rem;
        margin: 0;
    }

    .contacts_flex {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-end;
        justify-content: space-around;
    }

    .contacts_section {
        padding-right: 2rem;
    }

    .contacts_picture {
        width: 50%;
        height: 22rem;
    }
}

@media (min-width: 980px) {

    .section {
        margin: 8rem 0 3rem 0;
        font-size: 60px;
    }

    .services_list {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .services_content {
        margin: 3rem 2rem;
    }

    .services_content:hover,
    .services_content:active {
        box-shadow: 4px 4px 4px 4px rgb(0, 179, 255, 0.5);
    }

    .about_us {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .about-us_heading {
        margin: 8rem 0 8rem 0;
        font-size: 60px;
    }

    .about_us-background {
        margin: 5rem 5rem 5rem 2rem;
    }

    .values_heading {
        margin: 8rem 0 8rem 0;
        font-size: 60px;
    }

    .values_list {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
    }

    .contacts_flex {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: flex-end;
        margin: auto;
    }

    .contacts_picture {
        display: flex;
        justify-content: flex-end;
    }
}

.footer {
    background-color: rgb(36, 37, 42);
    padding: 2rem 2rem 0rem;
    display: flex;
    flex-direction: column;
}

.key_sections {
    text-align: right;
    color: #00a1e6;
    list-style: none;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    padding: 0 0 3rem 0;
    box-sizing: border-box;
    border-bottom: solid #00a1e6 1px;
}

#about {
    margin-bottom: 1.6rem;
}

.key_sections a {
    color: #70798c;
    text-decoration-line: none;
}

.key_section:hover,
.key_section:active {
    color: #00a1e6;
}

.soc_media {
    padding: 0;
    list-style: none;
    text-decoration: none;
    padding: 0 0 3rem 0;
    box-sizing: border-box;
    border-bottom: solid #00a1e6 1px;
}

#find_us {
    color: #00a1e6;
    list-style: none;
    font-size: 20px;
    text-align: left;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.social_platform {
    list-style: none;
    color: #70798c;
    font-weight: bold;
    font-size: 20px;
    line-height: 2.1;
    text-decoration: none;
}


.social_platforms {
    display: flex;
    align-items: center;
    width: fit-content;
}

.link:hover,
.link:active {
    filter: brightness(0) saturate(100%) invert(24%) sepia(92%) saturate(1803%) hue-rotate(196deg) brightness(94%) contrast(93%);
}

.blsk:hover,
.blsk:active {
    filter: brightness(0) saturate(100%) invert(45%) sepia(90%) saturate(4483%) hue-rotate(194deg) brightness(102%) contrast(107%);
}

.mst:hover,
.mst:active {
    filter: brightness(0) saturate(100%) invert(36%) sepia(60%) saturate(3008%) hue-rotate(226deg) brightness(101%) contrast(101%);
}

.sp_logo {
    width: 30px;
    height: 30px;
    margin: 0 10px 0 0;
}

#v-industries {
    color: #00a1e6;
    margin-top: 1rem;
    margin-bottom: 1.6rem;
}

.contacts_info_footer {
    color: #70798c;
    list-style: none;
    text-align: right;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
}

.contacts_info_footer a {
    color: #70798c;
}

.phone_footer {
    font-size: 20px;
}

.phone_footer a {
    text-decoration: none;
}

.phone_footer a:hover,
.phone_footer a:active {
    font-size: 20px;
    color: #00a1e6;
}

.mail_footer {
    font-size: 20px;
    padding-bottom: 3rem;
    box-sizing: border-box;
}

.mail_footer a:hover,
.mail_footer a:active {
    font-size: 20px;
    color: #00a1e6;
}

@media (min-width: 980px) {
    .footer {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .key_section {
        margin: 8px 0 0 0;
    }

    .key_sections {
        text-align: left;
        padding: 0px 40px 0rem 0px;
        border-bottom: none;
        height: 20rem;
        width: 15rem;
        margin: 0;
    }

    .soc_media {
        padding: 0px 40px 0rem 0px;
        box-sizing: border-box;
        border-bottom: none;
        height: 20rem;
        width: 15rem;
        margin: 6px 0 0 0;
    }

    #v-industries {
        margin-top: 0;
    }

    .contacts_info_footer {
        text-align: left;
        height: 20rem;
        width: 15rem;
    }

    .mail_footer {
        border-bottom: none;
    }

    #copyright {
        border-top: solid #00a1e6 1px;
    }
}

#copyright {
    color: #00a1e6;
    text-align: center;
    font-size: 20px;
    background: #24252A;
    margin: auto;
    padding: 1rem;
    border-top: solid #00a1e6 1px;
}

.open {
    display: block !important;
}