.app-header {
    padding: 15px 0;
    background-color: transparent;
    /*box-shadow: 0 0.5rem 1rem rgba(24, 26, 31, 0.03);*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: 10;
    transition: all .3s;
}
.app-header.sticky{
    background-color: #fff;
    transition: all .3s;
    -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

.primary-menu li:not(:last-child) {
    margin-right: 80px;
}

.primary-menu li a {
    color: #323842;
    text-decoration: none;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
}

.brand a {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.brand {
    max-width: 150px;
    width: 100%;
}

.contacts .icon {
    background-color: #5A8CF5;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contacts li a {
    color: #323842;
    font-size: 1.5rem;
    line-height: 1.5rem;
    text-decoration: none;
}

.hero-section {
    padding-top: 260px;
    padding-bottom: 90px;
    filter: blur(0);
    position: relative;
}

.hero-section__headline {
    font-size: 75px;
    color: #323842;
    font-weight: 600;
    line-height: 85px;
    gap: 12px;
    max-width: 600px;
}

.hero-section__headline img {
    max-width: 216px;
    border-radius: 8.5rem;
}

.animated-image {
    width: 100%;
    position: absolute;
    z-index: -1;
    left: 0;
    -webkit-filter: blur(5rem);
    filter: blur(5rem);
    opacity: 0.5;
    pointer-events: none;
    top: 0;
    object-fit: contain;
    animation: bg 10s ease-in-out infinite;
}

.wrapper {
    overflow: hidden;
}

.scroll-down {
    position: relative;
}

.scroll-down svg {
    width: 100%;
    height: 100%;
}

.headline--first--part {
    display: inline-block;
    width: 100%;
}

.headline--first--part span {
    position: relative;
}

.headline--first--part span svg {
    position: absolute;
    top: 0;
    right: 0;
}

.scroll-down a:after {
    content: "\f063";
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    text-rendering: auto;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    color: #EDCE29;
}

.scroll-down a {
    width: 54px;
    height: 54px;
    background-color: #323842;
    border-radius: 50%;
    text-decoration: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section--headline {
    color: #323842;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.1rem;
    font-size: 32px;
    position: relative;
}

.section--headline:after {
    content: " ";
    width: calc(100% - 200px);
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 2px;
    border-bottom: 2px dotted rgba(135, 146, 164, 0.3);
}

.section-choose__us {
    position: relative;
    z-index: 1;
}

.choose-us__widget {
    max-width: 33.333%;
    width: 100%;
    padding: 54px 0;
    background-color: #fff;
}

.choose-us__widget:first-child {
    border-radius: 10px 0 0 10px;
}

.choose-us__widget:last-child {
    border-radius: 0 10px 10px 0;
}

.choose-us__widgets, .services-us__widgets, .section-choose__us {
    margin-top: 90px;
}

.widget-desc {
    font-size: 27px;
    font-weight: 600;
    color: rgb(50, 56, 66);
    line-height: 30px;
    text-align: center;
    margin-top: 27px;
}

.service__widget {
    max-width: calc(25% - 12px);
    width: 100%;
    background-color: #fff;
    padding: 36px;
    border-radius: 10px;
}

.services-us__widgets {
    gap: 12px;
}

.service-icon {
    width: 60px;
    height: 60px;
}

.service-widget-desc {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: rgb(64, 64, 64);
    margin-top: 27px;
}

.price {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #323842;
    text-transform: uppercase;
}

.accordion-headline {
    padding: 27px;
    border-right: 16px;
    background-color: #fff;
    color: #323842;
    font-size: 18px;
    line-height: 18px;
    border-radius: 16px;
    margin-bottom: 6px;
    cursor: pointer;
}

.faq-section {
    margin-top: 90px;
}

.accordion-panel {
    padding-top: 90px;
    column-gap: 12px;
    align-items: flex-start;
}

.col {
    max-width: calc(50% - 6px);
    width: 100%;
    gap: 6px;
    margin-bottom: 6px;
}

.accordion-description {
    padding: 0px;
    color: #fff;
    background-color: #5A8CF5;
    border-radius: 16px;
    font-size: 16px;
    line-height: 25px;
    height: 0px;
    transition: .3s all;
    overflow: hidden;
}

.accordion-description p {
    padding: 27px;
}

.accordion-item {
    margin-bottom: 6px;
}

.app-footer {
    padding: 25px 0 25px 0;
    background-color: rgba(24, 26, 31, 0.9);
    margin-top: 90px;
}

.form-headline {
    font-size: 16px;
    color: rgb(135, 146, 164);
    font-weight: 500;
    line-height: 18px;
}

.form-group, .form-headline {
    margin-top: 27px;
}

.form-group input {
    border: solid 0.1rem rgba(135, 146, 164, 0.3);
    width: 100%;
    padding: 1rem;
    outline: none;
    color: #000000;
    border-radius: 50px 0 0 50px;
}

.form-group input[type="submit"] {
    border: 0;
    outline: 0;
    border-radius: 0 50px 50px 0;
    background-color: #EDCE29;
    padding: 0 2rem;
    cursor: pointer;
    flex: 1;
}

.form-group {
    max-width: 450px;
    width: 100%;
}
.scroll-down svg{
    animation: mymove 5s infinite;
}
.form-group p{
    display: flex;
    flex-wrap: wrap;
}
.wpcf7-form-control-wrap {
    position: relative;
    width: 350px;
}
.mil-icon{
    margin-left: 3rem;
    line-height: 23px;
    font-size: 25px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    margin-top: -0.2rem;
    -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
    border:solid 0.1rem rgba(135, 146, 164, 0.2);
    background-color: #f3f4f6 ;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mil-icon {
    transition: transform 0.3s ease;
}

.mil-icon.rotated {
    transform: rotate(180deg);
}


@keyframes bg {
    0% {
        -webkit-transform: translateY(0) scale(1) rotate(0) translateX(0);
        transform: translateY(0) scale(1) rotate(0) translateX(0);
    }
    50% {
        -webkit-transform: translateY(-25rem) scale(1.3) rotate(-45deg) translateX(10rem);
        transform: translateY(-25rem) scale(1.3) rotate(-45deg) translateX(10rem);
    }
    100% {
        -webkit-transform: translateY(0) scale(1) rotate(0) translateX(0);
        transform: translateY(0) scale(1) rotate(0) translateX(0);
    }
}

@keyframes mymove {
    50% {transform: rotate(180deg);}
}

