@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

html,
body {
    scroll-behavior: smooth;
}

body {
    background-color: #fdfcfb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.section-spacing {
    margin-top: 120px;
}

.sec_mar {
    margin-top: 50px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

html::-webkit-scrollbar {
    height: 20px;
    width: 5px;
    background: #fdfcfb;
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 10px;
}

html::-webkit-scrollbar-corner {
    background: var(--main-color);
    border-radius: 10px;
}

/* Color Code */
:root {
    --main-color: #E61B50;
    --white-color: #FFF;
    --black-color: #000000;
}


/* Header-Slider Start */
.main {
    display: flex;
    overflow: hidden;
    height: 53vw;
}

.main .single-column {
    animation: var(--animation, none) 20s infinite linear;
}

.main .single-column img {
    vertical-align: middle;
    width: 100%;
}

.main .single-column:nth-of-type(even) {
    animation: var(--animation, none) 90s infinite linear;
    align-self: flex-end;
    --direction: 50%;
}

.main.col-lg-7 {
    padding: 0 !important;
    background-color: var(--white-color);
}

.main.col-lg-7 .single-column {
    padding-right: 5px;
    padding-left: 5px;
}

.hero__sec .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.main .single-column img {
    padding-top: 5px;
    padding-bottom: 5px;

}

.single-column.three-colum {
    padding-right: 10px !important;
}

@keyframes slide {
    to {
        -webkit-transform: translateY(var(--direction, -50%));
        transform: translateY(var(--direction, -50%));
    }
}

/* Header-Slider End */

/* Header(Navbar) Start */
.hero-content {
    top: 0;
    left: 0;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.navbar {
    top: 0;
    left: 0;
    padding: 0px 0;
    position: relative;
    width: 100%;
    z-index: 10;
}

.navbar .navbar-nav .nav-link {
    color: var(--black-color);
    position: relative;
    display: inline-block;
    font-weight: 500;

    transition: all .3s ease-in;
}

.navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    border-radius: 4px;
    scale: 0;
    transform-origin: left;
    transition: scale .3s ease-in;
}

.navbar .navbar-nav .nav-link:hover::before {
    scale: 1;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--main-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar .navbar-collapse {
    justify-content: center;
    width: 41.6%;
    right: 0;
}

.navbar-text {
    justify-content: flex-end;
    position: absolute;
    top: 0;
    right: 0;
}

.navbar-nav {
    margin-top: 20px;
}

.navbar-text .navbar-nav .nav-link {
    margin: 0 13px;
}

/* Header(Navbar) Start */

/* Header(Logo) Start */

.logo-div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* .logo-div img {
    width: 250px;
} */


/* Header(Logo) End */

/* Button start */

.hero-btn {
    padding: 14px 30px;
    text-decoration: none;
    font-size: 26px;
    border: none;
    background: #000000;
    box-shadow: 0px 0px 100px 39px rgba(160, 160, 160, 0.24);
    border-radius: 10px;
    transition: 0.3s ease-in;
}

.hero-btn:hover {
    background-color: var(--main-color);
}

.hero-btn {
    color: var(--white-color);
    transition: 0.3s ease-in;
}

.maincontain {
    position: relative;
}

.buttonmove {
    z-index: 99;
    top: 84%;
    left: 96%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.hero-btn a svg {
    margin-top: -2px;
}

/* Button End */

/* About Section Start */
.par__heading {
    text-align: center;
    padding-bottom: 30px;
}

.par__heading h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 27px;
    text-transform: uppercase;
    position: relative;
    color: var(--black-color);
}

.par__heading h2::before {
    margin: 0 15px 10px 0;
}

.par__heading h2::after {
    margin: 0 0 10px 15px;
}

.par__heading h2::before,
.par__heading h2::after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--main-color);
    display: inline-block;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: var(--main-color);
    line-height: 1;
}

.about .content ul li+li {
    margin-top: 10px;
}

.about .content .btn-learn-more {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.3s;
    line-height: 1;
    color: var(--main-color);
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid var(--main-color);
}

.about .content .btn-learn-more:hover {
    background: var(--main-color);
    color: var(--white-color);
    text-decoration: none;
}

/* About Section End */

/* Counts Section Start */
.counts {
    padding-top: 0;
}

.counts .content {
    padding: 0;
}

