*,
*::before,
*::after {
    box-sizing: border-box;
}

h5,
h4,
h3,
h2,
h1,
p {
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

@font-face {
    font-family: 'HacenBeirutMd';
    src: url(../webfonts/HacenBeirutMd.woff) format("woff");
}

@font-face {
    font-family: 'JF-Flat-regular';
    src: url(../webfonts/JF-Flat-regular.woff) format("woff");
}

@font-face {
    font-family: 'DINPro';
    src: url(../webfonts/DINPro.woff) format("woff");
}

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

@media only screen and (min-width: 576px) {
    .mfa-container {
        max-width: 540px;
    }
}

@media only screen and (min-width: 768px) {
    .mfa-container {
        max-width: 720px;
    }
}

@media only screen and (min-width: 992px) {
    .mfa-container {
        max-width: 960px;
    }
}

@media only screen and (min-width: 1200px) {
    .mfa-container {
        max-width: 1140px;
    }
}

.lazy-div {
    /* display: grid; */
    align-items: center;
    justify-items: center;
    position: relative;
}

.lazy-div .lazy {
    width: 30px !important;
    height: 30px !important;
    transition: none;
}

@media only screen and (min-width: 992px) {
    .lazy-div .lazy {
        width: 50px !important;
        height: 50px !important;
    }
}

.lazy-div .next-lazy-img {
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.lazy-div .next-lazy-img::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    right: -100%;
    background-image: linear-gradient(to left, #fff, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
    animation: lazy-animation 1s ease-out infinite;
}

@keyframes lazy-animation {
    100% {
        right: 100%;
    }
}

body {
    margin: 0;
    direction: rtl;
    text-align: unset;
    min-height: 100vh;
    font-family: 'JF-Flat-regular';
    font-family: 'HacenBeirutMd';
    overflow-x: hidden;
}

body .loading-div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #efffff;
    background-color: #4ea6c0;
    background-color: #211c22;
    z-index: 999;
    display: grid;
    align-items: center;
    justify-items: center;
}

body .loading-div img {
    width: 100px;
}

body .header-md {
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: 20;
    display: grid;
}

body .header-md .logo-lines {
    display: grid;
    align-items: center;
}

body .header-md .logo-lines .mfa-container {
    display: grid;
}

body .header-md .logo-lines .block-wrapper {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
}

body .header-md .logo-lines .block-wrapper .logo-img {
    display: grid;
}

body .header-md .logo-lines .block-wrapper .logo-img a {
    display: grid;
}

body .header-md .logo-lines .block-wrapper .logo-img a img {
    height: 78px;
}

body .header-md .main-header-md-ul-div {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    transform: translate(100%, 0);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
    display: grid;
}

body .header-md .main-header-md-ul-div.toggle-main-header-md-ul-div {
    transform: translate(0);
}

body .header-md .main-header-md-ul-div .img-ul-div {
    background-color: #fff;
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100vh;
    width: 261px;
}

@media only screen and (min-width: 375px) {
    body .header-md .main-header-md-ul-div .img-ul-div {
        width: 300px;
    }
}

@media only screen and (min-width: 768px) {
    body .header-md .main-header-md-ul-div .img-ul-div {
        width: 320px;
    }
}

body .header-md .main-header-md-ul-div .img-ul-div .logo-img {
    display: grid;
    justify-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

body .header-md .main-header-md-ul-div .img-ul-div .logo-img img {
    height: 78px;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul {
    background-color: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    width: 261px;
}

@media only screen and (min-width: 375px) {
    body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul {
        width: 300px;
    }
}

@media only screen and (min-width: 768px) {
    body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul {
        width: 320px;
    }
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul li {
    display: grid;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul li a {
    display: grid;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul li a.drop-a {
    grid-template-columns: 1fr 48px;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul li a span {
    display: grid;
    align-items: center;
    grid-auto-flow: column;
    grid-gap: 3px;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul li.drop-li {
    overflow: hidden;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul li.drop-li .drop-a {
    display: grid;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul li.drop-li .drop-a .drop-i {
    width: 48px;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li {
    display: grid;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li > a {
    display: grid;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li > a > span {
    padding: 12px 18px;
    color: #272727;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li .drop-a {
    display: grid;
    grid-gap: 1px;
    justify-content: space-between;
    transition: all 0.4s ease-out;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li .drop-a span {
    position: relative;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li .drop-a span::after {
    content: '';
    position: absolute;
    top: 22%;
    left: 100%;
    bottom: 22%;
    background-color: rgba(0, 0, 0, 0.15);
    width: 1px;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li .drop-a > i {
    display: grid;
    align-items: center;
    justify-items: center;
    transition: all 0.4s ease-out;
    color: #272727;
    transform: rotate(-180deg);
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li .drop-a.toggle-drop-a > i {
    transform: rotate(0deg);
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li .drop-a.toggle-drop-a > i::before {
    content: '\f208';
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li > .drop-a.toggle-drop-a {
    background-color: #f7f8fa;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li > .drop-a.toggle-drop-a > i {
    transform: rotate(0deg);
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li > .drop-a.toggle-drop-a > i::before {
    content: '\f208';
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li .dropped-ul {
    height: 0;
    transition: height 1s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.4s ease-out;
    background-color: #f7f8fa;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li .dropped-ul > li {
    display: grid;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li .dropped-ul > li > a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li .dropped-ul > li > a > span {
    color: #272727;
    color: #676767;
    font-size: 14px;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li .dropped-ul > li > a > i {
    color: #676767;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li > .dropped-ul > li > a span {
    padding: 8px 34px 8px 18px;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li > .dropped-ul > li.drop-li > .dropped-ul > li > a span {
    padding: 8px 50px 8px 18px;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li > .dropped-ul > li.drop-li > .dropped-ul > li.drop-li > .dropped-ul > li > a span {
    padding: 8px 64px 8px 18px;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li > .dropped-ul > .drop-li > .drop-a.toggle-drop-a {
    background-color: moccasin;
    background-color: #fff;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li > .dropped-ul > .drop-li > .dropped-ul {
    background-color: moccasin;
    background-color: #fff;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li > .dropped-ul > .drop-li > .dropped-ul > .drop-li > .drop-a.toggle-drop-a {
    background-color: aliceblue;
    background-color: moccasin;
}

body .header-md .main-header-md-ul-div .img-ul-div .main-header-md-ul > li.drop-li > .dropped-ul > .drop-li > .dropped-ul > .drop-li > .dropped-ul {
    background-color: aliceblue;
    background-color: moccasin;
}

@media only screen and (min-width: 992px) {
    body .header-md {
        display: none;
    }
}

body .header-md.toggle-header-md {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body .header-lg {
    display: none;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 110px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease-out;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media only screen and (min-width: 992px) {
    body .header-lg {
        display: grid;
    }
}

body .header-lg .mfa-container {
    display: grid;
}

body .header-lg .header-lg-top {
    height: 60px;
    display: grid;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

body .header-lg .header-lg-top .block-wrapper {
    display: grid;
    margin-right: 360px;
}

body .header-lg .header-lg-top .block-wrapper .phone-social-links {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
}

body .header-lg .header-lg-top .block-wrapper .phone-social-links .social-ul {
    display: grid;
    grid-auto-flow: column;
}

body .header-lg .header-lg-top .block-wrapper .phone-social-links .social-ul li {
    display: grid;
}

body .header-lg .header-lg-top .block-wrapper .phone-social-links .social-ul li a {
    display: grid;
    align-items: center;
    justify-items: center;
    color: #5f5f5f;
    color: #0b50eb;
    font-size: 30px;
    width: 46px;
    transition: all 0.3s ease-out;
}

body .header-lg .header-lg-top .block-wrapper .phone-social-links .social-ul li a:hover {
    color: #444;
}

body .header-lg .header-lg-top .block-wrapper .phone-social-links .location-phone {
    display: grid;
    align-items: center;
    grid-auto-flow: column;
    grid-gap: 32px;
}

body .header-lg .header-lg-top .block-wrapper .phone-social-links .location-phone a {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 4px;
    align-items: center;
    color: #444;
}

body .header-lg .header-lg-top .block-wrapper .phone-social-links .location-phone a div {
    display: grid;
    font-size: 14px;
    line-height: 1.5;
}

body .header-lg .header-lg-top .block-wrapper .phone-social-links .location-phone a div .email-span,
body .header-lg .header-lg-top .block-wrapper .phone-social-links .location-phone a div .city-span {
    color: rgba(68, 68, 68, 0.6);
}

body .header-lg .header-lg-top .block-wrapper .phone-social-links .location-phone a i {
    color: #0b50eb;
    font-size: 42px;
}

body .header-lg .header-lg-bottom {
    height: 50px;
    display: grid;
}

body .header-lg .header-lg-bottom .block-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-gap: 32px;
}

body .header-lg .header-lg-bottom .block-wrapper .logo-img {
    display: grid;
    position: relative;
    transition: all 0.3s ease-out;
}

body .header-lg .header-lg-bottom .block-wrapper .logo-img a {
    display: grid;
    justify-items: start;
    position: absolute;
    transform: translateY(-58px);
    background-color: #fff;
    padding: 0 22px;
    transition: all 0.3s ease-out;
}

body .header-lg .header-lg-bottom .block-wrapper .logo-img a img {
    height: 106px;
    transition: all 0.3s ease-out;
}

body .header-lg .header-lg-ul-div {
    display: grid;
}

body .header-lg .header-lg-ul-div .main-header-md-ul {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
}

body .header-lg .header-lg-ul-div .main-header-md-ul li {
    display: grid;
}

body .header-lg .header-lg-ul-div .main-header-md-ul li a {
    display: grid;
    align-items: center;
    color: #282828;
    text-align: center;
    padding: 0 18px;
    transition: all 0.3s ease-out;
}

body .header-lg .header-lg-ul-div .main-header-md-ul li a:hover {
    background-color: #f7f8fa !important;
}

body .header-lg .header-lg-ul-div .main-header-md-ul li a span {
    display: grid;
    text-align: center;
    position: relative;
}

body .header-lg .header-lg-ul-div .main-header-md-ul li a.drop-a {
    grid-template-columns: auto auto;
    grid-gap: 4px;
}

body .header-lg .header-lg-ul-div .main-header-md-ul li a.drop-a > i {
    display: grid;
    align-items: center;
    justify-items: center;
    color: #444;
}

body .header-lg .header-lg-ul-div .main-header-md-ul li a.drop-a > i::before {
    transition: all 0.3s ease-out;
}

body .header-lg .header-lg-ul-div .main-header-md-ul > li > a > span {
    font-size: 16px;
    color: #444;
    text-transform: capitalize;
}

body .header-lg .header-lg-ul-div .main-header-md-ul li.drop-li {
    position: relative;
}

body .header-lg .header-lg-ul-div .main-header-md-ul li.drop-li .dropped-ul {
    opacity: 0;
    visibility: hidden;
    border-radius: 0 0 6px 6px;
    position: absolute;
    z-index: 2;
    left: 50%;
    transform: translate(-50%, 50px) scale(0.7);
    width: 210px;
    top: 100%;
    pointer-events: none;
    box-shadow: 0 18px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body .header-lg .header-lg-ul-div .main-header-md-ul li:hover > a > i::before {
    transform: rotate(-180deg);
}

body .header-lg .header-lg-ul-div .main-header-md-ul li:hover > .dropped-ul {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
    pointer-events: all;
}

body .header-lg .header-lg-ul-div .main-header-md-ul li.drop-li .dropped-ul li a {
    padding: 12px 18px;
}

body .header-lg .header-lg-ul-div .main-header-md-ul li.drop-li .dropped-ul .dropped-ul {
    background-color: cadetblue;
    width: 220px;
    top: 0;
    right: 47%;
    /* transform: scale(0) translate(-200px, 0); */
}

body .header-lg .header-lg-ul-div .main-header-md-ul li.drop-li .dropped-ul .dropped-ul .dropped-ul {
    background-color: moccasin;
}

body .header-lg .header-lg-ul-div .main-header-md-ul li.drop-li .dropped-ul {
    background-color: #fff;
}

body .header-lg .header-lg-ul-div .main-header-md-ul li.drop-li .dropped-ul li a:hover {
    background-color: #0b50eb !important;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.1);
}

body .header-lg .header-lg-ul-div .main-header-md-ul li.drop-li .dropped-ul li a:hover span {
    color: #fff !important;
}

body .header-lg .header-lg-ul-div .main-header-md-ul li.drop-li .dropped-ul > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body .header-lg .header-lg-ul-div .main-header-md-ul li.drop-li .dropped-ul > li:last-of-type {
    border-bottom: 0;
}

body .header-lg .header-lg-ul-div .main-header-md-ul li.drop-li .dropped-ul > li:last-of-type > a {
    border-radius: 0 0 6px 6px;
}

body .header-lg .header-lg-ul-div .main-header-md-ul li.drop-li .dropped-ul .dropped-ul {
    background-color: #fff;
}

body .header-lg .header-lg-ul-div .main-header-md-ul li.drop-li .dropped-ul .dropped-ul .dropped-ul {
    background-color: moccasin;
}

body .header-lg.toggle-header-lg {
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
    transform: translate(0, -60px);
}

body .header-lg.toggle-header-lg .header-lg-bottom .block-wrapper {
    grid-template-columns: 160px 1fr;
    grid-gap: 52px;
}

body .header-lg.toggle-header-lg .header-lg-bottom .block-wrapper .logo-img {
    transform: translate(0, -28px) scale(0.45);
}

body .header-lg.toggle-header-lg .header-lg-bottom .block-wrapper .logo-img a {
    background-color: transparent;
    transform: translateY(34px);
}

body .main-slider-section {
    margin-top: 80px;
}

body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide {
    position: relative;
}

body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-img {
    position: relative;
    display: grid;
}

body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-img img {
    width: 100%;
    height: 280px;
    /* object-fit: cover; */
    /* object-position: center center; */
}

@media only screen and (min-width: 375px) {
    body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-img img {
        height: 320px;
    }
}

@media only screen and (min-width: 768px) {
    body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-img img {
        height: 440px;
    }
}

@media only screen and (min-width: 992px) {
    body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-img img {
        height: 500px;
    }
}

@media only screen and (min-width: 1200px) {
    body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-img img {
        height: calc(85vh - 90px);
    }
}

body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #4ad7fd38, #0f51e275, transparent);
}

body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    top: 40%;
    z-index: 2;
    transform: translate(-50%, 0);
    display: grid;
    max-width: 500px;
}

body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text .h-s {
    display: grid;
    align-content: start;
}

body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text .h-s span {
    text-align: center;
}

body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text .heading {
    text-transform: uppercase;
    line-height: 1;
    font-size: 22px;
    color: #2a2a2a;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translate(0, -200%) scale(0);
    transition: all 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1s;
}

@media only screen and (min-width: 375px) {
    body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text .heading {
        font-size: 26px;
    }
}

@media only screen and (min-width: 768px) {
    body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text .heading {
        font-size: 32px;
    }
}

@media only screen and (min-width: 992px) {
    body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text .heading {
        text-align: center;
        font-size: 52px;
    }
}

@media only screen and (min-width: 1200px) {
    body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text .heading {
        font-size: 68px;
    }
}

body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text .description {
    visibility: hidden;
    opacity: 0;
    transition: all 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2s;
    transform: translate(-200%, 0);
    font-size: 13px;
    color: #fff;
    line-height: 1.2;
    margin-top: 8px;
}

@media only screen and (min-width: 992px) {
    body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text .description {
        margin-top: 18px;
        line-height: 1.6;
        font-size: 15px;
    }
}

@media only screen and (min-width: 1200px) {
    body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text .description {
        font-size: 20px;
    }
}

body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text .buttons {
    display: none;
    display: grid;
    grid-gap: 12px;
    grid-auto-flow: column;
    align-items: end;
    justify-content: center;
    margin-top: 18px;
}

@media only screen and (min-width: 992px) {
    body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text .buttons {
        margin-top: 32px;
        grid-gap: 32px;
    }
}

body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text .buttons a {
    display: grid;
    background-color: #0b50eb;
    background-color: rgba(0, 0, 0, 0.6);
    border-width: 2px 2px 0 2px;
    border-color: #0b50eb;
    border: 0;
    border-style: solid;
    white-space: nowrap;
    color: #fff;
    padding: 6px 18px;
    font-size: 28px;
    text-transform: uppercase;
    border-radius: 2px 2px 0 0;
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
}

@media only screen and (min-width: 375px) {
    body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text .buttons a {
        font-size: 32px;
    }
}

@media only screen and (min-width: 992px) {
    body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text .buttons a {
        padding: 12px 42px;
        font-size: 52px;
        word-spacing: 5px;
        border-radius: 8px 8px 0 0;
    }
}

body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text .buttons a:hover {
    background-color: #2a2a2ac2 !important;
    background-color: rgb(11 80 235) !important;
}

body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide .slider-text .buttons a:first-of-type {
    transition: transform 0.8s ease-out 2.5s,
        opacity 0.3s ease-out 2.5s, visibility 0.3s ease-out 2.5s,
        background-color 0.3s ease-out;
}

body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide.swiper-slide-active .slider-text span {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

body .main-slider-section .home-main-slider .swiper-wrapper .swiper-slide.swiper-slide-active .slider-text .buttons a {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

body .main-slider-section .home-main-slider-next,
body .main-slider-section .home-main-slider-prev {
    display: none;
    top: 50% !important;
    transform: translate(0, -50%);
    z-index: 2;
    align-items: center;
    justify-items: center;
    position: absolute;
    background-image: none !important;
    margin: 0;
    line-height: 1;
    width: 48px;
    height: 48px;
    transition: all 0.4s ease-out;
}

@media only screen and (min-width: 992px) {

    body .main-slider-section .home-main-slider-next,
    body .main-slider-section .home-main-slider-prev {
        display: grid;
    }
}

@media only screen and (min-width: 768px) {

    body .main-slider-section .home-main-slider-next,
    body .main-slider-section .home-main-slider-prev {
        width: 52px;
        height: 52px;
    }
}

@media only screen and (min-width: 992px) {

    body .main-slider-section .home-main-slider-next,
    body .main-slider-section .home-main-slider-prev {
        width: 92px;
        height: 92px;
    }
}

body .main-slider-section .home-main-slider-next span,
body .main-slider-section .home-main-slider-prev span {
    color: #fff;
    transition: all 0.2s ease-out;
}

@media only screen and (min-width: 992px) {

    body .main-slider-section .home-main-slider-next span,
    body .main-slider-section .home-main-slider-prev span {
        font-size: 22px;
    }
}

@media only screen and (min-width: 1200px) {

    body .main-slider-section .home-main-slider-next span,
    body .main-slider-section .home-main-slider-prev span {
        font-size: 32px;
    }
}

body .main-slider-section .home-main-slider-next:hover span,
body .main-slider-section .home-main-slider-prev:hover span {
    color: #0b50eb;
}

body .main-slider-section .home-main-slider-next:focus,
body .main-slider-section .home-main-slider-prev:focus {
    outline: 0;
}

body .main-slider-section .home-main-slider-next {
    left: unset !important;
    right: 0 !important;
}

body .main-slider-section .home-main-slider-prev {
    right: unset !important;
    left: 0 !important;
}

body .main-slider-section .home-main-slider-pagination {
    position: absolute;
    width: unset !important;
    height: unset !important;
    bottom: 10px !important;
    top: unset !important;
    left: 50% !important;
    left: auto !important;
    right: 4% !important;
    display: grid;
    grid-gap: 6px;
    border-radius: 52px;
    grid-auto-flow: column;
    justify-content: start;
    transform: translate(-50%, 0);
}

@media only screen and (min-width: 768px) {
    body .main-slider-section .home-main-slider-pagination {
        grid-gap: 8px;
    }
}

@media only screen and (min-width: 992px) {
    body .main-slider-section .home-main-slider-pagination {
        grid-gap: 8px;
        bottom: 24px !important;
    }
}

body .main-slider-section .home-main-slider-pagination span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 !important;
    position: relative;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.9);
    background-color: transparent;
    transition: all .4s ease-out;
}

@media only screen and (min-width: 992px) {
    body .main-slider-section .home-main-slider-pagination span {
        width: 10px;
        height: 10px;
    }
}

@media only screen and (min-width: 1200px) {
    body .main-slider-section .home-main-slider-pagination span {
        width: 12px;
        height: 12px;
    }
}

body .main-slider-section .home-main-slider-pagination span:focus {
    outline: 0;
}

body .main-slider-section .home-main-slider-pagination span.swiper-pagination-bullet-active {
    opacity: 1;
    transform: rotate(0) scale(1.2);
    background-color: rgba(152, 59, 140, 0.8);
    background-color: #fff;
    border-color: #fff;
}

@media only screen and (min-width: 992px) {
    body .main-slider-section {
        margin-top: 110px;
    }
}

body .about-section {
    background-image: url(../images/about/cover.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 35px 0;
    background-color: #eef1fb;
}

@media only screen and (min-width: 768px) {
    body .about-section {
        /* grid-template-columns: 1fr 1fr; */
    }
}

body .about-section .section-text {
    color: #151515;
    padding: 12px 14px 28px 14px;
    border-right: 2px solid #0b50eb;
}

@media only screen and (min-width: 768px) {
    body .about-section .section-text {
        /* padding: 18px 18px 28px 18px; */
        border-right: 0;
    }
}

@media only screen and (min-width: 992px) {
    body .about-section .section-text {
        /* padding: 22px 32px 32px 32px; */
    }
}

@media only screen and (min-width: 1200px) {
    body .about-section .section-text {
        /* padding: 48px 82px 62px 82px; */
    }
}

body .about-section .section-text .heading {
    /* color: transparent; */
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: #0b50eb;
    /* -webkit-text-fill-color: rgba(0, 0, 0, 0.2); */
    text-shadow: 1px 2px 2px rgba(255, 255, 255, 0.2);
    font-family: 'JF-Flat-regular';
    font-size: 28px;
    margin-bottom: 8px;
}

@media only screen and (min-width: 768px) {
    body .about-section .section-text .heading {
        font-size: 32px;
    }
}

@media only screen and (min-width: 992px) {
    body .about-section .section-text .heading {
        font-size: 38px;
        margin-bottom: 12px;
    }
}

@media only screen and (min-width: 1200px) {
    body .about-section .section-text .heading {
        font-size: 42px;
        margin-bottom: 16px;
    }
}

body .about-section .section-text .heading i {
    -webkit-text-fill-color: rgba(0, 0, 0, 0.8);
}

body .about-section .section-text .desc {
    font-size: 14px;
    line-height: 2;
    font-family: 'JF-Flat-regular';
    font-size: 15px;
    color: #444444;
}

@media only screen and (min-width: 768px) {
    body .about-section .section-text .desc {
        font-size: 15px;
        margin-right: 12px;
    }
}

@media only screen and (min-width: 992px) {
    body .about-section .section-text .desc {
        margin-right: 22px;
        line-height: 1.8;
    }
}

body .about-section .section-text .desc ul {
    padding-right: 14px;
    list-style-type: square;
    /* display: grid; */
    grid-gap: 8px;
}

@media only screen and (min-width: 992px) {
    body .about-section .section-text .desc ul {
        grid-gap: 18px;
    }
}

body .about-section .section-video {
    display: grid;
}

body .about-section .section-video iframe {
    width: 100%;
    height: 200px;
}

@media only screen and (min-width: 768px) {
    body .about-section .section-video iframe {
        min-height: 390px;
    }
}

@media only screen and (min-width: 992px) {
    body .about-section .section-video iframe {
        height: 100%;
    }
}

body .about-section .section-img {
    /* display: grid; */
}

body .about-section .section-img .img-div {
    /* display: grid; */
    /* height: 240px; */
}

@media only screen and (min-width: 768px) {
    body .about-section .section-img .img-div {
        /* min-height: 300px; */
        /* height: 100%; */
    }
}

@media only screen and (min-width: 992px) {
    body .about-section .section-img .img-div {
        height: 410px;
    }
}

body .about-section .section-img .img-div img {
    /* width: 100%; */
    height: 100%;
    /* object-fit: cover; */
    transition: all 0.3s ease-out;
    /* object-position: center center; */
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

body .form-map-wrapper {
    background-color: #fff;
    display: grid;
    padding: 32px 0;
}

@media only screen and (min-width: 992px) {
    body .form-map-wrapper {
        grid-template-columns: 1fr auto;
        grid-gap: 8px;
        margin-left: 8px;
        padding: 52px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .form-map-wrapper {
        padding: 40px 0;
    }
}

body .form-map-wrapper .form-wrapper {
    margin: 15px;
}

body .form-map-wrapper .map-wrapper {
    display: grid;
}

body .form-map-wrapper .map-wrapper iframe {
    width: 100%;
    height: 300px;
}

@media only screen and (min-width: 992px) {
    body .form-map-wrapper .map-wrapper iframe {
        height: 700px;
        align-self: start;
        position: sticky;
        top: 105px;
    }
}

body .testimonials-section {
    padding: 42px 0;
    background-color: #f7f8fa;
}

@media only screen and (min-width: 768px) {
    body .testimonials-section {
        display: grid;
    }
}

@media only screen and (min-width: 992px) {
    body .testimonials-section {
        padding: 52px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .testimonials-section {
        padding: 62px 0;
    }
}

body .testimonials-section .slider-wrapper {
    background-color: #f7f8fa;
    background-color: #fff;
    border-radius: 4px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
}

@media only screen and (min-width: 992px) {
    body .testimonials-section .slider-wrapper {
        padding: 52px;
        border-radius: 4px;
        box-shadow: 0 18px 20px rgba(0, 0, 0, 0.06);
    }
}

@media only screen and (min-width: 1200px) {
    body .testimonials-section .slider-wrapper {
        padding: 62px;
    }
}

body .testimonials-section .slider-wrapper .slider-heading {
    color: #797979;
    font-size: 30px;
    text-align: center;
    margin-bottom: 18px;
}

@media only screen and (min-width: 768px) {
    body .testimonials-section .slider-wrapper .slider-heading {
        text-align: initial;
        margin-bottom: -18px;
    }
}

@media only screen and (min-width: 992px) {
    body .testimonials-section .slider-wrapper .slider-heading {
        font-size: 32px;
        font-size: 42px;
    }
}

@media only screen and (min-width: 768px) {
    body .testimonials-section .slider-itself .testimonials-slider {
        padding-top: 52px;
    }
}

body .testimonials-section .slider-itself .testimonials-slider .swiper-slide {
    display: grid;
    justify-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    transition: all .6s ease-out;
}

@media only screen and (min-width: 768px) {
    body .testimonials-section .slider-itself .testimonials-slider .swiper-slide {
        grid-template-columns: auto 1fr;
        align-items: center;
        grid-gap: 22px;
    }
}

@media only screen and (min-width: 992px) {
    body .testimonials-section .slider-itself .testimonials-slider .swiper-slide {
        grid-gap: 32px;
    }
}

body .testimonials-section .slider-itself .testimonials-slider .swiper-slide .img-div {
    width: 112px;
    height: 112px;
    background-color: #fff;
    border-radius: 50%;
    margin-bottom: 14px;
}

@media only screen and (min-width: 992px) {
    body .testimonials-section .slider-itself .testimonials-slider .swiper-slide .img-div {
        width: 152px;
        height: 152px;
        margin-bottom: 0;
    }
}

body .testimonials-section .slider-itself .testimonials-slider .swiper-slide .img-div img {
    border: 6px solid #eee;
    padding: 4px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
}

@media only screen and (min-width: 992px) {
    body .testimonials-section .slider-itself .testimonials-slider .swiper-slide .img-div img {
        border-width: 10px;
    }
}

body .testimonials-section .slider-itself .testimonials-slider .swiper-slide .content {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 18px;
    display: grid;
}

@media only screen and (min-width: 768px) {
    body .testimonials-section .slider-itself .testimonials-slider .swiper-slide .content {
        padding: 24px;
    }
}

@media only screen and (min-width: 992px) {
    body .testimonials-section .slider-itself .testimonials-slider .swiper-slide .content {
        padding: 32px;
    }
}

@media only screen and (min-width: 1200px) {
    body .testimonials-section .slider-itself .testimonials-slider .swiper-slide .content {
        padding: 42px;
    }
}

body .testimonials-section .slider-itself .testimonials-slider .swiper-slide .content > i {
    color: lightgray;
    line-height: 1;
    font-size: 24px;
    margin-top: -32px;
    position: relative;
    z-index: 2;
    background-color: #fff;
    justify-self: start;
}

@media only screen and (min-width: 992px) {
    body .testimonials-section .slider-itself .testimonials-slider .swiper-slide .content > i {
        margin-top: -72px;
        font-size: 62px;
    }
}

body .testimonials-section .slider-itself .testimonials-slider .swiper-slide .content > i:last-of-type {
    color: lightgray;
    font-size: 32px;
    justify-self: end;
    margin-top: -22px;
}

@media only screen and (min-width: 992px) {
    body .testimonials-section .slider-itself .testimonials-slider .swiper-slide .content > i:last-of-type {
        margin-top: -32px;
    }
}

body .testimonials-section .slider-itself .testimonials-slider .swiper-slide .content p {
    font-family: 'JF-Flat-regular';
    color: #737373;
    font-size: 14px;
    line-height: 1.5;
}

@media only screen and (min-width: 992px) {
    body .testimonials-section .slider-itself .testimonials-slider .swiper-slide .content p {
        line-height: 1.8;
    }
}

@media only screen and (min-width: 1200px) {
    body .testimonials-section .slider-itself .testimonials-slider .swiper-slide .content p {
        line-height: 2;
        font-size: 16px;
    }
}

body .testimonials-section .slider-itself .testimonials-slider .swiper-slide .content .name {
    color: #0b50eb;
    font-style: italic;
    margin-top: 10px;
}

@media only screen and (min-width: 992px) {
    body .testimonials-section .slider-itself .testimonials-slider .swiper-slide .content .name {
        margin-top: 14px;
    }
}

body .testimonials-section .slider-itself .testimonials-slider .swiper-slide.swiper-slide-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-next,
body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-prev {
    top: 38px !important;
    display: grid;
    background-color: #fff;
    background-color: #f7f8fa;
    border-radius: 50%;
    z-index: 2;
    align-items: center;
    justify-items: center;
    position: absolute;
    background-image: none !important;
    margin: 0;
    line-height: 1;
    width: 22px;
    height: 22px;
    transition: all 0.4s ease-out;
}

@media only screen and (min-width: 768px) {

    body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-next,
    body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-prev {
        width: 26px;
        height: 26px;
        top: 8px !important;
    }
}

@media only screen and (min-width: 992px) {

    body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-next,
    body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-prev {
        width: 30px;
        height: 30px;
    }
}

body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-next span,
body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-prev span {
    color: #0b50eb;
    transition: all .2s ease-out;
    font-size: 14px;
}

@media only screen and (min-width: 992px) {

    body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-next span,
    body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-prev span {
        font-size: 16px;
    }
}

body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-next:hover,
body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-prev:hover {
    background-color: #0b50eb;
}

body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-next:hover span,
body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-prev:hover span {
    color: #fff;
}

body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-next:focus,
body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-prev:focus {
    outline: 0;
}

body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-next.swiper-button-disabled,
body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-prev.swiper-button-disabled {
    opacity: .7;
    background-color: lightgray;
}

body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-prev {
    right: unset !important;
    left: calc(50% + 70px) !important;
}

@media only screen and (min-width: 768px) {
    body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-prev {
        left: 48px !important;
    }
}

body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-next {
    right: calc(50% + 70px) !important;
    left: unset !important;
}

@media only screen and (min-width: 768px) {
    body .testimonials-section .slider-itself .testimonials-slider .testimonials-slider-next {
        right: unset !important;
        left: 8px !important;
    }
}

body .mfa-form-wrapper {
    background-color: #fefefe;
    border-top: 4px solid #0b50eb;
    border-radius: 8px;
    padding: 42px 0;
    padding-top: 32px;
    box-shadow: 0 18px 20px rgba(0, 0, 0, 0.1);
    display: grid;
    min-width: 92%;
    max-width: 480px;
    margin: 0 auto;
}

@media only screen and (min-width: 768px) {
    body .mfa-form-wrapper {
        min-width: 400px;
    }
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper {
        min-width: 480px;
        padding: 52px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .mfa-form-wrapper {
        padding: 62px 0;
    }
}

@media only screen and (min-width: 1600px) {
    body .mfa-form-wrapper {
        padding: 72px 0;
    }
}

body .mfa-form-wrapper .form-img {
    margin-bottom: 32px;
    display: grid;
    justify-items: center;
}

body .mfa-form-wrapper .form-img img {
    height: 72px;
}

body .mfa-form-wrapper .mfa-form {
    display: grid;
    justify-items: center;
    grid-gap: 16px;
    pointer-events: all;
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form {
        grid-gap: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    body .mfa-form-wrapper .mfa-form {
        grid-gap: 24px;
    }
}

body .mfa-form-wrapper .mfa-form .form-div {
    display: grid;
    width: 92%;
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form .form-div {
        width: 75%;
    }
}

body .mfa-form-wrapper .mfa-form .form-div label {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin: 0;
    border: 1px solid #eee;
    border-radius: 6px;
    cursor: text;
    cursor: default;
    transition: all .3s ease-out;
}

body .mfa-form-wrapper .mfa-form .form-div label span {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: #9b9b9b;
    font-size: 12px;
    transition: all .2s ease-out;
    z-index: 1;
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form .form-div label span {
        font-size: 14px;
        right: 18px;
    }
}

@media only screen and (min-width: 1200px) {
    body .mfa-form-wrapper .mfa-form .form-div label span {
        right: 28px;
    }
}

body .mfa-form-wrapper .mfa-form .form-div label input,
body .mfa-form-wrapper .mfa-form .form-div label select,
body .mfa-form-wrapper .mfa-form .form-div label textarea {
    cursor: default;
    border: 0;
    background-color: transparent;
    height: 50px;
    transition: all .3s ease-out;
    padding: 0 16px;
    width: 100%;
}

@media only screen and (min-width: 992px) {

    body .mfa-form-wrapper .mfa-form .form-div label input,
    body .mfa-form-wrapper .mfa-form .form-div label select,
    body .mfa-form-wrapper .mfa-form .form-div label textarea {
        padding: 0 18px;
        height: 58px;
    }
}

@media only screen and (min-width: 1200px) {

    body .mfa-form-wrapper .mfa-form .form-div label input,
    body .mfa-form-wrapper .mfa-form .form-div label select,
    body .mfa-form-wrapper .mfa-form .form-div label textarea {
        padding: 0 24px;
    }
}

body .mfa-form-wrapper .mfa-form .form-div label input:focus,
body .mfa-form-wrapper .mfa-form .form-div label select:focus,
body .mfa-form-wrapper .mfa-form .form-div label textarea:focus {
    border: 0;
    outline: 0;
}

body .mfa-form-wrapper .mfa-form .form-div label textarea {
    height: 120px;
    padding-top: 8px;
    padding-bottom: 8px;
}

body .mfa-form-wrapper .mfa-form .form-div label select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

body .mfa-form-wrapper .mfa-form .form-div label i {
    color: #9b9b9b;
    font-size: 16px;
    transition: all .1s ease-out;
    transform: translate(16px, 0);
    transition: all .3s ease-out;
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form .form-div label i {
        transform: translate(20px, 0);
        font-size: 18px;
    }
}

@media only screen and (min-width: 1200px) {
    body .mfa-form-wrapper .mfa-form .form-div label i {
        transform: translate(24px, 0);
    }
}

body .mfa-form-wrapper .mfa-form .form-div label.select-label {
    cursor: default;
}

body .mfa-form-wrapper .mfa-form .form-div label.select-label select {
    padding-right: 32px;
    position: relative;
    z-index: 2;
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form .form-div label.select-label select {
        padding-right: 42px;
    }
}

@media only screen and (min-width: 1200px) {
    body .mfa-form-wrapper .mfa-form .form-div label.select-label select {
        padding-right: 52px;
    }
}

body .mfa-form-wrapper .mfa-form .form-div label.select-label::after {
    position: absolute;
    content: '\ec3a';
    font-family: 'Linearicons';
    transition: all .3s ease-out;
    top: 50%;
    right: 16px;
    transform: translate(0, -50%);
    font-size: 16px;
    color: #9b9b9b;
    z-index: 1;
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form .form-div label.select-label::after {
        font-size: 18px;
        right: 24px;
    }
}

body .mfa-form-wrapper .mfa-form .form-div label.message-label span {
    top: 20%;
}

body .mfa-form-wrapper .mfa-form .form-div label.toggle-form-label {
    border-color: #0b50eb;
}

body .mfa-form-wrapper .mfa-form .form-div label.toggle-form-label span {
    top: 0;
    right: 12px;
    padding: 0 4px;
    background-color: #fefefe;
    font-size: 10px;
    color: #0b50eb;
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form .form-div label.toggle-form-label span {
        font-size: 12px;
    }
}

body .mfa-form-wrapper .mfa-form .form-div label.toggle-form-label i {
    color: #0b50eb;
    transform: translate(16px, 0) scale(1.2);
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form .form-div label.toggle-form-label i {
        transform: ranslate(20px, 0) scale(1.2);
    }
}

@media only screen and (min-width: 1200px) {
    body .mfa-form-wrapper .mfa-form .form-div label.toggle-form-label i {
        transform: translate(24px, 0) scale(1.2);
    }
}

body .mfa-form-wrapper .mfa-form .form-div label.toggle-form-label.select-label::after {
    transform: translate(0, -50%) scale(1.2);
    color: #0b50eb;
}

body .mfa-form-wrapper .mfa-form button {
    border: 2px solid #0b50eb;
    color: #fff;
    border-radius: 42px;
    background-color: #0b50eb;
    padding: 5px 18px;
    margin-top: 18px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
    transition: all .3s ease-out;
    font-family: 'JF-Flat-regular';
    cursor: pointer;
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form button {
        padding: 6px 20px;
        margin-top: 24px;
    }
}

@media only screen and (min-width: 1200px) {
    body .mfa-form-wrapper .mfa-form button {
        padding: 8px 26px;
        margin-top: 32px;
    }
}

body .mfa-form-wrapper .mfa-form button span {
    line-height: 1;
}

body .mfa-form-wrapper .mfa-form button:hover {
    background-color: transparent;
    color: #0b50eb;
}

body .mfa-form-wrapper .mfa-form button:focus {
    outline: 0;
}

body footer {
    background-image: url(../images/bkgs/black-linen.png);
    background-color: #0a3d62;
    background-color: #323232;
    background-attachment: fixed;
    padding: 32px 0;
    padding-bottom: 0;
}

@media only screen and (min-width: 768px) {
    body footer {
        padding: 42px 0;
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 992px) {
    body footer {
        padding: 52px 0;
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 1200px) {
    body footer {
        padding: 72px 0;
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 1600px) {
    body footer {
        padding: 92px 0;
        padding-bottom: 0;
    }
}

body footer .top-footer {
    padding-bottom: 18px;
}

@media only screen and (min-width: 768px) {
    body footer .top-footer {
        padding-bottom: 22px;
    }
}

@media only screen and (min-width: 992px) {
    body footer .top-footer {
        padding-bottom: 32px;
    }
}

@media only screen and (min-width: 1200px) {
    body footer .top-footer {
        padding-bottom: 42px;
    }
}

body footer .top-footer .mfa-container {
    display: grid;
    grid-gap: 22px;
}

@media only screen and (min-width: 992px) {
    body footer .top-footer .mfa-container {
        grid-gap: 0;
        grid-template-columns: repeat(3, 1fr);
        justify-content: space-between;
        grid-gap: 12px;
    }
}

body footer .top-footer .mfa-container .section-one,
body footer .top-footer .mfa-container .section-two,
body footer .top-footer .mfa-container .section-three {
    display: grid;
    grid-gap: 8px;
    grid-template-rows: auto 1fr;
}

@media only screen and (min-width: 768px) {

    body footer .top-footer .mfa-container .section-one,
    body footer .top-footer .mfa-container .section-two,
    body footer .top-footer .mfa-container .section-three {
        grid-gap: 10px;
    }
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .mfa-container .section-one,
    body footer .top-footer .mfa-container .section-two,
    body footer .top-footer .mfa-container .section-three {
        grid-gap: 12px;
    }
}

body footer .top-footer .mfa-container .section-one .section-heading p,
body footer .top-footer .mfa-container .section-two .section-heading p,
body footer .top-footer .mfa-container .section-three .section-heading p {
    color: gray;
    text-transform: uppercase;
    font-size: 20px;
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .mfa-container .section-one .section-heading p,
    body footer .top-footer .mfa-container .section-two .section-heading p,
    body footer .top-footer .mfa-container .section-three .section-heading p {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1200px) {

    body footer .top-footer .mfa-container .section-one .section-heading p,
    body footer .top-footer .mfa-container .section-two .section-heading p,
    body footer .top-footer .mfa-container .section-three .section-heading p {
        font-size: 26px;
    }
}

body footer .top-footer .mfa-container .section-one .img-div img,
body footer .top-footer .mfa-container .section-two .img-div img,
body footer .top-footer .mfa-container .section-three .img-div img {
    height: 90px;
}

body footer .top-footer .mfa-container .section-one .section-body,
body footer .top-footer .mfa-container .section-two .section-body,
body footer .top-footer .mfa-container .section-three .section-body {
    display: grid;
    padding-right: 18px;
    border-right: 2px solid rgba(218, 165, 32, 0.2);
}

body footer .top-footer .mfa-container .section-one .section-body .main-section-ul,
body footer .top-footer .mfa-container .section-two .section-body .main-section-ul,
body footer .top-footer .mfa-container .section-three .section-body .main-section-ul {
    display: grid;
    grid-gap: 10px;
    align-content: start;
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .mfa-container .section-one .section-body .main-section-ul,
    body footer .top-footer .mfa-container .section-two .section-body .main-section-ul,
    body footer .top-footer .mfa-container .section-three .section-body .main-section-ul {
        grid-gap: 14px;
    }
}

body footer .top-footer .mfa-container .section-one .section-body .main-section-ul li a span,
body footer .top-footer .mfa-container .section-two .section-body .main-section-ul li a span,
body footer .top-footer .mfa-container .section-three .section-body .main-section-ul li a span {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .mfa-container .section-one .section-body .main-section-ul li a span,
    body footer .top-footer .mfa-container .section-two .section-body .main-section-ul li a span,
    body footer .top-footer .mfa-container .section-three .section-body .main-section-ul li a span {
        font-size: 18px;
    }
}

body footer .top-footer .mfa-container .section-one .section-body .main-section-ul li a:hover span,
body footer .top-footer .mfa-container .section-two .section-body .main-section-ul li a:hover span,
body footer .top-footer .mfa-container .section-three .section-body .main-section-ul li a:hover span {
    color: gold;
    color: gray;
}

body footer .top-footer .mfa-container .section-one .section-body .contact-info,
body footer .top-footer .mfa-container .section-two .section-body .contact-info,
body footer .top-footer .mfa-container .section-three .section-body .contact-info {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .mfa-container .section-one .section-body .contact-info,
    body footer .top-footer .mfa-container .section-two .section-body .contact-info,
    body footer .top-footer .mfa-container .section-three .section-body .contact-info {
        font-size: 18px;
    }
}

body footer .top-footer .mfa-container .section-one .section-body .news-letter,
body footer .top-footer .mfa-container .section-two .section-body .news-letter,
body footer .top-footer .mfa-container .section-three .section-body .news-letter {
    display: grid;
}

body footer .top-footer .mfa-container .section-one .section-body .news-letter .title,
body footer .top-footer .mfa-container .section-two .section-body .news-letter .title,
body footer .top-footer .mfa-container .section-three .section-body .news-letter .title {
    color: gray;
    display: grid;
    margin: 14px 0;
}

body footer .top-footer .mfa-container .section-one .section-body .news-letter .title span:first-of-type,
body footer .top-footer .mfa-container .section-two .section-body .news-letter .title span:first-of-type,
body footer .top-footer .mfa-container .section-three .section-body .news-letter .title span:first-of-type {
    text-transform: uppercase;
    font-size: 18px;
}

body footer .top-footer .mfa-container .section-one .section-body .news-letter form,
body footer .top-footer .mfa-container .section-two .section-body .news-letter form,
body footer .top-footer .mfa-container .section-three .section-body .news-letter form {
    display: grid;
    margin-bottom: 16px;
}

body footer .top-footer .mfa-container .section-one .section-body .news-letter form label,
body footer .top-footer .mfa-container .section-two .section-body .news-letter form label,
body footer .top-footer .mfa-container .section-three .section-body .news-letter form label {
    display: grid;
    margin-bottom: 0;
    grid-auto-flow: column;
    border: 1px solid gray;
    height: 42px;
    border-radius: 4px;
    padding-right: 8px;
}

@media only screen and (min-width: 768px) {

    body footer .top-footer .mfa-container .section-one .section-body .news-letter form label,
    body footer .top-footer .mfa-container .section-two .section-body .news-letter form label,
    body footer .top-footer .mfa-container .section-three .section-body .news-letter form label {
        height: 52px;
    }
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .mfa-container .section-one .section-body .news-letter form label,
    body footer .top-footer .mfa-container .section-two .section-body .news-letter form label,
    body footer .top-footer .mfa-container .section-three .section-body .news-letter form label {
        height: 58px;
        padding-right: 14px;
    }
}

body footer .top-footer .mfa-container .section-one .section-body .news-letter form label i,
body footer .top-footer .mfa-container .section-two .section-body .news-letter form label i,
body footer .top-footer .mfa-container .section-three .section-body .news-letter form label i {
    color: gray;
    font-size: 22px;
    align-self: center;
    margin-left: 8px;
}

body footer .top-footer .mfa-container .section-one .section-body .news-letter form label input,
body footer .top-footer .mfa-container .section-two .section-body .news-letter form label input,
body footer .top-footer .mfa-container .section-three .section-body .news-letter form label input {
    border: 0;
    background-color: transparent;
    color: #fff;
    border: 0;
    outline: 0;
    width: 140px;
}

@media only screen and (min-width: 375px) {

    body footer .top-footer .mfa-container .section-one .section-body .news-letter form label input,
    body footer .top-footer .mfa-container .section-two .section-body .news-letter form label input,
    body footer .top-footer .mfa-container .section-three .section-body .news-letter form label input {
        width: 168px;
    }
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .mfa-container .section-one .section-body .news-letter form label input,
    body footer .top-footer .mfa-container .section-two .section-body .news-letter form label input,
    body footer .top-footer .mfa-container .section-three .section-body .news-letter form label input {
        width: 200px;
    }
}

body footer .top-footer .mfa-container .section-one .section-body .news-letter form label input::placeholder,
body footer .top-footer .mfa-container .section-two .section-body .news-letter form label input::placeholder,
body footer .top-footer .mfa-container .section-three .section-body .news-letter form label input::placeholder {
    color: gray;
    font-size: 13px;
}

body footer .top-footer .mfa-container .section-one .section-body .news-letter form label input:focus,
body footer .top-footer .mfa-container .section-two .section-body .news-letter form label input:focus,
body footer .top-footer .mfa-container .section-three .section-body .news-letter form label input:focus {
    outline: 0;
}

body footer .top-footer .mfa-container .section-one .section-body .news-letter form label button,
body footer .top-footer .mfa-container .section-two .section-body .news-letter form label button,
body footer .top-footer .mfa-container .section-three .section-body .news-letter form label button {
    padding: 2px 10px;
    background-color: gray;
    color: #fff;
    border: 0;
    outline: 0;
}

@media only screen and (min-width: 768px) {

    body footer .top-footer .mfa-container .section-one .section-body .news-letter form label button,
    body footer .top-footer .mfa-container .section-two .section-body .news-letter form label button,
    body footer .top-footer .mfa-container .section-three .section-body .news-letter form label button {
        padding: 2px 14px;
    }
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .mfa-container .section-one .section-body .news-letter form label button,
    body footer .top-footer .mfa-container .section-two .section-body .news-letter form label button,
    body footer .top-footer .mfa-container .section-three .section-body .news-letter form label button {
        padding: 2px 18px;
    }
}

body footer .top-footer .mfa-container .section-one .section-body .news-letter form label input,
body footer .top-footer .mfa-container .section-one .section-body .news-letter form label button,
body footer .top-footer .mfa-container .section-two .section-body .news-letter form label input,
body footer .top-footer .mfa-container .section-two .section-body .news-letter form label button,
body footer .top-footer .mfa-container .section-three .section-body .news-letter form label input,
body footer .top-footer .mfa-container .section-three .section-body .news-letter form label button {
    font-family: 'HacenBeirutMd';
}

body footer .top-footer .mfa-container .section-one .section-body .social-links,
body footer .top-footer .mfa-container .section-two .section-body .social-links,
body footer .top-footer .mfa-container .section-three .section-body .social-links {
    justify-content: center;
    display: grid;
    grid-auto-flow: column;
    grid-gap: 14px;
}

body footer .top-footer .mfa-container .section-one .section-body .social-links li,
body footer .top-footer .mfa-container .section-two .section-body .social-links li,
body footer .top-footer .mfa-container .section-three .section-body .social-links li {
    display: grid;
}

body footer .top-footer .mfa-container .section-one .section-body .social-links li a,
body footer .top-footer .mfa-container .section-two .section-body .social-links li a,
body footer .top-footer .mfa-container .section-three .section-body .social-links li a {
    width: 38px;
    height: 38px;
    background-color: aliceblue;
    display: grid;
    align-items: center;
    justify-items: center;
    border-radius: 50%;
    line-height: 1;
}

body footer .top-footer .mfa-container .section-one .section-body .social-links li a i,
body footer .top-footer .mfa-container .section-two .section-body .social-links li a i,
body footer .top-footer .mfa-container .section-three .section-body .social-links li a i {
    line-height: 0;
    color: #fff;
    font-size: 14px;
    text-shadow: 0 2px 3px rgba(255, 255, 255, 0.15);
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .mfa-container .section-one .section-body .social-links li a,
    body footer .top-footer .mfa-container .section-two .section-body .social-links li a,
    body footer .top-footer .mfa-container .section-three .section-body .social-links li a {
        width: 42px;
        height: 42px;
    }

    body footer .top-footer .mfa-container .section-one .section-body .social-links li a i,
    body footer .top-footer .mfa-container .section-two .section-body .social-links li a i,
    body footer .top-footer .mfa-container .section-three .section-body .social-links li a i {
        font-size: 16px;
    }
}

body footer .top-footer .mfa-container .section-one .section-body .social-links li:nth-of-type(1) a,
body footer .top-footer .mfa-container .section-two .section-body .social-links li:nth-of-type(1) a,
body footer .top-footer .mfa-container .section-three .section-body .social-links li:nth-of-type(1) a {
    background-color: #3b5998;
}

body footer .top-footer .mfa-container .section-one .section-body .social-links li:nth-of-type(2) a,
body footer .top-footer .mfa-container .section-two .section-body .social-links li:nth-of-type(2) a,
body footer .top-footer .mfa-container .section-three .section-body .social-links li:nth-of-type(2) a {
    background-color: #1da1f2;
}

body footer .top-footer .mfa-container .section-one .section-body .social-links li:nth-of-type(3) a,
body footer .top-footer .mfa-container .section-two .section-body .social-links li:nth-of-type(3) a,
body footer .top-footer .mfa-container .section-three .section-body .social-links li:nth-of-type(3) a {
    background-color: #c13584;
}

body footer .top-footer .mfa-container .section-one .section-body .social-links li:nth-of-type(4) a,
body footer .top-footer .mfa-container .section-two .section-body .social-links li:nth-of-type(4) a,
body footer .top-footer .mfa-container .section-three .section-body .social-links li:nth-of-type(4) a {
    background-color: #ff0000;
}

body footer .top-footer .mfa-container .section-one,
body footer .top-footer .mfa-container .section-two {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(218, 165, 32, 0.151);
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .mfa-container .section-one,
    body footer .top-footer .mfa-container .section-two {
        padding-bottom: 0;
        border-bottom: 0;
    }
}

@media only screen and (min-width: 992px) {
    body footer .top-footer .mfa-container .section-two .section-body .main-section-ul {
        grid-template-columns: 1fr 1fr;
        grid-gap: 8px;
    }

    body footer .top-footer .mfa-container .section-two .section-body .main-section-ul li a span {
        font-size: 16px;
    }
}

@media only screen and (min-width: 992px) {
    body footer .top-footer .mfa-container .section-three {
        justify-items: center;
        text-align: center;
    }
}

body footer .bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.171);
    padding: 12px 0;
}

@media only screen and (min-width: 768px) {
    body footer .bottom-footer {
        padding: 14px 0;
    }
}

@media only screen and (min-width: 992px) {
    body footer .bottom-footer {
        padding: 18px 0;
    }
}

body footer .bottom-footer .mfa-container p {
    line-height: 1;
    color: rgba(205, 134, 63, 0.575);
    font-size: 12px;
    text-align: center;
}

@media only screen and (min-width: 992px) {
    body footer .bottom-footer .mfa-container p {
        font-size: 16px;
    }
}

body .category-section,
body .similar-products-section {
    padding: 32px 15px;
}

@media only screen and (min-width: 992px) {

    body .category-section,
    body .similar-products-section {
        padding: 52px 32px;
    }
}

@media only screen and (min-width: 1200px) {

    body .category-section,
    body .similar-products-section {
        padding: 72px 42px;
    }
}

body .category-section .section-heading,
body .similar-products-section .section-heading {
    display: grid;
    justify-content: start;
    margin-bottom: 12px;
}

@media only screen and (min-width: 992px) {

    body .category-section .section-heading,
    body .similar-products-section .section-heading {
        margin-bottom: 18px;
    }
}

@media only screen and (min-width: 1200px) {

    body .category-section .section-heading,
    body .similar-products-section .section-heading {
        margin-bottom: 24px;
    }
}

body .category-section .section-heading p,
body .similar-products-section .section-heading p {
    color: #151515;
    text-transform: uppercase;
    font-size: 30px;
    letter-spacing: 2px;
    border-bottom: 2px solid #0b50eb;
    line-height: 1;
}

@media only screen and (min-width: 992px) {

    body .category-section .section-heading p,
    body .similar-products-section .section-heading p {
        font-size: 40px;
    }
}

@media only screen and (min-width: 1200px) {

    body .category-section .section-heading p,
    body .similar-products-section .section-heading p {
        font-size: 52px;
    }
}

body .category-section .section-body .main-ul,
body .similar-products-section .section-body .main-ul {
    display: grid;
    grid-gap: 14px;
    grid-template-columns: 1fr 1fr;
}

@media only screen and (min-width: 768px) {

    body .category-section .section-body .main-ul,
    body .similar-products-section .section-body .main-ul {
        grid-gap: 42px;
    }
}

@media only screen and (min-width: 992px) {

    body .category-section .section-body .main-ul,
    body .similar-products-section .section-body .main-ul {
        grid-gap: 32px;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (min-width: 1200px) {

    body .category-section .section-body .main-ul,
    body .similar-products-section .section-body .main-ul {
        grid-gap: 42px;
    }
}

body .category-section .section-body .main-ul li,
body .similar-products-section .section-body .main-ul li {
    display: grid;
}

body .category-section .section-body .main-ul li .product-card,
body .similar-products-section .section-body .main-ul li .product-card {
    display: grid;
    background-color: #f7f8fa;
    position: relative;
    border-radius: 2px;
    border: 1px solid transparent;
    transition: all .3s ease-out;
}

body .category-section .section-body .main-ul li .product-card .img-div,
body .similar-products-section .section-body .main-ul li .product-card .img-div {
    display: grid;
    justify-items: center;
    overflow: hidden;
    height: 150px;
    padding: 8px;
}

@media only screen and (min-width: 375px) {

    body .category-section .section-body .main-ul li .product-card .img-div,
    body .similar-products-section .section-body .main-ul li .product-card .img-div {
        height: 180px;
        padding: 14px;
    }
}

@media only screen and (min-width: 768px) {

    body .category-section .section-body .main-ul li .product-card .img-div,
    body .similar-products-section .section-body .main-ul li .product-card .img-div {
        height: 280px;
    }
}

@media only screen and (min-width: 992px) {

    body .category-section .section-body .main-ul li .product-card .img-div,
    body .similar-products-section .section-body .main-ul li .product-card .img-div {
        height: 400px;
    }
}

body .category-section .section-body .main-ul li .product-card .img-div img,
body .similar-products-section .section-body .main-ul li .product-card .img-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    transition: all .3s ease-out;
}

body .category-section .section-body .main-ul li .product-card .text,
body .similar-products-section .section-body .main-ul li .product-card .text {
    padding: 8px 0;
    z-index: 1;
    display: grid;
    justify-content: center;
}

@media only screen and (min-width: 992px) {

    body .category-section .section-body .main-ul li .product-card .text,
    body .similar-products-section .section-body .main-ul li .product-card .text {
        padding: 24px 0;
    }
}

body .category-section .section-body .main-ul li .product-card .text .title,
body .similar-products-section .section-body .main-ul li .product-card .text .title {
    color: #151515;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 2px;
    text-align: center;
    transition: all .3s ease-out;
}

@media only screen and (min-width: 375px) {

    body .category-section .section-body .main-ul li .product-card .text .title,
    body .similar-products-section .section-body .main-ul li .product-card .text .title {
        font-size: 18px;
    }
}

@media only screen and (min-width: 992px) {

    body .category-section .section-body .main-ul li .product-card .text .title,
    body .similar-products-section .section-body .main-ul li .product-card .text .title {
        font-size: 22px;
    }
}

@media only screen and (min-width: 1200px) {

    body .category-section .section-body .main-ul li .product-card .text .title,
    body .similar-products-section .section-body .main-ul li .product-card .text .title {
        font-size: 28px;
    }
}

body .category-section .section-body .main-ul li .product-card .text .price,
body .similar-products-section .section-body .main-ul li .product-card .text .price {
    color: #0b50eb;
    word-spacing: 3px;
    font-size: 20px;
    text-align: center;
}

@media only screen and (min-width: 1200px) {

    body .category-section .section-body .main-ul li .product-card .text .price,
    body .similar-products-section .section-body .main-ul li .product-card .text .price {
        font-size: 28px;
    }
}

body .category-section .section-body .main-ul li .product-card .discount,
body .similar-products-section .section-body .main-ul li .product-card .discount {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #feefde;
    padding: 4px 8px;
    font-size: 14px;
    border-radius: 2px;
}

body .category-section .section-body .main-ul li .product-card .discount span,
body .similar-products-section .section-body .main-ul li .product-card .discount span {
    color: #f68b1e;
}

body .category-section .section-body .main-ul li .product-card:hover,
body .similar-products-section .section-body .main-ul li .product-card:hover {
    box-shadow: 0 18px 20px rgba(0, 0, 0, 0.15);
    border-color: #0b50eb;
}

@media only screen and (min-width: 992px) {

    body .category-section .section-body .main-ul li .product-card:hover,
    body .similar-products-section .section-body .main-ul li .product-card:hover {
        box-shadow: 0 22px 24px rgba(0, 0, 0, 0.15);
    }
}

body .category-section .section-body .main-ul li .product-card:hover .img-div img,
body .similar-products-section .section-body .main-ul li .product-card:hover .img-div img {
    transform: scale(0.95);
}

body .category-section .section-body .main-ul li .product-card:hover .title p,
body .similar-products-section .section-body .main-ul li .product-card:hover .title p {
    color: #0b50eb;
}

body .product-details-page {
    background-color: #fff;
    min-height: 60vh;
    padding: 32px 0;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 768px) {
    body .product-details-page {
        padding: 42px 0;
    }
}

@media only screen and (min-width: 992px) {
    body .product-details-page {
        margin-top: 90px;
        padding: 62px 0;
    }
}

@media only screen and (min-width: 992px) {
    body .product-details-page .page-body {
        display: grid;
        grid-gap: 32px;
        grid-template-columns: 50% 45%;
        justify-content: center;
    }
}

body .product-details-page .page-body > .mfa-container:nth-of-type(2) {
    justify-self: center;
}

body .product-details-page .page-body > .mfa-container .body-text {
    display: grid;
    grid-gap: 18px;
}

@media only screen and (min-width: 768px) {
    body .product-details-page .page-body > .mfa-container .body-text {
        grid-gap: 22px;
    }
}

@media only screen and (min-width: 992px) {
    body .product-details-page .page-body > .mfa-container .body-text {
        grid-gap: 32px;
    }
}

body .product-details-page .page-body > .mfa-container .body-text .main-heading {
    padding: 10px 0;
    display: grid;
    grid-gap: 12px;
}

body .product-details-page .page-body > .mfa-container .body-text .main-heading .service-title {
    font-weight: bold;
    color: #272727;
    text-transform: capitalize;
    font-weight: bold;
    font-size: 18px;
}

@media only screen and (min-width: 768px) {
    body .product-details-page .page-body > .mfa-container .body-text .main-heading .service-title {
        font-size: 24px;
    }
}

@media only screen and (min-width: 992px) {
    body .product-details-page .page-body > .mfa-container .body-text .main-heading .service-title {
        font-size: 32px;
    }
}

body .product-details-page .page-body > .mfa-container .body-text .main-heading .brief p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    text-align: justify;
    font-family: 'JF-Flat-regular';
}

body .product-details-page .page-body > .mfa-container .body-text .specifications {
    border-radius: 2px;
    padding: 14px;
    background-color: #f7f8fa;
}

@media only screen and (min-width: 768px) {
    body .product-details-page .page-body > .mfa-container .body-text .specifications {
        padding: 18px;
    }
}

@media only screen and (min-width: 992px) {
    body .product-details-page .page-body > .mfa-container .body-text .specifications {
        padding: 28px;
    }
}

body .product-details-page .page-body > .mfa-container .body-text .specifications .title {
    color: #272727;
    color: #0b50eb;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-size: 16px;
}

@media only screen and (min-width: 992px) {
    body .product-details-page .page-body > .mfa-container .body-text .specifications .title {
        margin-bottom: 12px;
        font-size: 18px;
    }
}

@media only screen and (min-width: 1200px) {
    body .product-details-page .page-body > .mfa-container .body-text .specifications .title {
        font-size: 22px;
    }
}

body .product-details-page .page-body > .mfa-container .body-text .specifications ul {
    padding: 0 16px;
    display: grid;
}

body .product-details-page .page-body > .mfa-container .body-text .specifications ul li {
    display: grid;
    padding: 6px 0;
    line-height: 1.6;
}

body .product-details-page .page-body > .mfa-container .body-text .specifications ul p {
    font-family: 'JF-Flat-regular';
    position: relative;
    font-size: 14px;
    padding-right: 20px;
    line-height: 1.6;
}

@media only screen and (min-width: 992px) {
    body .product-details-page .page-body > .mfa-container .body-text .specifications ul p {
        padding-right: 26px;
    }
}

body .product-details-page .page-body > .mfa-container .body-text .specifications ul p::before {
    content: '\f4b7';
    font-family: 'Ionicons';
    position: absolute;
    right: 2px;
    top: 4px;
    color: #0b50eb;
    font-size: 20px;
    line-height: 1;
}

@media only screen and (min-width: 992px) {
    body .product-details-page .page-body > .mfa-container .body-text .specifications ul p::before {
        font-size: 28px;
        top: 2px;
    }
}

body .product-details-page .page-body > .mfa-container .body-images {
    border: 1px solid rgba(152, 59, 140, 0.2);
    padding: 8px 8px 0 8px;
    border-radius: 2px;
}

@media only screen and (min-width: 992px) {
    body .product-details-page .page-body > .mfa-container .body-images {
        position: sticky;
        top: 130px;
    }
}

body .product-details-page .page-body > .mfa-container .body-images img {
    object-fit: cover;
}

body .product-details-page .page-body > .mfa-container .body-images .fotorama__nav-wrap {
    padding: 12px 0;
}

body .product-details-page .services-section {
    background-color: #fff;
    padding: 62px 0;
    padding-bottom: 0;
}

@media only screen and (min-width: 992px) {
    body .product-details-page .services-section {
        padding: 82px 0;
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .product-details-page .services-section {
        padding: 120px 0;
        padding-bottom: 0;
    }
}

body .book-page {
    margin-top: 80px;
    padding: 32px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 992px) {
    body .book-page {
        margin-top: 110px;
        padding: 52px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .book-page {
        padding: 62px 0;
    }
}

body .albums-page {
    min-height: 60vh;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 80px;
    padding: 32px 0;
}

@media only screen and (min-width: 992px) {
    body .albums-page {
        margin-top: 110px;
        padding: 42px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .albums-page {
        padding: 52px 0;
    }
}

body .albums-page .albums-section {
    padding: 22px 0;
    display: grid;
}

@media only screen and (min-width: 992px) {
    body .albums-page .albums-section {
        padding: 32px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .albums-page .albums-section {
        padding: 52px 0;
    }
}

body .albums-page .albums-section .section-heading {
    display: grid;
    justify-content: center;
    margin-bottom: 12px;
}

@media only screen and (min-width: 992px) {
    body .albums-page .albums-section .section-heading {
        margin-bottom: 18px;
    }
}

@media only screen and (min-width: 1200px) {
    body .albums-page .albums-section .section-heading {
        margin-bottom: 24px;
    }
}

body .albums-page .albums-section .section-heading p {
    color: #151515;
    text-transform: uppercase;
    font-size: 30px;
    border-bottom: 2px solid #0b50eb;
    line-height: 1;
}

@media only screen and (min-width: 992px) {
    body .albums-page .albums-section .section-heading p {
        font-size: 40px;
    }
}

@media only screen and (min-width: 1200px) {
    body .albums-page .albums-section .section-heading p {
        font-size: 52px;
    }
}

body .albums-page .albums-section .section-body {
    transition: all 0.3s ease-out;
}

body .albums-page .albums-section .section-body:hover {
    background-color: #000;
}

body .albums-page .albums-section .section-body:hover .main-ul li a {
    opacity: 0.4;
    transform: scale(0.96);
    filter: grayscale(0.3);
}

body .albums-page .albums-section .section-body .main-ul {
    display: grid;
    grid-gap: 14px;
    grid-template-columns: 1fr 1fr;
    background-color: #fff;
}

@media only screen and (min-width: 768px) {
    body .albums-page .albums-section .section-body .main-ul {
        grid-gap: 42px;
    }
}

@media only screen and (min-width: 1200px) {
    body .albums-page .albums-section .section-body .main-ul {
        grid-gap: 12px;
    }
}

body .albums-page .albums-section .section-body .main-ul li {
    display: grid;
}

body .albums-page .albums-section .section-body .main-ul li .product-card {
    display: grid;
    background-color: #f7f8fa;
    position: relative;
    border-radius: 2px;
    transition: all 0.3s ease-out;
    height: 180px;
}

@media only screen and (min-width: 768px) {
    body .albums-page .albums-section .section-body .main-ul li .product-card {
        height: 280px;
    }
}

@media only screen and (min-width: 992px) {
    body .albums-page .albums-section .section-body .main-ul li .product-card {
        height: 340px;
    }
}

@media only screen and (min-width: 1200px) {
    body .albums-page .albums-section .section-body .main-ul li .product-card {
        height: 450px;
    }
}

@media only screen and (min-width: 1600px) {
    body .albums-page .albums-section .section-body .main-ul li .product-card {
        height: 550px;
    }
}

body .albums-page .albums-section .section-body .main-ul li .product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 2px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.01) 60%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
}

body .albums-page .albums-section .section-body .main-ul li .product-card .img-div {
    display: grid;
    justify-items: center;
    overflow: hidden;
}

body .albums-page .albums-section .section-body .main-ul li .product-card .img-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    transition: all 0.3s ease-out;
}

body .albums-page .albums-section .section-body .main-ul li .product-card .title {
    position: absolute;
    bottom: 0;
    left: 6%;
    right: 6%;
    padding: 8px 0;
    z-index: 1;
    display: grid;
    justify-content: center;
}

@media only screen and (min-width: 992px) {
    body .albums-page .albums-section .section-body .main-ul li .product-card .title {
        padding: 24px 0;
    }
}

body .albums-page .albums-section .section-body .main-ul li .product-card .title p {
    color: #fff;
    text-transform: uppercase;
    word-spacing: 2px;
    text-align: center;
    border-bottom: 2px solid #1a5994;
    transition: all 0.3s ease-out;
    font-size: 18px;
}

@media only screen and (min-width: 768px) {
    body .albums-page .albums-section .section-body .main-ul li .product-card .title p {
        font-size: 22px;
    }
}

@media only screen and (min-width: 992px) {
    body .albums-page .albums-section .section-body .main-ul li .product-card .title p {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1200px) {
    body .albums-page .albums-section .section-body .main-ul li .product-card .title p {
        font-size: 26px;
    }
}

body .albums-page .albums-section .section-body .main-ul li .product-card:hover {
    box-shadow: 0 18px 20px rgba(0, 0, 0, 0.15);
    opacity: 1;
    transform: scale(1.01);
    filter: grayscale(0);
}

@media only screen and (min-width: 992px) {
    body .albums-page .albums-section .section-body .main-ul li .product-card:hover {
        box-shadow: 0 22px 24px rgba(0, 0, 0, 0.15);
    }
}

body .albums-page .albums-section .section-body .main-ul li .product-card:hover .img-div img {
    transform: scale(1.15) rotate(6deg);
}

body .about-page {
    background-color: #f7f8fa;
    padding: 32px 0;
    min-height: 60vh;
    margin-top: 80px;
}

@media only screen and (min-width: 992px) {
    body .about-page {
        margin-top: 110px;
        padding: 52px 0;
    }
}

body .about-page .page-heading {
    padding-bottom: 10px;
}

@media only screen and (min-width: 992px) {
    body .about-page .page-heading {
        padding-bottom: 22px;
    }
}

@media only screen and (min-width: 1200px) {
    body .about-page .page-heading {
        padding-bottom: 32px;
    }
}

body .about-page .page-heading p {
    color: #151515;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    text-transform: capitalize;
    display: grid;
}

@media only screen and (min-width: 768px) {
    body .about-page .page-heading p {
        font-size: 30px;
    }
}

@media only screen and (min-width: 992px) {
    body .about-page .page-heading p {
        font-size: 42px;
    }
}

body .about-page .page-body .about-wrapper {
    display: grid;
    grid-gap: 32px;
}

@media only screen and (min-width: 992px) {
    body .about-page .page-body .about-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-gap: 32px;
    }
}

body .about-page .page-body .about-wrapper .main-section-ul {
    order: 1;
    align-self: start;
    display: grid;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

@media only screen and (min-width: 992px) {
    body .about-page .page-body .about-wrapper .main-section-ul {
        order: 0;
    }
}

body .about-page .page-body .about-wrapper .main-section-ul > li {
    display: grid;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

body .about-page .page-body .about-wrapper .main-section-ul > li:last-of-type {
    border-bottom: 0;
}

body .about-page .page-body .about-wrapper .main-section-ul > li .about-drop-div {
    display: grid;
    grid-template-columns: 1fr auto;
    cursor: pointer;
    padding: 12px;
}

@media only screen and (min-width: 992px) {
    body .about-page .page-body .about-wrapper .main-section-ul > li .about-drop-div {
        padding: 16px;
    }
}

body .about-page .page-body .about-wrapper .main-section-ul > li .about-drop-div .about-drop-heading p {
    color: #151515;
    font-size: 22px;
}

@media only screen and (min-width: 1200px) {
    body .about-page .page-body .about-wrapper .main-section-ul > li .about-drop-div .about-drop-heading p {
        font-size: 26px;
    }
}

body .about-page .page-body .about-wrapper .main-section-ul > li .about-drop-div .about-drop-icon {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 8px;
    align-items: center;
}

@media only screen and (min-width: 992px) {
    body .about-page .page-body .about-wrapper .main-section-ul > li .about-drop-div .about-drop-icon {
        grid-gap: 10px;
    }
}

@media only screen and (min-width: 1200px) {
    body .about-page .page-body .about-wrapper .main-section-ul > li .about-drop-div .about-drop-icon {
        grid-gap: 16px;
    }
}

body .about-page .page-body .about-wrapper .main-section-ul > li .about-drop-div .about-drop-icon .v-line {
    width: 1px;
    background-color: #ddd;
    height: 80%;
}

body .about-page .page-body .about-wrapper .main-section-ul > li .about-drop-div .about-drop-icon i {
    color: #151515;
    font-size: 22px;
    transition: all .3s ease-out;
}

body .about-page .page-body .about-wrapper .main-section-ul > li .about-drop-div .about-drop-icon i::before {
    transition: all .3s ease-out;
}

body .about-page .page-body .about-wrapper .main-section-ul > li .about-dropped {
    padding: 0 16px;
    height: 0;
    visibility: hidden;
    opacity: 0;
    display: grid;
    transition: all .3s ease-out;
}

body .about-page .page-body .about-wrapper .main-section-ul > li .about-dropped li {
    display: grid;
    padding: 6px 0;
    line-height: 1.6;
}

body .about-page .page-body .about-wrapper .main-section-ul > li .about-dropped p {
    font-family: 'JF-Flat-regular';
    position: relative;
    font-size: 14px;
    padding-right: 20px;
    line-height: 1.6;
}

@media only screen and (min-width: 992px) {
    body .about-page .page-body .about-wrapper .main-section-ul > li .about-dropped p {
        padding-right: 26px;
    }
}

body .about-page .page-body .about-wrapper .main-section-ul > li .about-dropped p::before {
    content: '\f4b7';
    font-family: "Ionicons";
    position: absolute;
    right: 2px;
    top: 4px;
    color: #0b50eb;
    font-size: 20px;
    line-height: 1;
}

@media only screen and (min-width: 992px) {
    body .about-page .page-body .about-wrapper .main-section-ul > li .about-dropped p::before {
        font-size: 28px;
        top: 2px;
    }
}

body .about-page .page-body .about-wrapper .main-section-ul > li.toggle-drop-li {
    background-color: #f9f9f9;
    background-color: #fff;
    border-bottom: 0;
    padding-bottom: 12px;
}

body .about-page .page-body .about-wrapper .main-section-ul > li.toggle-drop-li .about-drop-div {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body .about-page .page-body .about-wrapper .main-section-ul > li.toggle-drop-li .about-drop-div .about-drop-icon .v-line {
    background-color: rgba(0, 0, 0, 0.1);
}

body .about-page .page-body .about-wrapper .main-section-ul > li.toggle-drop-li .about-drop-div .about-drop-icon i {
    transform: rotate(360deg);
    color: red;
}

body .about-page .page-body .about-wrapper .main-section-ul > li.toggle-drop-li .about-drop-div .about-drop-icon i::before {
    content: '\ec37';
}

body .about-page .page-body .about-wrapper .main-section-ul > li.toggle-drop-li .about-dropped {
    visibility: visible;
    opacity: 1;
}

body .about-page .page-body .about-wrapper .images-wrapper {
    overflow: hidden;
    display: grid;
}

body .about-page .page-body .about-wrapper .images-wrapper > ul {
    display: grid;
}

body .about-page .page-body .about-wrapper .images-wrapper > ul li {
    position: relative;
    width: 100%;
    height: 300px;
    display: none;
}

@media only screen and (min-width: 992px) {
    body .about-page .page-body .about-wrapper .images-wrapper > ul li {
        height: 500px;
    }
}

@media only screen and (min-width: 1200px) {
    body .about-page .page-body .about-wrapper .images-wrapper > ul li {
        height: 620px;
    }
}

body .about-page .page-body .about-wrapper .images-wrapper > ul li .img-div {
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

body .about-page .page-body .about-wrapper .images-wrapper > ul li .img-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body .about-page .page-body .about-wrapper .images-wrapper > ul li.active-li-img {
    display: grid;
    animation: animate-li .6s ease-out both;
}

@keyframes animate-li {
    0% {
        visibility: hidden;
        opacity: 0;
        transform: translate(200px, 0);
    }

    100% {
        opacity: 1;
        visibility: visible;
        transform: translate(0, 0);
    }
}

body .contact-page {
    margin-top: 80px;
    padding: 32px 0;
    position: relative;
}

@media only screen and (min-width: 992px) {
    body .contact-page {
        margin-top: 110px;
    }
}

body .contact-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bkgs/dust.png);
    z-index: -1;
}

@media only screen and (min-width: 768px) {
    body .contact-page {
        padding: 42px 0;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page {
        padding: 52px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .contact-page {
        padding: 62px 0;
    }
}

body .contact-page > .mfa-container .page-body {
    display: grid;
    grid-gap: 22px;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .mfa-container .page-body {
        grid-gap: 32px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body {
        grid-template-columns: 45% 45%;
        justify-content: space-between;
    }
}

body .contact-page > .mfa-container .page-body .branches {
    display: grid;
    grid-gap: 32px;
    align-self: start;
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .branches {
        position: sticky;
        top: 100px;
    }
}

body .contact-page > .mfa-container .page-body .branches > li {
    background-color: #3d3d3d;
    display: grid;
    grid-gap: 18px;
    padding: 22px 14px;
    border-radius: 4px;
    position: relative;
}

body .contact-page > .mfa-container .page-body .branches > li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bkgs/dots-large.svg);
    opacity: 0.05;
}

body .contact-page > .mfa-container .page-body .branches > li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.04);
}

@media only screen and (min-width: 768px) {
    body .contact-page > .mfa-container .page-body .branches > li {
        padding: 20px;
        grid-gap: 24px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .branches > li {
        padding: 26px;
        grid-gap: 32px;
        border-radius: 6px;
    }
}

@media only screen and (min-width: 1200px) {
    body .contact-page > .mfa-container .page-body .branches > li {
        padding: 42px 24px;
    }
}

body .contact-page > .mfa-container .page-body .branches > li .branch-heading {
    position: relative;
    z-index: 1;
}

body .contact-page > .mfa-container .page-body .branches > li .branch-heading p {
    color: #f6be45;
    color: goldenrod;
    color: gray;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .mfa-container .page-body .branches > li .branch-heading p {
        font-size: 20px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .branches > li .branch-heading p {
        font-size: 22px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .branches > li .branch-heading p {
        font-size: 28px;
    }
}

body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones {
    position: relative;
    z-index: 1;
    display: grid;
    grid-gap: 24px;
    justify-items: center;
    align-items: center;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones {
        grid-template-columns: 1fr 1fr;
    }
}

body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .working-hours .week-days {
    display: grid;
    justify-content: start;
    grid-gap: 8px;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .working-hours .week-days {
        grid-gap: 10px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .working-hours .week-days {
        grid-gap: 12px;
    }
}

@media only screen and (min-width: 1200px) {
    body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .working-hours .week-days {
        grid-gap: 18px;
    }
}

body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .working-hours .week-days li {
    display: grid;
    grid-template-columns: 86px 1fr;
    grid-gap: 8px;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .working-hours .week-days li {
        grid-gap: 12px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .working-hours .week-days li {
        grid-gap: 14px;
    }
}

body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .working-hours .week-days li span:first-of-type {
    color: cadetblue;
    color: #fff;
}

body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .working-hours .week-days li span:last-of-type {
    color: rgba(255, 255, 255, 0.6);
}

body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .phones {
    display: grid;
    grid-gap: 12px;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .phones {
        grid-gap: 16px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .phones {
        grid-gap: 22px;
    }
}

body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .phones li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    grid-gap: 4px;
    color: #fff;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .phones li {
        grid-gap: 6px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .phones li {
        grid-gap: 8px;
    }
}

body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .phones li span {
    font-size: 20px;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .phones li span {
        font-size: 24px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .phones li span {
        font-size: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .phones li span {
        font-size: 22px;
    }
}

body .contact-page > .mfa-container .page-body .branches > li .working-hours-phones .phones li span:last-of-type {
    letter-spacing: 1px;
    line-height: 1;
}

body .contact-page > .mfa-container .page-body .branches > li .location {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #25ccf7;
    color: gray;
    display: grid;
    grid-template-columns: auto auto;
    align-items: start;
    justify-content: center;
    grid-gap: 4px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media only screen and (min-width: 1200px) {
    body .contact-page > .mfa-container .page-body .branches > li .location {
        padding-top: 18px;
    }
}

body .contact-page > .mfa-container .page-body .form-wrapper {
    position: relative;
    padding: 22px 0;
    border-radius: 4px;
    display: grid;
    background-color: #0a3d62;
    background-color: #3d3d3d;
    align-self: start;
    box-shadow: 0 36px 46px rgba(255, 255, 255, 0.24);
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .form-wrapper {
        border-radius: 8px;
    }
}

body .contact-page > .mfa-container .page-body .form-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bkgs/dots-large.svg);
    opacity: .05;
}

body .contact-page > .mfa-container .page-body .form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.02);
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .form-wrapper {
        position: sticky;
        top: 110px;
    }
}

body .contact-page > .mfa-container .page-body .form-wrapper .form-heading {
    position: relative;
    z-index: 1;
    padding: 0 16px;
}

body .contact-page > .mfa-container .page-body .form-wrapper .form-heading p {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #0b50eb;
    color: #F6BE45;
    color: goldenrod;
    color: gray;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .mfa-container .page-body .form-wrapper .form-heading p {
        font-size: 32px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .form-wrapper .form-heading p {
        font-size: 38px;
    }
}

body .contact-page > .mfa-container .page-body .form-wrapper form {
    position: relative;
    z-index: 1;
    padding: 16px;
    display: grid;
    grid-gap: 22px;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .mfa-container .page-body .form-wrapper form {
        padding: 24px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .form-wrapper form {
        padding: 36px;
    }
}

@media only screen and (min-width: 768px) {
    body .contact-page > .mfa-container .page-body .form-wrapper form {
        grid-gap: 24px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .form-wrapper form {
        grid-gap: 32px;
    }
}

@media only screen and (min-width: 1200px) {
    body .contact-page > .mfa-container .page-body .form-wrapper form {
        grid-gap: 38px;
    }
}

body .contact-page > .mfa-container .page-body .form-wrapper form .form-div {
    display: grid;
}

body .contact-page > .mfa-container .page-body .form-wrapper form .form-div input {
    border: 2px solid #cacaca75;
    padding: 2px 16px;
    height: 40px;
    background-color: transparent;
    border-radius: 52px;
    color: #fff;
    transition: all .3s ease-out;
}

body .contact-page > .mfa-container .page-body .form-wrapper form .form-div input::placeholder {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .form-wrapper form .form-div input::placeholder {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) {
    body .contact-page > .mfa-container .page-body .form-wrapper form .form-div input {
        height: 46px;
        padding: 0 14px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .form-wrapper form .form-div input {
        height: 52px;
        padding: 0 22px;
    }
}

body .contact-page > .mfa-container .page-body .form-wrapper form .form-div input:focus {
    outline: 0;
    border-color: #0b50eb;
    box-shadow: 0 0 4px #0b50eb;
    border-color: goldenrod;
    border-color: #0b50eb;
}

body .contact-page > .mfa-container .page-body .form-wrapper form .form-div textarea {
    border: 2px solid #cacaca75;
    padding: 8px 12px;
    height: 82px;
    background-color: transparent;
    border-radius: 22px;
    color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transition: all .3s ease-out;
}

body .contact-page > .mfa-container .page-body .form-wrapper form .form-div textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

@media only screen and (min-width: 768px) {
    body .contact-page > .mfa-container .page-body .form-wrapper form .form-div textarea {
        height: 72px;
        padding: 10px 14px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .form-wrapper form .form-div textarea {
        height: 120px;
        padding: 16px 22px;
    }
}

body .contact-page > .mfa-container .page-body .form-wrapper form .form-div textarea:focus {
    outline: 0;
    border-color: #0b50eb;
    box-shadow: 0 0 4px #0b50eb;
    border-color: goldenrod;
    border-color: #0b50eb;
}

body .contact-page > .mfa-container .page-body .form-wrapper form input,
body .contact-page > .mfa-container .page-body .form-wrapper form textarea,
body .contact-page > .mfa-container .page-body .form-wrapper form button {
    font-family: 'JF-Flat-regular';
}

body .contact-page > .mfa-container .page-body .form-wrapper form button {
    padding: 8px 16px;
    border: 0;
    outline: 0;
    background-color: #0b50eb;
    background-color: #F6BE45;
    background-color: goldenrod;
    background-color: gray;
    color: #272727;
    border-radius: 52px;
    transition: all .3s ease-out;
    cursor: pointer;
}

@media only screen and (min-width: 992px) {
    body .contact-page > .mfa-container .page-body .form-wrapper form button {
        padding: 10px 20px;
    }
}

@media only screen and (min-width: 1200px) {
    body .contact-page > .mfa-container .page-body .form-wrapper form button {
        padding: 12px 22px;
    }
}

body .contact-page > .mfa-container .page-body .form-wrapper form button:hover {
    background-color: #fff;
}

body .contact-page > .mfa-container .page-body .form-wrapper form button:focus {
    border: 0;
    outline: 0;
}

body .contact-page .map-wrapper {
    margin-top: 32px;
}

@media only screen and (min-width: 992px) {
    body .contact-page .map-wrapper {
        margin-top: 42px;
    }
}

@media only screen and (min-width: 1200px) {
    body .contact-page .map-wrapper {
        margin-top: 62px;
    }
}

body .contact-page .map-wrapper iframe {
    width: 100%;
    height: 300px;
}

@media only screen and (min-width: 992px) {
    body .contact-page .map-wrapper iframe {
        height: 420px;
    }
}

@media only screen and (min-width: 1200px) {
    body .contact-page .map-wrapper iframe {
        height: 480px;
    }
}
/*********************************/

/*  service ---------------------------------------*/
.service {}

.service .box-test {
    background: #f8f9fa;
    text-align: right;
    position: relative;
}

.service .box-test .img-test {
    width: 270px;
    height: 240px;
    overflow: hidden;
}

.service .box-test .img-test img {
    width: 270px;
    height: 220px;
}

.service .box-test .contant-test {
    padding: 10px;
}

.service .box-test .contant-test h6 {
    font-weight: bold;
    color: #29203f;
}

.service .box-test .contant-test p {
    color: #545b62;
}

.service {
    position: relative;
}

.service .box-test .contant-test h6 span {
    background: #4ed7fb;
    width: 10px;
    width: 30px;
    height: 4px;
    display: inline-block;
    margin-left: 10px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background: #29213f;
    color: #fff;
    border: 1px solid #29213f;
    padding: 0px 15px !important;
    font-size: 22px;
    outline: none;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #165c85;
    color: #FFF;
    text-decoration: none;
    border: 1px solid #165c85;
}

.owl-theme .owl-nav {
    top: -86px;
    left: 0;
    position: absolute;
    background: #f8f9fa;
}
/*****************/
.carousel-3d-slide {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    top: 0;
    border-radius: 1px;
    border-color: #000;
    border-color: #ddd !important;
    border-style: solid;
    background-size: cover;
    background-color: #e9ecef !important;
    display: block;
    margin: 0;
    box-sizing: border-box;
    text-align: center !important;
}

.carousel-3d-slide img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50%;
}

.carousel-3d-slide span {
    display: block;
    font-weight: bold;
    font-size: 20px;
    margin: 5px;
}


.strat-section {
    font-weight: bold;
    font-size: 33px;
    color: #666;
    text-align: right
}

.strat-sectionH3 {
    text-align: center;
    border-bottom: 2px solid;
    display: table;
    text-align: right !important;
/*    font-weight: bold;*/
    color: #29213f;
    padding-bottom: 6px;
    margin-bottom: 35px
}

.strat-section span {
    color: #5d31a9;
    border-bottom: 2px solid #5d31a9;
    padding-bottom: 10px;
    display: inline-block;


}
/*  service ---------------------------------------*/
body .services-page {
    background-color: #f7f8fa;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 80px;
    padding: 32px 0;
}

@media only screen and (min-width: 992px) {
    body .services-page {
        padding: 42px 0;
        margin-top: 90px;
    }
}

@media only screen and (min-width: 1200px) {
    body .services-page {
        padding: 62px 0;
    }
}

body .services-section .section-body {
    display: grid;
    transition: all 0.4s ease-out;
}

body .services-section .section-body .main-section-ul {
    display: grid;
}

@media only screen and (min-width: 992px) {
    body .services-section .section-body .main-section-ul {
        grid-template-columns: repeat(4, 1fr);
    }
}

body .services-section .section-body .main-section-ul > li {
    display: grid;
}

body .services-section .section-body .main-section-ul > li a {
    transition: all 0.4s ease-out;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

@media only screen and (min-width: 992px) {
    body .services-section .section-body .main-section-ul > li a {
        grid-template-columns: auto;
        grid-template-rows: 1fr 1fr;
    }
}

body .services-section .section-body .main-section-ul > li a .img-div {
    position: relative;
    display: grid;
    background-color: moccasin;
    height: 180px;
}

body .services-section .section-body .main-section-ul > li a .img-div::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.4s ease-out;
}

body .services-section .section-body .main-section-ul > li a .img-div::before {
    content: '\f489';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    font-size: 50px;
    font-family: 'Ionicons';
    color: #fff;
    display: block;
    opacity: 0;
    z-index: 2;
    transition: all 0.4s ease-out;
}

@media only screen and (min-width: 992px) {
    body .services-section .section-body .main-section-ul > li a .img-div::before {
        font-size: 80px;
    }
}

@media only screen and (min-width: 992px) {
    body .services-section .section-body .main-section-ul > li a .img-div {
        height: 320px;
    }
}

body .services-section .section-body .main-section-ul > li a .img-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-out;
}

body .services-section .section-body .main-section-ul > li a .text {
    display: grid;
    align-items: center;
    position: relative;
}

body .services-section .section-body .main-section-ul > li a .text .service-title {
    width: 80%;
    margin: auto;
}

body .services-section .section-body .main-section-ul > li a .text p {
    text-align: center;
    color: #272727;
    position: relative;
    z-index: 2;
    font-size: 18px;
}

@media only screen and (min-width: 992px) {
    body .services-section .section-body .main-section-ul > li a .text p {
        font-size: 28px;
    }
}

@media only screen and (min-width: 1200px) {
    body .services-section .section-body .main-section-ul > li a .text p {
        font-size: 36px;
    }
}

body .services-section .section-body .main-section-ul > li a .text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all 0.4s ease-out;
    background-color: #f7f7f7;
}

body .services-section .section-body .main-section-ul > li a .text::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    bottom: auto;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #f7f7f7;
    border-right: 0 none;
    transform: translate(0, -50%);
}

@media only screen and (min-width: 992px) {
    body .services-section .section-body .main-section-ul > li a .text::after {
        top: auto;
        bottom: 100%;
        left: 50%;
        border-top: 0 none;
        border-right: 16px solid transparent;
        border-left: 16px solid transparent;
        border-bottom: 16px solid #f7f7f7;
        transform: translate(-50%, 0);
    }
}

body .services-section .section-body .main-section-ul > li a:hover {
    z-index: 2;
    opacity: 1 !important;
}

body .services-section .section-body .main-section-ul > li a:hover .img-div::after {
    background-color: #00924783;
    background-color: rgba(152, 59, 140, 0.4);
}

body .services-section .section-body .main-section-ul > li a:hover .img-div::before {
    transform: translate(-50%, -50%) rotate(0);
    opacity: 1;
}

body .services-section .section-body .main-section-ul > li a:hover .text::before {
    z-index: 2;
    background-color: #f7f7f7;
}

body .services-section .section-body .main-section-ul > li:nth-of-type(2n + 2) a .img-div {
    order: 1;
}

body .services-section .section-body .main-section-ul > li:nth-of-type(2n + 2) a .text::after {
    left: auto;
    right: 100%;
    border-left: 0 none;
    border-right: 16px solid #f7f7f7;
}

@media only screen and (min-width: 992px) {
    body .services-section .section-body .main-section-ul > li:nth-of-type(2n + 2) a .text::after {
        top: 100%;
        left: 50%;
        bottom: auto;
        right: auto;
        border-top: 16px solid #f7f7f7;
        border-right: 16px solid transparent;
        border-left: 16px solid transparent;
        border-bottom: 0 none;
    }
}

body .services-section .section-body:hover {
    background-color: #000;
}

body .services-section .section-body:hover .main-section-ul > li a {
    opacity: 0.4;
}

/***************************/

body .clients-section {
    /* clip-path: polygon(0 0, 100% 4vw, 100% calc(100% - 4vw), 0 100%); */
    -wibkit-clip-path: polygon(0 0, 100% 4vw, 100% calc(100% - 4vw), 0 100%);
    /* margin: -4vw 0; */
    position: relative;
    z-index: 3;
    padding: calc(4vw + 32px) 0;
}

@media only screen and (min-width: 992px) {
    body .clients-section {
        padding: calc(4vw + 52px) 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .clients-section {
        padding: calc(0vw + 62px) 0;
    }
}

body .clients-section .section-heading {
    padding-bottom: 12px;
}

@media only screen and (min-width: 768px) {
    body .clients-section .section-heading {
        padding-bottom: 18px;
    }
}

@media only screen and (min-width: 992px) {
    body .clients-section .section-heading {
        padding-bottom: 20px;
    }
}

body .clients-section .section-heading p {
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 28px;
    color: #151515;
}

@media only screen and (min-width: 992px) {
    body .clients-section .section-heading p {
        font-size: 42px;
    }
}

@media only screen and (min-width: 1200px) {
    body .clients-section .section-heading p {
        font-size: 52px;
    }
}

body .clients-section .home-clients-slider {
    border-width: 1px 0 1px 0;
    border-style: solid;
    border-color: rgba(13, 51, 83, 0.151);
    padding: 0 2px;
}

body .clients-section .home-clients-slider .swiper-wrapper .swiper-slide {
    position: relative;
    border-left: 1px solid rgba(13, 51, 83, 0.151);
    display: grid;
    align-items: center;
    justify-items: center;
}

body .clients-section .home-clients-slider .swiper-wrapper .swiper-slide:last-of-type {
    border-right: 1px solid rgba(13, 51, 83, 0.151);
}

body .clients-section .home-clients-slider .swiper-wrapper .swiper-slide .slider-img {
    display: grid;
    align-items: center;
    justify-items: center;
    width: 130px;
    height: 130px;
}

body .clients-section .home-clients-slider .swiper-wrapper .swiper-slide .slider-img img {
    width: 100%;
    /* filter: grayscale(1); */
}

body .clients-section .home-clients-slider .clients-slider-buttons {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 4px;
    right: 4px;
    transform: translate(0, -50%);
    z-index: 2;
}

body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-next,
body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-prev {
    display: grid;
    align-items: center;
    position: static;
    background-image: none;
    width: unset;
    height: unset;
    margin: 0;
    background-color: #fff;
    padding: 6px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

@media only screen and (min-width: 768px) {

    body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-next,
    body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-prev {
        padding: 8px;
    }
}

@media only screen and (min-width: 992px) {

    body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-next,
    body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-prev {
        padding: 10px;
    }
}

body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-next span,
body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-prev span {
    color: #272727;
    font-size: 14px;
}

@media only screen and (min-width: 992px) {

    body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-next span,
    body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-prev span {
        font-size: 16px;
    }
}

body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-next:focus,
body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-prev:focus {
    outline: 0;
}


/**************************/
body .blogs-section {
    padding: 22px 0;
    display: grid;
}

@media only screen and (min-width: 992px) {
    body .blogs-section {
        padding-left: 32px 0;
    }
}

body .blogs-section .section-heading {
    display: grid;
    justify-content: start;
    margin-bottom: 12px;
}

@media only screen and (min-width: 992px) {
    body .blogs-section .section-heading {
        margin-bottom: 18px;
    }
}

@media only screen and (min-width: 1200px) {
    body .blogs-section .section-heading {
        margin-bottom: 24px;
    }
}

body .blogs-section .section-heading p {
    color: #151515;
    text-transform: uppercase;
    font-size: 30px;
    border-bottom: 2px solid #0b50eb;
    line-height: 1;
}

@media only screen and (min-width: 992px) {
    body .blogs-section .section-heading p {
        font-size: 40px;
    }
}

@media only screen and (min-width: 1200px) {
    body .blogs-section .section-heading p {
        font-size: 52px;
    }
}

body .blogs-section .section-body .main-ul {
    display: grid;
    grid-gap: 14px;
    grid-template-columns: 1fr 1fr;
}

@media only screen and (min-width: 768px) {
    body .blogs-section .section-body .main-ul {
        grid-gap: 42px;
    }
}

@media only screen and (min-width: 992px) {
    body .blogs-section .section-body .main-ul {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 18px;
    }
}

body .blogs-section .section-body .main-ul li {
    display: grid;
}

body .blogs-section .section-body .main-ul li .blog-card {
    display: grid;
    background-color: #fff;
    position: relative;
    border-radius: 2px;
    transition: all 0.3s ease-out;
}

body .blogs-section .section-body .main-ul li .blog-card .img-div {
    display: grid;
    justify-items: center;
    overflow: hidden;
    height: 150px;
    padding: 8px;
    border: 1px solid #0b50eb;
}

@media only screen and (min-width: 375px) {
    body .blogs-section .section-body .main-ul li .blog-card .img-div {
        height: 180px;
        padding: 10px;
    }
}

@media only screen and (min-width: 768px) {
    body .blogs-section .section-body .main-ul li .blog-card .img-div {
        height: 280px;
    }
}

@media only screen and (min-width: 992px) {
    body .blogs-section .section-body .main-ul li .blog-card .img-div {
        height: 320px;
    }
}

body .blogs-section .section-body .main-ul li .blog-card .img-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    transition: all 0.3s ease-out;
}

body .blogs-section .section-body .main-ul li .blog-card .blog-title {
    padding: 8px;
    z-index: 1;
    justify-content: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1;
    font-family: 'JF-Flat-regular';
    font-size: 14px;
    color: #151515;
    text-transform: uppercase;
    word-spacing: 2px;
    text-align: center;
    transition: all 0.3s ease-out;
}

@media only screen and (min-width: 992px) {
    body .blogs-section .section-body .main-ul li .blog-card .blog-title {
        padding: 20px;
    }
}

@media only screen and (min-width: 375px) {
    body .blogs-section .section-body .main-ul li .blog-card .blog-title {
        font-size: 16px;
    }
}

@media only screen and (min-width: 1200px) {
    body .blogs-section .section-body .main-ul li .blog-card .blog-title {
        font-size: 18px;
    }
}

body .blogs-section .section-body .main-ul li .blog-card:hover .img-div img {
    filter: grayscale(0.8);
    transform: scale(1.02);
}

body .blogs-section .section-body .main-ul li .blog-card:hover .blog-title {
    color: #0b50eb;
}

/**************************/


/* =========================service */
.service .box-service {
    text-align: center;
    margin: 20px auto;
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #e9ecef47;
    border-radius: 10px;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    box-shadow: 0 7px 9px rgba(0, 0, 0, 0.1);
    -o-transition: all .2s ease-in-out;
}

.service .box-service a {
    cursor: unset;
}

.service .box-service .img-service {
    text-align: center;
    margin: 20px;
}

.service .box-service .img-service img {
    width: 65px;
    height: 65px;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.service .box-service:hover img {
    transform: rotate(360deg);
}


.service .box-service .title-service h4 {
    font-size: 17px;
    color: #0b4feb;
}

.service .box-service .red {
    transform: rotate(130deg);
    width: 205%;
    height: 100%;
    background: #2e2e2e0a;
    position: absolute;
    top: 0;
    right: -293px;
    z-index: -1;
}

/*************************/
body .mfa-form-wrapper {
    background-color: #fefefe;
    border-top: 4px solid #0b50eb;
    border-radius: 8px;
    padding: 42px 0;
    padding-top: 32px;
    box-shadow: 0 18px 20px rgba(0, 0, 0, 0.1);
    display: grid;
    min-width: 92%;
    max-width: 480px;
    margin: 0 auto;
}

@media only screen and (min-width: 768px) {
    body .mfa-form-wrapper {
        min-width: 400px;
    }
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper {
        min-width: 480px;
        padding: 52px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .mfa-form-wrapper {
        padding: 62px 0;
    }
}

@media only screen and (min-width: 1600px) {
    body .mfa-form-wrapper {
        padding: 72px 0;
    }
}

body .mfa-form-wrapper .form-img {
    margin-bottom: 32px;
    display: grid;
    justify-items: center;
}

body .mfa-form-wrapper .form-img img {
    height: 72px;
}

body .mfa-form-wrapper .mfa-form {
    display: grid;
    justify-items: center;
    grid-gap: 16px;
    pointer-events: all;
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form {
        grid-gap: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    body .mfa-form-wrapper .mfa-form {
        grid-gap: 24px;
    }
}

body .mfa-form-wrapper .mfa-form .form-div {
    display: grid;
    width: 92%;
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form .form-div {
        width: 75%;
    }
}

body .mfa-form-wrapper .mfa-form .form-div label {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin: 0;
    border: 1px solid #eee;
    border-radius: 6px;
    cursor: text;
    cursor: default;
    transition: all .3s ease-out;
}

body .mfa-form-wrapper .mfa-form .form-div label span {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: #9b9b9b;
    font-size: 12px;
    transition: all .2s ease-out;
    z-index: 1;
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form .form-div label span {
        font-size: 14px;
        right: 18px;
    }
}

@media only screen and (min-width: 1200px) {
    body .mfa-form-wrapper .mfa-form .form-div label span {
        right: 28px;
    }
}

body .mfa-form-wrapper .mfa-form .form-div label input,
body .mfa-form-wrapper .mfa-form .form-div label select,
body .mfa-form-wrapper .mfa-form .form-div label textarea {
    cursor: default;
    border: 0;
    background-color: transparent;
    height: 50px;
    transition: all .3s ease-out;
    padding: 0 16px;
    width: 100%;
}

@media only screen and (min-width: 992px) {

    body .mfa-form-wrapper .mfa-form .form-div label input,
    body .mfa-form-wrapper .mfa-form .form-div label select,
    body .mfa-form-wrapper .mfa-form .form-div label textarea {
        padding: 0 18px;
        height: 58px;
    }
}

@media only screen and (min-width: 1200px) {

    body .mfa-form-wrapper .mfa-form .form-div label input,
    body .mfa-form-wrapper .mfa-form .form-div label select,
    body .mfa-form-wrapper .mfa-form .form-div label textarea {
        padding: 0 24px;
    }
}

body .mfa-form-wrapper .mfa-form .form-div label input:focus,
body .mfa-form-wrapper .mfa-form .form-div label select:focus,
body .mfa-form-wrapper .mfa-form .form-div label textarea:focus {
    border: 0;
    outline: 0;
}

body .mfa-form-wrapper .mfa-form .form-div label textarea {
    height: 120px;
    padding-top: 8px;
    padding-bottom: 8px;
}

body .mfa-form-wrapper .mfa-form .form-div label select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

body .mfa-form-wrapper .mfa-form .form-div label i {
    color: #9b9b9b;
    font-size: 16px;
    transition: all .1s ease-out;
    transform: translate(16px, 0);
    transition: all .3s ease-out;
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form .form-div label i {
        transform: translate(20px, 0);
        font-size: 18px;
    }
}

@media only screen and (min-width: 1200px) {
    body .mfa-form-wrapper .mfa-form .form-div label i {
        transform: translate(24px, 0);
    }
}

body .mfa-form-wrapper .mfa-form .form-div label.select-label {
    cursor: default;
}

body .mfa-form-wrapper .mfa-form .form-div label.select-label select {
    padding-right: 32px;
    position: relative;
    z-index: 2;
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form .form-div label.select-label select {
        padding-right: 42px;
    }
}

@media only screen and (min-width: 1200px) {
    body .mfa-form-wrapper .mfa-form .form-div label.select-label select {
        padding-right: 52px;
    }
}

body .mfa-form-wrapper .mfa-form .form-div label.select-label::after {
    position: absolute;
    content: '\ec3a';
    font-family: 'Linearicons';
    transition: all .3s ease-out;
    top: 50%;
    right: 16px;
    transform: translate(0, -50%);
    font-size: 16px;
    color: #9b9b9b;
    z-index: 1;
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form .form-div label.select-label::after {
        font-size: 18px;
        right: 24px;
    }
}

body .mfa-form-wrapper .mfa-form .form-div label.message-label span {
    top: 20%;
}

body .mfa-form-wrapper .mfa-form .form-div label.toggle-form-label {
    border-color: #0b50eb;
}

body .mfa-form-wrapper .mfa-form .form-div label.toggle-form-label span {
    top: 0;
    right: 12px;
    padding: 0 4px;
    background-color: #fefefe;
    font-size: 10px;
    color: #0b50eb;
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form .form-div label.toggle-form-label span {
        font-size: 12px;
    }
}

body .mfa-form-wrapper .mfa-form .form-div label.toggle-form-label i {
    color: #0b50eb;
    transform: translate(16px, 0) scale(1.2);
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form .form-div label.toggle-form-label i {
        transform: ranslate(20px, 0) scale(1.2);
    }
}

@media only screen and (min-width: 1200px) {
    body .mfa-form-wrapper .mfa-form .form-div label.toggle-form-label i {
        transform: translate(24px, 0) scale(1.2);
    }
}

body .mfa-form-wrapper .mfa-form .form-div label.toggle-form-label.select-label::after {
    transform: translate(0, -50%) scale(1.2);
    color: #0b50eb;
}

body .mfa-form-wrapper .mfa-form button {
    border: 2px solid #0b50eb;
    color: #fff;
    border-radius: 42px;
    background-color: #0b50eb;
    padding: 5px 18px;
    margin-top: 18px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
    transition: all .3s ease-out;
    font-family: 'JF-Flat-regular';
    cursor: pointer;
}

@media only screen and (min-width: 992px) {
    body .mfa-form-wrapper .mfa-form button {
        padding: 6px 20px;
        margin-top: 24px;
    }
}

@media only screen and (min-width: 1200px) {
    body .mfa-form-wrapper .mfa-form button {
        padding: 8px 26px;
        margin-top: 32px;
    }
}

body .mfa-form-wrapper .mfa-form button span {
    line-height: 1;
}

body .mfa-form-wrapper .mfa-form button:hover {
    background-color: transparent;
    color: #0b50eb;
}

body .mfa-form-wrapper .mfa-form button:focus {
    outline: 0;
}

body .gallery-section {
    padding: 32px 0;
    padding-bottom: 0;
}

@media only screen and (min-width: 992px) {
    body .gallery-section {
        padding: 42px 0;
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .gallery-section {
        padding: 72px 0;
        padding-bottom: 0;
    }
}

body .gallery-section .section-heading {
    margin-bottom: 18px;
}

@media only screen and (min-width: 992px) {
    body .gallery-section .section-heading {
        margin-bottom: 22px;
    }
}

body .gallery-section .section-heading p {
    text-align: center;
    font-size: 24px;
}

@media only screen and (min-width: 992px) {
    body .gallery-section .section-heading p {
        font-size: 28px;
    }
}

@media only screen and (min-width: 1200px) {
    body .gallery-section .section-heading p {
        font-size: 38px;
    }
}

body .gallery-section .gallery-filter-btns {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    margin-bottom: 32px;
    grid-gap: 2px;
    cursor: pointer;
}

@media only screen and (min-width: 992px) {
    body .gallery-section .gallery-filter-btns {
        margin-bottom: 42px;
    }
}

body .gallery-section .gallery-filter-btns > div {
    padding: 8px 20px;
    background-color: #f7f8fa;
    border-radius: 2px;
    border: 1px solid transparent;
    transition: all 0.3s ease-out;
}

@media only screen and (min-width: 992px) {
    body .gallery-section .gallery-filter-btns > div {
        padding: 10px 28px;
    }
}

body .gallery-section .gallery-filter-btns > div:hover {
    border-color: rgba(0, 0, 0, 0.3);
}

body .gallery-section .gallery-filter-btns > div.active-filter-btn {
    background-color: #bd54af;
    border-color: rgba(0, 0, 0, 0.3);
    color: #fff;
}

body .gallery-section .gallery-layout {
    background-color: #fff;
    display: grid;
    transition: all 0.3s ease-out;
}

body .gallery-section .gallery-layout .mfa-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: dense;
    grid-gap: 1px;
}

@media only screen and (min-width: 992px) {
    body .gallery-section .gallery-layout .mfa-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

body .gallery-section .gallery-layout .mfa-gallery a {
    display: grid;
    align-items: stretch;
    position: relative;
    transition: all 0.3s ease-out;
    overflow: hidden;
}

body .gallery-section .gallery-layout .mfa-gallery a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    border-radius: 22px;
    border-radius: 400px;
    z-index: 1;
    transition: all 0.3s ease-out;
}

body .gallery-section .gallery-layout .mfa-gallery a::after {
    content: '\ec22';
    font-family: 'linearicons';
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    background-color: rgba(152, 59, 140, 0.4);
    visibility: hidden;
    opacity: 0;
    font-size: 22px;
    transform: translate(-50%, 150px) scale(0);
    transition: all 0.3s ease-out 0.3s;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    align-items: center;
    justify-items: center;
    z-index: 2;
}

@media only screen and (min-width: 992px) {
    body .gallery-section .gallery-layout .mfa-gallery a::after {
        font-size: 40px;
        width: 72px;
        height: 72px;
    }
}

body .gallery-section .gallery-layout .mfa-gallery a:hover::before {
    opacity: 1;
    visibility: visible;
    border-radius: 0;
    transform: scale(1);
}

body .gallery-section .gallery-layout .mfa-gallery a:hover::after {
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
    opacity: 1;
}

body .gallery-section .gallery-layout .mfa-gallery a:hover .img-div img {
    filter: grayscale(0) !important;
    transform: scale(1.2) rotate(4deg) !important;
}

body .gallery-section .gallery-layout .mfa-gallery a .img-div {
    display: grid;
    height: 250px;
    overflow: hidden;
}

@media only screen and (min-width: 992px) {
    body .gallery-section .gallery-layout .mfa-gallery a .img-div {
        height: 380px;
    }
}

@media only screen and (min-width: 1200px) {
    body .gallery-section .gallery-layout .mfa-gallery a .img-div {
        height: 440px;
    }
}

body .gallery-section .gallery-layout .mfa-gallery a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease-out;
}

body .gallery-section .gallery-layout {
    display: none;
}

body .gallery-section .gallery-layout.show-gallery-layout {
    animation: fade-layout 1s ease-out both;
    display: grid;
}

@keyframes fade-layout {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
}

body .gallery-page {
    min-height: 60vh;
    background-color: #f7f8fa;
    margin-top: 80px;
}

@media only screen and (min-width: 992px) {
    body .gallery-page {
        margin-top: 110px;
    }
}

body .gallery-page .gallery-section {
    padding: 32px 0;
}

@media only screen and (min-width: 992px) {
    body .gallery-page .gallery-section {
        padding: 42px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .gallery-page .gallery-section {
        padding: 72px 0;
    }
}

body .gallery-page .gallery-section .section-heading {
    margin-bottom: 18px;
}

@media only screen and (min-width: 992px) {
    body .gallery-page .gallery-section .section-heading {
        margin-bottom: 22px;
    }
}

body .gallery-page .gallery-section .section-heading p {
    text-align: center;
    font-size: 24px;
}

@media only screen and (min-width: 992px) {
    body .gallery-page .gallery-section .section-heading p {
        font-size: 28px;
    }
}

@media only screen and (min-width: 1200px) {
    body .gallery-page .gallery-section .section-heading p {
        font-size: 38px;
    }
}

body .gallery-page .gallery-section .gallery-layout {
    background-color: #fff;
    display: grid;
    transition: all 0.3s ease-out;
}

body .gallery-page .gallery-section .gallery-layout .mfa-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: dense;
    grid-gap: 1px;
}

@media only screen and (min-width: 992px) {
    body .gallery-page .gallery-section .gallery-layout .mfa-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

body .gallery-page .gallery-section .gallery-layout .mfa-gallery a {
    display: grid;
    align-items: stretch;
    position: relative;
    transition: all 0.3s ease-out;
    overflow: hidden;
}

body .gallery-page .gallery-section .gallery-layout .mfa-gallery a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    border-radius: 22px;
    border-radius: 400px;
    z-index: 1;
    transition: all 0.3s ease-out;
}

body .gallery-page .gallery-section .gallery-layout .mfa-gallery a::after {
    content: '\ec22';
    font-family: 'linearicons';
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    background-color: rgba(152, 59, 140, 0.4);
    visibility: hidden;
    opacity: 0;
    font-size: 22px;
    transform: translate(-50%, 150px) scale(0);
    transition: all 0.3s ease-out 0.3s;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    align-items: center;
    justify-items: center;
    z-index: 2;
}

@media only screen and (min-width: 992px) {
    body .gallery-page .gallery-section .gallery-layout .mfa-gallery a::after {
        font-size: 40px;
        width: 72px;
        height: 72px;
    }
}

body .gallery-page .gallery-section .gallery-layout .mfa-gallery a:hover::before {
    opacity: 1;
    visibility: visible;
    border-radius: 0;
    transform: scale(1);
}

body .gallery-page .gallery-section .gallery-layout .mfa-gallery a:hover::after {
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
    opacity: 1;
}

body .gallery-page .gallery-section .gallery-layout .mfa-gallery a:hover .img-div img {
    filter: grayscale(0) !important;
    transform: scale(1.2) rotate(4deg) !important;
}

body .gallery-page .gallery-section .gallery-layout .mfa-gallery a .img-div {
    display: grid;
    height: 250px;
    overflow: hidden;
}

@media only screen and (min-width: 992px) {
    body .gallery-page .gallery-section .gallery-layout .mfa-gallery a .img-div {
        height: 380px;
    }
}

@media only screen and (min-width: 1200px) {
    body .gallery-page .gallery-section .gallery-layout .mfa-gallery a .img-div {
        height: 440px;
    }
}

body .gallery-page .gallery-section .gallery-layout .mfa-gallery a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease-out;
}

body .blogs-page {
    margin-top: 80px;
    padding: 32px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 992px) {
    body .blogs-page {
        margin-top: 90px;
        padding: 52px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .blogs-page {
        padding: 62px 0;
    }
}

body .blog-page {
    margin-top: 80px;
    padding: 32px 0;
    background-color: #f7f8fa;
}

@media only screen and (min-width: 992px) {
    body .blog-page {
        padding: 52px 0;
        margin-top: 90px;
    }
}

@media only screen and (min-width: 1200px) {
    body .blog-page {
        padding: 62px 0;
    }
}

body .blog-page .blog-details-section {
    background-color: #fff;
}

body .blog-page .blog-details-section .img-div {
    width: 100%;
    height: 220px;
}

@media only screen and (min-width: 992px) {
    body .blog-page .blog-details-section .img-div {
        height: 420px;
    }
}

body .blog-page .blog-details-section .img-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-out;
}

body .blog-page .blog-details-section .blog-text {
    padding: 18px;
}

@media only screen and (min-width: 992px) {
    body .blog-page .blog-details-section .blog-text {
        padding: 42px;
    }
}

@media only screen and (min-width: 1200px) {
    body .blog-page .blog-details-section .blog-text {
        padding: 62px;
    }
}

body .blog-page .blog-details-section .blog-text .title {
    margin-bottom: 12px;
}

body .blog-page .blog-details-section .blog-text .title p {
    color: #0b50eb;
    text-transform: capitalize;
    word-spacing: 2px;
    font-size: 18px;
}

@media only screen and (min-width: 992px) {
    body .blog-page .blog-details-section .blog-text .title p {
        font-size: 22px;
    }
}

@media only screen and (min-width: 1200px) {
    body .blog-page .blog-details-section .blog-text .title p {
        font-size: 32px;
    }
}

body .blog-page .blog-details-section .blog-text .description {
    color: #727272;
    line-height: 1.8;
    font-size: 14px;
}

@media only screen and (min-width: 992px) {
    body .blog-page .blog-details-section .blog-text .description {
        font-size: 16px;
    }
}

body .blog-page .blog-details-section .blog-text .description p {
    font-family: 'JF-Flat-regular';
}

body .blog-page .blogs-section .section-body .main-ul li .blog-card {
    background-color: transparent;
}

body .testimonials-page {
    background-color: #f7f8fa;
    margin-top: 80px;
    padding: 32px 0;
}

.service {
    padding: 40px 0;
}

.clients-section h3 {
    margin-bottom: 20px;
}

@media only screen and (min-width: 992px) {
    body .testimonials-page {
        margin-top: 90px;
        padding: 42px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .testimonials-page {
        padding: 52px 0;
    }
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #f7f8fa;
    background-color: transparent;
}

body::-webkit-scrollbar-thumb {
    background: transparent;
    background-color: #41403f62;
    background-color: #41403f28;
    border-radius: 10px;
}

body:hover::-webkit-scrollbar-track {
    background-color: #f7f8fa;
}

body.toggle-body {
    overflow: hidden;
}

body.toggle-body-overflowY {
    overflow-y: hidden;
}

.fake-header {
    background-color: #000;
    height: 52px;
}

@media only screen and (min-width: 992px) {
    .fake-header {
        height: 100px;
    }
}

.swiper-wrapper {
    height: auto;
}
