/*-----------------------------------------------------------------------------------

Theme Name  :  
Theme URI   :   
Description : 
Author      :      
Author URI  :  
Version     :  1.0

-----------------------------------------------------------------------------------*/

/*==================================================
===| Global Css
===================================================*/

* {
    margin: 0;
    padding: 0;
    font-size: 100%;
    box-sizing: border-box;
    transition: all 0.5s ease-in-out;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    transition: all 0.5s ease-in-out;
}

input,
button,
select,
textarea {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: var(--fw-7) !important;
    font-size: var(--fs-40) !important;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: -1.7px;
    transition: all 0.5s ease-in-out;
}

a {
    text-decoration: none !important;
    transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    margin: 100px 0;
}

body {
    overflow-x: hidden;
    flex-direction: column;
    box-sizing: border-box;
    background-color: #f4f8ffa8 !important;
    color: var(--redColor) !important;
    font-family: "Poppins", sans-serif !important;
    transition: all 0.5s ease-in-out;
}

/*==================================================
===| Roote Settings
===================================================*/

:root {
    /* ThemeOne Color */
    --lightColor: #edf2f4;
    --redColor: #2e2c2b;
    --blackColor: #5999dd;
    --whiteColor: #fff;
    --textColor: #596475;

    /* Font Size */
    --fs-14: 14px;
    --fs-15: 15px;
    --fs-16: 16px;
    --fs-17: 17px;
    --fs-18: 18px;
    --fs-19: 19px;
    --fs-20: 20px;
    --fs-21: 21px;
    --fs-22: 22px;
    --fs-23: 23px;
    --fs-24: 24px;
    --fs-25: 25px;
    --fs-26: 26px;
    --fs-27: 27px;
    --fs-28: 28px;
    --fs-29: 29px;
    --fs-30: 30px;
    --fs-31: 31px;
    --fs-32: 32px;
    --fs-33: 33px;
    --fs-34: 34px;
    --fs-35: 35px;
    --fs-40: 40px;
    --fs-45: 45px;
    --fs-50: 50px;
    --fs-55: 55px;
    --fs-60: 60px;
    --fs-65: 65px;
    --fs-70: 70px;
    --fs-75: 75px;

    /* Font Weight */
    --fw-1: 100;
    --fw-2: 200;
    --fw-3: 300;
    --fw-4: 400;
    --fw-5: 500;
    --fw-6: 600;
    --fw-7: 700;
    --fw-8: 800;
    --fw-9: 900;
}

/*==================================================
===| Theme Settings
===================================================*/

html ::-webkit-scrollbar {
    width: 4px;
}

html ::-webkit-scrollbar-button {
    display: none;
}

html ::-webkit-scrollbar-track-piece {
    background-color: transparent;
}

html ::-webkit-scrollbar-thumb {
    background-color: var(--blackColor);
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
}

html ::-webkit-scrollbar-thumb:hover {
    background-color: var(--redColor);
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
}

html ::-webkit-scrollbar-corner {
    background-color: transparent;
}

.page__btn {
    position: relative;
    display: inline-block;
}

.page__btn a {
    position: relative;
    display: inline-block;
    font-size: var(--fs-15);
    line-height: 30px;
    font-weight: var(--fw-5);
    color: var(--whiteColor) !important;
    padding: 10px 38px;
    text-align: center;
    cursor: pointer;
    z-index: 1;
    transition: all 700ms ease;
    background-color: var(--redColor);
}

.page__btn:hover a {
    color: var(--redColor) !important;
}

.page__btn a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--whiteColor);
    transition: all 0.7s;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -o-transform-origin: left top;
    transform-origin: left top;
}

.page__btn a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.4s;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -o-transform-origin: left top;
    transform-origin: left top;
}

.page__btn a:hover::before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.page__btn a:hover::after {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

/* Page Title */
.page__title {
    padding: 50px 0;
    line-height: 25px;
}

.page__title .title span {
    color: var(--redColor);
    font-size: var(--fs-18);
    font-weight: var(--fw-5);
    letter-spacing: -1px;
}

.page__title .desc strong {
    color: var(--blackColor);
    font-size: var(--fs-30);
    letter-spacing: -1.2px;
}

/*  Modal Form  */
.modal .modal-content .modal-header .modal-title {
    font-size: var(--fs-25) !important;
    color: var(--redColor);
}

/* Sticky Top */
.sticky-top {
    top: 90px !important;
    z-index: 99!important;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--blackColor) !important;
    color: var(--whiteColor) !important;
}

