html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Noto Sans', sans-serif;
    color: #222222;
}

.container{
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 1;
}

.header{
}

.header-top{
    padding: 25px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
}

.logo-link{
    min-width: 150px;
}

.header-menu{
    position: relative;
    text-align: right;
}

.topnav {
    display: none;
    overflow: hidden;
}

.responsive-nav{
    display: none;
    background: #f1f1f1;
}

.responsive-nav a{
    display: block;
    text-align: center;
    padding: 20px 16px;
    text-decoration: none;
    font-size: 17px;
    color: #222222;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}


.topnav a {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    color: #666;
    transition: all .2s linear;
}

.topnav a:hover {
    background-color: #f1f1f1;
    border-radius: 3px;
}

.responsive-nav a:hover{
    background: #ddd;
}


.responsive-nav a b,
.topnav a b{
    display: inline-block;
    vertical-align: middle;
    width: 9px;
    height: 9px;
    background: #0dac50;
    border-radius: 2px;
    margin-right: 10px;
    transition: all .2s linear;
}



.topnav-toggle{
    display: inline-block;
    vertical-align: middle;
    border-radius: 100%;
    padding: 15px;
    background: transparent;
    transition: all .2s linear;
    opacity: 0.7;
}
.topnav-toggle:hover{
    background: #fafafa;
}


.header-bottom{
    position: relative;
    background: url("../img/header.jpg") no-repeat;
    background-size: cover;
    color: #fff;
}

.header-bg-overlay{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 0;
}

.header-texts{
    padding: 50px;
}

.header-texts h1{
    padding-bottom: 15px;
    border-bottom: 3px solid #0dac50;
}


.about-container{
    padding: 25px;
}

.about-container h2{
    font-size: 30px;
    font-weight: normal;
    border-left: 3px solid #0dac50;
    padding-left: 15px;
}

.about-container p{
    opacity: 0.7;
    line-height: 26px;
}


.services-row:nth-child(odd){
    background: #f1f1f1;
}


.services-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 25px;
}

.service-img{
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
}

.service-img img{
    max-width: 350px;
    border-radius: 5px;
}



.service-text{
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    color: #333;
    order: 2;
    position: relative;
    border-radius: 5px;
    max-width: 400px;
}

.service-text h2{
    font-size: 27px;
    font-weight: normal;
    border-left: 3px solid #0dac50;
    padding-left: 15px;
}

.service-text p{
    opacity: 0.9;
    line-height: 24px;
    margin-bottom: 25px;
}


.service-text ul{
    margin: 0;
    padding: 0 0 0 25px;
}

.service-text ul li{
    margin-bottom: 5px;
    opacity: 0.8;
    font-size: 14px;
}

.contacts-container{
    padding: 25px;
}

.contacts-container h2{
    font-size: 30px;
    font-weight: normal;
    border-left: 3px solid #0dac50;
    padding-left: 15px;
}

.contacts-container p{
    opacity: 0.7;
    line-height: 26px;
}

.contacts-form{
    background: #f1f1f1;
    padding: 25px;
    border-radius: 5px;
}

.contacts-form .btn{
    display: inline-block;
    border: none;
    background: #0dac50;
    color: #fff;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 3px;
}


.form-group:not(:first-child){
    margin-top: 20px;
}

.form-group .form-control,
.form-group label{
    display: block;
    width: 100%;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.form-group label{
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
}


.form-group input{
    border: none;
    line-height: 40px;
    outline: none;
    padding: 0 10px;
}

.form-group textarea{
    border: none;
    outline: none;
    padding: 10px;
    resize: vertical;
}

.info-container{
    display: block;
    padding: 25px;
}
.info-container .info{
    display: block;
    margin-bottom: 25px;
}

.info-container .info:nth-child(1){
    margin-right: 25px;
}

.info-container .info:nth-child(3){
    text-align: left;
}


.info-container .info .name{
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-container .info .value{
    font-size: 14px;
    opacity: 0.7;
    line-height: 24px;
}

.footer-container{
    background: #333;
    color: #fff;
    padding: 25px 0 0 0;
}

.copyright{
    text-align: center;
    padding: 10px;
    background: #222;
    color: #aaa;
    font-size: 10px;
}

@media only screen and (min-width: 770px){

    .header-texts{
        padding: 150px 50px;
    }

    .header-texts h1{
        font-size: 70px;
    }

    .header-texts p{
        font-size: 40px;
        line-height: 60px;
    }


    .about-container{
        padding: 150px 25px;
    }


    .services-container{
        flex-direction: row;
        padding: 150px 50px;
    }

    .service-img img{
        max-width: 450px;
    }

    .services-row:nth-child(odd) .services-container .service-text{
        order: 0;
    }

    .service-text{
        top: 0;
        max-width: 500px;
        margin: 0 25px;
    }

    .topnav {display: inline-block;}

    .topnav-toggle {display: none;}

    .responsive-nav{
        display: none!important;
    }

    .contacts-container{
        padding: 100px 25px;
    }

    .contacts-form{
        padding: 50px;
    }

    .info-container{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .info-container .info:nth-child(3){
        text-align: right;
    }

}