.counts .content .count-box {
    padding: 20px 0;
    width: 100%;
}

.counts .content .count-box i {
    display: block;
    font-size: 36px;
    color: var(--main-color);
    float: left;
}

.counts .content .count-box span {
    font-size: 36px;
    line-height: 30px;
    display: block;
    font-weight: 700;
    color: #222222;
    margin-left: 50px;
}

.counts .content .count-box p {
    padding: 15px 0 0 0;
    margin: 0 0 0 50px;
    font-size: 14px;
    color: #484848;
}

/* Service Section Start */

.service .service_main {
    text-align: center;
    margin-top: 30px;
    padding: 0 15px;
}

.service .service_main .services_img {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 40px;
}

.service .service_main .services_img .icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--white-color);
    border-radius: 50%;
    color: var(--main-color);
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 20px;
}

.service .service_main .services_img img {
    object-fit: cover;
}

.service .service_main .service_title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.service .service_main .service_desc {
    font-size: 16px;
    color: #232323;
    margin-bottom: 30px;
    line-height: 2;
}

/* Service Section End */

/* language Section Start */
.language {
    background-image: url(../img/contact/Destination.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.par__heading p {
    font-size: 20px;
    margin: 25px auto;
}

.one {
    width: 100%;
    height: 85px !important;
    max-width: 100%;
    margin: auto;
}

.bx-viewport {
    height: 114.375px !important;
}

.two {
    width: 100%;
    height: 85px !important;
    max-width: 100%;
    margin: auto;
}

.three {
    width: 100%;
    max-width: 100%;
    margin: auto;
}


.bxslider {
    width: 100%;
}


.location_box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    float: none !important;
    list-style: none;
    position: relative;
}

.location__list {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.loop-slider .inner {
    display: flex;
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: var(--duration);
}

.loc__name {
    margin-bottom: 30px;
    text-wrap: nowrap;
    color: var(--white-color);
    font-size: 20px;
    line-height: 35px;
    font-weight: 500;
    background-color: transparent;
    border: 1px solid var(--white-color);
    border-radius: 7px;
    padding: 11px 48px;
    margin-right: 30px;
    transition: all 0.3s ease-in;
}

.loc__name_whts {

    text-wrap: nowrap;

    color: var(--white-color);
    text-align: center;
    -ms-flex-item-align: center;
    font-size: 20px;
    line-height: 35px;
    font-weight: 500;
    background-color: var(--black-color);
    ;
    border: 1px solid var(--white-color);
    border-radius: 7px;
    padding: 11px 48px;
    transition: all 0.3s ease-in;
}


a:visited {
    color: white;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: white;
    background-color: transparent;
    text-decoration: none;
}


.loc__name:hover {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);

}

.loc__name_whts:hover {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
}

.center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@keyframes loop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* language Section End */

/* Pricing section start */
/* .pricing_main .pricing_title_box {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    padding: 20px 0;
} */

.pricingTable {
    color: var(--black-color);
    /* background: linear-gradient(to right, #000000ab, #0e0000); */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-align: center;
    padding: 15px 0 22px;
    /* border: 2px solid #7b8493; */
    border-radius: 25px;
}

.pricing-sub {
    font-size: 18px;
    font-weight: 600;
    line-height: 40px;
    color: rgb(192, 192, 192);
}

.pricingTable .pricingTable-header {
    margin: 0 0 20px;
}

.pricingTable .price-value {
    margin: 0 0 15px;
}

.pricingTable .price-value .amount {
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;
    display: block;
}

.pricingTable .price-value .duration {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    display: block;
}

.pricingTable .title {
    /* background: linear-gradient(to right, #ed364a, #f35844); */
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 0;
    margin: 0;
    position: relative;
}

.pricingTable .title::before {
    margin: 0 15px 10px 0;
}

.pricingTable .title::before, .pricingTable .title::after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--main-color);
    display: inline-block;
}

.pricingTable .title::after {
    margin: 0 0 10px 15px;
}

.pricingTable .pricing-content {
    text-align: left;
    margin: 0 0 20px;
    list-style: none;
    display: inline-block;
}

.pricingTable .pricing-content li {
    font-size: 16px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0.5px;
    padding: 0 15px 0 25px;
    margin: 0 0 5px;
    position: relative;
}

