/* Default Styles */
*{
    box-sizing: border-box;
}
:root {
    --color-blue: #0085D8;
    --color-blue-hover: #A9DEFF;
    --color-dark: #2D3439;
}
body{
    font-family: 'Montserrat', sans-serif;
    color: var(--color-dark);
}
a{
    text-decoration: none;
    color: inherit;
}
.close{
    width: 25px;
    height: 25px;
    position: absolute;
    top: 15px;
    right: 15px;
}
.container{
    width: 85%;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.main-title{
    color: var(--color-blue);
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
}
.title{
    font-size: 36px;
    font-weight: 600;
    margin-top: 0px;
}
.button{
    display: inline-block;
    padding: 13px 44px;
    background-color: transparent;
    border: 1px solid var(--color-blue);
    border-radius: 10px;
    color: var(--color-blue);
    font-size: 18px;
    transition: all 0.3s ease;
}
.button:hover{
    background: var(--color-blue);
    color: #fff;
}
.hover-light,
.hover-dark,
.hover-light-bg{
    transition: all 0.3s ease;
}
.hover-light:hover{
    color: var(--color-blue-hover);
}
.hover-dark:hover{
    color: var(--color-blue);
}
.hover-light-bg:hover{
    background-color: var(--color-blue-hover);
}
/* Header */
.header{
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px rgba(0, 133, 216, 0.1);
}
.header__wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0px;
}
.navigation{
    display: flex;
}
.navigation__item{
    padding: 0px 17px;
}
.navigation__link{
    position: relative;
    font-size: 18px;
}
.navigation__link::after{
    content: '';
    display: block;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 2px;
    background-color: var(--color-blue);
    position: absolute;
    left: 0;
    bottom: 0px;
    transition: all 0.3s ease;
}
.mobile-menu{
    display: none;
}
.navigation__link:hover::after{
    opacity: 1;
    visibility: visible;
    bottom: -10px;
}
.contact-top__wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.contact-top__phone{
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 5px;
}

.logo a{
    line-height: 0;
    display: block;
}
.nav-bar{
    display: none;
}
/* End Header */

/* Section Hero */

.hero{
    height: calc(100vh - 120px);
    max-height: 600px;
    background: url('../img/hero-bg.png') no-repeat center / cover;
    display: flex;
    align-items: center;
}
.hero__title{
    margin-bottom: 30px;
}
.hero__desc{
    font-size: 16px;
    line-height: 162%;
    margin-bottom: 40px;
    width: 48%;
}

/* End Section Hero */

/* Section Features */
.features__wrapper{
    padding: 110px 0px 120px 0px;
}
.features-content{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 70px 4%;
}

.feature{
    display: flex;
    justify-content: center;
    align-items: center;
}
.feature___wrapper{
    display: flex;
    align-items: center;
    cursor: default;
}
.features-content__desc{
    margin: 0;
    font-size: 18px;
}
.features-content__title{
    width: 100%;
    margin: 0;
}
.features-content__icon{
    margin-right: 20px;
    width: 60px;
    height: 60px;
    position: relative;
}
.features-content__icon .animation{
    position: absolute;
}

.features-content__icon_5 .animation{
    top: 7px;
    left: 7px;
}
.features-content__icon_4 .animation{
    bottom: 7px;
    right: 12px;
}
.features-content__icon_1 .animation{
    bottom: -3px;
    left: 33px;
    height: 23px;
    overflow: hidden;
}

.features-content__icon_3 .animation{
    z-index: 1;
    top: 29px;
    left: calc(50% - 22.5px);
    width: 45px;
    height: 14px;
    
}
.features-content__icon_3 .features-content__icon_bg{
    position: relative;
    z-index: 2;
}
/* End Section Features */