.dropdown-menu {
    transform: translate(25px, 55px) !important;
    z-index: 9999!important;
}

/*==================================================
===| Preloader Css
===================================================*/
#loading {
    background-color: var(--blackColor);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    margin-top: 0px;
    top: 0px;
    z-index: 99999999;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 60px;
    width: 60px;
    margin-top: -30px;
    margin-left: -30px;
    -webkit-animation: loading-center-absolute 2s infinite;
    animation: loading-center-absolute 2s infinite;
}

.object {
    width: 20px;
    height: 20px;
    background-color: var(--whiteColor);
    float: left;
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    margin-right: 20px;
    margin-bottom: 20px;
}

.object:nth-child(2n + 0) {
    margin-right: 0px;
}

#object_one {
    -webkit-animation: object_one 2s infinite;
    animation: object_one 2s infinite;
}

#object_two {
    -webkit-animation: object_two 2s infinite;
    animation: object_two 2s infinite;
}

#object_three {
    -webkit-animation: object_three 2s infinite;
    animation: object_three 2s infinite;
}

#object_four {
    -webkit-animation: object_four 2s infinite;
    animation: object_four 2s infinite;
}

@-webkit-keyframes loading-center-absolute {
    100% {
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading-center-absolute {
    100% {
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes object_one {
    50% {
        -ms-transform: translate(20px, 20px);
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
    }
}

@keyframes object_one {
    50% {
        -ms-transform: translate(20px, 20px);
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
    }
}

@-webkit-keyframes object_two {
    50% {
        -ms-transform: translate(-20px, 20px);
        -webkit-transform: translate(-20px, 20px);
        transform: translate(-20px, 20px);
    }
}

@keyframes object_two {
    50% {
        -ms-transform: translate(-20px, 20px);
        -webkit-transform: translate(-20px, 20px);
        transform: translate(-20px, 20px);
    }
}

@-webkit-keyframes object_three {
    50% {
        -ms-transform: translate(20px, -20px);
        -webkit-transform: translate(20px, -20px);
        transform: translate(20px, -20px);
    }
}

@keyframes object_three {
    50% {
        -ms-transform: translate(20px, -20px);
        -webkit-transform: translate(20px, -20px);
        transform: translate(20px, -20px);
    }
}

@-webkit-keyframes object_four {
    50% {
        -ms-transform: translate(-20px, -20px);
        -webkit-transform: translate(-20px, -20px);
        transform: translate(-20px, -20px);
    }
}

@keyframes object_four {
    50% {
        -ms-transform: translate(-20px, -20px);
        -webkit-transform: translate(-20px, -20px);
        transform: translate(-20px, -20px);
    }
}

/*==================================================
===| Header Wrapper
===================================================*/
.header__wrapper {
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
        rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}

.header__wrapper .header__top .header__left .contact__phone a,
.header__wrapper .header__top .header__left .contact__mail a,
.header__wrapper .header__top .header__left .contact__adress a {
    color: var(--blackColor);
    font-size: var(--fs-15);
    font-weight: var(--fw-5);
    letter-spacing: -1px;
}

.header__wrapper .header__top {
    border-bottom: 1px solid #c0c0c02b;
    background-color: var(--whiteColor);
}

.header__wrapper .header__top i {
    color: var(--redColor);
    font-size: var(--fs-17);
}

.header__wrapper .menu__box .header__right .social__links a {
    margin-left: 10px;
}

.header__wrapper .menu__box .header__right .social__links i {
    color: var(--whiteColor);
}

.header__wrapper .menu__box .header__right .social__links i:hover {
    color: var(--redColor);
}

.header__wrapper .header__menu {
    background-color: var(--blackColor);
}

.header__wrapper .header__menu .header__logo {
    position: relative;
    padding: 10px 20px 10px 0px;
    background: var(--lightColor);
    z-index: 1;
}

.header__wrapper .header__menu .header__logo:before {
    position: absolute;
    content: "";
    background: var(--whiteColor);
    width: 5000px;
    height: 100%;
    top: 0px;
    right: 0px;
    z-index: -1;
}

.header__wrapper .header__menu .header__logo img {
    width: 157px;
    height: 67px;
}

.header__wrapper .header__menu .nav-link {
    color: #f1f2ee;
    font-size: var(--fs-15);
    font-weight: var(--fw-5);
    transition: all 0.8s ease-in-out;
    margin-left: 25px !important;
    padding: 0;
}

.header__wrapper .header__menu .dropdown-item {
    color: var(--textColor);
    font-size: var(--fs-16);
    font-weight: var(--fw-5);
    transition: all 0.8s ease-in-out;
}

.header__wrapper .header__menu.menu_sticky .nav .active {
    color: var(--redColor);
}

.header__wrapper .header__menu .nav .active {
    color: var(--redColor);
}

.header__wrapper .header__menu .dropdown .active {
    color: var(--redColor);
}

.header__wrapper .header__menu .nav-link:hover {
    color: var(--redColor);
}

.header__wrapper .header__menu.menu_sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--blackColor);
    z-index: 1025;
    -webkit-box-shadow: 0 10px 15px -10px rgb(25 25 25 / 10%);
    box-shadow: 0 10px 15px -10px rgb(25 25 25 / 10%);
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

.animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.header__wrapper .mobile__btn i {
    font-size: var(--fs-35);
    color: var(--blackColor);
}

.offcanvas .nav .nav-link {
    color: var(--blackColor);
    font-size: var(--fs-16);
    font-weight: var(--fw-5);
    transition: all 0.8s ease-in-out;
    margin: 10px 10px 10px 35px !important;
}

.offcanvas .nav .active {
    color: var(--redColor) !important;
}

.offcanvas .nav .nav-link:hover {
    color: var(--redColor);
}

/*==================================================
===| Mobile Css
===================================================*/
.home__banner {
    width: 100%;
    height: 75vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.home__banner .vh-70 {
    height: 75vh !important;
}

.home__banner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #080909b3;
}

.home__banner .slider__text span {
    position: relative;
    z-index: 2;
    color: var(--whiteColor);
    font-size: var(--fs-40);
    font-weight: var(--fw-6);
}

.home__banner .slider__text p {
    position: relative;
    z-index: 2;
    color: var(--lightColor);
    font-size: var(--fs-20);
    font-weight: var(--fw-4);
}

/*==================================================
===| Slider Intro Css
===================================================*/
.slider__intro {
    margin-top: -100px !important;
    z-index: 3;
    position: relative;
}

.slider__intro .intro__box {
    background-color: var(--blackColor);
    padding: 25px 15px 15px;
    transition: all 0.8s ease-in-out;
}

.slider__intro .intro__box .icon {
    transform: translateY(-30px)
}

.slider__intro .intro__box i {
    color: var(--redColor);
    font-size: var(--fs-45);
    padding: 15px 25px;
    background-color: var(--whiteColor);
    border-radius: 5px;
}

.slider__intro .intro__box:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    transform: translateY(-4px);
}

.slider__intro .intro__box .intro__content {
    margin: 20px 0;
}

.slider__intro .intro__box .intro__content .title strong {
    color: var(--redColor);
    font-size: var(--fs-16);
    margin-bottom: 15px;
    display: block;
}

.slider__intro .intro__box .intro__content .desc p {
    color: var(--lightColor);
    font-size: var(--fs-17);
    margin: 0px;
}

/*==================================================
===| Mobile Css
===================================================*/
.about__wrapper .about__img-box .about__img {
    position: relative;
    display: block;
    width: 100%;
    z-index: 1;
}

.about__wrapper .about__img-box .about__img .about__img1 {
    position: relative;
    display: block;
}

.about__wrapper .about__img-box .about__img .about__img2 {
    position: absolute;
    left: 0;
    bottom: -60px;
    right: 0;
    max-width: 655px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}

.about__wrapper .about__img-box .about__img img {
    box-shadow: rgba(33, 35, 38, 0.2) 0px 10px 10px -10px;
}

.about__wrapper .about__box .about__title h1 {
    padding-left: 40px !important;
    font-size: var(--fs-25) !important;
    color: var(--redColor);
}

.about__wrapper .about__box .about__title h1:before {
    content: "";
    background: var(--blackColor);
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 2px;
}

.about__wrapper .about__box .about__content span {
    font-size: var(--fs-25);
    color: var(--blackColor);
}

.about__wrapper .about__box .about__content p {
    font-size: var(--fs-15);
    color: var(--textColor);
    margin-top: 20px;
    font-weight: var(--fw-4);
}

.about__wrapper .about__box .about__list .nav i {
    color: var(--blackColor);
    font-size: var(--fs-22);
}

.about__wrapper .about__box .about__list .nav span {
    color: var(--redColor);
    font-size: var(--fs-15);
    margin-left: 10px;
    font-weight: var(--fw-5);
    margin-top: 4px;
}

.about__wrapper .count__box {
    background-color: var(--lightColor);
    border-radius: 3px;
    padding: 30px 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
        rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.about__wrapper .count__box:hover {
    transform: translateY(-4px);
}

.about__wrapper .count__box.bg__color {
    background-color: var(--blackColor);
}

.about__wrapper .count__box.bg__color strong {
    color: var(--whiteColor);
}

.about__wrapper .count__box.bg__color p {
    color: var(--lightColor);
}

.about__wrapper .count__box p {
    margin: 0;
    color: var(--redColor);
    font-size: var(--fs-15);
    font-weight: var(--fw-5);
}

.about__wrapper .count__box strong {
    margin: 0;
    color: var(--blackColor);
    font-size: var(--fs-30);
    font-weight: var(--fw-6);
}

.about__wrapper .wrapper__content .blog__box .card-body .strong {
    width: 100%;
    padding: 15px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about__wrapper .wrapper__content .blog__box .card-body .strong a {
    color: var(--blackColor);
    font-size: var(--fs-16);
    font-weight: var(--fw-6);
}

/*==================================================
===| Services Css
===================================================*/
.services__wrapper .swiper .services__box .services__content {
    background-color: var(--whiteColor);
    padding: 45px 25px;
}

.services__wrapper .swiper .services__box .services__content .title strong {
    font-size: var(--fs-18);
    color: var(--redColor);
    margin-bottom: 15px;
    display: inline-block;
}

.services__wrapper .swiper .swiper-button-next,
.services__wrapper .swiper .swiper-button-prev {
    color: var(--whiteColor) !important;
    width: calc(var(--swiper-navigation-size)/ 44 * 105);
    background-color: var(--blackColor);
    width: 50px;
    height: 50px;
    border-radius: 3px;
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    background-color: var(--blackColor) !important;
}

.services__wrapper .swiper .swiper-button-next:after,
.services__wrapper .swiper .swiper-button-prev:after {
    font-size: 24px !important;
}

.services__wrapper .swiper .services__box .services__content .desc p {
    font-size: var(--fs-15);
    color: var(--textColor);
}

.services__wrapper .swiper .services__box .services__content a {
    font-size: var(--fs-16);
    font-weight: var(--fw-5);
    color: var(--blackColor);
    align-items: center;
    justify-content: center;
    display: inline-flex;
}

.services__wrapper .swiper .services__box .services__content i {
    font-size: var(--fs-22);
    margin-left: 5px;
    transition: all 0.8s ease-in-out;
}

.services__wrapper .swiper .services__box:hover i {
    transform: translateX(4px);
    color: var(--redColor);
}

.services__wrapper .swiper .services__box .img:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(216 0 50 / 46%)), color-stop(73%, rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, rgb(216 0 50 / 62%) 0%, rgba(0, 0, 0, 0) 73%);
    content: "";
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.services__wrapper .swiper .services__box:hover .img:after {
    visibility: visible;
    opacity: 1;
    height: 100%;
}

/*==================================================
===| Chooseus Wrapper Css
===================================================*/
.chooseus__wrapper {
    position: relative;
    padding: 100px 80px 80px 80px;
    background-color: var(--whiteColor);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    background-size: cover;
    background-repeat: no-repeat;
}

.chooseus__wrapper .page__title .title span {
    position: relative;
    z-index: 3;
}

.chooseus__wrapper .page__title .desc strong {
    color: var(--whiteColor);
    position: relative;
    z-index: 3;
}

.chooseus__wrapper:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(32 32 32)), color-stop(73%, rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, rgb(32 32 32) 0%, rgb(0 0 0 / 21%) 73%);
    content: "";
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.chooseus__wrapper .list__layer .icon {
    background-color: var(--blackColor);
    padding: 20px 30px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 20px;
}

.chooseus__wrapper .list__layer .icon i {
    font-size: var(--fs-35);
    color: var(--whiteColor);
    position: relative;
    z-index: 3;
}

.chooseus__wrapper .list__layer .box h2 {
    font-size: var(--fs-18) !important;
    color: var(--whiteColor);
    position: relative;
    z-index: 3;
    letter-spacing: 0.7px !important;
    margin-bottom: 20px !important;
}

.chooseus__wrapper .list__layer .box p {
    color: var(--lightColor);
    font-size: var(--fs-15);
    margin-bottom: 0;
    position: relative;
    z-index: 3;
}

/*==================================================
===| Mobile Css
===================================================*/
.featured__wrapper .featured__overlay {
    background-color: var(--blackColor);
    border-radius: 3px;
    height: 300px;
    box-shadow: rgb(0 0 0 / 29%) 0px 3px 5px;
}

.featured__wrapper .featured__box .featured__icon {
    height: 91px;
    width: 91px;
    line-height: 91px;
    box-shadow: 0 0 10px 0 rgb(0 43 92 / 8%);
    background-color: var(--whiteColor);
    border-radius: 100%;
    transform: translateY(-50px);
}

.featured__wrapper .featured__box .featured__icon i {
    font-size: var(--fs-45);
    color: var(--blackColor);
}

.featured__wrapper .featured__box .featured__icon span {
    font-size: var(--fs-50);
    font-weight: var(--fw-7);
    display: block;
    width: 35px;
    opacity: .1;
    height: 35px;
    text-align: center;
    position: absolute;
    right: -115px;
    bottom: -5px;
    z-index: 10;
    background-color: var(--blackColor);
    color: var(--whiteColor);
    transition: all .5s ease-in-out;
}

.featured__wrapper .featured__overlay .featured__content .title strong {
    font-size: var(--fs-18);
    color: var(--whiteColor);
    margin-bottom: 15px;
    display: inline-block;
}

.featured__wrapper .featured__overlay .featured__content .desc p {
    font-size: var(--fs-15);
    color: var(--textColor);
}

/*==================================================
===| Supports Css
===================================================*/

.supports__wrapper {
    display: block;
    overflow: hidden;
    background: var(--whiteColor);
    border-radius: 3px;
    padding: 80px 25px;
}

.supports__wrapper .swiper .swiper-slide .support__img img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    opacity: .6;
    width: 120px;
    height: auto;
}

.supports__wrapper .swiper .swiper-slide .support__img:hover img {
    opacity: 1;
}

.supports__wrapper .contact__info .nav .icon i {
    font-size: var(--fs-35);
    color: var(--blackColor);
}

.supports__wrapper .contact__info .nav .contact__content strong {
    font-size: var(--fs-18);
    color: var(--blackColor);
    display: inline-block;
}

.supports__wrapper .contact__info .nav .contact__content a,
.supports__wrapper .contact__info .nav .contact__content p {
    font-size: var(--fs-18);
    color: var(--textColor);
    margin-bottom: 0;
}

/*==================================================
===| Mobile Css
===================================================*/
.footer {
    background-color: var(--blackColor);
}

.footer p {
    font-size: var(--fs-15);
    color: var(--whiteColor);
}

/*==================================================
===| About Page - Page 力nfo Css
===================================================*/
.page__info {
    background: url(../img/page_info.jpg);
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    padding: 35px 0;
}

.page__info .page__title .desc strong {
    color: var(--whiteColor);
    font-size: var(--fs-30);
    letter-spacing: -1.2px;
}

/*==================================================
===| Page About Css
===================================================*/
.page__about .sidebar .nav .nav-link.active {
    background-color: var(--blackColor);
    color: var(--whiteColor);
}

.page__about .sidebar .nav .nav-link.active:hover {
    color: var(--whiteColor);
}

.page__about .sidebar .nav .nav-link {
    color: var(--textColor);
    font-size: var(--fs-14);
}

.page__about .sidebar .nav .nav-link:hover {
    color: var(--blackColor);
}

.page__about .about__wrapper .wrapper__title h2 {
    font-size: var(--fs-25) !important;
    color: var(--redColor);
}

.page__about .about__wrapper .wrapper__content p {
    font-size: var(--fs-15);
    color: var(--textColor);
    font-weight: var(--fw-4);
}

.page__about .about__wrapper .wrapper__content .alert {
    background-color: var(--lightColor);
}

.page__about .about__wrapper .wrapper__content .alert p {
    color: var(--redColor);
    font-size: var(--fs-15);
    margin-bottom: 0;
}

/*==================================================
===| Form Wrapper Css
===================================================*/
.contact__form form .form-control,
.contact__wrapper form .form-control {
    color: var(--blackColor) !important;
    border-color: #46464617;
}

.contact__form form .form-floating>label,
.contact__wrapper form .form-floating>label {
    color: var(--textColor) !important;
}

.form__wrapper form .form-check .form-check-label {
    color: var(--textColor) !important;
    font-size: var(--fs-14) !important;
}

.form__wrapper .form__title strong {
    font-size: var(--fs-25) !important;
    color: var(--redColor);
}

.form__wrapper .form__title strong {
    font-size: var(--fs-25) !important;
    color: var(--redColor);
}

.form__wrapper .form__desc p {
    font-size: var(--fs-15);
    color: var(--textColor);
    font-weight: var(--fw-4);
}

.form-floating>.form-select {
    font-size: var(--fs-14);
}

/*==================================================
===| Contact Info Css
===================================================*/
.contact__map .map__box,
.contact__map .contact__wrapper {
    height: 100vh;
}

.contact__wrapper .contact__info .contact__layer {
    z-index: 1;
    padding: 56px 30px;
    background-color: var(--blackColor);
}

.contact__wrapper .contact__info .contact__layer strong {
    font-size: var(--fs-18);
    color: var(--whiteColor);
}

.contact__wrapper .contact__info .contact__layer p {
    font-size: var(--fs-16);
    color: var(--lightColor);
}

.contact__wrapper .contact__info .featured__box .contact__phone i,
.contact__wrapper .contact__info .featured__box .contact__mail i,
.contact__wrapper .contact__info .featured__box .contact__map i {
    color: var(--whiteColor);
    font-size: var(--fs-22);
}

.contact__wrapper .contact__info .featured__box .contact__phone a,
.contact__wrapper .contact__info .featured__box .contact__mail a,
.contact__wrapper .contact__info .featured__box .contact__map p {
    color: var(--lightColor);
    font-size: var(--fs-16);
    margin: 0;
}

.contact__form td {
    color: var(--textColor);
    margin: 10px 0;
}

html .contact__form table td {
    margin: 10px 0;
}

html .contact__form table th {
    padding: 7px 6px 7px 6px;
    text-align: center;
    border: 0;
}

html .contact__form table td label {
    display: block;
    text-align: center;
    cursor: pointer;
}

.pdf__desc a {
    color: var(--textColor);
    margin: 10px 0;
    display: inline-block;
    font-size: var(--fs-16);
}

/*==================================================
===| Mobile Css
===================================================*/
/*==================================================
===| Mobile Css
===================================================*/
/*==================================================
===| Mobile Css
===================================================*/
@media (max-width: 575.98px) {}

@media (max-width: 767.98px) {
    .about__wrapper .about__box {
        margin-top: 130px;
    }
}

@media (max-width: 991.98px) {

    .header__wrapper .header__menu .header__logo:before,
    .header__wrapper .header__menu.menu_sticky,
    .header__wrapper .header__menu {
        background: var(--whiteColor) !important;
    }

    .chooseus__wrapper .list__layer {
        min-width: 350px;
    }

    .supports__wrapper .support__box {
        padding: 140px 20px;
    }

    .chooseus__wrapper {
        padding: 50px;
        background-position-x: 43%;
    }
}

/*==================================================
===| Container Css
===================================================*/
@media (min-width: 1199.98px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1260px !important;
    }

    .contact__map .contact__wrapper {
        height: 100%;
    }
}

@media (min-width: 1399.98px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1400px !important;
    }
}