.pricingTable .pricing-content li:last-child {
    margin: 0;
}

.pricingTable .pricing-content li:before {
    content: "\f00c";
    color: #2a8317;
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    position: absolute;
    top: 1px;
    left: 0;
}

.pricingTable .pricing-content li.disable:before {
    content: "\f00d";
    color: #f32e30;
}

.pricingTable .pricingTable-signup a {
    color: var(--black-color);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
    width: 70%;
}

/* .pricingTable .pricingTable-signup a:hover {
    background-color: var(--main-color);
    color: var(--white-color);
} */

.pricingTable .pricingTable-whts a {
    background-color: var(--main-color);
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
    width: 70%;
}

/* .pricingTable .pricingTable-whts a:hover {
    background-color: var(--white-color);
    color: var(--black-color);
    border: 2px solid var(--main-color);
} */

/* .pricingTable.green .title {
    background: linear-gradient(to right, #59ab2f, #94d255);
}

.pricingTable.blue .title {
    background: linear-gradient(to right, #5a86e7, #36cedc);
} */

@media only screen and (max-width: 990px) {
    .pricingTable {
        margin: 0 0 40px;
    }
}

/* .pricing_main .pricing_title_box .pricing_title {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.pricing_main .pricing_title_box .pricing_title_desc {
    color: var(--white-color);
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
    margin-bottom: 0;
}

.pricing_main .pricing_box {
    border-bottom: 1px solid #ddd;
}

.pricing_main .pricing_detail_box {
    border-top: none;
    border: 1px solid #ddd;
}

.pricing_main .pricing_detail_box .pricing {
    text-align: center;
    font-size: 22px;
    color: var(--black-color);
    font-weight: 700;
    margin: 15px 0;
}

.pricing_main .pricing_detail_box .pricing_desc {
    text-transform: uppercase;
    text-align: center;
    color: #979797;
    font-size: 17px;
    font-weight: 500;
}

.pricing_main .pricing_detail_box .check_img {
    width: 20px;
    height: 20px;
}

.pricing_main .pricing_detail_box .check_desc {
    position: relative;
    color: #979797;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
} */


.taeb-switch {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.taeb-switch:after {
    content: "";
    position: absolute;
    width: 30%;
    top: 0;
    left: 10;
    transition: left cubic-bezier(.88, -.35, .565, 1.35) .4s;
    border-radius: 27.5px;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .1);
    background-color: var(--main-color);
    height: 100%;
    z-index: 0;
}

.taeb-switch.left:after {
    left: 0%;
}

.taeb-switch.center:after {
    right: 30%;
}

.taeb-switch.right:after {
    right: 0%;
}

.taeb-switch .taeb {
    display: inline-block;
    padding: 12px 0;
    z-index: 1;
    position: relative;
    cursor: pointer;
    color: var(--main-color);
    transition: color 200ms;
    font-size: 16px;
    font-weight: bold;
    line-height: normal;
    user-select: none;
}

.taeb-switch .taeb.active {
    color: var(--white-color);
}



/* Pricing section end */

.tab {
    overflow: hidden;
    background-color: #f1f1f1;
    display: inline-block;
    width: 100%;
    background-color: #000;


  }

.tablink:hover {
    background-color: #cc363671;
    border-radius: 37px;
  }
  
  .wrapper {
    border-radius: 37px;
    background-color: #f4f4f4;
    padding: 1%;
    width: fit-content;
    
    margin-left: auto;
    margin-right: auto;
}

.tablink {
    background-color: #f4f4f4;
    border: none;
    outline: none;
    cursor: pointer;
    color: var(--main-color);
    padding: 14px 16px;
    
    font-size: 16px;
    font-weight: bold;
    user-select: none;

  
}
  .tablink.active {
    border-radius: 37px;
    background-color:var(--main-color);
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    
    padding: 14px 16px;
    font-size: 16px;
    font-weight: bold;
    
  }
  
  /* .tab button {
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
  } */
  
  
/* Portfolio section start */
.portfolio-menu {
    text-align: center;
}

.control {
    background: #fff;
    color: #000;
    padding: 10px 15px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    margin: 5px;
    cursor: pointer;
    -webkit-transition: all 05s ease;
    -moz-transition: all 05s ease;
    -ms-transition: all 05s ease;
    -o-transition: all 05s ease;
    transition: all 0.5s ease;
}

