@import url(./fonts.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
}


body {
    font-family: "Rubik";
    background-color: #F1F1F1;
}

/* btn */
.btn {
    display: inline-block;
    max-width: 211px;
    width: 100%;
    border-radius: 30px;
    background: #3FA5D5;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.30);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: white;
    padding-top: 7px;
    padding-bottom: 7px;
    transition: .3;
}
.btn:hover {
    background-color: #2A86B1;
}
/* btn */

/* header */

.header {
    width: 100%;
    padding-top: 23px;
    padding-bottom: 37px;
}
.header-content {
    background-image: url(../img/Фон.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 500px;
    background-color: rgba(255, 255, 255, 0.504);
    border-radius: 14px;
    padding-left: 62px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 25px;
}
.header-headline {
    color: #464748;
    font-size: 50px;
    font-weight: 700;
    max-width: 332px;
    width: 100%;

}
.header-text {
    max-width: 314px;
    width: 100%;
    color: #696868;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
}
/* header */


/* service */

.service {
    padding-bottom: 48px;
}
.service-content {
    display: flex;
    justify-content: space-between;
}
.service-card {
    background-color: white;
    max-width: 255px;
    width: 100%;
    padding-top: 23px;
    padding-bottom: 28px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 65px;
}
.service-name {
    color: #2A86B1;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}
.service-icon {
    color: #3FA5D5;
}
.service-card:nth-child(3){
   row-gap: 55px;
}



.work-about{
    padding-bottom: 44px;
}

.work-about__content{
   display: flex;
   justify-content: space-between;
}

.work-about__text{
    max-width: 825px;
    width: 100%;
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    color: #545454;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    margin-bottom: 15px;
}

.work-about__headline{
    color: #686868;
    font-size: 20px;
    font-weight: 700;
    margin-left: 15px;
    margin-bottom: 22px;
}

.work-about__link{
    display: block;
    max-width: 255px;
    width: 100%;
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 15px;
    column-gap: 15px;
    margin-bottom: 20px;
}

.work-about__image{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.text-about__title{
    color: #323232;
    font-size: 17px;
    font-weight: 400;
    line-height: 94.5%;
}

.work-about__link-text{
    color: black;
    font-size: 14px;
    font-weight: 300;
    line-height: 94.5%;
    margin-top: 5px;
}

.site-footer{
    background-color: #3FA5D5;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-headline{
    color: white;
    font-size: 50px;
    font-weight: 700;
}

.footer-contact{
    display: flex;
    flex-direction: column;
    text-align: end;
    row-gap: 15px;
}

.footer-phone{
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.footer-email{
    color: white;
    font-size: 16px;
    font-weight: 400;
}


.nav{
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    height: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100px;
    transition: .5s;
    overflow: hidden;
}

.nav:hover{
    width: 220px;
}

.nav-logo{
    display: block;
    margin-left: 20px;
}

.nav-logo_image{
    width: 60px;
    height: 51px;
}

.nav-list{
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 55px;

}

.nav-link{
     display: flex;
     align-items: center;
     column-gap: 40px;
     color: #939393;
     font-size: 18px;
     font-weight: 400;
}

.nav-link:hover{
    color: #2A86B1;
}

.nav-ava{
    width: 70px;
    height: 70px;
    margin-left: 15px;
    object-fit: cover;
}