@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
.basic-header {
    width: 100%;
    background-color: #fbf4ec;
    border-bottom: 1px solid #f08835;
}
.header-hold {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 32px;
    column-gap: 32px;
}
.basic-logo {
    display: block;
    height: 70px;
    transition: opacity 0.2s ease-in-out;
}
.basic-logo img {
    display: block;
    width: auto;
    height: 100%;
}
.basic-logo:hover {
    opacity: 0.7;
}
#check-menu {
    display: none;
}
.nav-overlay {
    display: block;
    background: rgba(47, 40, 39, 0.3);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.burger-btn {
    display: none;
    width: 64px;
    height: 34px;
    background: url(../images/burger-icon.svg) center no-repeat;
    background-size: contain;
    cursor: pointer;
    position: relative;
    z-index: 11;
}
.close-btn {
    display: none;
    width: 36px;
    height: 36px;
    background: url(../images/close-icon.svg) center no-repeat;
    background-size: contain;
    cursor: pointer;
    position: absolute;
    top: 18px;
    right: 16px;
}
.main-menu {
    display: flex;
    align-items: center;
    -moz-column-gap: 32px;
    column-gap: 32px;
}
.main-menu li {
    position: relative;
}
.main-menu a {
    display: block;
    position: relative;
    text-decoration: none;
}
.main-menu a:hover {
    text-decoration: underline;
}
.main-menu .basic-button {
    display: inline-flex;
}
.main-menu .basic-button:hover {
    text-decoration: none;
}
.main-menu .openbox {
    padding: 0 0 23px;
    margin: 0 0 -23px;
}
.main-menu .openbox:hover .open-btn {
    transform: rotate(180deg);
}
.main-menu .openbox:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}
.main-menu .item-hold {
    display: flex;
    align-items: center;
    -moz-column-gap: 6px;
    column-gap: 6px;
    position: relative;
    z-index: 1;
}
.main-menu .item-hold .open-btn {
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-color: transparent;
    background-image: url(../images/chevron-down-orange-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
    padding: 0;
    margin: 0 0 -2px;
    z-index: -1;
    transition: transform 0.2s ease-in-out;
}
.sub-menu {
    width: 370px;
    font-weight: 600;
    background-color: #fbf4ec;
    border: 1px solid #f08835;
    padding: 24px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        max-height 0.3s linear;
}
.sub-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(240, 136, 53, 0.1);
    padding: 0 0 16px;
    margin: 0 0 16px;
}
.sub-menu a {
    padding: 8px 0 8px 24px;
}
.sub-menu a:before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #f08835;
    border-radius: 50%;
    position: absolute;
    top: 14px;
    left: 0;
}
@media only screen and (max-width: 1344px) {
    .basic-logo {
        height: 50px;
    }
}
@media only screen and (max-width: 1023px) {
    .burger-btn,
    .close-btn {
        display: block;
    }
    .basic-nav {
        width: 320px;
        max-width: 100%;
        background: #f08835;
        position: fixed;
        top: 0;
        bottom: 0;
        right: -320px;
        padding-top: 72px;
        z-index: 100;
        transition: right 0.3s ease-in-out;
        box-sizing: border-box;
    }
    #check-menu:checked ~ .basic-nav {
        right: 0;
    }
    #check-menu:checked ~ .nav-overlay {
        opacity: 1;
        visibility: visible;
    }
    .main-menu {
        display: block;
        max-height: 100%;
        overflow-y: auto;
        text-align: right;
        border-top: 1px solid rgba(251, 244, 236, 0.3);
    }
    .main-menu > li:not(:last-child) {
        border-bottom: 1px solid rgba(251, 244, 236, 0.3);
    }
    .main-menu > li.open .sub-menu {
        display: block;
    }
    .main-menu a {
        display: block;
        color: #fbf4ec;
        padding: 10px 16px;
    }
    .main-menu a:hover {
        text-decoration: none;
    }
    .main-menu .basic-button {
        color: #f08835 !important;
        background: #fbf4ec !important;
        margin: 10px 16px !important;
    }
    .main-menu .basic-button:hover {
        background: #fbf4ec !important;
    }
    .main-menu .openbox {
        padding: 0;
        margin: 0;
    }
    .main-menu .openbox:hover .open-btn {
        transform: none;
    }
    .main-menu .openbox:hover .sub-menu {
        opacity: 0;
        visibility: hidden;
    }
    .main-menu .openbox.open .open-btn {
        transform: rotate(180deg);
    }
    .main-menu .openbox.open .sub-menu {
        max-height: 185px;
        opacity: 1;
        visibility: visible;
        margin: 0 0 10px;
    }
    .main-menu .item-hold {
        padding-right: 16px;
    }
    .main-menu .item-hold > a {
        width: 100%;
        padding-right: 0;
    }
    .main-menu .item-hold .open-btn {
        background-image: url(../images/chevron-down-white-icon.svg);
    }
    .sub-menu {
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        width: 100%;
        font-weight: normal;
        background-color: transparent;
        border: none;
        padding: 0;
        position: static;
        transform: none;
        overflow: hidden;
    }
    .sub-menu li:not(:last-child) {
        border-bottom: none;
        padding: 0;
        margin: 0;
    }
    .sub-menu a {
        padding: 5px 16px;
    }
    .sub-menu a:before {
        display: none;
    }
}
.basic-footer {
    width: 100%;
    overflow: hidden;
    padding: 100px 0 340px;
    margin-top: auto;
    position: relative;
}
.basic-footer .footer-bg {
    height: 442px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.basic-footer .footer-bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center 0;
    object-position: center 0;
}
.footer-hold {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 30px;
}
.footer-hold .contacts-col {
    max-width: 340px;
    width: 100%;
    margin-top: -20px;
}
.footer-hold .basic-logo {
    margin: 0 0 50px;
}
.footer-hold .title-menu {
    display: inline-block;
    vertical-align: top;
    font-weight: 600;
    text-decoration: none;
    margin: 0 0 30px;
}
.footer-hold .title-menu:hover {
    text-decoration: underline;
}
.footer-hold ul:not(.contacts-list) {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.footer-hold ul:not(.contacts-list) a {
    text-decoration: none;
}
.footer-hold ul:not(.contacts-list) a:hover {
    text-decoration: underline;
}
.footer-hold .form-col {
    max-width: 294px;
    width: 100%;
}
.footer-hold .form-col .basic-button,
.footer-hold .form-col div.wpforms-container-full input[type="submit"]:not(:hover):not(:active),
.footer-hold .form-col div.wpforms-container-full button[type="submit"]:not(:hover):not(:active),
.footer-hold .form-col div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active),
.footer-hold .form-col .wp-core-ui div.wpforms-container-full input[type="submit"]:not(:hover):not(:active),
.footer-hold .form-col .wp-core-ui div.wpforms-container-full button[type="submit"]:not(:hover):not(:active),
.footer-hold .form-col .wp-core-ui div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active) {
    width: 100%;
    margin-top: 10px !important;
}
.footer-hold .form-col div.wpforms-container-full input[type="submit"]:hover,
.footer-hold .form-col div.wpforms-container-full input[type="submit"]:active,
.footer-hold .form-col div.wpforms-container-full button[type="submit"]:hover,
.footer-hold .form-col div.wpforms-container-full button[type="submit"]:active,
.footer-hold .form-col div.wpforms-container-full .wpforms-page-button:hover,
.footer-hold .form-col div.wpforms-container-full .wpforms-page-button:active,
.footer-hold .form-col .wp-core-ui div.wpforms-container-full input[type="submit"]:hover,
.footer-hold .form-col .wp-core-ui div.wpforms-container-full input[type="submit"]:active,
.footer-hold .form-col .wp-core-ui div.wpforms-container-full button[type="submit"]:hover,
.footer-hold .form-col .wp-core-ui div.wpforms-container-full button[type="submit"]:active,
.footer-hold .form-col .wp-core-ui div.wpforms-container-full .wpforms-page-button:hover,
.footer-hold .form-col .wp-core-ui div.wpforms-container-full .wpforms-page-button:active {
    background: linear-gradient(90deg, #f08835 -9.35%, #ffb031 100.59%) !important;
    box-shadow: 0 4px 15px 0 rgba(52, 13, 7, 0.15) !important;
}
.footer-hold .title-form {
    display: block;
    font-weight: 600;
    margin: 0 0 17px;
}
.copyright {
    display: block;
    color: #868687;
    margin: 0;
}
@media only screen and (max-width: 1023px) {
    .basic-footer {
        padding: 50px 0 200px;
    }
    .basic-footer .footer-bg {
        height: 200px;
    }
    .footer-hold {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 0 30px;
    }
    .footer-hold .contacts-col {
        width: auto;
        max-width: inherit;
        text-align: left;
        margin: 0;
    }
    .footer-hold .basic-logo {
        margin: 0 0 30px 13px;
    }
    .footer-hold .contacts-list {
        row-gap: 10px;
        margin: 0 0 30px;
    }
    .footer-hold .contacts-list .address {
        padding-left: 0;
    }
    .footer-hold .contacts-list .address:before {
        display: none;
    }
    .footer-hold .contacts-icons {
        justify-content: center;
    }
    .footer-hold .title-menu {
        margin: 0 0 20px;
    }
    .footer-hold ul:not(.contacts-list) {
        row-gap: 10px;
    }
    .footer-hold .form-col {
        max-width: 100%;
    }
    .copyright {
        font-size: 14px;
        line-height: 22px;
        text-align: center;
        margin: 0;
    }
}
@media only screen and (max-width: 767px) {
    .basic-footer {
        padding-bottom: 120px;
    }
    .basic-footer .footer-bg {
        height: 120px;
    }
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea,
select,
div.wpforms-container-full input[type="date"],
div.wpforms-container-full input[type="datetime"],
div.wpforms-container-full input[type="datetime-local"],
div.wpforms-container-full input[type="email"],
div.wpforms-container-full input[type="month"],
div.wpforms-container-full input[type="number"],
div.wpforms-container-full input[type="password"],
div.wpforms-container-full input[type="range"],
div.wpforms-container-full input[type="search"],
div.wpforms-container-full input[type="tel"],
div.wpforms-container-full input[type="text"],
div.wpforms-container-full input[type="time"],
div.wpforms-container-full input[type="url"],
div.wpforms-container-full input[type="week"],
.wp-core-ui div.wpforms-container-full input[type="date"],
.wp-core-ui div.wpforms-container-full input[type="datetime"],
.wp-core-ui div.wpforms-container-full input[type="datetime-local"],
.wp-core-ui div.wpforms-container-full input[type="email"],
.wp-core-ui div.wpforms-container-full input[type="month"],
.wp-core-ui div.wpforms-container-full input[type="number"],
.wp-core-ui div.wpforms-container-full input[type="password"],
.wp-core-ui div.wpforms-container-full input[type="range"],
.wp-core-ui div.wpforms-container-full input[type="search"],
.wp-core-ui div.wpforms-container-full input[type="tel"],
.wp-core-ui div.wpforms-container-full input[type="text"],
.wp-core-ui div.wpforms-container-full input[type="time"],
.wp-core-ui div.wpforms-container-full input[type="url"],
.wp-core-ui div.wpforms-container-full input[type="week"],
div.wpforms-container-full select,
div.wpforms-container-full select:disabled,
.wp-core-ui div.wpforms-container-full select,
.wp-core-ui div.wpforms-container-full select:disabled {
    width: 100%;
    max-width: 100% !important;
    height: 50px;
    font-family: "Inter", sans-serif;
    font-size: 14px !important;
    line-height: 22px !important;
    color: #2f2827 !important;
    background-color: #fff !important;
    border: 1px solid rgba(0, 0, 124, 0.2);
    border-radius: 6px !important;
    outline: 0 none;
    padding: 14px 16px !important;
    box-sizing: border-box;
    margin: 0 0 14px !important;
    transition: border 0.2s ease-in-out !important;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus,
div.wpforms-container-full input[type="date"]:focus,
div.wpforms-container-full input[type="datetime"]:focus,
div.wpforms-container-full input[type="datetime-local"]:focus,
div.wpforms-container-full input[type="email"]:focus,
div.wpforms-container-full input[type="month"]:focus,
div.wpforms-container-full input[type="number"]:focus,
div.wpforms-container-full input[type="password"]:focus,
div.wpforms-container-full input[type="range"]:focus,
div.wpforms-container-full input[type="search"]:focus,
div.wpforms-container-full input[type="tel"]:focus,
div.wpforms-container-full input[type="text"]:focus,
div.wpforms-container-full input[type="time"]:focus,
div.wpforms-container-full input[type="url"]:focus,
div.wpforms-container-full input[type="week"]:focus,
.wp-core-ui div.wpforms-container-full input[type="date"]:focus,
.wp-core-ui div.wpforms-container-full input[type="datetime"]:focus,
.wp-core-ui div.wpforms-container-full input[type="datetime-local"]:focus,
.wp-core-ui div.wpforms-container-full input[type="email"]:focus,
.wp-core-ui div.wpforms-container-full input[type="month"]:focus,
.wp-core-ui div.wpforms-container-full input[type="number"]:focus,
.wp-core-ui div.wpforms-container-full input[type="password"]:focus,
.wp-core-ui div.wpforms-container-full input[type="range"]:focus,
.wp-core-ui div.wpforms-container-full input[type="search"]:focus,
.wp-core-ui div.wpforms-container-full input[type="tel"]:focus,
.wp-core-ui div.wpforms-container-full input[type="text"]:focus,
.wp-core-ui div.wpforms-container-full input[type="time"]:focus,
.wp-core-ui div.wpforms-container-full input[type="url"]:focus,
.wp-core-ui div.wpforms-container-full input[type="week"]:focus,
div.wpforms-container-full select:focus,
div.wpforms-container-full select:disabled:focus,
.wp-core-ui div.wpforms-container-full select:focus,
.wp-core-ui div.wpforms-container-full select:disabled:focus {
    border: 1px solid rgba(0, 0, 124, 0.7) !important;
    box-shadow: none !important;
}
textarea,
div.wpforms-container-full textarea,
.wp-core-ui div.wpforms-container-full textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 90px !important;
    height: auto !important;
}
select,
div.wpforms-container-full select,
.wp-core-ui div.wpforms-container-full select,
div.wpforms-container-full select,
div.wpforms-container-full select:disabled,
.wp-core-ui div.wpforms-container-full select,
.wp-core-ui div.wpforms-container-full select:disabled {
    height: 50px !important;
    font-size: 16px !important;
    line-height: 25px !important;
    background-image: url(../images/chevron-down-dark-icon.svg) !important;
    background-position: right 16px top 50% !important;
    background-size: 24px 24px !important;
    background-repeat: no-repeat;
    padding: 10px 40px 10px 16px !important;
}
.basic-button,
div.wpforms-container-full input[type="submit"]:not(:hover):not(:active),
div.wpforms-container-full button[type="submit"]:not(:hover):not(:active),
div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active),
.wp-core-ui div.wpforms-container-full input[type="submit"]:not(:hover):not(:active),
.wp-core-ui div.wpforms-container-full button[type="submit"]:not(:hover):not(:active),
.wp-core-ui div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active),
div.wpforms-container-full input[type="submit"],
div.wpforms-container-full button[type="submit"],
div.wpforms-container-full .wpforms-page-button,
.wp-core-ui div.wpforms-container-full input[type="submit"],
.wp-core-ui div.wpforms-container-full button[type="submit"],
.wp-core-ui div.wpforms-container-full .wpforms-page-button {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important;
    height: 40px !important;
    font-family: "Inter", sans-serif !important;
    font-size: 16px !important;
    line-height: 25px !important;
    font-weight: normal !important;
    color: #fbf4ec !important;
    text-decoration: none !important;
    background-color: #f08835 !important;
    border: 0 none !important;
    outline: 0 none !important;
    box-shadow: none !important;
    border-radius: 60px !important;
    cursor: pointer !important;
    padding: 0 20px !important;
    margin: 0 !important;
    position: relative !important;
    transition: none !important;
}
.basic-button:hover,
div.wpforms-container-full input[type="submit"]:not(:hover):not(:active):hover,
div.wpforms-container-full button[type="submit"]:not(:hover):not(:active):hover,
div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active):hover,
.wp-core-ui div.wpforms-container-full input[type="submit"]:not(:hover):not(:active):hover,
.wp-core-ui div.wpforms-container-full button[type="submit"]:not(:hover):not(:active):hover,
.wp-core-ui div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active):hover,
div.wpforms-container-full input[type="submit"]:hover,
div.wpforms-container-full button[type="submit"]:hover,
div.wpforms-container-full .wpforms-page-button:hover,
.wp-core-ui div.wpforms-container-full input[type="submit"]:hover,
.wp-core-ui div.wpforms-container-full button[type="submit"]:hover,
.wp-core-ui div.wpforms-container-full .wpforms-page-button:hover {
    background: linear-gradient(90deg, #f08835 -9.35%, #ffb031 100.59%) !important;
    box-shadow: 0 4px 15px 0 rgba(52, 13, 7, 0.15) !important;
}
button[type="button"] {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 25px;
    cursor: pointer;
}
div.wpforms-container-full:not(:empty) {
    margin: 0 !important;
}
.wpforms-container .wpforms-field,
.wp-core-ui div.wpforms-container .wpforms-field {
    padding: 0 !important;
}
.wpforms-submit-container {
    overflow: hidden;
}
input:-moz-placeholder {
    color: #2f2827 !important;
    opacity: 0.65 !important;
}
input::-moz-placeholder {
    color: #2f2827 !important;
    opacity: 0.65 !important;
}
input::-webkit-input-placeholder {
    color: #2f2827 !important;
}
input:focus:-moz-placeholder {
    color: #2f2827 !important;
    opacity: 0.65 !important;
}
input:focus::-moz-placeholder {
    color: #2f2827 !important;
    opacity: 0.65 !important;
}
input:focus::-webkit-input-placeholder {
    color: #2f2827 !important;
}
textarea:-moz-placeholder {
    color: #2f2827 !important;
    opacity: 0.65 !important;
}
textarea::-moz-placeholder {
    color: #2f2827 !important;
    opacity: 0.65 !important;
}
textarea::-webkit-input-placeholder {
    color: #2f2827 !important;
}
textarea:focus:-moz-placeholder {
    color: #2f2827 !important;
    opacity: 0.65 !important;
}
textarea:focus::-moz-placeholder {
    color: #2f2827 !important;
    opacity: 0.65 !important;
}
textarea:focus::-webkit-input-placeholder {
    color: #2f2827 !important;
}
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    content: "";
    display: table;
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-arrow {
    width: 48px;
    height: 48px;
    font-size: 0 !important;
    line-height: 0 !important;
    background-color: transparent;
    background-image: url(../images/arrow-right-orange-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #f08835;
    border-radius: 50%;
    padding: 0;
    position: absolute;
    top: 50%;
    margin-top: -24px;
    right: 0;
    transition: transform 0.2s ease-in-out;
}
.slick-arrow:hover {
    transform: translateX(4px);
}
.slick-arrow.slick-prev {
    transform: scaleX(-1);
    right: auto;
    left: 0;
}
.slick-arrow.slick-prev:hover {
    transform: translateX(-4px) scaleX(-1);
}
.slick-arrow.slick-disabled {
    display: none;
}
.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.slick-dots li {
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.slick-dots li.slick-active {
    cursor: default;
}
.slick-dots li.slick-active:before {
    background-color: #2f2827;
}
.slick-dots li:before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 50%;
    transition: background-color 0.2s ease-in-out;
}
.slick-dots button[type="button"] {
    display: none;
}
.experience-slider {
    padding: 0 66px;
}
.experience-slider .slick-track {
    display: flex;
}
.experience-slider .slide {
    height: 250px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    background-color: #c7e5e0;
    border-radius: 45px;
    text-decoration: none;
    padding: 50px 0 50px 50px;
    margin: 0 10px;
}
.experience-slider .slide.orange-bg {
    background-color: #fae9da;
}
.experience-slider .slide.dark-bg {
    background-color: #e7e0d8;
}
.experience-slider .experience-title {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.experience-slider .experience-icon {
    height: 128px;
}
.experience-slider .experience-icon img {
    height: 100%;
    width: auto;
}
.reviews-slider {
    padding: 0 48px;
    margin: 0 0 70px;
}
.reviews-slider .slick-arrow {
    background-image: url(../images/arrow-right-dark-icon.svg);
    border-color: #2f2827;
}
.reviews-slider .slick-dots {
    position: absolute;
    right: 0;
    bottom: -70px;
    left: 0;
    margin-top: 0;
}
.reviews-slider .slick-dots li:before {
    background-color: #fbf4ec;
}
.reviews-slider .slick-dots li.slick-active {
    cursor: default;
}
.reviews-slider .slick-dots li.slick-active:before {
    background-color: #2f2827;
}
.reviews-slider .stars {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 4px;
    column-gap: 4px;
    margin: 0 0 32px;
}
.reviews-slider .stars li {
    width: 20px;
    min-width: 20px;
    height: 20px;
    background: url(../images/star-icon.svg) center no-repeat;
    background-size: contain;
}
.reviews-slider blockquote {
    margin-bottom: 32px;
}
.reviews-slider .review-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 12px;
}
.reviews-slider .review-footer hr {
    width: 1px;
    height: 60px;
    background-color: #2f2827;
    border: none;
    margin: 0;
}
.reviews-slider .author-review {
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 12px;
}
.reviews-slider .author-review .avatar {
    width: 56px;
    min-width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}
.reviews-slider .author-review .avatar img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.reviews-slider .author-review .author-info {
    overflow: hidden;
}
.reviews-slider .author-review .name {
    display: block;
    font-weight: 600;
}
.reviews-slider .author-review .position {
    display: block;
}
.reviews-slider .company-logo {
    max-width: 120px;
}
.reviews-slider .company-logo img {
    width: auto;
    max-width: 100%;
}
.more-case-section {
    padding-bottom: 50px;
}
.more-case-section .title-with-arrows {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    -moz-column-gap: 16px;
    column-gap: 16px;
    margin: 0 0 80px;
}
.more-case-section .title-with-arrows h2 {
    margin: 0;
}
.more-case-section .more-case-arrows {
    display: flex;
    -moz-column-gap: 16px;
    column-gap: 16px;
}
.more-case-section .more-case-arrows .slick-arrow {
    background-image: url(../images/arrow-right-dark-icon.svg);
    border-color: #2f2827;
    position: static;
    margin: 0;
}
.more-case-section > .basic-button {
    width: 220px;
    margin: 80px auto 0 !important;
}
.more-case-slider {
    margin-right: -32px;
}
.more-case-slider .slick-track {
    display: flex;
}
.more-case-slider .slick-dots {
    display: flex !important;
    margin: 80px 32px 0 0;
}
.more-case-slider .case-item {
    margin-right: 32px;
}
html,
body {
    height: 100%;
    margin: 0;
}
html * {
    max-height: 999999px;
}
body {
    min-width: 320px;
    font-size: 16px;
    line-height: 25px;
    font-family: "Inter", sans-serif;
    color: #2f2827;
    background: #fbf4ec;
    margin: 0;
    -webkit-text-size-adjust: 100%;
}
* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
form,
fieldset {
    margin: 0;
    padding: 0;
    border-style: none;
}
img {
    border-style: none;
    vertical-align: top;
}
ul li {
    vertical-align: top;
}
input,
select,
textarea {
    vertical-align: middle;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a {
    color: #2f2827;
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
    outline: 0 none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
figure {
    margin: 0;
}
figure img {
    display: block;
    width: 100%;
    height: auto;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
.basic-wrapper {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    min-height: 100%;
}
.container {
    max-width: 1344px;
    margin: 0 auto;
    padding: 0 16px;
}
.narrow-container {
    max-width: 800px;
}
p {
    margin: 0 0 16px;
}
h1,
h2,
h3,
h4,
.h4 {
    display: block;
    font-size: 56px;
    line-height: 60px;
    font-weight: 700;
    margin: 0;
}
h1 {
    letter-spacing: -1.12px;
}
h2 {
    font-size: 48px;
    line-height: 58px;
    margin: 0 0 24px;
}
h3 {
    font-size: 30px;
    line-height: 38px;
    margin: 0 0 24px;
}
h4,
.h4 {
    font-size: 24px;
    line-height: 34px;
    margin: 0 0 8px;
}
strong,
b {
    font-weight: 700;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.chevron-link {
    display: flex;
    align-items: center;
    -moz-column-gap: 8px;
    column-gap: 8px;
}
.chevron-link:after {
    content: "";
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-image: url(../images/chevron-right-dark-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: -2px;
    transition: transform 0.2s ease-in-out;
}
.chevron-link:hover:after {
    transform: translateX(3px);
}
.chevron-link em {
    font-style: normal;
}
.contacts-list {
    display: flex;
    flex-direction: column;
    row-gap: 26px;
    margin: 0 0 40px;
}
.contacts-list a {
    position: relative;
    display: block;
    text-decoration: none;
    padding-left: 36px;
}
.contacts-list a:before {
    content: "";
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
}
.contacts-list a {
    font-weight: 600;
}
.contacts-list a:hover {
    text-decoration: underline;
}
.contacts-list .phone a:before {
    background-image: url(../images/phone-icon.svg);
}
.contacts-list .email a:before {
    background-image: url(../images/email-icon.svg);
}
.contacts-list .telegram a:before {
    background-image: url(../images/telegram-circle-icon.svg);
}
.contacts-list .telegram.green a:before {
    background-image: url(../images/telegram-circle-icon-green.svg);
}
.contacts-icons {
    display: flex;
    align-items: center;
    -moz-column-gap: 16px;
    column-gap: 16px;
}
.contacts-icons a {
    width: 39px;
    min-width: 39px;
    height: 39px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.2s ease-in-out;
}
.contacts-icons a:hover {
    transform: translateY(-3px);
}
.contacts-icons .linkedin {
    background-image: url(../images/linkedin-circle-icon.svg);
}
.contacts-icons .email {
    background-image: url(../images/email-circle-icon.svg);
}
.contacts-icons .telegram {
    background-image: url(../images/telegram-circle-icon.svg);
}
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    -moz-column-gap: 8px;
    column-gap: 8px;
    padding: 80px 0;
}
.breadcrumbs li {
    display: flex;
    align-items: center;
    -moz-column-gap: 8px;
    column-gap: 8px;
    font-weight: 600;
}
.breadcrumbs li:not(:last-child):after {
    content: "";
    width: 16px;
    min-width: 16px;
    height: 16px;
    background: url(../images/chevron-right-dark-icon.svg) center no-repeat;
    background-size: contain;
    margin: 0 0 -2px;
}
.breadcrumbs a {
    font-weight: normal;
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
blockquote {
    max-width: 770px;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    text-align: center;
    margin: 0 auto;
}
.basic-main {
    width: 100%;
    overflow: hidden;
}
.section {
    padding: 100px 0;
}
.home-page h2 {
    font-size: 56px;
    line-height: 60px;
}
.home-page-header {
    height: 610px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 16px;
}
.home-page-header > figure {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.home-page-header > figure img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.home-page-header > figure:after {
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0.23) 100%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.home-page-header h1 {
    display: flex;
    align-items: center;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 20px;
    color: #fff;
    text-shadow: 0 4px 15px rgba(52, 13, 7, 0.15);
}
.home-page-header mark {
    height: 64px;
    display: flex;
    align-items: center;
    font-size: 45px;
    font-weight: 500;
    font-style: normal;
    color: #f08835;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 70px;
    padding: 0 22px;
}
.what-makes-us-different-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    line-height: 27px;
    position: relative;
    row-gap: 30px;
}
.what-makes-us-different-section .ellipse01,
.what-makes-us-different-section .ellipse02 {
    border-radius: 50%;
    position: absolute;
    z-index: -1;
}
.what-makes-us-different-section .ellipse01 {
    width: 77px;
    height: 77px;
    background-color: #4fc2c5;
    top: 180px;
    right: 500px;
}
.what-makes-us-different-section .ellipse02 {
    width: 279px;
    height: 279px;
    background-color: #f08835;
    top: 75px;
    right: -15px;
}
.what-makes-us-different-section .what-makes-us-different-info {
    max-width: calc(648 / 1312 * 100%);
    width: 100%;
}
.what-makes-us-different-section .what-makes-us-different-img {
    max-width: calc(568 / 1312 * 100%);
    width: 100%;
    z-index: -1;
}
.what-makes-us-different-section .advantages-hold {
    display: flex;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 10px;
    margin-top: 48px;
}
.what-makes-us-different-section .advantages-hold .col,
.what-makes-us-different-section .advantages-hold > .box {
    width: calc((100% - 24px) / 2);
}
.what-makes-us-different-section .advantages-hold .col {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.what-makes-us-different-section .advantages-hold .box {
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 10px;
    background-color: #e7e0d8;
    border-radius: 12px;
    overflow: hidden;
    padding: 24px;
}
.what-makes-us-different-section .advantages-hold .box.green-bg {
    background-color: #c7e5e0;
}
.what-makes-us-different-section .advantages-hold .box.orange-bg {
    background-color: #fae9da;
}
.what-makes-us-different-section .advantages-hold .advantage-icon {
    width: 56px;
    min-width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.what-makes-us-different-section .advantages-hold .advantage-icon img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.qualifications-section {
    color: #fbf4ec;
    text-align: center;
    background-color: #4fc2c5;
    position: relative;
    padding: 60px 0;
    margin-top: 75px;
}
.qualifications-section:before {
    content: "";
    height: 75px;
    background: url(../images/qualifications-waves.png) center 0 no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(100% - 1px);
}
.qualifications-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
}
.qualifications-box .qualification-item {
    width: calc((100% - 120px) / 5);
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fbf4ec;
    border-radius: 14px;
    overflow: hidden;
}
.qualifications-box .qualification-item img {
    width: auto;
    max-width: 90%;
    max-height: 90%;
}
.experience-section h2 {
    max-width: 800px;
    text-align: center;
    margin: 0 auto 80px;
}
.case-studies-section {
    padding: 60px 0;
}
.case-studies-section .title-with-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
    margin: 0 0 60px;
}
.case-studies-section .title-with-button h2 {
    margin: 0;
}
.case-studies-section .title-with-button .basic-button {
    width: 220px;
}
.cases-box {
    display: flex;
    flex-wrap: wrap;
    overflow-x: visible;
    align-items: flex-start;
    -moz-column-gap: 32px;
    column-gap: 32px;
    row-gap: 80px;
}
.cases-box + .basic-button {
    width: 190px;
    margin: 80px auto 0 !important;
}
.case-item {
    width: calc((100% - 64px) / 3);
    text-decoration: none;
}
.case-item:hover figure img {
    transform: scale(1.05);
}
.case-item:hover h4 {
    text-decoration: underline;
}
.case-item:hover .chevron-link:after {
    transform: translateX(3px);
}
.case-item figure {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 0 24px;
}
.case-item figure img {
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 0.2s ease-in-out;
}
.case-item p:last-of-type {
    margin: 0 0 24px;
}
.case-item .chevron-link {
    color: #f08835;
}
.case-item .chevron-link:after {
    background-image: url(../images/chevron-right-orange-icon.svg);
}
.reviews-section {
    background-color: #f08835;
    margin-top: 75px;
    position: relative;
}
.reviews-section:before {
    content: "";
    height: 75px;
    background: url(../images/reviews-waves.png) center 0 no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(100% - 1px);
}
.title-box {
    height: 290px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(../images/title-bg-orange.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 16px;
    position: relative;
}
.title-box.green-bg {
    background-image: url(../images/title-bg-green.jpg);
}
.title-box > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.title-box h1 {
    color: #f08835;
    background-color: #fbf4ec;
    border-radius: 70px;
    padding: 14px 32px;
    position: relative;
}
.qualifications-section .container,
.driving-success-section {
    display: flex;
    align-items: flex-start;
    row-gap: 30px;
    -moz-column-gap: 80px;
    column-gap: 80px;
    padding-bottom: 0;
}
.qualifications-section .container .col,
.driving-success-section .col {
    width: calc((100% - 80px) / 2);
}
.qualifications-section .container .nick-photo,
.driving-success-section .nick-photo {
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 16px;
}
.qualifications-section .container .nick-photo .ellipse01,
.driving-success-section .nick-photo .ellipse01 {
    width: 390px;
    min-width: 390px;
    margin-right: -210px;
}
.qualifications-section .container .nick-photo .photo,
.driving-success-section .nick-photo .photo {
    width: 350px;
    min-width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
}
.qualifications-section .container .nick-photo .photo img,
.driving-success-section .nick-photo .photo img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.qualifications-section .container .nick-photo .ellipse02,
.driving-success-section .nick-photo .ellipse02 {
    width: 60px;
    height: 60px;
    background-color: #f08835;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 40px;
}
.qualifications-section .container p,
.driving-success-section p {
    font-size: 20px;
    line-height: 30px;
}
.qualifications-section .container p:last-of-type,
.driving-success-section p:last-of-type {
    margin: 0 0 40px;
}
.driving-success-values {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 40px;
}
.driving-success-values dl {
    width: calc((100% - 24px) / 2);
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    margin: 0;
}
.driving-success-values dt {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    color: #f08835;
}
.driving-success-values dd {
    margin: 0;
}
.about-me-section {
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 80px;
    column-gap: 80px;
    row-gap: 30px;
    font-size: 18px;
    line-height: 27px;
}
.about-me-section .box,
.about-me-section .about-me-img {
    width: calc((100% - 80px) / 2);
}
.about-me-section .about-me-img {
    border-radius: 45px;
    overflow: hidden;
}
.about-me-section p {
    margin: 0 0 24px;
}
.about-me-section p:last-of-type {
    margin: 0;
}
.title-with-text {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    -moz-column-gap: 80px;
    column-gap: 80px;
    row-gap: 20px;
    margin: 0 0 80px;
}
.title-with-text h2 {
    width: calc((100% - 80px) / 2);
    margin: 0;
}
.title-with-text p {
    width: calc((100% - 80px) / 2);
    font-size: 18px;
    line-height: 27px;
    margin: 0;
}
.education-box {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 32px;
    column-gap: 32px;
    row-gap: 80px;
}
.education-box .box {
    width: calc((100% - 96px) / 4);
}
.education-box .certificate-img {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 0 24px;
}
.education-box .certificate-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.education-box .certificate-title {
    display: block;
    font-size: 18px;
    line-height: 27px;
    margin: 0 0 16px;
}
.education-box .certificate-title b {
    display: block;
}
.education-box p:last-of-type {
    margin: 0;
}
.banner-box {
    max-width: 870px;
    width: 100%;
    text-align: center;
    color: #fbf4ec;
    background-color: #4fc2c5;
    border-radius: 190px;
    padding: 50px 16px;
    margin: 0 auto;
}
.banner-box h3 {
    margin: 0 0 16px;
}
.banner-box p:last-of-type {
    margin: 0 0 24px;
}
.banner-box .basic-button {
    width: 220px;
    margin: 0 auto !important;
}
.job-section:nth-child(2n) .job-description-box {
    flex-direction: row-reverse;
}
.job-section .job-title-tag {
    display: inline-block;
    vertical-align: top;
    font-weight: 600;
    background-color: #4fc2c5;
    border-radius: 30px;
    padding: 4px 8px;
    margin: 0 0 24px;
}
.job-section .job-title {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 32px;
    column-gap: 32px;
    row-gap: 20px;
    margin: 0 0 100px;
}
.job-section .job-title h2 {
    margin: 0;
}
.job-section .job-details {
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 32px;
    column-gap: 32px;
}
.job-section .job-details dl {
    width: 216px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    margin: 0;
}
.job-section .job-details dt {
    font-weight: 600;
}
.job-section .job-details dd {
    margin: 0;
}
.job-section .job-description-box {
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 80px;
    column-gap: 80px;
    row-gap: 30px;
}
.job-section .job-description-box .job-img {
    width: calc((100% - 80px) / 2);
    border-radius: 20px;
    overflow: hidden;
}
.job-section .job-description-box .job-description-col {
    width: calc((100% - 80px) / 2);
}
.job-section .job-description-box .job-description-col p:last-of-type {
    margin: 0;
}
.apply-now-section {
    background-color: #4fc2c5;
}
.form-section {
    padding: 80px 0;
}
.form-section h2 {
    text-align: center;
}
.form-section p {
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    margin: 0 0 24px;
}
.form-section .form-box,
.form-section .wpforms-field-container {
    max-width: 510px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    padding-top: 16px;
    margin: 0 auto;
}
.form-section .form-box .half,
.form-section .form-box .wpforms-field.wpforms-field-name,
.form-section .form-box .wpforms-field.wpforms-field-email,
.form-section .wpforms-field-container .half,
.form-section .wpforms-field-container .wpforms-field.wpforms-field-name,
.form-section .wpforms-field-container .wpforms-field.wpforms-field-email {
    width: calc((100% - 24px) / 2);
}
.form-section .form-box .wpforms-field,
.form-section .wpforms-field-container .wpforms-field {
    width: 100%;
}
.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="password"],
.form-section input[type="tel"],
.form-section textarea,
.form-section select,
.form-section div.wpforms-container-full input[type="date"],
.form-section div.wpforms-container-full input[type="datetime"],
.form-section div.wpforms-container-full input[type="datetime-local"],
.form-section div.wpforms-container-full input[type="email"],
.form-section div.wpforms-container-full input[type="month"],
.form-section div.wpforms-container-full input[type="number"],
.form-section div.wpforms-container-full input[type="password"],
.form-section div.wpforms-container-full input[type="range"],
.form-section div.wpforms-container-full input[type="search"],
.form-section div.wpforms-container-full input[type="tel"],
.form-section div.wpforms-container-full input[type="text"],
.form-section div.wpforms-container-full input[type="time"],
.form-section div.wpforms-container-full input[type="url"],
.form-section div.wpforms-container-full input[type="week"],
.form-section .wp-core-ui div.wpforms-container-full input[type="date"],
.form-section .wp-core-ui div.wpforms-container-full input[type="datetime"],
.form-section .wp-core-ui div.wpforms-container-full input[type="datetime-local"],
.form-section .wp-core-ui div.wpforms-container-full input[type="email"],
.form-section .wp-core-ui div.wpforms-container-full input[type="month"],
.form-section .wp-core-ui div.wpforms-container-full input[type="number"],
.form-section .wp-core-ui div.wpforms-container-full input[type="password"],
.form-section .wp-core-ui div.wpforms-container-full input[type="range"],
.form-section .wp-core-ui div.wpforms-container-full input[type="search"],
.form-section .wp-core-ui div.wpforms-container-full input[type="tel"],
.form-section .wp-core-ui div.wpforms-container-full input[type="text"],
.form-section .wp-core-ui div.wpforms-container-full input[type="time"],
.form-section .wp-core-ui div.wpforms-container-full input[type="url"],
.form-section .wp-core-ui div.wpforms-container-full input[type="week"],
.form-section div.wpforms-container-full select,
.form-section .wp-core-ui div.wpforms-container-full select,
.form-section div.wpforms-container-full select,
.form-section div.wpforms-container-full select:disabled,
.form-section .wp-core-ui div.wpforms-container-full select,
.form-section .wp-core-ui div.wpforms-container-full select:disabled {
    margin: 0 !important;
}
.form-section .basic-button,
.form-section div.wpforms-container-full input[type="submit"]:not(:hover):not(:active),
.form-section div.wpforms-container-full button[type="submit"]:not(:hover):not(:active),
.form-section div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active),
.form-section .wp-core-ui div.wpforms-container-full input[type="submit"]:not(:hover):not(:active),
.form-section .wp-core-ui div.wpforms-container-full button[type="submit"]:not(:hover):not(:active),
.form-section .wp-core-ui div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active),
.form-section div.wpforms-container-full input[type="submit"],
.form-section div.wpforms-container-full button[type="submit"],
.form-section div.wpforms-container-full .wpforms-page-button,
.form-section .wp-core-ui div.wpforms-container-full input[type="submit"],
.form-section .wp-core-ui div.wpforms-container-full button[type="submit"],
.form-section .wp-core-ui div.wpforms-container-full .wpforms-page-button {
    width: 100% !important;
}
.form-section .basic-button:hover,
.form-section div.wpforms-container-full input[type="submit"]:not(:hover):not(:active):hover,
.form-section div.wpforms-container-full button[type="submit"]:not(:hover):not(:active):hover,
.form-section div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active):hover,
.form-section .wp-core-ui div.wpforms-container-full input[type="submit"]:not(:hover):not(:active):hover,
.form-section .wp-core-ui div.wpforms-container-full button[type="submit"]:not(:hover):not(:active):hover,
.form-section .wp-core-ui div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active):hover,
.form-section div.wpforms-container-full input[type="submit"]:hover,
.form-section div.wpforms-container-full button[type="submit"]:hover,
.form-section div.wpforms-container-full .wpforms-page-button:hover,
.form-section .wp-core-ui div.wpforms-container-full input[type="submit"]:hover,
.form-section .wp-core-ui div.wpforms-container-full button[type="submit"]:hover,
.form-section .wp-core-ui div.wpforms-container-full .wpforms-page-button:hover {
    background: linear-gradient(90deg, #f08835 -9.35%, #ffb031 100.59%) !important;
}
.form-section div.wpforms-container-full:not(:empty) {
    max-width: 510px;
    margin: 0 auto !important;
}
.form-section div.wpforms-container-full .wpforms-form .wpforms-submit-container {
    margin-top: 24px;
}
.section.pb0 {
    padding-bottom: 0;
}
.grid-section {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 32px;
    column-gap: 32px;
    row-gap: 32px;
    text-align: center;
}
.grid-section.images{
    padding: 0;
}
.grid-section > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background-color: #c7e5e0;
    border-radius: 45px;
    padding: 40px 50px;
    transition: box-shadow 0.2s ease-in-out;
}
.grid-section > a.half {
    width: calc((100% - 32px) / 2);
}
.grid-section > a.third {
    width: calc((100% - 64px) / 3);
}
/*
*   START UPDATE: 23.02.2026
*/
.grid-section > a.forth {
    width: calc((100% - 96px) / 4);
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(240, 136, 53, 0.20);
    box-shadow: 0 2px 12px 8px rgba(240, 136, 53, 0.04);
    background-color:#ffb031 !important;
}
.grid-section > a.forth .grid-icon {
    margin: 0;
    width: 100%;
    height: 100%;
    flex: 1;
}
/*
*   END UPDATE: 23.02.2026
*/
.grid-section > a.forth .grid-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.grid-section > a:nth-child(3n + 2) {
    background-color: #fae9da;
}
.grid-section > a:nth-child(3n) {
    background-color: #e7e0d8;
}
.grid-section > a:hover {
    box-shadow: 0 4px 15px 0 rgba(52, 13, 7, 0.15);
}
.grid-section > a:hover .chevron-link:after {
    transform: translateX(3px);
}
.grid-section h3 {
    min-height: 60px;
}
.grid-section .grid-icon {
    height: 95px;
    margin: 0 0 45px;
}
.grid-section .grid-icon img {
    height: 100%;
    width: auto;
}
.service-section {
    overflow: hidden;
    margin: 0 0 100px;
}
.service-section .service-img {
    width: calc((100% - 80px) / 2);
    float: right;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 0 32px 80px;
}
.service-details {
    width: 100%;
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 80px;
    column-gap: 80px;
    row-gap: 40px;
    margin-top: 50px;
}
.service-details .box {
    width: 100%;
}
.service-details .service-details-title {
    display: block;
    font-size: 18px;
    line-height: 27px;
    color: #f08835;
    margin: 0 0 24px;
}
.service-details ul {
    font-size: 18px;
    line-height: 27px;
    font-style: italic;
}
.service-details ul li:before {
    content: ">";
    display: inline-block;
    vertical-align: top;
    color: #f08835;
    padding-right: 4px;
}
.service-blockquote {
    color: #fbf4ec;
    background: url(../images/sea-bg.jpg) center no-repeat;
    background-size: cover;
}
.service-blockquote blockquote:before {
    content: "";
    width: 40px;
    height: 33px;
    display: block;
    background: url(../images/quotes-icon.svg) center no-repeat;
    background-size: contain;
    margin: 0 auto 40px;
}
.title-case {
    color: #fbf4ec;
    background: rgba(79, 194, 197, 0.8);
    position: relative;
    padding: 140px 0 60px;
}
.title-case .case-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.title-case .case-bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.title-case .box {
    /* max-width: 670px; */
    width: 100%;
}
.title-case h1 {
    font-size: 48px;
    line-height: 58px;
    margin: 0 0 24px;
}
.title-case p {
    font-size: 18px;
    line-height: 27px;
}
.title-case p:last-of-type {
    margin: 0 0 24px;
}
.title-case dl {
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 8px;
    column-gap: 8px;
    margin: 0 0 16px;
}
.title-case dl:last-of-type {
    margin: 0;
}
.title-case dl dt {
    font-weight: 600;
}
.title-case dl dd {
    margin: 0;
}
.case-description {
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 130px;
    column-gap: 130px;
    row-gap: 30px;
}
.case-description.row-reverse {
    flex-direction: row-reverse;
}
.case-description h3 {
    width: calc((100% - 130px) / 2);
    border-top: 1px solid #f08835;
    padding-top: 16px;
    margin: 0;
}
.case-description .description-col {
    width: calc((100% - 130px) / 2);
}
.case-description .description-col p:last-of-type {
    margin: 0;
}
.technicians-box {
    font-size: 20px;
    line-height: 30px;
    color: #fbf4ec;
    background: url(../images/sea-bg.jpg) center no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 60px;
}
.technicians-box h3 {
    margin: 0 0 50px;
}
.technicians-box ul {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.technicians-box ul li {
    position: relative;
    padding-left: 20px;
}
.technicians-box ul li:before {
    content: "";
    width: 7px;
    height: 7px;
    background-color: #fbf4ec;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
}
.title-blog-box {
    height: 540px;
}
.title-hold {
    max-width: 650px;
    width: 100%;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    margin: 0 auto 80px;
}
.filters-menu {
    display: flex;
    /* white-space: nowrap;
    overflow-x: auto; */
    margin: 0 0 64px;
}
/* .filters-menu ul {
    display: flex;
    margin: 0 auto;
} */
.filters-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 auto;
    justify-content: center;
}
.filters-menu li.active a {
    border-color: #f08835;
    cursor: default;
}
.filters-menu a {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px;
    padding: 0 14px;
    text-decoration: none;
}
.blogs-box {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 32px;
    column-gap: 32px;
    row-gap: 64px;
}
.blogs-box .box {
    width: calc((100% - 64px) / 3);
    text-decoration: none;
}
.blogs-box .blog-img {
    /* height: 300px; */
    aspect-ratio: 1 / 1;
    height: auto;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 0 24px;
}
.blogs-box .blog-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 0.2s ease-in-out;
}
.blogs-box .blog-img:hover img {
    transform: scale(1.05);
}
.blogs-box .h4 {
    text-decoration: none;
}
.blogs-box .h4:hover {
    text-decoration: underline;
}
.blogs-box p:last-of-type {
    margin: 0 0 24px;
}
.blogs-box + .basic-button {
    width: 230px;
    margin: 64px auto 0 !important;
}
.post-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    -moz-column-gap: 8px;
    column-gap: 8px;
    row-gap: 8px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    margin: 0 0 8px;
}
.post-categories a {
    text-decoration: none;
}
.post-categories a:hover {
    text-decoration: underline;
}
.date {
    display: flex;
    align-items: center;
    -moz-column-gap: 8px;
    column-gap: 8px;
    font-size: 14px;
    line-height: 22px;
}
.title-blog-post {
    color: #fbf4ec;
    text-align: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 150px 0;
    position: relative;
}
.title-blog-post > figure {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.title-blog-post > figure img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.title-blog-post .category {
    display: block;
    font-weight: 600;
    margin: 0 0 16px;
}
.title-blog-post h1 {
    font-size: 48px;
    line-height: 58px;
    margin: 0 0 50px;
}
.title-blog-post .date {
    justify-content: center;
}
.post-section figure {
    margin: 64px 0;
}
.post-section figure figcaption {
    font-size: 14px;
    line-height: 22px;
    border-left: 2px solid #2f2827;
    padding-left: 8px;
    margin-top: 16px;
}
.post-section b {
    font-size: 18px;
    line-height: 27px;
}
.post-section blockquote {
    max-width: 100%;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    font-style: italic;
    text-align: left;
    border-left: 2px solid #2f2827;
    padding-left: 24px;
    margin: 32px 0;
}
.post-section p + h3 {
    margin-top: 40px;
}
.post-section .post-categories {
    justify-content: center;
    margin: 80px 0 0;
}
.post-section .post-categories a {
    display: block;
    color: #fbf4ec;
    background-color: #4fc2c5;
    border-radius: 4px;
    padding: 4px 8px;
    transition: background-color 0.2s ease-in-out;
}
.post-section .post-categories a:hover {
    text-decoration: none;
    background-color: #f08835;
}
.contact-us-section {
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 80px;
    column-gap: 80px;
    row-gap: 50px;
}
.contacts-info {
    width: calc((482 / 1312) * 100% - 40px);
}
.contacts-info .title-contacts {
    display: block;
    font-size: 18px;
    line-height: 27px;
    margin: 0 0 40px;
}
.contacts-info .map-hold {
    height: 300px;
    margin: 0 0 40px;
}
.contacts-info .map-hold iframe {
    width: 100%;
    height: 100%;
}
.contacts-form {
    width: calc((830 / 1312) * 100% - 40px);
}
.contacts-form .wpforms-field-container {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 24px;
}
.contacts-form .wpforms-field-container .wpforms-field {
    width: 100%;
}
.contacts-form .wpforms-field-container .w50 {
    width: calc((100% - 24px) / 2);
}
.contacts-form .wpforms-field-container .wpforms-field-select,
.contacts-form .wpforms-field-container .wpforms-field-checkbox {
    margin: 0 0 16px;
}
.contacts-form .wpforms-container .wpforms-form .wpforms-field-label {
    font-size: 16px;
    line-height: 25px;
    font-weight: normal;
    color: #2f2827;
    margin: 0 0 8px;
}
.contacts-form input[type="text"],
.contacts-form input[type="email"],
.contacts-form input[type="password"],
.contacts-form input[type="tel"],
.contacts-form textarea,
.contacts-form select,
.contacts-form div.wpforms-container-full input[type="date"],
.contacts-form div.wpforms-container-full input[type="datetime"],
.contacts-form div.wpforms-container-full input[type="datetime-local"],
.contacts-form div.wpforms-container-full input[type="email"],
.contacts-form div.wpforms-container-full input[type="month"],
.contacts-form div.wpforms-container-full input[type="number"],
.contacts-form div.wpforms-container-full input[type="password"],
.contacts-form div.wpforms-container-full input[type="range"],
.contacts-form div.wpforms-container-full input[type="search"],
.contacts-form div.wpforms-container-full input[type="tel"],
.contacts-form div.wpforms-container-full input[type="text"],
.contacts-form div.wpforms-container-full input[type="time"],
.contacts-form div.wpforms-container-full input[type="url"],
.contacts-form div.wpforms-container-full input[type="week"],
.contacts-form .wp-core-ui div.wpforms-container-full input[type="date"],
.contacts-form .wp-core-ui div.wpforms-container-full input[type="datetime"],
.contacts-form .wp-core-ui div.wpforms-container-full input[type="datetime-local"],
.contacts-form .wp-core-ui div.wpforms-container-full input[type="email"],
.contacts-form .wp-core-ui div.wpforms-container-full input[type="month"],
.contacts-form .wp-core-ui div.wpforms-container-full input[type="number"],
.contacts-form .wp-core-ui div.wpforms-container-full input[type="password"],
.contacts-form .wp-core-ui div.wpforms-container-full input[type="range"],
.contacts-form .wp-core-ui div.wpforms-container-full input[type="search"],
.contacts-form .wp-core-ui div.wpforms-container-full input[type="tel"],
.contacts-form .wp-core-ui div.wpforms-container-full input[type="text"],
.contacts-form .wp-core-ui div.wpforms-container-full input[type="time"],
.contacts-form .wp-core-ui div.wpforms-container-full input[type="url"],
.contacts-form .wp-core-ui div.wpforms-container-full input[type="week"],
.contacts-form div.wpforms-container-full select,
.contacts-form div.wpforms-container-full select:disabled,
.contacts-form .wp-core-ui div.wpforms-container-full select,
.contacts-form .wp-core-ui div.wpforms-container-full select:disabled {
    margin: 0 !important;
}
.contacts-form textarea,
.contacts-form div.wpforms-container-full textarea,
.contacts-form .wp-core-ui div.wpforms-container-full textarea {
    min-height: 180px !important;
}
.contacts-form div.wpforms-container-full .wpforms-form .wpforms-submit-container {
    margin-top: 24px;
}
.contacts-form .basic-button,
.contacts-form div.wpforms-container-full input[type="submit"]:not(:hover):not(:active),
.contacts-form div.wpforms-container-full button[type="submit"]:not(:hover):not(:active),
.contacts-form div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active),
.contacts-form .wp-core-ui div.wpforms-container-full input[type="submit"]:not(:hover):not(:active),
.contacts-form .wp-core-ui div.wpforms-container-full button[type="submit"]:not(:hover):not(:active),
.contacts-form .wp-core-ui div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active),
.contacts-form div.wpforms-container-full input[type="submit"],
.contacts-form div.wpforms-container-full button[type="submit"],
.contacts-form div.wpforms-container-full .wpforms-page-button,
.contacts-form .wp-core-ui div.wpforms-container-full input[type="submit"],
.contacts-form .wp-core-ui div.wpforms-container-full button[type="submit"],
.contacts-form .wp-core-ui div.wpforms-container-full .wpforms-page-button {
    width: 180px;
    color: #fbf4ec !important;
    background-color: #4fc2c5 !important;
}
.contacts-form .basic-button:hover,
.contacts-form div.wpforms-container-full input[type="submit"]:not(:hover):not(:active):hover,
.contacts-form div.wpforms-container-full button[type="submit"]:not(:hover):not(:active):hover,
.contacts-form div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active):hover,
.contacts-form .wp-core-ui div.wpforms-container-full input[type="submit"]:not(:hover):not(:active):hover,
.contacts-form .wp-core-ui div.wpforms-container-full button[type="submit"]:not(:hover):not(:active):hover,
.contacts-form .wp-core-ui div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active):hover,
.contacts-form div.wpforms-container-full input[type="submit"]:hover,
.contacts-form div.wpforms-container-full button[type="submit"]:hover,
.contacts-form div.wpforms-container-full .wpforms-page-button:hover,
.contacts-form .wp-core-ui div.wpforms-container-full input[type="submit"]:hover,
.contacts-form .wp-core-ui div.wpforms-container-full button[type="submit"]:hover,
.contacts-form .wp-core-ui div.wpforms-container-full .wpforms-page-button:hover {
    background-color: #4fc2c5 !important;
}
.navigation {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    font-size: 14px;
    line-height: 22px;
}
.navigation .page-numbers {
    text-decoration: none;
    width: 30px;
    min-width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #f08835;
    border-radius: 50%;
}
.navigation .page-numbers.prev,
.navigation .page-numbers.next {
    width: auto;
    min-width: auto;
    height: auto;
    border: none;
    border-radius: 0;
}
.navigation .page-numbers.current {
    color: #fbf4ec;
    background-color: #f08835;
}
.pricing-plan-section h2 {
    text-align: center;
}
.pricing-plan-section > p {
    font-size: 18px;
    line-height: 27px;
    text-align: center;
}
.pricing-plan-section > .basic-button {
    width: 220px;
    margin: 0 auto !important;
}
.pricing-plan-box {
    max-width: 1032px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 32px;
    column-gap: 32px;
    row-gap: 16px;
    margin: 80px auto;
}
.pricing-plan-box .box {
    width: calc((100% - 32px) / 2);
    background-color: #c7e5e0;
    border-radius: 45px;
    padding: 32px;
}
.pricing-plan-box .box:nth-child(2n) {
    background-color: #fae9da;
}
.pricing-plan-box h3 {
    font-size: 18px;
    line-height: 27px;
    margin: 0;
}
.pricing-plan-box h3 + p {
    margin: 4px 0 0;
}
.pricing-plan-box hr {
    height: 1px;
    background-color: #2f2827;
    border: none;
    margin: 32px 0;
}
.pricing-plan-box .price {
    display: block;
    font-size: 56px;
    line-height: 60px;
}
.pricing-plan-box .price sub {
    font-size: 30px;
    line-height: 38px;
    vertical-align: bottom;
}
.pricing-plan-box .price + p {
    margin: 8px 0 0;
}
.pricing-plan-box .basic-button {
    margin: 32px 0 0 !important;
}
.pricing-plan-box ul {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.pricing-plan-box ul li {
    position: relative;
    padding-left: 40px;
}
.pricing-plan-box ul li:before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../images/check-icon-dark.svg) center no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
}
@media only screen and (max-width: 1344px) {
    .experience-slider {
        padding: 0 48px;
    }
    .experience-slider .slide {
        height: 200px;
        padding: 30px 0 30px 30px;
    }
    .experience-slider .experience-icon {
        height: 100px;
    }
    .driving-success-section .nick-photo .ellipse01 {
        width: 350px;
        min-width: 350px;
        height: 350px;
    }
    .driving-success-section .nick-photo .photo {
        width: 330px;
        min-width: 330px;
        height: 330px;
    }
    .driving-success-section .nick-photo .ellipse02 {
        width: 40px;
        height: 40px;
        right: 0;
    }
}
@media only screen and (max-width: 1023px) {
    html.hidden,
    body.hidden {
        overflow: hidden;
    }
    .what-makes-us-different-section,
    blockquote,
    .qualifications-section p,
    .driving-success-section p,
    .title-with-text p,
    .service-details ul,
    .title-case p,
    .technicians-box,
    .title-hold,
    .post-section b,
    .post-section blockquote,
    .about-me-section,
    .pricing-plan-section > p {
        font-size: 16px;
        line-height: 25px;
    }
    h1,
    h2,
    .home-page h2,
    .driving-success-values dt,
    .title-case h1,
    .title-blog-post h1,
    .pricing-plan-box .price {
        font-size: 36px;
        line-height: 43px;
    }
    h3,
    .pricing-plan-box .price sub {
        font-size: 24px;
        line-height: 34px;
    }
    h2,
    .experience-section h2,
    .title-with-text,
    .job-section .job-title,
    .technicians-box h3,
    .title-blog-post h1 {
        margin: 0 0 30px;
    }
    h3 {
        margin: 0 0 15px;
    }
    .title-box h1 {
        padding: 10px 20px;
    }
    .section,
    .form-section,
    .breadcrumbs,
    .title-case,
    .title-blog-post {
        padding: 50px 0;
    }
    .home-page-header {
        height: 400px;
    }
    .home-page-header h1 {
        flex-direction: column;
    }
    .home-page-header mark {
        height: 50px;
    }
    .what-makes-us-different-section {
        -moz-column-gap: 16px;
        column-gap: 16px;
    }
    .what-makes-us-different-section .ellipse01 {
        width: 56px;
        height: 56px;
        top: 20px;
        right: auto;
        left: -15px;
    }
    .what-makes-us-different-section .ellipse02 {
        width: 105px;
        height: 105px;
        top: 20px;
        right: -50px;
    }
    .what-makes-us-different-section .what-makes-us-different-info {
        max-width: calc(60% - 8px);
    }
    .what-makes-us-different-section .what-makes-us-different-img {
        max-width: calc(40% - 8px);
    }
    .what-makes-us-different-section .advantages-hold {
        -moz-column-gap: 10px;
        column-gap: 10px;
        font-size: 14px;
        line-height: 22px;
        margin-top: 40px;
    }
    .what-makes-us-different-section .advantages-hold .col {
        row-gap: 10px;
    }
    .what-makes-us-different-section .advantages-hold .box {
        -moz-column-gap: 10px;
        column-gap: 10px;
        padding: 10px;
    }
    .what-makes-us-different-section .advantages-hold .advantage-icon {
        width: 42px;
        min-width: 42px;
        height: 42px;
    }
    .qualifications-section {
        padding: 40px 0;
        margin-top: 40px;
    }
    .qualifications-section:before {
        height: 40px;
    }
    .qualifications-box {
        -moz-column-gap: 20px;
        column-gap: 20px;
        row-gap: 20px;
    }
    .qualifications-box .qualification-item {
        width: calc((100% - 80px) / 5);
        height: 80px;
    }
    .qualifications-box .qualification-item img {
        max-width: 80%;
        max-height: 80%;
    }
    .experience-slider {
        padding: 0;
    }
    .experience-slider .slide {
        height: 150px;
        border-radius: 16px;
        padding: 16px 0 16px 16px;
    }
    .experience-slider .experience-icon {
        height: 50px;
    }
    .case-studies-section .title-with-button {
        margin: 0 0 30px;
    }
    /* .cases-box {
        flex-wrap: nowrap;
        -moz-column-gap: 16px;
        column-gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
    } */
    .cases-box {
        flex-wrap: wrap;
        column-gap: 32px;
    }
    .cases-box + .basic-button {
        margin-top: 50px;
    }
    /* .case-item {
        width: 290px;
        min-width: 290px;
    } */
    .case-item {
        width: calc((100% - 32px) / 2);
        min-width: unset;
    }
    .case-item figure {
        /* height: 240px; */
        height: auto;
    }
    .reviews-section {
        margin-top: 40px;
    }
    .reviews-section:before {
        height: 40px;
    }
    .reviews-slider {
        margin: 0 0 50px;
    }
    .reviews-slider .slick-dots {
        bottom: -50px;
    }
    .title-box {
        height: 200px;
    }
    .qualifications-section .container,
    .driving-success-section {
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
    .qualifications-section .container .col,
    .driving-success-section .col {
        width: calc((100% - 20px) / 2);
    }
    .qualifications-section .container .nick-photo,
    .driving-success-section .nick-photo {
        padding: 0;
    }
    .qualifications-section .container .nick-photo .ellipse01,
    .driving-success-section .nick-photo .ellipse01 {
        width: 290px;
        min-width: 290px;
        height: 290px;
        margin-right: -200px;
    }
    .qualifications-section .container .nick-photo .photo,
    .driving-success-section .nick-photo .photo {
        width: 270px;
        min-width: 270px;
        height: 270px;
    }
    .qualifications-section .container .nick-photo .ellipse02,
    .driving-success-section .nick-photo .ellipse02 {
        width: 40px;
        height: 40px;
        right: 0;
    }
    .about-me-section {
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
    .about-me-section .box {
        width: calc((100% - 20px) / 2);
    }
    .about-me-section .about-me-img {
        width: calc((100% - 20px) / 2);
        border-radius: 16px;
    }
    .about-me-section p {
        margin: 0 0 16px;
    }
    .title-with-text {
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
    .title-with-text h2,
    .title-with-text p {
        width: calc((100% - 20px) / 2);
    }
    .education-box {
        -moz-column-gap: 16px;
        column-gap: 16px;
        row-gap: 40px;
    }
    .education-box .box {
        width: calc((100% - 32px) / 3);
    }
    .job-section .job-title {
        -moz-column-gap: 16px;
        column-gap: 16px;
    }
    .job-section .job-title h2 {
        width: calc((100% - 16px) / 2);
    }
    .job-section .job-title .job-details {
        width: calc((100% - 16px) / 2);
        -moz-column-gap: 16px;
        column-gap: 16px;
    }
    .job-section .job-title .job-details dl {
        width: calc((100% - 16px) / 2);
    }
    .job-section .job-description-box {
        -moz-column-gap: 16px;
        column-gap: 16px;
    }
    .job-section .job-description-box .job-img,
    .job-section .job-description-box .job-description-col {
        width: calc((100% - 16px) / 2);
    }
    .form-section h2 + p {
        margin: -10px 0 30px;
    }
    .form-section .form-box,
    .form-section .wpforms-field-container {
        padding: 0;
    }
    .grid-section {
        -moz-column-gap: 16px;
        column-gap: 16px;
        row-gap: 16px;
    }
    .grid-section > a {
        border-radius: 16px;
        padding: 20px;
    }
    .grid-section > a.half,
    .grid-section > a.third,
    .grid-section > a.forth {
        width: calc((100% - 16px) / 2);
    }
    .grid-section h3 {
        min-height: 68px;
        margin: 0 0 20px;
    }
    .grid-section .grid-icon {
        height: 80px;
        margin: 0 0 20px;
    }
    .service-section {
        margin: 0 0 50px;
    }
    .service-section .service-img {
        width: calc((100% - 20px) / 2);
        margin: 0 0 20px 20px;
    }
    .service-details {
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
    .service-blockquote blockquote::before {
        margin-bottom: 20px;
    }
    .case-description {
        flex-direction: column;
    }
    .case-description.row-reverse {
        flex-direction: column;
    }
    .case-description h3,
    .case-description .description-col {
        width: 100%;
    }
    .technicians-box {
        padding: 50px 16px;
    }
    .more-case-section .title-with-arrows {
        margin: 0 0 30px;
    }
    .more-case-section > .basic-button {
        margin-top: 50px !important;
    }
    .more-case-slider {
        margin-right: -16px;
    }
    .more-case-slider .slick-dots {
        margin: 40px 16px 0 0;
    }
    .more-case-slider .case-item {
        min-width: auto;
        margin-right: 16px;
    }
    .title-hold {
        margin: 0 auto 30px;
    }
    .title-hold h2 {
        margin: 0 0 20px;
    }
    .blogs-box {
        -moz-column-gap: 16px;
        column-gap: 16px;
        row-gap: 40px;
    }
    .blogs-box .box {
        width: calc((100% - 32px) / 3);
    }
    .blogs-box .blog-img {
        /* height: 240px; */
        width: 100%;
    }
    .filters-menu {
        margin: 0 0 30px;
    }
    .post-section figure {
        margin: 30px 0;
    }
    .post-section blockquote {
        padding-left: 18px;
        margin: 30px 0;
    }
    .post-section .post-categories {
        margin: 50px 0 0;
    }
    .blogs-box + .basic-button {
        margin-top: 50px !important;
    }
    .contact-us-section {
        flex-direction: column;
    }
    .contacts-info {
        width: 100%;
    }
    .contacts-info .title-contacts {
        margin: 0 0 30px;
    }
    .contacts-form {
        width: 100%;
    }
    .contacts-form .basic-button,
    .contacts-form div.wpforms-container-full input[type="submit"]:not(:hover):not(:active),
    .contacts-form div.wpforms-container-full button[type="submit"]:not(:hover):not(:active),
    .contacts-form div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active),
    .contacts-form .wp-core-ui div.wpforms-container-full input[type="submit"]:not(:hover):not(:active),
    .contacts-form .wp-core-ui div.wpforms-container-full button[type="submit"]:not(:hover):not(:active),
    .contacts-form .wp-core-ui div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active),
    .contacts-form div.wpforms-container-full input[type="submit"],
    .contacts-form div.wpforms-container-full button[type="submit"],
    .contacts-form div.wpforms-container-full .wpforms-page-button,
    .contacts-form .wp-core-ui div.wpforms-container-full input[type="submit"],
    .contacts-form .wp-core-ui div.wpforms-container-full button[type="submit"],
    .contacts-form .wp-core-ui div.wpforms-container-full .wpforms-page-button {
        margin: 0 auto !important;
    }
    .pricing-plan-section h2 + p {
        margin-top: -10px;
    }
    .pricing-plan-box {
        -moz-column-gap: 16px;
        column-gap: 16px;
        margin: 50px auto;
    }
    .pricing-plan-box .box {
        width: calc((100% - 16px) / 2);
        border-radius: 16px;
        padding: 20px;
    }
    .pricing-plan-box hr {
        margin: 20px 0;
    }
    .pricing-plan-box .basic-button {
        margin: 20px 0 0 !important;
    }
    .pricing-plan-box ul {
        row-gap: 10px;
    }
    .pricing-plan-box ul li {
        padding-left: 30px;
    }
}
@media only screen and (max-width: 767px) {
    .cases-box{
        row-gap: 35px;
    }
    .case-item {
        width: 100%;
    }
    .chevron-link em {
        display: none;
    }
    .what-makes-us-different-section {
        flex-direction: column;
    }
    .what-makes-us-different-section .what-makes-us-different-info {
        max-width: 100%;
    }
    .what-makes-us-different-section h2 {
        max-width: calc(100% - 220px);
    }
    .what-makes-us-different-section .advantages-hold {
        flex-direction: column;
    }
    .what-makes-us-different-section .advantages-hold .col {
        width: 100%;
        flex-direction: row;
    }
    .what-makes-us-different-section .advantages-hold .col .box {
        width: calc((100% - 10px) / 2);
        flex-direction: column;
        align-items: flex-start;
    }
    .what-makes-us-different-section .advantages-hold .col .box .advantage-icon {
        margin: 0 auto;
    }
    .what-makes-us-different-section .advantages-hold > .box {
        width: 100%;
    }
    .what-makes-us-different-section .what-makes-us-different-img {
        max-width: 220px;
        position: absolute;
        top: 50px;
        right: -50px;
    }
    .qualifications-box .qualification-item {
        width: calc((100% - 40px) / 3);
    }
    .what-we-do-box .box {
        width: 100%;
    }
    .companies-box {
        -moz-column-gap: 20px;
        column-gap: 20px;
        row-gap: 20px;
    }
    .companies-box .logo {
        height: 40px;
        max-width: 100px;
    }
    .experience-slider {
        margin: 0 -5px;
    }
    .experience-slider .slide {
        height: auto;
        flex-direction: column;
        padding: 16px;
        margin: 0 5px;
    }
    .experience-slider .experience-icon {
        margin: 0 0 5px;
    }
    .experience-slider h3 {
        font-size: 16px;
        line-height: 25px;
        margin: 0 0 10px;
    }
    .case-studies-section .title-with-button {
        flex-direction: column;
    }
    .reviews-slider {
        padding: 0;
    }
    .reviews-slider .review-footer {
        flex-direction: column;
        text-align: center;
    }
    .reviews-slider .review-footer hr {
        width: 60px;
        height: 1px;
    }
    .reviews-slider .author-review {
        flex-direction: column;
    }
    .qualifications-section .container,
    .driving-success-section {
        flex-direction: column;
    }
    .qualifications-section .container .col,
    .driving-success-section .col {
        width: 100%;
    }
    .qualifications-section .container .nick-photo,
    .driving-success-section .nick-photo {
        justify-content: center;
    }
    .about-me-section {
        flex-direction: column;
    }
    .about-me-section .box,
    .about-me-section .about-me-img {
        width: 100%;
    }
    .title-with-text {
        flex-direction: column;
    }
    .title-with-text h2,
    .title-with-text p {
        width: 100%;
    }
    .education-box .box {
        width: 100%;
    }
    .education-box .certificate-img {
        height: auto;
    }
    .banner-box {
        max-width: inherit;
        width: auto;
        border-radius: 0;
        margin: 0 -16px;
    }
    .job-section:nth-child(2n) .job-description-box {
        flex-direction: column;
    }
    .job-section .job-title {
        flex-direction: column;
    }
    .job-section .job-title h2,
    .job-section .job-title .job-details {
        width: 100%;
    }
    .job-section .job-description-box {
        flex-direction: column;
    }
    .job-section .job-description-box .job-img,
    .job-section .job-description-box .job-description-col {
        width: 100%;
    }
    .form-section .form-box .half,
    .form-section .form-box .wpforms-field.wpforms-field-name,
    .form-section .form-box .wpforms-field.wpforms-field-email,
    .form-section .wpforms-field-container .half,
    .form-section .wpforms-field-container .wpforms-field.wpforms-field-name,
    .form-section .wpforms-field-container .wpforms-field.wpforms-field-email {
        width: 100%;
    }
    .grid-section > a.half,
    .grid-section > a.third{
        width: 100%;
    }
    .grid-section h3 {
        min-height: auto;
    }
    .grid-section h3 br {
        display: none;
    }
    .service-section .service-img {
        float: none;
        width: 100%;
        margin: 0 0 40px;
    }
    .service-details {
        flex-wrap: wrap;
    }
    .more-case-section .more-case-arrows {
        display: none;
    }
    .blogs-box .box {
        width: 100%;
    }
    .contacts-form .wpforms-field-container .w50 {
        width: 100%;
    }
    .pricing-plan-box .box {
        width: 100%;
    }
}

/*# sourceMappingURL=../maps/all.css.map */