.control:hover {
    color: #fff;
    background: var(--main-color);
}

.active-filter-btn {
    color: #fff;
    background: var(--main-color);
}

.fancybox-container button:focus {
    outline: 0;
    box-shadow: none;
}

.portfolio-item {
    padding-top: 30px;
    padding-left: 0;
}

.pd {
    padding: 20px;
    position: relative;
}

.pd img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s;
}

.portfolio-overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    text-align: center;
    visibility: hidden;
    transition: all 0.5s;
    transform: scale(0);
}

.portfolio-overlay p,
.portfolio-overlay a {
    position: relative;
    z-index: 4;
}

.portfolio-overlay::before {
    content: "";
    width: 0;
    height: 0;
    border-width: 0;
    position: absolute;
    left: 10%;
    top: 10%;
    transition: 50ms height ease 150ms;
    z-index: 3;
}

.portfolio-overlay::after {
    content: "";
    width: 0;
    height: 0;
    border-width: 0;
    position: absolute;
    right: 10%;
    bottom: 10%;
    transition: 100ms width ease 200ms;
    z-index: 3;
}

.portfolio-item:hover .portfolio-overlay::before {
    width: 80%;
    height: 80%;
    border-top: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
    transition: width 0.1s ease 0.3s, height 0.1s ease 0.5s;
}

.portfolio-item:hover .portfolio-overlay::after {
    width: 80%;
    height: 80%;
    border-bottom: 1px solid var(--main-color);
    border-left: 1px solid var(--main-color);
    transition: width 0.1s ease 0.6s, height 0.1s ease 0.7s;
}

.portfolio-item li:hover .portfolio-overlay {
    visibility: visible;
    transform: scale(1);
}

.portfolio-overlay .category {
    color: #fff;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 130px;
    font-size: 18px;
}

.portfolio-overlay .depatment {
    margin-bottom: 20px;
    font-size: 17px;
    color: #fff;
    font-weight: 700;
    line-height: 1.4;
}

.portfolio-overlay .magnify-icon {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background: var(--main-color);
    margin: 0 5px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.25s;
}

.portfolio-overlay .magnify-icon:hover {
    background: #000;
}

.portfolio-overlay .magnify-icon p span i {
    font-size: 15px;
    color: #fff;
    line-height: 40px;
    cursor: pointer;
}
/* Portfolio section end */

/* FAQ section Start */
.faq__number {
    margin-right: 20px;
}

.faq__number img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.faq__text h6 {
    font-size: 20px;
    line-height: 35px;
}

.faq__text p {
    font-size: 18px;
    line-height: 30px;
    color: #979797;
}

.faq_img img {
    height: 470px;
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}

/* FAQ section End */

/* Vision section start */
.vision {
    position: relative;
}

.vision-slider .testi-card {
    z-index: 2;
}

.vision-slider .testi-card .text {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    line-height: 2;
    font-size: 24px;
    text-align: center;
}

/* Vision section end */

/* contact section start */
.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
}

.contact .info-box i {
    font-size: 32px;
    color: var(--main-color);
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #f5a0a0;
}

.contact .info-box h3 {
    font-size: 20px;
    color: var(--black-color);
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    color: var(--black-color);
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .info-box a {
    color: var(--black-color);
    text-decoration: none;
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
}

.contact .php-email-form .error-message {
    display: none;
    color: var(--white-color);
    background: var(--main-color);
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: var(--white-color);
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: var(--white-color);
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
    background-color: var(--main-color);
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
    background: var(--main-color);
    border: 0;
    padding: 10px 24px;
    color: var(--white-color);
    transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
    background: var(--main-color);
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* contact section end */

/* Footer start */
.footer {
    position: relative;
    background: #f2f2f2;
}

.footer .footer_img img {
    width: 250px;
}

.footer .footer-ul li a {
    color: var(--black-color);
    transition: all .3s ease-in;
    font-size: 18px;
    line-height: 22px;
    padding-right: 50px;
}

.footer .footer-ul li a:hover {
    color: var(--main-color) !important;
}

.footer .icon i {
    color: var(--black-color);
    transition: all .3s ease-in;
    font-size: 30px;
}

.footer .icon i:hover {
    color: var(--main-color) !important;
}

/* Footer end */

/* Back-to-top btn start */
#btn-back-to-top {
    position: fixed;
    bottom: 43px;
    right: 20px;
    display: none;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 50%;
    z-index: 999;
}

#btn-back-to-top:hover {
    background-color: var(--main-color);
}