/* Section Task */
.tasks{
    background: url('../img/task-bg.png') no-repeat center / cover;
}
.tasks__wrapper{
    padding: 80px 0px 100px 0px;
}
.tasks__title{
    text-align: center;
    margin-bottom: 80px;
}
.tasks__list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 50px 50px;
}
.task__title{
    font-weight: 500;
    font-size: 20px;
    margin: 0px 0px 6px 0px;
}
.task__desc{
    margin: 0;
    color: #2d3439b2;
    line-height: 150%;
}
.task{
    position: relative;
}
.task::before{
    content: '';
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: #FFFFFF;
    background: url('../img/icons/checked-icon.svg') no-repeat center;
    box-shadow: -1px -1px 5px rgba(0, 133, 216, 0.15), 3px 3px 5px rgba(0, 133, 216, 0.15);
    position: absolute;
    left: 0;
    top: 0;
}
.tasks__item{
    padding-left: 55px;
}
/* End Section Task */

/* Section Services */
.services__wrapper{
    padding: 80px 0px 100px 0px;
}
.services__title{
    text-align: center;
    color: #000;
}
.services__title{
    margin-bottom: 60px;
}
.services__content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.service{
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: -1px -1px 10px rgba(45, 153, 210, 0.1), 3px 3px 10px rgba(45, 153, 210, 0.1);
    transition: all 0.3s ease;
}
.service:hover{
    box-shadow: -1px -1px 20px rgba(45, 153, 210, 0.2), 3px 3px 20px rgba(45, 153, 210, 0.2);
}

.service__text{
    padding: 50px 35px 0px 35px;
}
.service__img img{
    height: 100%;
}
.service__title{
    font-weight: 600;
    font-size: 26px;
    line-height: 32px;
    margin: 0 0 15px 0;
    transition: all 0.3s ease;
}
.service:hover .service__title{
    color: var(--color-blue);
}
.service__desc{
    font-size: 18px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0px;
    margin-top: 0px;
}
/* End Section Services */

