@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Quicksand:wght@300;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&display=swap');

*,
body * {
    box-sizing: border-box;
    max-width: 100%;
}

.wrapper {
    min-height: calc(100vh - 106px);
    padding-bottom: 50px;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

.container {
    width: 1140px;
    margin: 0 auto;
}

header {
    background: #f0f5f5;
    padding: 15px 15px 11px;
}

header img {
    width: 250px;
}

.toggle-wrapper {
    padding-top: 40px;
}

.title-block h2 {
    color: #464646;
    font-weight: 600;
    font-size: 24px;
    padding: 0 0 30px;
    margin: 0;
}

.tabs-outer {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tabs {
    width: 40%;
    padding-right: 15px;
}

.tab_content {
    width: 60%;
    padding-left: 15px;
    border-left: 2px solid #57c2b8;
}

.tab_item {
    display: none;
}

.tab_item:first-child {
    display: block;
}

.tab_item p {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #464646;
    line-height: 1.4;
    margin: 0 0 10px;
}

.tab_item ul li {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #464646;
    line-height: 1.4;
    margin: 0 0 10px;
}

.tab:not(:last-child) {
    margin-bottom: 20px;
}

.tab p {
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    margin: 0;
    color: #464646;
    line-height: 1.4;
}

.tab.active p {
    color: #57c2b8;
}

footer {
    background-color: #464646;
    padding-top: 10px;
}

.footer-top {
    padding-bottom: 13px;
}

.footer-top h2 {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.footer-top h2 a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}

.footer-bottom {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-bottom ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.footer-bottom a {
    color: #c7c7c7;
    font-family: "Open Sans",Sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    padding: 13px 20px;
}

.footer-bottom p {
    margin: 0;
}

.highlight {
    color: #57c2b7;
    font-weight: 900;
}

@media screen and (max-width: 1170px) {
    .container {
        padding: 0 15px;
    }
}

@media screen and (max-width: 992px) {
    .title-block h2 {
        display: inline-block;
        position: relative;
        padding-right: 25px;
        color: #57c2b7;
    }

    .title-block h2:after {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 7.5px 0;
        border-color: #57c2b7 transparent transparent;
        display: block;
        position: absolute;
        right: 0;
        top: 12px;
    }

    .tabs {
        display: none;
    }

    .tabs,
    .tab_content {
        width: 100%;
    }
    
    .tab_content {
        padding: 0;
        border: none;
    }
}
@media screen and (max-width: 767px) {
   .footer-bottom a {
       padding: 13px 13px;
   }
}

@media screen and (max-width: 550px) {
   .footer-bottom p,
   .footer-bottom nav {
       width: 100%;
   }
    .wrapper {
        min-height: calc(100vh - 156px);
    }
}


