* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Josefin Sans', sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

body {
    background: #f1f5f6;
}


/* ==scrool tracker== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #efae12;
}

::-webkit-scrollbar-thumb {
    background: #bc2328;
}

/* ==scrool tracker== */


/* ==back to top== */
#button {
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 10px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    text-decoration: none;
    cursor: pointer;
    margin: 30px 10px;
}

#button.show {
    opacity: 1;
    visibility: visible;
}


/* ==back to top== */

/* ==cursor hover== */
.cursor {
    position: fixed;
    width: 50px;
    height: 50px;
    background: transparent;
    opacity: 0.5;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .1s;
    z-index: 999999;
}

.cursor2 {
    position: fixed;
    width: 15px;
    height: 15px;
    border: 1px solid #ff0000;
    border-radius: 50%;
    background: #bc2328;
    opacity: 0.5;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .15s;
    z-index: 999999;
}

.loader_bg:hover~.cursor {
    transform: translate(-50%, -50%);
    background-color: #c6c6c6;
    opacity: .5;
}

.loader_bg:hover~.cursor2 {
    opacity: 0;
}

/* ==cursor hover== */



/* ==pre loader== */
.loader_bg {
    position: fixed;
    z-index: 99999;
    background: #000000;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.loader_bg img {
    color: #000;
}

/* ==pre loader== */

/* navbar-start */

.navvv-cont {
    background: #000;
    position: fixed;
    width: 100%;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0.8%;
    z-index: 1000;
    transition: all .35s ease;
}

.logo img {
    width: 190px;
    height: 110px;
    padding-top: 10px;
}

.navbar {
    display: flex;
    align-items: center;
    margin-bottom: 0rem;
}

.navbar a {
    font-size: 18px;
    color: #fff;
    padding: 10px 18px;
    font-weight: 700;
    transition: all .35s ease;
    text-decoration: none;
}

.navbar a:hover {
    color: #ed1b24;
}

.navbar a.cart {
    font-size: 30px;
}

#menu-icon {
    color: #ed1b24;
    font-size: 40px;
    z-index: 10001;
    cursor: pointer;
    display: none;
}

.top-btn-one a {
    display: none;
    background: transparent;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid #ed1b24;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
}

.top-btn-off a {
    display: inline-block;
    background: transparent;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid #ed1b24;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
}


.top-btn-one a:hover {
    box-shadow: 0px 15px 22px rgb(214 32 36 / 55%);
    transition: all .25s ease;
}

.top-btn-off a:hover {
    box-shadow: 0px 15px 22px rgb(214 32 36 / 55%);
    transition: all .25s ease;
}

.navvv-cont ul li::after {
    content: "";
    width: 0%;
    height: 2px;
    background: orangered;
    display: block;
    transition: 0.5s;
    margin: auto;
}

.navvv-cont ul li:hover::after {
    width: 100%;
}

/* navbar-end */



/* whatsapp */
.rotating-icon a {
    color: #ffffff;
    font-size: 30px;
    position: fixed;
    cursor: pointer;
    height: 49px;
    left: 10px;
    top: 20%;
    width: 50px;
    padding-top: 5px;
    padding-left: 11px;
    background: #5bd066 none repeat scroll 0 0;
    z-index: 99;
}

.rotating-icon a:hover {
    animation: flip 0.5s linear;
}

@keyframes flip {

    100% {
        transform: rotate(360deg);
    }
}

.rotating-icon a:hover {
    color: #fff;
}

/* whatsapp */



/* home-start */
.pagination {
    position: absolute !important;
    width: 100%;
    text-align: center;
    right: 0;
    padding: 0 !important;
    bottom: 30px;
    z-index: 999;
    display: none !important;
}

.pagination__item {
    cursor: pointer;
    display: none !important;
    white-space: nowrap;
    font-size: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    margin: 0 5px;
    transition: 0.2s ease-in-out;
}

.pagination__item.is-current,
.pagination__item:hover {
    background-color: #fff;
}

/* .container {
    position: relative;
    margin: 0 auto;
}

@media (max-width: 699px) {
    .container {
        padding-right: 40px;
        padding-left: 40px;
    }
}

@media (min-width: 700px) and (max-width: 1599px) {
    .container {
        padding-right: 7.5rem;
        padding-left: 7.5rem;
        max-width: 140rem;
    }
}

@media (min-width: 1600px) {
    .container {
        padding-right: 9.5625rem;
        padding-left: 9.5625rem;
        max-width: 144.125rem;
    }
} */

.background-absolute {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-size: cover;
}

.slideshow {
    position: relative;
    color: #fff;
    background-color: #1e1e22;
    overflow: hidden;
    /*ye important h */
    height: 88vh;
    min-height: 400px;
    margin-top: 110px;

}

.slideshow__slide {
    visibility: hidden;
    transition: visibility 0s 1.7s;
}

.slideshow__slide.is-current {
    visibility: visible;
    transition-delay: 0s;
}