/* Section Contsct */
.contacts{
    background: url('../img/contact-bg.png') no-repeat center / cover;
}
.contacts__wrapper{
    padding: 80px 0px 100px 0px;
}
.contacts__title{
    text-align: center;
    margin-bottom: 50px;
}
.contacts__content{
    display: flex;
}
.contacts__map{
    height: 630px;
    width: 66.66%;
    margin-right: 20px;
}
.feedback{
    width: 33.33%;
    background: #fff;
    box-shadow: -1px -1px 10px rgba(45, 153, 210, 0.1), 3px 3px 10px rgba(45, 153, 210, 0.1);
    border-radius: 5px;
}
.contacts__feedback{
    padding: 40px 40px 40px 40px;
}
.feedback__title{
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 15px;
    margin-top: 0px;
}
.feedback__adress{
    font-size: 20px;
    margin-bottom: 15px;
}
.feedback__phone{
    display: block;
    font-size: 20px;
    color: var(--color-blue);
    margin-bottom: 15px;
    font-weight: 700;
}
.feedback__email{
    display: block;
    font-size: 20px;
    margin-bottom: 40px;
}
.feedback__desc{
    font-size: 18px;
    color: #24325A;
    margin-bottom: 15px;
}
.form__item input{
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    background: #F5F5F5;
    border-radius: 10px;
    box-sizing: border-box;
    border: none;
    transition: all 0.3s ease;
}
.form__item input:focus-visible{
    border: none;
    outline: none;
    background: var(--color-blue-hover);
}
.form__item {
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.form__item button{
    cursor: pointer;
    width: 100%;
}
.form__item_last{
    margin-bottom: 0px;
}
.form-name-error,
.form-phone-error,
.form-email-error{
    display: none;
    font-size: 12px;
    color: rgb(211, 41, 41);
    padding: 5px;
    position: absolute;
    right: 0;
    top: 13px;
    z-index: 1;
}
.error{
    box-shadow: 0px 0px 4px 0px rgb(211, 41, 41);
}
.not-error{
    box-shadow: 0px 0px 4px 0px rgb(69, 211, 41);
}
.slideLeft{
    animation-name: slideLeft;
    -webkit-animation-name: slideLeft;  
 
    animation-duration: 2s; 
    -webkit-animation-duration: 2s;
 
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out;     
 
    visibility: visible !important; 
}
 
@keyframes slideLeft {
    0% {
        transform: translateX(150%);
    }
    50%{
        transform: translateX(-8%);
    }
    65%{
        transform: translateX(4%);
    }
    80%{
        transform: translateX(-4%);
    }
    95%{
        transform: translateX(2%);
    }           
    100% {
        transform: translateX(0%);
    }
}
 
@-webkit-keyframes slideLeft {
    0% {
        -webkit-transform: translateX(150%);
    }
    50%{
        -webkit-transform: translateX(-8%);
    }
    65%{
        -webkit-transform: translateX(4%);
    }
    80%{
        -webkit-transform: translateX(-4%);
    }
    95%{
        -webkit-transform: translateX(2%);
    }           
    100% {
        -webkit-transform: translateX(0%);
    }
}
/* End Section Contact */



/* Section Footer */
.footer__wrapper_light{
    padding: 60px 0px 50px 0px;
    background: rgba(169, 222, 255, 0.2);
}
.footer__wrapper_dark{
    background: rgba(169, 222, 255, 0.4);
}
.footer__top{
    display: flex;
    justify-content: space-between;
}
.footer__top >div{
    flex-grow: 1;
    flex-basis: 25%;
}
.footer__nav_wrapper{
    display: flex;
}
.footer__nav a{
    display: block;
}

.footer__contacts_item{
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}
.footer__icon{
    margin-right: 10px;
    position: absolute;
    left: 0px;
    top: 0px;
}
.footer__header{
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
}
.footer__nav:first-child{
    margin-right: 60px;
}
.footer__subheader{
    padding: 4px;
    margin-bottom: 10px;
}
.footer__information p{
    margin-top: 0px;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 10px;
}
.footer__bottom{
    padding: 10px 0px;
}
.footer__adata{
    display: flex;
    justify-content: flex-end;
}
.footer__adata a{
    display: flex;
    align-items: center;
}
.footer__adata a span{
    margin-right: 10px;
    
}
/* End Section Footer */

/* Page Prices */
.intro__wrapper{
    padding: 60px 0px 30px 0px;
}
.intro__title{
    text-align: center;
    margin-bottom: 25px;
}
.intro__desc{
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 144%;
}
.main-prices__wrapper{
    padding: 20px 0px 100px 0px;
}
.main-prices__title{
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 600;
    margin-top: 0px;
}
.table{
    width: 100%;
    border-collapse: collapse;
}
.table__wrapper{
    border:1px solid #4CAAE4;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 50px;
}
.table tbody td,
.table tbody th{
    border: 1px solid #4CAAE4;
}
.table tbody td:first-child,
.table tbody th:first-child{
    border-left: none;
}
.table tbody td:last-child,
.table tbody th:last-child{
    border-right: none;
}
.table thead td{
    border-bottom: 1px solid #4CAAE4;
}
.table__container{
    width: 85%;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}
.table__title{
    font-size: 26px;
    line-height: 26px;
    margin: 0;
    padding: 25px 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 0px;
}
.table tbody p{
    margin: 0px;
    padding: 25px 0px;
    font-size: 18px;
}
.table tbody .table__header{
    font-size: 20px;
    padding: 25px 10px;
}
.table tbody .table__first-item{
    padding-left: 50px;
}
.table__value{
    text-align: center;
    font-weight: 700;
}
.table__footer{
    padding: 25px 50px;
    font-size: 18px;
}
.table__footer p{
    margin: 0;
    margin-bottom: 8px;
}
.table__footer ul{
    margin: 0;
    list-style: none;
    padding-left: 20px;
}
.table__footer ul li{
    position: relative;
    margin-bottom: 8px;
}
.table_not_footer tr:last-child td{
    border-bottom: none;
}
.prices-bottom{
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
}

.prices-bottom__desc a{
    font-size: 26px;
    color: var(--color-blue);
    font-weight: 700;
    white-space: nowrap;
}
/* End Page Prices */

/* Animation */

.feature___wrapper:hover  .feature_5{
    animation-name: feature_5;
    -webkit-animation-name: feature_5;  
    animation-duration: 1s;   
    -webkit-animation-duration: 1s;
}
 
@keyframes feature_5 {
    0% {
        transform-origin: bottom;
        transform: rotate(0deg);
    }
    50% {
        transform-origin: bottom;
        transform: rotate(28deg);  
    }     
    100% {
        transform-origin: bottom;
        transform: rotate(0deg);  
    }             
}
 
@-webkit-keyframes feature_5 {
    0% {
        -webkit-transform-origin: bottom;
        -webkit-transform: rotate(0deg);   
    }
    50% {
        -webkit-transform-origin: bottom;
        -webkit-transform: rotate(28deg);
    }   
    100% {
        -webkit-transform-origin: bottom;
        -webkit-transform: rotate(0deg);
    }    
}


.feature___wrapper:hover .feature_4{
    animation-name: feature_4;
    -webkit-animation-name: feature_4;  
    animation-duration: 0.5s;   
    -webkit-animation-duration: 0.5s;
}
 
@keyframes feature_4 {
    0% {
        transform-origin: top;
        transform: rotate(0deg);
    }
    25% {
        transform-origin: top;
        transform: rotate(-10deg);  
    }     
    50% {
        transform-origin: top;
        transform: rotate(0deg);  
    } 
    75% {
        transform-origin: top;
        transform: rotate(10deg);  
    }  
    100% {
        transform-origin: top;
        transform: rotate(0deg);  
    }             
}
 
@-webkit-keyframes feature_4 {
    0% {
        -webkit-transform-origin: top;
        -webkit-transform: rotate(0deg);   
    }
    25% {
        -webkit-transform-origin: top;
        -webkit-transform: rotate(-10deg);
    }   
    50% {
        -webkit-transform-origin: top;
        -webkit-transform: rotate(0deg);
    }  
    75% {
        -webkit-transform-origin: top;
        -webkit-transform: rotate(10deg);
    }  
    100%{
        -webkit-transform-origin: top;
        -webkit-transform: rotate(0deg);
    }  
}

.feature_3{
    overflow: hidden;
}
.feature_3 img{
    position: absolute;
    right: calc(50% - 22.5px);
    top: 0;
}
.feature___wrapper:hover .feature_3{
    animation-name: feature_3;
    -webkit-animation-name: feature_3;  
    animation-duration: 1s;   
    -webkit-animation-duration: 1s;
}
 
@keyframes feature_3 {
    0% {
        width: 45px;
        height: 0;
        border-radius: 50%;
    }
    100% {
        right: calc(50% - 22.5px);
        width: 45px;
        height: 25px;
        border-radius: 50%;
    }     
}
 
@-webkit-keyframes feature_3 {
    0% {
        right: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
    }
    100% {
        right: calc(50% - 23px);
        width: 46px;
        height: 25px;
        border-radius: 50%;
    }     
}


.feature___wrapper:hover .bigEntrance{
    animation-name: bigEntrance;
    -webkit-animation-name: bigEntrance;    
 
    animation-duration: 0.8s; 
    -webkit-animation-duration: 0.8s;
 
    animation-timing-function: ease-out;    
    -webkit-animation-timing-function: ease-out; 

 
    visibility: visible !important;         
}
 
@keyframes bigEntrance {
    0% {
        transform: scale(0.1) rotate(-240deg);
        opacity: 0.2;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }       
}
 
@-webkit-keyframes bigEntrance {
    0% {
        -webkit-transform: scale(0.1) rotate(-240deg);
        opacity: 0.2;
    }
    100% {
        -webkit-transform: scale(1) rotate(0deg);
        opacity: 1;
    }               
}

.feature___wrapper:hover .feature_1{
    animation-name: feature_1;
    -webkit-animation-name: feature_1;  
    animation-duration: 1s;   
    -webkit-animation-duration: 1s;
}
 
@keyframes feature_1 {
    0% {
        width: 0;
    }
    100% {
        width: 30px;
    }     
}
 
@-webkit-keyframes feature_1 {
    0% {
        width: 0;
    }
    100% {
        width: 30px;
    }  
}
.success-form{
    position: fixed;
    top: 200px;
    width: 360px;
    left: calc(50% - 180px);
    background: #fff;
    box-shadow: -1px -1px 20px 10px rgb(45 153 210 / 10%), 3px 3px 20px 10px rgb(45 153 210 / 10%);
    padding: 30px 40px;
    z-index: 4;
    display: none;
}
.success-form p{
    margin: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 1px solid;
}
/* End Animation */