/* --------------- Start Preloader --------------- */
.pace {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99999999999999;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    border: 0px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    pointer-events: none;
}

.pace .pace-progress {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    max-width: 300px;
    position: fixed;
    z-index: 99999999999999;
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100%;
    background: var(--white-color);
}

.pace.pace-inactive {
    width: 100vw;
    opacity: 0;
}

.pace.pace-inactive .pace-progress {
    max-width: 100vw;
}

#preloader {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    z-index: 9999999;
    pointer-events: none;
}

#preloader .logo_img {
    width: 300px;
    max-width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 20;
    opacity: 0.5;
}

#preloader:after,
#preloader:before {
    content: "";
    position: fixed;
    left: 0;
    height: 50%;
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#e61b50), to(#a44cee));
    background: -o-linear-gradient(left, #e61b50, #a44cee);
    background: linear-gradient(to right, #e61b50, #e61b50);
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

#preloader:before {
    top: 0;
}

#preloader:after {
    bottom: 0;
}

/* #preloader.isdone {
    visibility: hidden;
    -webkit-transition-delay: 1.5s;
    -o-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

#preloader.isdone #loading-wrapper {
    opacity: 0;
    -webkit-transform: scale(3);
    -ms-transform: scale(3);
    transform: scale(3);
    -webkit-filter: blur(2px);
    filter: blur(2px);
}

#preloader.isdone:after,
#preloader.isdone:before {
    height: 0;
    -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    -o-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
} */

/*----------- upload loader ------------*/
#loading-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.3333333333);
    display: none;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#loading-wrapper.show {
    display: block;
}

#loading-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: calc(50% - 38px);
    left: 50%;
    color: var(--white-color);
    width: 100px;
    height: 100px;
    margin: -7px 0 0 -45px;
    text-align: center;
    font-size: 20px;
}

#loading-text img {
    width: 100px;
}

#loading-content {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 170px;
    height: 170px;
    margin: -85px 0 0 -85px;
    border: 3px solid #F00;
}

#loading-content:after {
    content: "";
    position: absolute;
    border: 3px solid #0F0;
    left: 15px;
    right: 15px;
    top: 15px;
    bottom: 15px;
}

#loading-content:before {
    content: "";
    position: absolute;
    border: 3px solid #e61b50;
    left: 5px;
    right: 5px;
    top: 5px;
    bottom: 5px;
}

#loading-content {
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-bottom-color: var(--primary);
    border-radius: 50%;
    -webkit-animation: loader 2s linear infinite;
    animation: loader 2s linear infinite;
}

#loading-content:before {
    border: 3px solid transparent;
    border-top-color: #e61b50;
    border-bottom-color: #e61b50;
    border-radius: 50%;
    -webkit-animation: loader 3s linear infinite;
    animation: loader 3s linear infinite;
}

#loading-content:after {
    border: 3px solid transparent;
    border-top-color: var(--white-color);
    border-bottom-color: var(--white-color);
    border-radius: 50%;
    -webkit-animation: loader 1.5s linear infinite;
    animation: loader 1.5s linear infinite;
    -moz-animation: loader 2s linear infinite;
    -o-animation: loader 2s linear infinite;
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#content-wrapper {
    color: var(--white-color);
    position: fixed;
    left: 0;
    top: 20px;
    width: 100%;
    height: 100%;
}

/* --------------- End Preloader --------------- */


/**
 * ----------------------------------------
 * animation slide_up_down
 * ----------------------------------------
*/
.slide_up_down {
    -webkit-animation: slide_up_down 1.7s ease-in-out infinite alternate both;
    animation: slide_up_down 1.7s ease-in-out infinite alternate both;
  }
  
  /* ------- */
  @-webkit-keyframes slide_up_down {
    0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  
    100% {
      -webkit-transform: translateY(-20px);
      transform: translateY(-20px);
    }
  }
  
  @keyframes slide_up_down {
    0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  
    100% {
      -webkit-transform: translateY(-20px);
      transform: translateY(-20px);
    }
  }