@media (max-width: 699px) {
    .slideshow .slideshow__slide {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
}

@media (min-width: 700px) {
    .slideshow .slideshow__slide {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
}

.slideshow__slide-background-load-wrap {
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate3d(0, 100%, 0);
    /* overflow: hidden; */
}

.is-loaded .slideshow__slide-background-load-wrap {
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
}

.slideshow__slide.is-prev .slideshow__slide-background-parallax,
.slideshow__slide.is-next .slideshow__slide-background-parallax {
    transform: none !important;
}

.slideshow__slide.is-prev-section .slideshow__slide-background-parallax,
.slideshow__slide.is-next-section .slideshow__slide-background-parallax {
    transform: none !important;
}

.slideshow__slide-background-load {
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate3d(0, -50%, 0);
}

.is-loaded .slideshow__slide-background-load {
    transform: translate3d(0, 0, 0);
}

.slideshow__slide-background-wrap {
    transition: -webkit-transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s, -webkit-transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slideshow__slide.is-prev .slideshow__slide-background-wrap {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.slideshow__slide.is-next .slideshow__slide-background-wrap {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.slideshow__slide.is-prev-section .slideshow__slide-background-wrap {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    transition: none;
}

.slideshow__slide.is-next-section .slideshow__slide-background-wrap {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    transition: none;
}

.slideshow__slide-background {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
    transform: scale(1);
    /* overflow: hidden; */
}

.slideshow__slide.is-prev .slideshow__slide-background,
.slideshow__slide.is-next .slideshow__slide-background {
    transform: scale(0.5);
    transition-delay: 0s;
}

.slideshow__slide.is-prev-section .slideshow__slide-background,
.slideshow__slide.is-next-section .slideshow__slide-background {
    transform: scale(0.5);
    transition-delay: 0s;
    transition: none;
}

.slideshow__slide-image-wrap {
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
    transform: translate3d(0, 0, 0);
}

.slideshow__slide.is-prev .slideshow__slide-image-wrap {
    transform: translate3d(0, 50%, 0);
}

.slideshow__slide-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
    transform: scale(1);
}

.slideshow__slide.is-prev .slideshow__slide-image,
.slideshow__slide.is-next .slideshow__slide-image {
    transform: scale(1.25);
    transition-delay: 0s;
}

.slideshow__slide.is-prev-section .slideshow__slide-image,
.slideshow__slide.is-next-section .slideshow__slide-image {
    transform: scale(1.25);
    transition-delay: 0s;
    transition: none;
}

.slideshow__slide-image::before,
.slideshow__slide-image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.35;
}

.slideshow__slide-image::before {
    background-color: #1e1e22;
}

.slideshow__slide-image::after {
    background: linear-gradient(to bottom, transparent 0%, #1e1e22 100%);
}

.slideshow__slide.is-prev .slideshow_container,
.slideshow__slide.is-next .slideshow_container {
    transform: none !important;
}

.slideshow__slide.is-prev-section .slideshow_container,
.slideshow__slide.is-next-section .slideshow_container {
    transform: none !important;
}

.slideshow__slide-caption-text {
    position: relative;
    height: 100%;
    padding-top: 33vh;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transform: translate3d(0, 0, 0);
}

.slideshow__slide.is-prev .slideshow__slide-caption-text {
    transform: translate3d(0, -100%, 0);
}

.slideshow__slide.is-next .slideshow__slide-caption-text {
    transform: translate3d(0, 100%, 0);
}

.slideshow__slide.is-prev-section .slideshow__slide-caption-text {
    transform: translate3d(0, -100%, 0);
    transition: none;
}

.slideshow__slide.is-next-section .slideshow__slide-caption-text {
    transform: translate3d(0, 100%, 0);
    transition: none;
}

.slideshow__slide-caption {
    position: relative;
    height: 100%;
    transform: translate3d(0, 100%, 0);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.is-loaded .slideshow__slide-caption {
    transform: translate3d(0, 0, 0);
}

.slideshow__slide-caption-title {
    line-height: 1;
}

@media (max-height: 500px) {
    .slideshow__slide-caption-title {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 699px) {
    .slideshow__slide-caption-title {
        font-size: 40px;
        margin-bottom: 150px;
    }

    .slideshow.-full .slideshow__slide-caption-title {
        margin-bottom: 30px;
    }
}

@media (min-width: 700px) {
    .slideshow__slide-caption-title {
        font-size: 5.625rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 700px) and (max-width: 749px) {
    .slideshow__slide-caption-title {
        font-size: 4.375rem;
    }
}

@media (min-width: 1600px) {
    .slideshow__slide-caption-title {
        font-size: 6.25rem;
    }
}

.slideshow__slide-caption-title.-full {
    width: 100%;
}

.slideshow__slide-caption-subtitle {
    display: inline-block;
    padding: 1.875rem 0;
}

.slideshow__slide-caption-subtitle.-load {
    transition: -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    -webkit-transform: translate3d(0, 3.75rem, 0);
    transform: translate3d(0, 3.75rem, 0);
}

.is-loaded .slideshow__slide-caption-subtitle.-load {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

body[data-route-option="prev-section"] .slideshow__slide-caption-subtitle.-load,
body[data-route-option="next-section"] .slideshow__slide-caption-subtitle.-load {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slideshow__slide-caption-subtitle-label {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    display: inline-block;
}

.o-hsub.-link:hover .slideshow__slide-caption-subtitle-label,
.o-hsub-wrap:hover .slideshow__slide-caption-subtitle-label {
    transform: translateX(20px);
}

/* OLD */
.c-header-home_heading {
    line-height: 1;
}

@media (max-height: 500px) {
    .c-header-home_heading {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 699px) {
    .c-header-home_heading {
        font-size: 40px;
        margin-bottom: 150px;
    }

    .c-header-home.-full .c-header-home_heading {
        margin-bottom: 30px;
    }
}

@media (min-width: 700px) {
    .c-header-home_heading {
        font-size: 5.625rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 700px) and (max-width: 749px) {
    .c-header-home_heading {
        font-size: 4.375rem;
    }
}

@media (min-width: 1600px) {
    .c-header-home_heading {
        font-size: 6.25rem;
    }
}

.c-header-home_heading.-full {
    width: 100%;
}

.c-header-home_subheading {
    display: inline-block;
    padding: 1.875rem 0;
}

.c-header-home_subheading.-load {
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transform: translate3d(0, 3.75rem, 0);
}

.is-loaded .c-header-home_subheading.-load {
    transform: translate3d(0, 0, 0);
}

body[data-route-option="prev-section"] .c-header-home_subheading.-load,
body[data-route-option="next-section"] .c-header-home_subheading.-load {
    transform: translate3d(0, 0, 0);
}

.c-header-home_footer {
    z-index: 3;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

.c-header-home_controls,
.c-header-home_buttons {
    margin-left: 0;
    letter-spacing: normal;
    font-size: 0;
    transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

@media (max-width: 699px) {

    .c-header-home_controls,
    .c-header-home_buttons {
        padding-bottom: 40px;
    }
}

@media (min-width: 700px) {

    .c-header-home_controls,
    .c-header-home_buttons {
        padding-bottom: 5.625rem;
    }
}

@media (min-width: 700px) and (max-width: 749px) {

    .c-header-home_controls,
    .c-header-home_buttons {
        padding-bottom: 3.75rem;
    }
}

.is-loaded .c-header-home_controls,
.is-loaded .c-header-home_buttons {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

body[data-route-option="prev-section"] .c-header-home_controls,
body[data-route-option="prev-section"] .c-header-home_buttons,
body[data-route-option="next-section"] .c-header-home_controls,
body[data-route-option="next-section"] .c-header-home_buttons {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.c-header-home_controls {
    transition-delay: 0.65s;
}

@media (min-width: 700px) {
    .c-header-home_controls {
        float: left;
    }
}

.c-header-home_buttons {
    transition-delay: 0.75s;
}

@media (max-width: 699px) {
    .c-header-home_buttons {
        margin-left: -20px;
        margin-right: -20px;
    }
}

@media (min-width: 1000px) {
    .c-header-home_buttons {
        float: right;
    }
}

@media (max-width: 699px) {
    .c-header-home_button {
        width: 50% !important;
    }
}

@media (min-width: 700px) {
    .c-header-home_button {
        width: 15.625rem;
    }
}

button,
.c-header-filters_button,
.o-button {
    display: inline-block;
    overflow: visible;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    background: none;
    color: inherit;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    font: inherit;
    line-height: normal;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

button:hover,
.c-header-filters_button:hover,
.o-button:hover {
    text-decoration: none;
}

@media (min-width: 1200px) {
    body {
        /* overflow: hidden; */
        height: 100%;
    }
}

@media (min-width: 1200px) {
    .o-scroll {
        height: 100%;
    }
}

::-moz-selection {
    background: #0084c0;
    color: #fff;
}

::selection {
    background: #0084c0;
    color: #fff;
}

img,
svg {
    max-width: 100%;
}

a,
.o-link {
    color: #1a0dab;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover,
.o-link:hover {
    color: #13097c;
}

a.-normal,
.o-link.-normal {
    color: currentColor;
    text-decoration: none;
}

a.-normal:hover,
.o-link.-normal:hover {
    text-decoration: underline;
}

a.-blue:hover,
.o-link.-blue:hover {
    text-decoration: none;
    color: #0084c0;
}

a.-hover,
.o-link.-hover {
    position: relative;
    text-decoration: none;
    color: #fff;
}

a.-hover::after,
.o-link.-hover::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 0;
    left: 0;
    border-bottom: 1px solid;
    transform: scaleX(0);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center left;
}

a.-hover:hover::after,
.o-link.-hover:hover::after {
    transform: scaleX(1);
}

p {
    margin: 0;
}

.o-wrap {
    /* overflow: hidden; */
}

.o-page.-anim {
    transform: translate3d(0, 9.375rem, 0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.is-loaded .o-page.-anim {
    transform: translate3d(0, 0, 0);
}

.o-barba,
.o-barba_container {
    height: 100%;
}

strong {
    font-weight: 700;
}

.js-parallax {
    transform: translateZ(0);
    will-change: transform;
}

.scroll-content {
    /* overflow: hidden; */
}

.o-blockquote.-nomargin {
    margin: 0;
}

.o-action-link {
    display: block;
    padding-top: 12.8125rem;
    padding-bottom: 7.5rem;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 699px) {
    .o-action-link {
        font-size: 40px;
        padding-top: 120px;
    }
}

@media (max-width: 1199px) {
    .o-action-link {
        color: #1e1e22;
    }
}

@media (min-width: 700px) {
    .o-action-link {
        font-size: 5.625rem;
    }
}

@media (min-width: 1200px) {
    .o-action-link {
        color: #fff;
    }
}

.o-action-link:hover {
    color: #fff;
}

.o-action-link_label {
    display: inline-block;
    position: relative;
}

.o-action-link_label::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    border-bottom: 0.1875rem solid;
    transform: scaleX(0);
    transform-origin: center left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-action-link:hover .o-action-link_label::after {
    transform: scaleX(1);
}

.o-h,
h1,
.o-h1,
h2,
.o-h2,
h3,
.o-h3,
h4,
.o-h4,
h5,
.o-h5,
h6,
.o-h6 {
    font-weight: 700;
    margin-top: 0;
    line-height: 1.1;
}

@media (max-width: 699px) {

    h1,
    .o-h1 {
        font-size: 26px;
    }
}

@media (min-width: 700px) {

    h1,
    .o-h1 {
        font-size: 60px;
    }
}

@media (min-width: 1600px) {

    h1,
    .o-h1 {
        font-size: 4.375rem;
    }
}

@media (max-width: 1599px) {

    h2,
    .o-h2 {
        font-size: 1.5625rem;
    }
}

@media (min-width: 1600px) {

    h2,
    .o-h2 {
        font-size: 2.25rem;
    }
}

h3,
.o-h3 {
    font-size: 1.5625rem;
}

h4,
.o-h4 {
    font-size: 1rem;
}

h5,
.o-h5 {
    font-size: 0.8125rem;
}

h6,
.o-h6 {
    font-size: 0.6875rem;
}

.o-hsub {
    font-size: 0.75rem;
    padding: 1.25rem 0;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

.o-hsub::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    border-bottom: 1px solid;
    width: 1.5rem;
    background-color: #1e1e22;
    margin-right: 1.125rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center left;
}

.o-hsub.-link {
    color: #fff;
    text-decoration: none;
}

.o-hsub.-link:hover::before,
.o-hsub-wrap:hover .o-hsub.-link::before {
    transform: scaleX(1.5);
}

.o-hsub.-link.-dark {
    color: #1e1e22;
}

.o-hsub.-link.-dark:hover {
    color: #1e1e22;
}

.o-hsub.-h {
    vertical-align: middle;
}

@media (max-width: 699px) {
    .o-hsub.-h {
        display: block;
        margin-top: 20px;
    }
}

@media (min-width: 700px) {
    .o-hsub.-h {
        margin-left: 2.5rem;
    }
}

.o-hsub_label {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    display: inline-block;
}

.o-hsub.-link:hover .o-hsub_label,
.o-hsub-wrap:hover .o-hsub_label {
    transform: translateX(20px);
}

.is-loaded .o-loader {
    visibility: hidden;
    transition-delay: 0.6s;
}

.o-container {
    position: relative;
    margin: 0 auto;
}

@media (max-width: 699px) {
    .o-container {
        padding-right: 40px;
        padding-left: 40px;
    }

    .o-container.-small {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (min-width: 700px) and (max-width: 1599px) {
    .o-container {
        padding-right: 7.5rem;
        padding-left: 7.5rem;
        max-width: 140rem;
    }
}

@media (min-width: 1600px) {
    .o-container {
        padding-right: 9.5625rem;
        padding-left: 9.5625rem;
        max-width: 144.125rem;
    }
}

.o-section {
    position: relative;
}

.o-section.-offset {
    margin-top: -9.375rem;
    background-color: #f6f6f6;
}

.o-section.-padding {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}

.o-section.-padding-top {
    padding-top: 7.5rem;
}

@media (max-width: 699px) {
    .o-section.-bottom {
        padding-bottom: 60px;
    }
}

@media (min-width: 700px) {
    .o-section.-bottom {
        padding-bottom: 7.5rem;
    }
}

.o-section.-left {
    margin-right: 15rem;
}

.o-section.-right {
    margin-left: 15rem;
}

.o-section.-left-large {
    margin-right: 22.5rem;
}

.o-section.-right.-padding {
    padding-left: 9.5625rem;
}

.o-section_image {
    position: relative;
    /* overflow: hidden; */
}

.o-section_image.-small {
    padding-bottom: 57.144%;
}

.o-section_image.-large {
    padding-bottom: 55%;
}

.o-section_image.-padding-left {
    margin-left: 7.5rem;
}

.o-section_image.-left {
    margin-right: 15rem;
}

@media (max-width: 1599px) {
    .o-section_image.-left {
        margin-left: -7.5rem;
    }
}

@media (min-width: 1600px) {
    .o-section_image.-left {
        margin-left: -9.5625rem;
    }
}

.o-section_image.-right {
    margin-left: 15rem;
}

@media (max-width: 1599px) {
    .o-section_image.-right {
        margin-right: -7.5rem;
    }
}

@media (min-width: 1600px) {
    .o-section_image.-right {
        margin-right: -9.5625rem;
    }
}

.o-section_image img {
    width: 100%;
}

.o-grid {
    margin-left: 0;
    letter-spacing: normal;
    font-size: 0;
}

.o-grid.-margin {
    margin-left: -3.75rem;
}

.o-grid_item {
    display: inline-block;
    padding-left: 0;
    width: 100%;
    vertical-align: top;
    font-size: 1rem;
}

@media (max-width: 699px) {
    .o-grid_item.-button {
        width: 100%;
    }
}

@media (min-width: 700px) and (max-width: 999px) {
    .o-grid_item.-button {
        margin-bottom: 60px;
    }
}

@media (min-width: 1000px) {
    .o-grid_item.-button {
        width: 18.75rem;
    }
}

@media (max-width: 699px) {
    .o-grid_item.-button-content {
        margin-bottom: 30px;
    }
}

@media (min-width: 700px) and (max-width: 999px) {
    .o-grid_item.-button-content {
        margin-bottom: 60px;
    }
}

@media (min-width: 1000px) {
    .o-grid_item.-button-content {
        width: calc(100% - 18.75rem);
    }
}

.o-grid.-margin .o-grid_item {
    padding-left: 3.75rem;
}

@media (min-width: 700px) {
    .o-grid_item.-half {
        width: 50%;
    }
}

@media (min-width: 700px) and (max-width: 1199px) {
    .o-grid_item.-half.-large {
        width: 100%;
    }
}

@media (min-width: 700px) and (max-width: 999px) {
    .o-grid_item.-half.-medium {
        width: 100%;
    }
}

@media (min-width: 700px) and (max-width: 1199px) {
    .o-grid_item.-third {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .o-grid_item.-third {
        width: 33.3333333333%;
    }
}

.o-form {
    padding-bottom: 11.25rem;
}

@media (max-width: 699px) {
    .o-form_item {
        margin-bottom: 35px;
    }
}

@media (min-width: 700px) {
    .o-form_item {
        margin-bottom: 2.9375rem;
    }
}

.o-form_fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}

@media (max-width: 699px) {
    .o-form_fieldset {
        margin-bottom: 20px;
    }
}

@media (min-width: 700px) {
    .o-form_fieldset {
        margin-bottom: 3.75rem;
    }
}

.o-form_button {
    text-align: right;
}

.o-label {
    display: block;
    height: 100%;
    color: #b3b3b3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.875rem;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
    .o-label {
        font-size: 9px;
    }
}

@media (min-width: 700px) {
    .o-label {
        font-size: 0.5625rem;
    }
}

.o-input-wrap .o-label {
    position: absolute;
    bottom: 0;
    left: 0;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-input:focus~.o-label,
.o-select:focus~.o-label,
.o-textarea:focus~.o-label,
.o-label.is-active {
    -webkit-transform: translateY(-1.875rem);
    -ms-transform: translateY(-1.875rem);
    transform: translateY(-1.875rem);
}

.o-input.has-error~.o-label,
.has-error.o-select~.o-label,
.has-error.o-textarea~.o-label {
    color: #cc3d3d;
}

.o-input-wrap {
    position: relative;
}

.o-input,
.o-select,
.o-textarea {
    padding: 0.875rem;
    background-color: transparent;
    border-bottom: 1px solid #b3b3b3;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {

    .o-input,
    .o-select,
    .o-textarea {
        font-size: 14px;
    }
}

@media (min-width: 700px) {

    .o-input,
    .o-select,
    .o-textarea {
        font-size: 0.875rem;
    }
}

.o-input::-webkit-input-placeholder,
.o-select::-webkit-input-placeholder,
.o-textarea::-webkit-input-placeholder {
    color: #b3b3b3;
}

.o-input:-ms-input-placeholder,
.o-select:-ms-input-placeholder,
.o-textarea:-ms-input-placeholder {
    color: #b3b3b3;
}

.o-input::placeholder,
.o-select::placeholder,
.o-textarea::placeholder {
    color: #b3b3b3;
}

.o-input.-search,
.-search.o-select,
.-search.o-textarea {
    background-color: transparent;
    color: #fff;
    font-weight: 700;
    border-bottom: none;
}

@media (max-width: 699px) {

    .o-input.-search,
    .-search.o-select,
    .-search.o-textarea {
        font-size: 26px;
    }
}

@media (min-width: 700px) {

    .o-input.-search,
    .-search.o-select,
    .-search.o-textarea {
        font-size: 3.75rem;
    }
}

.o-input.-search::-webkit-input-placeholder,
.-search.o-select::-webkit-input-placeholder,
.-search.o-textarea::-webkit-input-placeholder {
    color: #000;
}

.o-input.-search:-ms-input-placeholder,
.-search.o-select:-ms-input-placeholder,
.-search.o-textarea:-ms-input-placeholder {
    color: #000;
}

.o-input.-search::placeholder,
.-search.o-select::placeholder,
.-search.o-textarea::placeholder {
    color: #000;
}

.-mobile .o-input.-search,
.-mobile .-search.o-select,
.-mobile .-search.o-textarea {
    font-size: 26px;
    padding: 0;
}

.o-input.-search.-light,
.-search.-light.o-select,
.-search.-light.o-textarea {
    color: #1e1e22;
}

.o-input.-search.-light::-webkit-input-placeholder,
.-search.-light.o-select::-webkit-input-placeholder,
.-search.-light.o-textarea::-webkit-input-placeholder {
    color: #b3b3b3;
}

.o-input.-search.-light:-ms-input-placeholder,
.-search.-light.o-select:-ms-input-placeholder,
.-search.-light.o-textarea:-ms-input-placeholder {
    color: #b3b3b3;
}

.o-input.-search.-light::placeholder,
.-search.-light.o-select::placeholder,
.-search.-light.o-textarea::placeholder {
    color: #b3b3b3;
}

.o-input.has-error,
.has-error.o-select,
.has-error.o-textarea {
    border-color: #cc3d3d;
}

.o-input:focus,
.o-select:focus,
.o-textarea:focus {
    outline: none;
}

.o-input-line {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #1e1e22;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
}

.o-input:focus~.o-input-line,
.o-select:focus~.o-input-line,
.o-textarea:focus~.o-input-line {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.o-input-lines::before,
.o-input-lines::after {
    content: "";
    position: absolute;
    bottom: 0;
    border-right: 1px solid #b3b3b3;
    height: 0.375rem;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-input.has-error~.o-input-lines::before,
.has-error.o-select~.o-input-lines::before,
.has-error.o-textarea~.o-input-lines::before,
.o-input.has-error~.o-input-lines::after,
.has-error.o-select~.o-input-lines::after,
.has-error.o-textarea~.o-input-lines::after {
    border-color: #cc3d3d;
}

.o-input-lines::before {
    left: 0;
    transition-delay: 0.3s;
}

.o-input-lines::after {
    right: 0;
}

.o-input:focus~.o-input-lines::before,
.o-select:focus~.o-input-lines::before,
.o-textarea:focus~.o-input-lines::before,
.o-input:focus~.o-input-lines::after,
.o-select:focus~.o-input-lines::after,
.o-textarea:focus~.o-input-lines::after {
    border-color: #1e1e22;
}

.o-input:focus~.o-input-lines::before,
.o-select:focus~.o-input-lines::before,
.o-textarea:focus~.o-input-lines::before {
    transition-delay: 0s;
}

.o-input:focus~.o-input-lines::after,
.o-select:focus~.o-input-lines::after,
.o-textarea:focus~.o-input-lines::after {
    transition-delay: 0.3s;
}

.o-checkbox,
.o-radio {
    position: absolute;
    width: 0;
    opacity: 0;
}

.o-checkbox:checked+.o-checkbox-label::after,
.o-radio:checked+.o-checkbox-label::after,
.o-checkbox:checked+.o-radio-label::after,
.o-radio:checked+.o-radio-label::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.o-checkbox-label,
.o-radio-label {
    position: relative;
    display: inline-block;
    margin-right: 0.5em;
    line-height: 1.4;
    margin-right: 4.0625rem;
    cursor: pointer;
    padding-top: 0.125rem;
}

@media (max-width: 699px) {

    .o-checkbox-label,
    .o-radio-label {
        font-size: 12px;
        padding-left: 27px;
    }
}

@media (min-width: 700px) {

    .o-checkbox-label,
    .o-radio-label {
        font-size: 0.875rem;
        padding-left: 1.1875rem;
    }
}

.o-checkbox-label.-uppsercase,
.-uppsercase.o-radio-label {
    text-transform: uppercase;
}

.o-checkbox-label::before,
.o-radio-label::before,
.o-checkbox-label::after,
.o-radio-label::after {
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    padding: 0;
    content: "";
    border: 1px solid;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {

    .o-checkbox-label::before,
    .o-radio-label::before,
    .o-checkbox-label::after,
    .o-radio-label::after {
        width: 12px;
        height: 12px;
        margin-top: -6px;
    }
}

@media (min-width: 700px) {

    .o-checkbox-label::before,
    .o-radio-label::before,
    .o-checkbox-label::after,
    .o-radio-label::after {
        margin-top: -0.28125rem;
        width: 0.5625rem;
        height: 0.5625rem;
    }
}

.o-checkbox-label::after,
.o-radio-label::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #1e1e22 transparent transparent transparent;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {

    .o-checkbox-label::after,
    .o-radio-label::after {
        border-width: 12px 12px 0 0;
    }
}

@media (min-width: 700px) {

    .o-checkbox-label::after,
    .o-radio-label::after {
        border-width: 0.5625rem 0.5625rem 0 0;
    }
}

.o-checkbox-label.has-error::before,
.has-error.o-radio-label::before {
    border-color: #cc3d3d;
}

.o-checkbox-label_text {
    display: inline-block;
    transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.o-checkbox-label:hover .o-checkbox-label_text,
.o-radio-label:hover .o-checkbox-label_text {
    -webkit-transform: translateX(0.3125rem);
    -ms-transform: translateX(0.3125rem);
    transform: translateX(0.3125rem);
}

.o-radio-label::before,
.o-radio-label::after {
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

.o-radio-label::after {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20enable-background%3D%22new%200%200%2013%2013%22%20xml%3Aspace%3D%22preserve%22%3E%3Ccircle%20fill%3D%22%23424242%22%20cx%3D%226.5%22%20cy%3D%226.5%22%20r%3D%226.5%22%2F%3E%3C%2Fsvg%3E");
    background-size: 6px;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.o-radio:checked+.o-radio-label::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.o-select {
    position: relative;
    z-index: 1;
    padding-right: 2.5rem;
}

.o-select:focus {
    border-bottom-color: #1e1e22;
}

.o-select-wrap {
    position: relative;
}

.o-select-wrap::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2211.3%22%20viewBox%3D%220%200%2013%2011.3%22%20enable-background%3D%22new%200%200%2013%2011.3%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23b3b3b3%22%20points%3D%226.5%2011.3%203.3%205.6%200%200%206.5%200%2013%200%209.8%205.6%20%22%2F%3E%3C%2Fsvg%3E");
    background-position: center;
    background-size: 10px;
    background-repeat: no-repeat;
    content: "";
    pointer-events: none;
}

.o-textarea-wrap {
    position: relative;
}

.o-textarea {
    min-height: 9.375rem;
}

.o-button {
    position: relative;
    display: inline-block;
    text-align: center;
    border: 1px solid #1e1e22;
    white-space: nowrap;
    font-size: 0;
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}

.o-button:before {
    display: inline-block;
    height: 100%;
    content: "";
    vertical-align: middle;
}

.o-button>* {
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    font-size: 1rem;
}

@media (max-width: 699px) {
    .o-button {
        height: 60px;
        padding: 0 20px;
    }
}

@media (min-width: 700px) {
    .o-button {
        height: 3.75rem;
        padding: 0 1.875rem;
    }
}

.o-button::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #1e1e22;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
    transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s, -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}

.o-button:hover {
    color: #fff;
    transition-delay: 0s;
}

.o-button:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    transition-delay: 0s;
}

@media (min-width: 1200px) {
    .o-button.-anim {
        border-color: transparent;
    }
}

.o-button.-left::after {
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
}

.o-button.-white {
    border-color: #fff;
}

.o-button.-white::after {
    background-color: #fff;
}

.o-button.-white:hover {
    color: #000;
}

@media (max-width: 699px) {
    .o-button.-width {
        width: 100%;
    }
}

@media (min-width: 700px) {
    .o-button.-width {
        width: 15rem;
    }
}

.o-button.-form {
    width: 11.25rem;
}

.o-button.-form:focus {
    color: #fff;
    transition-delay: 0s;
}

.o-button.-form:focus::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    transition-delay: 0s;
}

.o-button.-square {
    padding: 0;
}

@media (max-width: 699px) {
    .o-button.-square {
        width: 60px;
    }
}

@media (min-width: 700px) {
    .o-button.-square {
        width: 3.75rem;
    }
}

.o-button-group .o-button+.o-button {
    border-left: none;
}

@media (max-width: 699px) {
    .o-button.-padding {
        padding: 1.25rem;
    }
}

@media (min-width: 700px) {
    .o-button.-padding {
        padding: 1.25rem 2.5rem;
    }
}

.o-button_label {
    display: inline-block;
    position: relative;
    transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    line-height: 1.4;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    font-size: 0.75rem;
}

.o-button:hover .o-button_label {
    -webkit-transform: translateX(0.5rem);
    -ms-transform: translateX(0.5rem);
    transform: translateX(0.5rem);
    transition-delay: 0.075s;
}

.o-button.-left:hover .o-button_label {
    -webkit-transform: translateX(-0.5rem);
    -ms-transform: translateX(-0.5rem);
    transform: translateX(-0.5rem);
}

.o-button.-square:hover .o-button_label {
    -webkit-transform: translateX(0.375rem);
    -ms-transform: translateX(0.375rem);
    transform: translateX(0.375rem);
}

.o-button.-left.-square:hover .o-button_label {
    -webkit-transform: translateX(-0.375rem);
    -ms-transform: translateX(-0.375rem);
    transform: translateX(-0.375rem);
}

.o-button-group {
    margin-left: 0;
    letter-spacing: normal;
    font-size: 0;
}

.o-button_icon {
    position: relative;
    width: 1.1875rem;
    height: 1.1875rem;
    fill: #1e1e22;
    transition: fill 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}

.o-button.-white .o-button_icon {
    fill: #fff;
}

.o-button:hover .o-button_icon {
    fill: #f6f6f6;
    transition-delay: 0s;
}

.o-button.-white:hover .o-button_icon {
    fill: #1e1e22;
}

.o-button_line::before,
.o-button_line::after {
    content: "";
    position: absolute;
    background-color: #1e1e22;
}

.is-mobile .o-button_line::before,
.is-mobile .o-button_line::after {
    display: none;
}

.o-button_line::before {
    width: 1px;
    top: 0;
    bottom: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    transition: -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-button_line::after {
    height: 1px;
    right: 0;
    left: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-button_line:first-of-type::before {
    left: 0;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}

.o-button_line:first-of-type::after {
    top: 0;
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
}

.o-button_line:last-of-type::before {
    right: 0;
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
}

.o-button_line:last-of-type::after {
    bottom: 0;
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
}

.o-button.is-inview .o-button_line::before {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.o-button.is-inview .o-button_line::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.o-button.is-inview .o-button_line:first-of-type::before {
    transition-delay: 1.15s;
}

.o-button.is-inview .o-button_line:first-of-type::after {
    transition-delay: 0.1s;
}

.o-button.is-inview .o-button_line:last-of-type::before {
    transition-delay: 0.55s;
}

.o-button.is-inview .o-button_line:last-of-type::after {
    transition-delay: 0.7s;
}

.c-header-home_footer {
    z-index: 3;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

.c-header-home_controls,
.c-header-home_buttons {
    margin-left: 0;
    letter-spacing: normal;
    font-size: 0;
    transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

@media (max-width: 699px) {

    .c-header-home_controls,
    .c-header-home_buttons {
        padding-bottom: 40px;
    }
}

@media (min-width: 700px) {

    .c-header-home_controls,
    .c-header-home_buttons {
        padding-bottom: 5.625rem;
    }
}

@media (min-width: 700px) and (max-width: 749px) {

    .c-header-home_controls,
    .c-header-home_buttons {
        padding-bottom: 3.75rem;
    }
}

.is-loaded .c-header-home_controls,
.is-loaded .c-header-home_buttons {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

body[data-route-option="prev-section"] .c-header-home_controls,
body[data-route-option="prev-section"] .c-header-home_buttons,
body[data-route-option="next-section"] .c-header-home_controls,
body[data-route-option="next-section"] .c-header-home_buttons {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.c-header-home_controls {
    transition-delay: 0.65s;
}

@media (min-width: 700px) {
    .c-header-home_controls {
        float: left;
    }
}

.c-header-home_buttons {
    transition-delay: 0.75s;
}

@media (max-width: 699px) {
    .c-header-home_buttons {
        margin-left: -20px;
        margin-right: -20px;
    }
}

@media (min-width: 1000px) {
    .c-header-home_buttons {
        float: right;
    }
}

@media (max-width: 699px) {
    .c-header-home_button {
        width: 50% !important;
    }
}

@media (min-width: 700px) {
    .c-header-home_button {
        width: 15.625rem;
    }
}

/* home-end */

a {
    text-decoration: none;
}


/* about-start */
.aboutt {
    padding: 100px 0px;
    position: relative;
    text-align: center;
}

.aboutt-img img {
    width: 100%;
    height: 43vh;
    z-index: 9999;
    position: relative;
    border: 2px solid red;
    padding: 10px;
    border-radius: 100px 0px;
}

.back-aboutt-img h4 {
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    color: #777;
    margin-bottom: 15px;
}

.aboutt-cont h1 {
    color: #000;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 20px;
}

.aboutt-cont h3 {
    color: #777;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.aboutt-cont p {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    padding-bottom: 30px;
}

.aboutt-cont {
    /* margin-left: 40px; */
    position: relative;
    z-index: 99;
}

.btn-onee {
    position: relative;
    padding: 1rem 2.5rem;
    color: #ffd739;
    font-size: 1em;
    background-color: #27045b;
    outline: none;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    transition-property: all;
    transition-duration: 0.3s;
    cursor: pointer;
}

.btn-onee:hover {
    background-color: #6807f9;
    box-shadow: 0px 14px 56px -11px #6807f9;
    color: #ffd739;
}

.btn-onee::before {
    content: "";
    position: absolute;
    height: 5px;
    width: 5px;
    background-color: white;
    border-radius: 100px;
    right: 2rem;
    bottom: 37%;
    animation: 0.5s both ease-in-out infinite;
}

.btn-onee:hover::before {
    animation-name: bounce_591;
    transition: all 0.3s ease;
}

@keyframes bounce_591 {
    0% {
        bottom: 37%;
    }

    50% {
        bottom: 70%;
    }

    100% {
        bottom: 37%;
    }
}

.styling {
    overflow: hidden;
}

/* about-end */



/* form-start */
.contact-area .contact-form {
    position: relative;
    max-width: 765px;
    width: 100%;
}

.contact-area .contact-form .shadow-box {
    padding: 40px 40px 40px 40px;
}

.contact-area .contact-form img {
    position: absolute;
    top: 0;
    right: 50px;
}

.contact-area .contact-form h1 {
    font-size: 44px;
    color: #0F0F0F;
    margin-bottom: 30px;
}

.contact-area .contact-form h1 span {
    color: #5b78f6;
}

.contact-area .contact-form form .input-group+.input-group {
    margin-top: 16px;
}

.contact-area .contact-form form .input-group textarea,
.contact-area .contact-form form .input-group input {
    width: 100%;
    border: none;
    opacity: 0.95;
    background: #FBFBFC;
    border-radius: 10px;
    padding: 17px 20px;
    font-size: 14px;
    display: block;
    color: #0F0F0F;
}

.contact-area .contact-form form .input-group textarea {
    height: 145px;
    resize: none;
}

.contact-area .contact-form form .input-group textarea:focus,
.contact-area .contact-form form .input-group input:focus {
    outline: none;
    box-shadow: none;
}

.contact-area .contact-form form .input-group button {
    width: 100%;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    padding: 16px 30px;
}

.contact-area .contact-infos {
    width: 290px;
    flex: none;
}

.contact-area .contact-infos h3 {
    color: #0F0F0F;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 29px;

}

.contact-area .contact-infos .contact-details {
    margin-bottom: 55px;
}

.contact-area .contact-infos .contact-details li {
    gap: 24px;
}

.contact-area .contact-infos .contact-details li+li {
    margin-top: 70px;
}

.contact-area .contact-infos .contact-details li .icon-box {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    flex: none;
    text-align: center;
    line-height: 75px;
    font-size: 30px;
    color: #5b78f6;
}

.contact-area .contact-infos .contact-details li .icon-box::after,
.contact-area .contact-infos .contact-details li .icon-box::before {
    border-radius: 10px;
}

.contact-area .contact-infos .contact-details li .right span {
    display: block;
    color: #BCBCBC;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 7px;
}

.contact-area .contact-infos .contact-details li .right h4 {
    color: #000000;
    font-size: 16px;
    opacity: 0.4;
    font-weight: 500;
    margin-bottom: 7px;
}

.contact-area .contact-infos .contact-details li .right h4:last-child {
    margin-bottom: 0;
}

.contact-area .social-links {
    gap: 20px;
}

.contact-area .social-links li a {
    width: 82px;
    height: 82px;
    display: block;
    text-align: center;
    line-height: 92px;
    color: #5b78f6;
    border-radius: 50%;
    font-size: 32px;
    transition: .3s;
}

.contact-area .social-links li a:hover {
    background: #ffffff;
    color: #0F0F0F;
}

.contact-area .social-links li a:before,
.contact-area .social-links li a:after {
    border-radius: 50%;
}

.shadow-box {
    position: relative;
    border-radius: 30px;
    background: #FFFFFF;
}

.shadow-box * {
    z-index: 2;
    position: relative;
}

.theme-btn {
    background: #000;
    color: #fff;
    display: inline-block;
    transition: .3s;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 30px;
}

.theme-btn:hover {
    background: #5b78f6;
    color: #ffffff;
}

/* form-end */



/* courses-start */

.courses-heading {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 100px;
}

.courses-heading h1 {
    color: #000;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 20px;
}

.courses-heading p {
    color: #777;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.flip-card {
    height: 400px;
    margin-bottom: 20px;
    border: 2px solid red;
    border-radius: 31px;
    padding: 2px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 28px;
    transition: all 550ms cubic-bezier(0.1, 0.22, 0.8, 1.13);
    transform-style: preserve-3d;
}

.flip-card-inner h1 {
    color: #fff;
    bottom: 0px;
    left: 10px;
    position: absolute;
    font-size: 40px;
    font-weight: 900;
    text-transform: capitalize;
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    backface-visibility: hidden;
}

.flip-card-front {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.flip-card-back {
    font-size: 1.25rem;
    text-align: center;
    display: grid;
    place-items: center;
    padding: 32px;
    background-color: #B1CFC8;
    transform: rotateY(180deg);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(-180deg);
}

/* courses-end */




/* student-wok-start */

#gallery {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;

    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

#gallery img,
#gallery video {
    width: 100%;
    height: auto;
    margin: 4% auto;
    box-shadow: -3px 5px 15px #000;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

/* student-wok-end */



/* testionials-start */

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #bc2328;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow:hover {
    color: #ea830e;
}


.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 33;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #f00;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #ea830e;
    border-color: #ea830e;
}

.testim .dots .dot.active {
    -webkit-animation: testim-scale .5s ease-in-out forwards;
    -moz-animation: testim-scale .5s ease-in-out forwards;
    -ms-animation: testim-scale .5s ease-in-out forwards;
    -o-animation: testim-scale .5s ease-in-out forwards;
    animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont>div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont>div.inactive {
    opacity: 1;
}


.testim .cont>div.active {
    position: relative;
    opacity: 1;
}


.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
    border: 2px solid #efae12;
    padding: 2px;
}

.testim .cont div h2 {
    color: #bc2328;
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 1.15em;
    color: #000;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img {
    -webkit-animation: testim-show .5s ease-in-out forwards;
    -moz-animation: testim-show .5s ease-in-out forwards;
    -ms-animation: testim-show .5s ease-in-out forwards;
    -o-animation: testim-show .5s ease-in-out forwards;
    animation: testim-show .5s ease-in-out forwards;
}

.testim .cont div.active h2 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;
    -moz-animation: testim-content-in .4s ease-in-out forwards;
    -ms-animation: testim-content-in .4s ease-in-out forwards;
    -o-animation: testim-content-in .4s ease-in-out forwards;
    animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in .5s ease-in-out forwards;
    -moz-animation: testim-content-in .5s ease-in-out forwards;
    -ms-animation: testim-content-in .5s ease-in-out forwards;
    -o-animation: testim-content-in .5s ease-in-out forwards;
    animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
    -webkit-animation: testim-hide .5s ease-in-out forwards;
    -moz-animation: testim-hide .5s ease-in-out forwards;
    -ms-animation: testim-hide .5s ease-in-out forwards;
    -o-animation: testim-hide .5s ease-in-out forwards;
    animation: testim-hide .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;
    -moz-animation: testim-content-out .4s ease-in-out forwards;
    -ms-animation: testim-content-out .4s ease-in-out forwards;
    -o-animation: testim-content-out .4s ease-in-out forwards;
    animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;
    -moz-animation: testim-content-out .5s ease-in-out forwards;
    -ms-animation: testim-content-out .5s ease-in-out forwards;
    -o-animation: testim-content-out .5s ease-in-out forwards;
    animation: testim-content-out .5s ease-in-out forwards;
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

/* testimonials-end */


/* recruiters-start */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    background: rgb(255, 255, 255);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 960px;
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slider .slide {
    height: 100px;
    width: 250px;    
    padding: 0px 30px;
}

/* recruiters-end */


/* footer-start */

.footer-section {
    position: relative;
    padding-top: 100px;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.single-cta i {
    color: #ff5e14;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #534e4e;
    font-size: 15px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-social-icon a {
    color: #ffffff;
    font-size: 16px;
    margin-right: 15px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.facebook-bg {
    background: #3B5998;
}

.twitter-bg {
    background: #55ACEE;
}

.instagram-bg {
    background: radial-gradient(circle 325px at 19.2% 64.8%, rgba(254, 62, 101, 1) 9.7%, rgba(166, 24, 146, 1) 91.3%);
    ;
}

.youtube-bg {
    background: #fe0000;
}

.footer-widget-heading h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #ff5e14;
}

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a:hover {
    color: #ff5e14;
}

.footer-widget ul li a {
    color: #534e4e;
    text-transform: capitalize;
}

.location iframe {
    width: 100%;
    height: 200px;
}

.footer-widget {
    margin-bottom: 30px;
}

.single-cta {
    margin-bottom: 30px;
}

.footer-bottom {
    position: relative;
    text-align: center;
    padding: 20px 0px;
    font-size: 15px;
    color: #000000;
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.footer-bottom a {
    color: #0d6efd;
    text-transform: capitalize;
}

/* footer-end */