/*--------------------- Copyright (c) 2020 -----------------------
[Master Stylesheet]
Project: Multifarious GYM
Version: 1.0.0
Author: Kamleshyadav
-------------------------------------------------------------------
[Table of contents]
1. Global CSS Start
2. Comman CSS Start
3. Preloader CSS Start
4. Header CSS Start
5. Banner CSS Start
6. Partner CSS Start
7. About CSS Start
8. Counter CSS Start
9. Service CSS Start
10. Why Us CSS Start
11. Job CSS Start
12. Call To Action CSS Start
13. Testimonial CSS Start
14. Pricing Table CSS Start
15. Blog CSS Start
16. Footer CSS Start
17. About Page Style
17. Responsive CSS Start
-------------------------------------------------------------------*/


/********************************************************
1. Global CSS Start
********************************************************/

a,
a:hover,
a:focus {
    color: var(--white-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white-color);
}


/********************************************************
2. Comman CSS Start
********************************************************/
.bg_color{
    background: var(--bg-color);
}
.saf_btn,
.saf_btn:hover {
    font-size: 16px;
    color: var(--white-color);
    line-height: 41px;
    display: inline-block;
    background: var(--primary-color);
    text-transform: capitalize;
    padding: 6px 12px 3px;
    position: relative;
    min-width: 170px;
    text-align: center;
    transition: all 0.5s;
    font-weight: 500;
    position: relative;
    z-index: 0;


}

.saf_btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--secondary-color);
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.saf_btn:hover:before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.saf_btn:hover {
    box-shadow: 0px 0px 20px rgb(89 97 227 / 25%);
}

.saf_sub_heading2 {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}
.saf_heading {
    margin: auto;
    margin-bottom: 41px;
    width: 80%;
}

.saf_heading h4 {
    font-size: 38px;
    font-weight: 700;
    position: relative;
}

.saf_heading img {
    margin: 3px 0 6px;
    display: inline-block;
}

.saf_title {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-color);
}

.saf_sub_heading {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
}

#scroll {
    background: var(--primary-color);
    color: var(--dark1-color);
}


/********************************************************
3. Preloader CSS Start
********************************************************/

.preloader_active .preloader_holder {
    background-color: var(--dark1-color);
}

.preloader_active .preloader_holder .preloader span {
    box-shadow: 0px 0px 0px 0px var(--primary-color);
}

@-webkit-keyframes loadingCircles {
    0% {
        -webkit-transform: scale(0);
        opacity: 1;
        box-shadow: 0px 0px 0px 10px var(--primary-color);
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
        box-shadow: 0px 0px 0px 2px var(--primary-color);
    }
}

@-moz-keyframes loadingCircles {
    0% {
        -moz-transform: scale(0);
        opacity: 1;
        box-shadow: 0px 0px 0px 10px var(--primary-color);
    }
    100% {
        -moz-transform: scale(1);
        opacity: 0;
        box-shadow: 0px 0px 0px 2px var(--primary-color);
    }
}

@keyframes loadingCircles {
    0% {
        transform: scale(0);
        opacity: 1;
        box-shadow: 0px 0px 0px 10px var(--primary-color);
    }
    100% {
        transform: scale(1);
        opacity: 0;
        box-shadow: 0px 0px 0px 2px var(--primary-color);
    }
}

.preloader_open:before,
.preloader_open:after {
    background-color: var(--dark1-color);
}


/********************************************************
4. Header CSS Start
********************************************************/
.saf_header_wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.fixed_header.fixed {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    box-shadow: 0px 0px 30px rgba(0 0 0 / 20%);
}


.fixed_header.fixed .saf_header_info_wrapper {
    display: none;
}
.fixed_header.fixed .saf_header_wrapper {
    background: #021327;
}
.saf_header_wrapper {
    padding: 0;
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0px 80px;
}
.saf_search_wrap {
    margin-left: 50px;
}


.saf_search_wrap > ul>li:first-child {
    margin-right: 15px;
}
.searchBtn {
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.searchBtn > svg {
    width: 35px;
    height: auto;
    display: block;
}
.searchBtn:hover {
    color: var(--primary-color);
}




.header_btn {
    background: var(--primary-color);
    color: var(--white-color);
    display: inline-block;
    text-align: center;
    font-weight: 500;
    padding: 15px 30px;
}

.header_btn:hover {
    color: var(--white-color);
    /* background: #5961e3; */
    background: rgb(4 24 47 / 72%);

}



.saf_header_info_wrapper {
    display: flex;
    background: #04182f;
    padding: 0 80px;
    justify-content: space-between;
    align-items: center;
}
.saf_headerttl {
    color: var(--white-color);
    font-weight: 400;
}
.saf_header_info_wrapper ul {
    justify-content: flex-end;
}

.saf_header_info_wrapper ul li {
    padding: 12px 0;
    font-weight: 400;
    color: var(--white-color);
    position: relative;
}

.saf_header_info_wrapper ul li:first-child {
    margin-right: 25px;
    padding-right: 25px;
}

.saf_header_info_wrapper ul li:first-child:before {
    right: 0;
    content: "";
    position: absolute;
    background: var(--main-border-color);
    height: 30px;
    margin: auto;
    width: 1px;
}

.saf_header_icon {
    width: 26px;
    height: 26px;
    line-height: 24px;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    margin-right: 6px;
    background: transparent;
    border: 1px solid #1e2228;
}

.saf_header_icon svg {
    width: 12px;
    fill: var(--white-color);
}

.saf_header_info ul li {
    margin-bottom: 12px;
    margin-left: 60px;
    font-weight: 500;
}

.saf_header_info ul li:first-child {
    margin-left: 0;
}

.saf_header_info ul li a {
    color: var(--primary-color);
}


/********************************************************
5. Banner CSS Start
********************************************************/
.saf_bg_video {
    width: 100%;

}
.saf_bg_video_wrap{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
.saf_bg_video_wrap:before {
    /* content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    width: 100%;
    height: 100%; */
}
.saf_banner_wrapper {
    position: relative;
    background: rgb(0 0 0 / 71%);
}
.saf_banner_section {
    padding: 170px 0 100px;
    position: relative;
}
.saf_banner_section .container-fluid {
    max-width: 1600px;
}

.saf_banner_section:before {
    /* content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; */
    /* background: rgba(25, 33, 36, 0.9); */
}

.saf_banner_section.slide1,
.saf_banner_section.slide2,
.saf_banner_section.slide3 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.saf_banner_section .row {
    align-items: center;
}

.saf_banner_text h1 {
    font-size: 100px;
    color: var(--white-color);
    font-weight: 700;
    margin: 20px 0;
}

.saf_banner_button {
    position: absolute;
    top: 53%;
    left: 0;
    right: 0;
    display: none;
}

.saf_banner_button>div {
    border-bottom: 2px solid var(--white-color);
    color: var(--white-color);
    width: 100px;
    height: 60px;
    position: absolute;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    font-size: 19px;
    cursor: pointer;
}

.saf_banner_button>div:before {
    content: "";
    background: var(--dark1-color);
    width: 3px;
    height: 28px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.ButtonPrev:before {
    left: 0;
}

.ButtonPrev:after {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-left: 20px solid rgba(255, 255, 255, 0.10);
    border-bottom: 60px solid transparent;
}

.ButtonNext:after {
    content: "";
    position: absolute;
    left: -20px;
    bottom: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-right: 20px solid rgba(255, 255, 255, 0.10);
    border-bottom: 60px solid transparent;
}

.ButtonNext:before {
    right: 0;
}

.saf_banner_button>div:hover:before {
    background: var(--primary-color);
}

.saf_banner_button>div:hover {
    color: var(--primary-color);
}

.ButtonPrev {
    left: 0;
    padding: 0 3px 0 0;
}

.ButtonNext {
    right: 0;
    padding: 0 2px 0 0;
}

.saf_banner_button>div,
.saf_banner_button>div:hover,
.saf_banner_button>div:before,
.saf_banner_button>div:hover:before {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.saf_banner_wrapper .saf_title {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
}

.saf_banner_wrapper .swiper-slide-active .saf_title {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 800ms;
    -o-transition-delay: 800ms;
    transition-delay: 800ms;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.saf_banner_wrapper h1 {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 800ms ease;
    -o-transition: all 800ms ease;
    transition: all 800ms ease;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
}

.saf_banner_wrapper .swiper-slide-active h1 {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

.saf_banner_wrapper .saf_btn {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 800ms ease;
    -o-transition: all 800ms ease;
    transition: all 800ms ease;
    -webkit-transform: translateX(80px);
    -ms-transform: translateX(80px);
    transform: translateX(80px);
}

.saf_banner_wrapper .swiper-slide-active .saf_btn {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}


/********************************************************
6. Partner CSS Start
********************************************************/

.saf_partner_wrapper {
    padding: 80px 0;
}

.saf_partners_container img {
    filter: grayscale(100%);
    height: 90px;
}

.saf_partners_container:hover img {
    filter: grayscale(0%);
}

.saf_partners_container:hover img,
.saf_partners_container:hover,
.saf_partners_container img,
.saf_partners_container {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}


/********************************************************
7. About CSS Start
********************************************************/

.saf_about_wrapper {
    padding: 80px 0;
    display: inline-block;
    width: 100%;
    color: var(--main-gray-version14);
}

.saf_about_wrapper .row {
    align-items: center;
}


.saf_about_detail h1 {
    font-size: 38px;
    font-weight: 400;
    margin: 14px 0 12px 0;
}

.saf_about_detail h1 span {
    font-weight: 900;
    color: var(--primary-color);
}

.saf_about_contant {
    margin: 25px 0 20px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 15px;
}
.saf_about_contant svg {
    enable-background: new 0 0 512 512;
    background: #0ec9ac;
    width: 38px;
    height: 38px;
    padding: 7px;
    border-radius: 2px;
}
.saf_about_contant span {
    font-size: 26px;
    font-weight: 500;
    color: var(--white-color);
}

.saf_about_contant img {
    margin-right: 12px;
    vertical-align: text-bottom;
    height: 30px;
}

.saf_about_detail .saf_about_num {
    font-size: 38px;
    font-weight: 900;
    display: inline-block;
    color: var(--primary-color);
    line-height: 50px;
}
.saf_about_img {
    position: relative;
    padding: 0 0 150px 150px;
    margin-right: 30px;
}
.saf_about_img2{
    position: absolute;
    max-width:310px;
    bottom: 0px;
    left: 0px;
    z-index: 1;
}
.saf_vector li{
    position: absolute;
}
.aboutSec.saf_vector > li:first-child{
    top: 90px;
    left: 20px;
}
.aboutSec.saf_vector li:last-child{
    bottom: 10px;
    right: 50px;
}
.saf_marquee_wrapper {
    position: relative;
    z-index: 0;
    /* transform: skew(0deg, -2deg); */
}
.saf_marquee_wrapper:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #0ec9ac7a;
    transform: skew(0deg, 2deg);
    z-index: -1;
}
/* marquee div container */
.saf_marquee_inner {
    color: #ffffff;
    overflow: hidden;
    background: #0ec9ac;
    position: relative;
    height: 45px;
}
/* nested div inside the container */
.saf_marquee_text {
    display: block;
    width: 200%;
    position: absolute;
    overflow: hidden;
    font-size: 28px;
    font-weight: 800;
    padding: 5px 0 0px;
    animation: marquee 12s linear infinite;
}
/* span with text */
.saf_marquee_text span {
    float: left;
    width: 50%;
}
/* keyframe */
@keyframes marquee {
    0% { left: 0; }
    100% { left: -100%; }
}
/********************************************************
8. Counter CSS Start
********************************************************/

.saf_counter_wrapper {
    position: relative;
    width: 100%;
    padding: 80px 0 42px;
}

.saf_counter_wrapper:before {
    content: "";
    position: absolute;
    background: rgb(2 19 39 / 73%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.counter_item h1 {
    font-size: 42px;
    color: var(--white-color);
    font-weight: 700;
    margin-bottom: 3px;
}

.counter_item p {
    font-size: 18px;
    color: var(--text-color);
}

.saf_counter_icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border: 2px solid var(--white-color);
    margin: auto;
    border-radius: 50%;
    margin-bottom: 13px;
    transition: var(--transition);
    background-color: #ffffff0f;
    animation: icon_animation 10s linear infinite alternate forwards;
}

.saf_counter_icon img {
    width: 40px;
    position: relative;
}

.counter_item,
.counter_item:hover .saf_counter_icon,
.counter_item:hover,
.counter_item .saf_counter_icon {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}


/********************************************************
9. Service CSS Start
********************************************************/

.saf_services_wrapper {
    padding: 72px 0 50px;
}

.saf_services_sectionBg {
    content: "";
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.saf_services_sectionBg a {
    color: var(--text-color);
}


.saf_services_section {
    background-color: var(--box-color);
    padding: 50px 30px 41px;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    z-index: 0;
}

.saf_services_sectionBg:hover .saf_services_section {
    color: var(--white-color);
}

.saf_icon_bg {
    display: inline-block;
    text-align: center;
    margin-bottom: 24px;
    width: 100%;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    display: inline-block;
    transition: var(--transition);
    background-color: #ffffff0f;
    animation: icon_animation 10s linear infinite alternate forwards;
}

.saf_icon_bg svg {
    height: 50px;
    fill: var(--primary-color);
    width: 50px;
}
.saf_services_section:hover .saf_icon_bg svg {
    -webkit-animation: zoomIcon 1s;
    animation: zoomIcon 1s;
}

.saf_icon_border svg {
    fill: var(--primary-color);
    width: 150px;
    height: 20px;
}

.saf_service_title {
    font-size: 24px;
    font-weight: 500;
}

.saf_icon_border {
    display: inline-block;
    margin: 4px 0 8px;
}

.saf_services_section:before{
    content: "";
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    -webkit-transition: -webkit-transform 1.5 s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 1.5 s ease;
    transition: transform 1.5 s ease, -webkit-transform 1.5s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;
}

.saf_services_sectionBg:hover .saf_service_title {
    color: var(--white-color)
}

.saf_services_sectionBg:hover .saf_services_section:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;

}

.saf_services_sectionBg:hover .saf_icon_border svg,
.saf_services_sectionBg:hover .saf_icon_bg svg {
    fill: var(--white-color);
}

.saf_services_sectionBg:hover .saf_icon_border svg,
.saf_services_sectionBg:hover .saf_icon_bg svg,
.saf_icon_border svg,
.saf_icon_bg svg{
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}


/********************************************************
10. Why Us CSS Start
********************************************************/

.saf_whyUs_wrapper {
    padding: 80px 0 ;
    display: inline-block;
    width: 100%;
}
.saf_whyUs_detail .saf_heading {
    width: 100%;
    margin-bottom: 21px;
}

.saf_whyUs_info_icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    display: inline-block;
    position: relative;
    border: none;
    background: var(--primary-color);
    text-align: center;
}
.saf_whyUs_detail ul li:hover .saf_whyUs_info_icon {
    -webkit-animation: zoomIcon 1s;
    animation: zoomIcon 1s;
}

.saf_whyUs_info_icon:before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    border: 1px dashed var(--dark1-color);
}

.saf_whyUs_info_icon svg {
    height: 40px;
    width: 40px;
    fill: var(--bg-color);
}

.saf_whyUs_detail ul li {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    align-items: center;
}

.saf_whyUs_detail ul li:last-child {
    margin-bottom: 0;
}

.saf_whyUs_detail ul li .saf_whyUs_info_icon {
    width: 100px;
}

.saf_whyUs_detail ul li .saf_whyUs_info {
    width: calc(100% - 100px);
    padding-left: 20px;
}


.saf_whyUs_detail ul li:hover .saf_whyUs_info_icon svg {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}

.saf_whyUs_detail ul li:hover .saf_whyUs_info .saf_sub_heading {
    color: var(--primary-color);
}

.saf_whyUs_detail ul li:hover .saf_whyUs_info .saf_sub_heading,
.saf_whyUs_detail ul li .saf_whyUs_info .saf_sub_heading {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.saf_whyUs_detail ul li:hover .saf_whyUs_info_icon svg,
.saf_whyUs_detail ul li .saf_whyUs_info_icon svg {
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.saf_whyUs_ex {
    background: #0ec9ac;
    margin-top: 16px;
    padding: 26px 20px;
    font-size: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    justify-content: center;
    color: var(--bg-color);
}

.saf_whyUs_ex > span:last-child {
    font-size: 20px;
    font-weight: 600;
}
/********************************************************
11. features CSS Start
********************************************************/
.saf_feature_wrapper {
    padding: 50px 0;

}
.saf_feature_section {
    border: 1px solid var(--main-border-color);
    background: var(--box-color);
    padding: 50px;

}
.saf_feature_section_wrap{
    padding-bottom: 100px;
    position: sticky;
    top: 90px;
}
.saf_feature_heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}
.saf_feature_des {
    font-size: 18px;
    margin: 10px 0 30px;
}
/********************************************************
11. Job CSS Start
********************************************************/

.saf_job_wrapper {
    padding: 72px 0 80px;
}

.saf_job_btn_wrap .saf_btn,
.saf_job_btn_wrap .saf_btn:hover {
    min-width: 120px;
}

.saf_job_section {
    border: 1px solid var(--main-border-color);
    background: var(--box-color);
    padding: 15px;
    margin-bottom: 30px;
}

.saf_job_info_wrap {
    display: flex;
    flex-wrap: wrap;
}

.saf_job_type {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.saf_job_img {
    width: 230px;
}

.saf_job_info {
    width: calc(100% - 230px);
    padding: 0px 0 0 20px;
}

.saf_job_info h4 {
    font-size: 18px;
    color: var(--main-txt-color);
    margin: 5px 0 7px;
}

.saf_job_info ul li {
    display: inline-block;
    margin-left: 20px;
}

.saf_job_info ul li:first-child {
    margin-left: 0;
}

.saf_job_icon svg {
    width: 16px;
    height: 18px;
    fill: var(--primary-color);
    vertical-align: text-bottom;
    margin-right: 10px;
}

.saf_job_date {
    margin-top: 18px;
    color: var(--main-txt-color);
    font-size: 18px;
}

.saf_job_date span {
    font-weight: 500;
    color: var(--white-color);
    margin-right: 10px;
}

.saf_job_section .row,
.saf_job_info_wrap {
    align-items: center;
}

.saf_job_section:hover .saf_sub_heading {
    color: var(--primary-color);
}

.saf_job_section:hover {
    box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.03);
}

.saf_job_section .saf_sub_heading,
.saf_job_section:hover .saf_sub_heading,
.saf_job_section,
.saf_job_section:hover {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}


/********************************************************
12. Call To Action CSS Start
********************************************************/

.saf_callToAction_wrapper {
    background: url(../images/index/callToActiob_bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    padding: 196px 0 181px;
    display: inline-block;
}

.saf_callToAction_wrapper:before {
    content: "";
    position: absolute;
    background: rgb(2 19 39 / 74%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.saf_callToAction_text .video_btn {
    height: 130px;
    display: inline-block;
    width: 130px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    line-height: 130px;
}

.saf_callToAction_text .video_btn svg {
    width: 30px;
    height: 30px;
    fill: var(--dark1-color);
}

.video_btn {
    animation: shadow-pulse 2s infinite;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 10px rgba(251, 157, 92, 0.2);
    }
    100% {
        box-shadow: 0 0 0 25px rgba(251, 157, 92, 0);
    }
}

@keyframes shadow-pulse-big {
    0% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
    }
}

.saf_callToAction_text h1 {
    color: var(--white-color);
    font-size: 52px;
    font-weight: 400;
    margin-top: 8px;
}

.saf_callToAction_text h1 span {
    font-weight: 700;
}


/********************************************************
13. Testimonial CSS Start
********************************************************/

.saf_testimonial_wrapper {
    position: relative;
    width: 100%;
    padding: 72px 0 80px;
    display: inline-block;
}

.saf_testimonials_section {
    background: var(--box-color);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
    position: relative;
    margin: 20px auto;
}

.saf_testimonials_section:before {
    content: "";
    background: var(--primary-color);
    top: -20px;
    bottom: -20px;
    left: 125px;
    right: 125px;
    position: absolute;
    z-index: 0;
}

.saf_testimonials_sectionInner {
    position: relative;
    z-index: 1;
    background: var(--box-color);
    padding: 50px 30px 13px;
}

.gallery-thumbs {
    width: 280px;
    margin: auto;
    margin-bottom: 21px;
}

.saf_testimonial_wrapper .gallery-thumbs .swiper-slide .swiper_client_thumb img,
.saf_testimonial_wrapper .gallery-thumbs .swiper-slide {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.saf_testimonial_wrapper .gallery-thumbs .swiper-slide .swiper_client_thumb img {
    border: 3px solid transparent;
}

.saf_testimonial_wrapper .gallery-thumbs .swiper-slide-active .swiper_client_thumb img,
.saf_testimonial_wrapper .gallery-thumbs .swiper-slide-active {
    width: 100px !important;
    height: 100px;
    border-radius: 50%;
}

.saf_testimonial_wrapper .gallery-thumbs .swiper-slide-active .swiper_client_thumb img,
.saf_testimonial_wrapper .gallery-thumbs .swiper-slide.swiper-slide-thumb-active .swiper_client_thumb img {
    border: 3px solid var(--primary-color);
}

.gallery-thumbs .swiper-wrapper {
    display: flex;
    align-items: flex-end;
}

.saf_client_quote {
    display: flex;
    justify-content: center;
    margin-top: 6px;
    align-items: flex-end;
}

.swiper-container.gallery-top {
    position: unset;
}

.saf_client_quote p {
    margin-left: 8px;
    display: inline-block;
}

.arrow_wrapper>div {
    position: absolute;
    overflow: hidden;
    display: inline-block;
    width: 50px;
}

.thumbPrev svg {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.arrow_wrapper {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.thumbNext {
    right: 0;
}

.thumbPrev {
    left: 0;
}

.arrow_wrapper>div svg {
    display: inline-block;
    fill: var(--white-color);
    position: relative;
}

.arrow_wrapper>div.thumbPrev svg {
    right: -20px;
}

.arrow_wrapper>div.thumbNext svg {
    left: -20px;
}

.arrow_wrapper>div.thumbPrev:hover svg {
    right: -2px;
    fill: var(--primary-color);
}

.arrow_wrapper>div.thumbNext:hover svg {
    left: -2px;
    fill: var(--primary-color);
}

.saf_testimonial_section {
    background: url(../images/index/quote.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    display: inline-block;
    z-index: 1;
    padding-bottom: 30px;
}

.arrow_wrapper>div svg,
.arrow_wrapper>div:hover svg {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
}


/********************************************************
14. Pricing Table CSS Start
********************************************************/

.saf_pricing_wrapper {
    padding: 72px 0 41px;
    display: inline-block;
    width: 100%;
}

.saf_price_box:hover {
    background:transparent;
}
.saf_price_box:hover:after,  .saf_price_box:hover:before{
    opacity: 1;
}
.saf_price_box {
    width: 100%;
    display: inline-block;
    background: #0ec9ac;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 0;
    padding: 2px
}
.saf_price_boxInner {
    background: var(--box-color);
    padding: 46px 0 41px;
}
.saf_price_box:after {
    content: "";
    position: absolute;
    display: block;
    top: -50%;
    left: -50%;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform-origin: bottom right;
    background-image: linear-gradient(45deg, transparent, transparent, #0ec9ac, #21edce, #00d5b5);
    animation: 5s rotate-2 linear infinite;
    z-index: -1;
    opacity: 0;
    transition: .35s cubic-bezier(.25,.46,.45,.94);
}

.saf_price_box:before {
    content: "";
    position: absolute;
    display: block;
    top: -50%;
    left: -50%;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform-origin: bottom right;
    background-image: linear-gradient(45deg, transparent, transparent, #0ec9ac, #21edce, #00d5b5);
    animation: 5s rotate-2 linear infinite;
    z-index: -1;
    opacity: 0;
    transition: .35s cubic-bezier(.25,.46,.45,.94);
    animation-delay: 3s;
    border-radius: 10px;
}

@keyframes rotate-2{
    0%{
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
.saf_price_box.saf_price_center {
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.18);
}

.saf_price_box h5 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
}

.saf_price_box h1 {
    font-weight: 900;
    font-size: 62px;
    line-height: 80px;
    margin: 6px 0 10px;
}

.saf_price_box h1 sub {
    font-size: 16px;
    color: var(--main-txt-color);
    font-weight: normal;
}

.saf_trial_wrap {
    background: var(--main-orange-version3);
    padding: 16px 0 13px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 22px;
}

.saf_price_box ul {
    padding: 16px 0px 13px;
    display: inline-block;
    width: 100%;
}

.saf_price_box ul li {
    padding: 8px 15px 8px;
}

.saf_price_box span {
    font-weight: 700;
}

.saf_price_box .saf_btn,
.saf_price_box .saf_btn:hover {
    margin: 0px 0 14px;
    min-width: 120px;
}

.saf_price_offer_wrap {
    position: absolute;
    right: -50px;
    top: 30px;
    background: var(--primary-color);
    color: var(--dark1-color);
    font-size: 18px;
    font-weight: 700;
    padding: 8px 50px 8px 56px;
    text-transform: uppercase;
    letter-spacing: 3px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.saf_price_box:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}

.saf_price_box:hover,
.saf_price_box {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}


/********************************************************
15. Blog CSS Start
********************************************************/
.saf_blog_wrapper .container-fluid {
    max-width: 1600px;
}
.saf_blog_wrapper {
    padding: 70px 0 50px;
}
.saf_blog_wrapper .swiper-container {
    padding: 0 15px;
}
.saf_blog_img {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}
.saf_blog_img:after {
    content: "";
    background: -webkit-linear-gradient(right, rgb(255 0 0 / 0%) 0%, rgb(2 19 39 / 73%) 100%);
    width: 100%;
    border-radius: inherit;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s linear;
    opacity: 0;
    display: inline-block;
}

.saf_blog_img img {
    transform: translate3d(-6.66%, 0, 0) scale(1.2);
    -webkit-transform: translate3d(-6.66%, 0, 0) scale(1.2);
    width: calc(100% + 10%);
    transition: all 0.3s;
}

.blogSlider {
    padding-top: 20px;
}

.saf_blog_date {
    background: var(--primary-color);
    display: inline-block;
    text-align: center;
    padding: 0px 0;
    position: absolute;
    font-size: 18px;
    bottom: 20px;
    left: 20px;
    padding: 10px;
    color: #fff;
    font-weight: 700;
    z-index: 1;
}

.saf_blog_date b {
    font-size: 28px;
    display: inline-block;
    width: 100%;
    line-height: 26px;
    margin-top: 6px;
    margin-bottom: 1px;
}

.saf_blog_info li {
    display: inline-block;
    margin-left: 14px;
}

.saf_blog_info li:first-child {
    margin-left: 0;
}

.blog_text {
    padding: 30px 30px 0;
}

.saf_blog_info {
    margin-bottom: 11px;
}

.saf_blog_info li:first-child img {
    vertical-align: middle;
    border: none;
    border-radius: 50%;
}

.saf_blog_info li img {
    margin-right: 10px;
    vertical-align: text-top;
}

.saf_blog_info a {
    color: var(--text-color);
}
.saf_blog_descriptions {
    margin: 10px 0;
}


.saf_blog_title {
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
}

.saf_blog_title:hover {
    color: var(--primary-color);
}
.saf_blog_thumb:hover .saf_blog_img > img{
    filter: saturate(2) contrast(1);
}
.saf_blog_thumb:hover .saf_blog_img > img{
    transform: translate3d(-0, 0, 0) scale(1.2);
    -webkit-transform: translate3d(-0, 0, 0) scale(1.2);
}
.saf_blog_thumb:hover .saf_blog_img:after{
    opacity: 1;
}
.saf_blog_thumb {
    background: var(--box-color);
    margin-bottom: 30px;
    padding-bottom: 21px;
}

.saf_blog_title,
.saf_blog_title:hover {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog_arrow_wrapper>div {
    height: 40px;
    width: 40px;
    line-height: 38px;
    text-align: center;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

.blog_arrow_wrapper>div:hover {
    background: var(--primary-color);
}

.blog_arrow_wrapper>div>svg {
    height: 15px;
    fill: var(--primary-color);
}

.blog_arrow_wrapper>div:hover svg {
    fill: var(--dark1-color);
}

.blog_arrow_wrapper {
    display: flex;
}

.blog_arrow_wrapper>div.blogPrev {
    margin-left: 10px;
}

.blog_arrow_wrapper>div:hover,
.blog_arrow_wrapper>div {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.saf_readMore {
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 5px;
    display: inline-block;
}

.saf_readMore svg {
    height: 10px;
    fill: var(--primary-color);
}


/********************************************************
16. Footer CSS Start
********************************************************/
.saf_footer_wrapper .container-fluid{
    max-width: 1600px;
}
.saf_footer_wrapper {
    background-color: var(--main-gray-version18);
    padding: 72px 0 49px;
    color: var(--main-paint-footer);
}

img.footer_logo {
    margin: 8px 0 24px;
}

.saf_address_wrap h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 500;
    margin-top: 17px;
    margin-bottom: 10px;
}

.saf_footer_heading {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: var(--white-color);
}

.saf_footer_title img {
    height: 14px;
}

.saf_footer_title {
    display: inline-block;
    width: 100%;
    margin-top: 2px;
    margin-bottom: 20px;
}

.saf_newsLetter_wrap {
    position: relative;
}

.saf_newsLetter_wrap input {
    background: var(--box-color);
    border: none;
    height: 45px;
    width: 100%;
    padding: 0 20px;
    font-size: 14px;
    color: var(--white-color);
}

.saf_newsLetter_wrap button {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 50px;
    color: var(--white-color);
    background: var(--primary-color);
    border: none;
}

.saf_newsLetter_wrap input::-webkit-input-placeholder {
    color: var(--main-txt-color);
}

.saf_newsLetter_wrap input::-moz-placeholder {
    color: var(--main-txt-color);
}

.saf_newsLetter_wrap input:-ms-input-placeholder {
    color: var(--main-txt-color);
}

.saf_newsLetter_wrap input:-moz-placeholder {
    color: var(--main-txt-color);
}

.saf_footer_address ul li {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.saf_footer_address ul li:last-child {
    margin-bottom: 0;
}

.saf_footer_address ul li span {
    color: var(--primary-color);
    width: 43%;
    font-weight: 500;
}

.saf_footer_info {
    width: 57%;
}

.saf_footer_info a {
    display: inline-block;
    width: 100%;
}

.saf_footer_menu ul li {
    position: relative;
    margin-bottom: 8px;
}

.saf_footer_menu ul li:last-child {
    margin-bottom: 0;
}


.saf_widgets a {
    color: var(--main-paint-footer);
}

.saf_widgets a:hover,
.saf_copyright_wrapper a {
    color: var(--primary-color);
}

.saf_copyright_wrapper {
    background: var(--main-black);
    padding: 10px 0 7px;
    color: var(--text-color);
}


/********************************************************
17. About Page Style
********************************************************/

.saf_pagetitle {
    float: left;
    width: 100%;
    background-color: #948982;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    color: #fff;
    padding: 200px 0px 100px;
    background-image: url(../images/index/slide2.jpg);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    margin-bottom: 80px;
}

.page_title h2 {
    float: left;
    width: 100%;
    text-align: center;
    color: #ffffff;
    float: left;
    margin: 0px;
    font-size: 36px;
    text-transform: capitalize;
}

.saf_img_overlay {
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    background-color: rgb(2 19 39 / 71%);
}

.saf_pagetitle ul.breadcrumb {
    margin: 0px;
    padding: 0px;
    background-color: transparent;
    display: flex;
    justify-content: center;
}

.saf_pagetitle ul.breadcrumb li {
    display: inline-block;
    list-style: none;
    padding-top: 5px;
}

.saf_pagetitle ul.breadcrumb li a {
    color: #ffffff;
    font-size: 18px;
    padding: 0px 10px;
    text-decoration: none;
    text-transform: capitalize;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.saf_pagetitle ul.breadcrumb li:last-child a {
    color: var(--primary-color);
    cursor: text;
}

.saf_about_page_wrapper {
    padding: 30px 0 100px;
}


/********************************************************
17. Services Page Style
********************************************************/
.saf_counter_wrapper  .saf_bg_video_wrap {
    position: absolute;
}

/********************************************************
17. Blog Page Style
********************************************************/

.saf_blog_page_heading {
    text-align: center;
}
.saf_blog_sidebar_wrapper {
    position: relative;
}
.saf_blog_page_wrapper .saf_heading {
    width: 48%;
    margin-bottom: 22px;
    margin: auto;
}

.saf_sidebar_search input[type="text"] {
    width: 100%;
    height: 45px;
    padding: 0 50px 0 15px;
    border: 1px solid var(--primary-color);
    position: relative;
}

.saf_sidebar_search a {
    position: absolute;
    right: 0px;
    top: 0px;
    background: var(--primary-color);
    padding: 9px 15px;
    color: #fff;
}

.saf_sidebar_headings h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white-color);
    padding: 30px 0 10px;
}

ul.saf_sidebar_category_list a {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    transition: all 0.4s;
}

ul.saf_sidebar_category_list a:hover {
    color: var(--primary-color);
}

ul.saf_sidebar_category_list li {
    border-bottom: 1px solid #eaeaea;
    padding: 8px 0;
}

.saf-recent-post {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.saf-recent-post-media img {
    width: 100px;
}

.saf-recent-post-info {
    padding-left: 15px;
}

a.saf-post-date {
    color: var(--primary-color);
}

.saf-recent-post-info a:hover {
    color: var(--primary-color);
}

.saf_sidebar_tags_box li {
    border: none;
    margin-bottom: 20px;
    display: inline-block;
    margin-right: 7px;
}

.saf_S_blog_title {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.3;
    padding: 10px 0;
}

a.ed_btn.ed_orange {
    color: #fff;
    background: var(--primary-color);
    padding: 7px 10px;
    border: 1px solid var(--primary-color);
    transition: all 0.4s;
}

a.ed_btn.ed_orange:hover {
    color: var(--primary-color);
    background: #fff;
    padding: 7px 10px;
    border: 1px solid var(--primary-color);
}

.saf_sidebar_tags_box {
    margin-top: 25px;
}

.saf_single_blog_img1_box1 {
    display: flex;
    justify-content: space-around;
    background: #f5f5f5;
    padding: 20px;
    align-items: center;
}

.saf_single_blog_img1 img {
    border-radius: 80px;
    border: 3px solid #ffffff;
}

.saf_single_blog_text1 {
    width: 670px;
}

.saf_blog_text p {
    color: #898d94;
    padding: 8px 0px;
}

.saf_single_blog_text1 h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    padding-left: 0px;
}

.saf_single_blog_text1 span {
    font-size: 16px;
    color: #808080c2;
    font-weight: 500;
}

.saf_img_text_container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.saf_img_text_container img {
    width: 370px;
    display: inline-block;
    margin: 6px 15px 6px 0;
}

.saf_img_text_container p {
    display: inline-block;
    width: calc(100% - 385px);
}

.saf_divider {
    margin: 22px 0;
    display: block;
}

.saf_author_message_box {
    background: var(--primary-color);
    border: none;
    border-radius: 6px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 74px 0 73px;
    color: var(--dark1-color);
}

.saf_comment_holder2 {
    margin-left: 80px;
}

.saf_section_heading {
    color: var(--white-color);
    font-size: 32px;
    margin-bottom: 35px;
    font-weight: 700;
}

.saf_author_image {
    width: 110px;
    height: 110px;
    overflow: hidden;
    margin-right: 30px;
}

.saf_author_image img {
    width: 110px;
    height: 110px;
    border: none;
    border-radius: 100%;
    object-fit: fill;
}

.saf_author_content {
    width: calc(100% - 140px);
}

.saf_author_content h5 {
    color: var(--dark1-color);
    font-weight: 700;
    font-size: 20px;
}

.saf_author_content h5 span {
    font-weight: 400;
    font-size: 16px;
}

.saf_comment_holder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
}

.saf_comment_user {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-right: 30px;
}

.saf_comment_user img {
    width: 100px;
    height: 100px;
    border: none;
    border-radius: 100%;
    object-fit: fill;
}

.saf_comment_detail {
    width: calc(100% - 130px);
}

h5.saf_user_name {
    color: var(--primary-color);
    font-size: 18px;
}

.saf_comment_detail p {
    padding: 0px 0px;
    font-size: 15px;
}

.saf_reply_btn {
    color: var(--primary-color);
    margin-left: 15px;
}

.saf_reply_btn {
    color: var(--primary-color);
    margin-left: 15px;
}

.saf_comment_form {
    margin-top: 70px;
}

.saf_comment_form_heading {
    padding-bottom: 40px;
}

.saf_field_holder {
    margin-bottom: 30px;
}

textarea.saf_form_field {
    height: 150px;
    resize: none;
    padding: 12px 20px;
}


.saf_field_holder {
    margin-bottom: 30px;
}

.saf_blockquote {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.saf_blockquote_img {
    width: 160px;
    margin-right: 10px;
    position: relative;
}

.saf_blockquote_img:before {
    content: "\f10e";
    right: 12px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    color: var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 32px;
    background: var(--dark1-color);
    border: 5px solid var(--primary-color);
    padding-left: 8px;
    border-radius: 100%;
}

.saf_blockquote_img img.saf_quote_user {
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 130px;
    height: 130px;
}

.saf_blockquote_quote {
    width: calc(100% - 170px);
    color: var(--white-color);
    position: relative;
    text-align: center;
}

.saf_blockquote_quote:before {
    content: "\f10e";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    right: 0;
    font-size: 84px;
    margin: auto;
    top: 50%;
    opacity: .1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.saf_blockquote_quote p,
.saf_quote_user {
    text-align: left;
}

.saf_quote_user {
    color: var(--white-color);
    font-weight: 700;
    font-size: 20px;
    width: 100%;
    display: inline-block;
}

.saf_quote_user>span {
    color: var(--main-txt-color);
    font-size: 16px;
    font-weight: 400;
}


/*================contact Page Style==============*/

.saf_contact_form {
    background: var(--box-color);
    border: 1px solid var(--main-border-color);
    padding: 50px;
    margin-top: 17px;
}

.saf_contact_form .saf_sub_heading {
    margin-bottom: 30px;
    font-size: 26px;
    color: var(--white-color);
}

.saf_contact_form .saf_field_holder {
    margin-bottom: 33px;
}
.saf_form_field::-webkit-input-placeholder {
    color:var(--white-color);
}

.saf_form_field::-moz-placeholder {
    color:var(--white-color);
}

.saf_form_field:-ms-input-placeholder {
    color:var(--white-color);
}
.saf_form_field {
    width: 100%;
    border: 1px solid var(--main-border-color);
    padding: 0 20px;
    height: 50px;
    display: flex;
    background: transparent;
}

.saf_field_holder textarea#message {
    height: 150px;
}

textarea.saf_form_field {
    height: 150px;
    resize: none;
    padding: 12px 20px;
}

.saf_info_bg {
    margin-bottom: 55px;
    margin-top: 55px;
}


.saf_contact_info .saf_sub_heading {
    color: var(--white-color);
    margin-bottom: 28px;
    font-size: 26px;
}

.saf_conatact_section {
    margin-bottom: 35px;
    padding: 35px;
    position: relative;
    background: var(--primary-color);
}

.saf_conatact_section:before {
    content: "";
    border-bottom: 1px solid var(--dark1-color);
    position: absolute;
    bottom: 0px;
    left: -50px;
    right: -50px;
    opacity: 0.2;
}

.saf_contact_info_inner {
    padding: 0 0 0 30px;
    font-size: 16px;
    position: relative;
    line-height: 25px;
    color: #fff;
}

.saf_contact_info_inner span {
    position: absolute;
    left: 0;
    top: 0;
}

.saf_contact_info_inner svg {
    width: 16px;
    fill: #fff;
}

.saf_contact_wrapper .saf_heading {
    text-align: center;
}

.saf_conatact_section3:before {
    display: none;
}

.saf_map_wrapper {
    margin-bottom: -10px;
}

.saf_contact_wrapper {
    margin-bottom: 70px;
}


/********************************************************
17. Team Page Style
********************************************************/

.saf_team_wrapper.saf_team_page_wrapper .saf_team_section {
    margin-bottom: 30px;
}

.saf_team_wrapper {
    padding: 69px 0 44px;
}

.team_slider.swiper-container {
    padding-bottom: 36px;
}

.saf_team_img {
    background: var(--box-color);
    position: relative;
}

.saf_team_img img {
    width: 100%;
    border: none;
    border-radius: 8px 8px 0px 0px;
}

.saf_team_identity {
    background: var(--primary-color);
    padding: 20px 12px;
}

.saf_team_identity>a {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    display: inline-block;
}

.saf_team_section:hover .saf_team_identity a {
    color: var(--white-color);
}

.saf_team_inner {
    margin: auto;
    text-align: center;
    color: var(--dark1-color);
}

.saf_team_hover {
    background: rgb(2 19 39 / 78%);
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    border-radius: 8px 8px 0 0;
    -webkit-transform: translateY(-500px);
    -moz-transform: translateY(-500px);
    -ms-transform: translateY(-500px);
    -o-transform: translateY(-500px);
    transform: translateY(-500px);
}

.saf_team_section:hover .saf_team_hover {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.saf_team_section {
    background: var(--dark1-color);
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.06);
    margin: 0;
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

.saf_team_section:hover .saf_team_identity h4,
.saf_team_section:hover,
.saf_team_hover,
.saf_team_section:hover .saf_team_hover {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.saf_team_social,
.saf_team_info {
    width: 100%;
    display: inline-block;
}

.saf_team_info h6 {
    font-size: 20px;
    color: var(--white-color);
}

.saf_team_info a {
    color: var(--white-color);
}

.saf_team_info a:hover {
    color: var(--primary-color);
}

.saf_team_info:first-child {
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
}

.saf_team_info:first-child:before {
    background: var(--white-color);
    content: "";
    position: absolute;
    height: 1px;
    width: 60%;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}

.saf_team_social {
    margin-top: 20px;
}

.saf_team_social li {
    display: inline-block;
    margin: 0 6px;
    line-height: 1;
    padding-top: 8px;
}

.saf_team_social li a {
    color: var(--dark1-color);
}

.saf_team_social li a:hover {
    color: var(--primary-color);
}

.saf_team_social ul {
    width: auto;
    background: rgba(249, 249, 249, 0.1);
    display: inline-block;
    padding: 6px 20px;
    border: none;
    border-radius: 30px;
}

.swiper-button-prev1,
.swiper-button-next1 {
    width: 40px;
    color: var(--main-color);
    cursor: pointer;
    position: absolute;
    height: 36px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.swiper-button-prev1 {
    left: -90px;
}

.swiper-button-next1 {
    right: -100px;
}

.saf_team_button {
    position: absolute;
    top: 42%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.swiper-button-next1.swiper-button-disabled,
.swiper-button-prev1.swiper-button-disabled {
    color: var(--main-txt-color);
}

.saf_team_wrapper.saf_team_page_wrapper {
    padding: 80px 0 50px;
}

.saf_team_wrapper.saf_team_page_wrapper .saf_team_section {
    margin-bottom: 30px;
}

.saf_team_wrapper .saf_heading_wrapper {
    margin-bottom: 41px;
}

.saf_team_section {
    margin-bottom: 30px;
}


/********************************************************
17. Responsive CSS Start
********************************************************/

@media (min-width: 1400px) {

}

@media (min-width: 1200px) {

    .saf_heading {
        width: 48%;
    }
    .saf_testimonials_section {
        padding: 0 125px;
    }
    .thumbNext {
        right: -80px;
    }
    .thumbPrev {
        left: -80px;
    }
}


@media (min-width: 992px) {
    ul.sub_menu {
        background: var(--white-color);
        top: 100%;
    }
    .main_menu_wrapper ul>li>a {
        color: var(--white-color);
    }
}
@media (min-width: 480px) {

    .header_reslogo{
        display: none;
    }

}
@media (max-width: 1799px) {
    .saf_banner_text h1 {
        font-size: 80px;
    }
    .saf_banner_section .container-fluid {
        padding: 0 4%;
    }
}
@media (max-width: 1599px) {
    .saf_header_wrapper {
        padding: 10px 20px;
    }
    .saf_header_info_wrapper {
        padding: 0px 20px;
    }
    .saf_banner_text h1 {
        font-size: 70px;
    }
    .saf_banner_img > img {
        max-width: 500px;
    }
}

@media (max-width: 1399px) {
    .saf_title {
        font-size: 20px;
    }
    .saf_banner_text h1 {
        font-size: 60px;
    }
    .saf_banner_img > img {
        max-width: 420px;
    }
    .main_menu_wrapper ul>li>a {

    }
    .main_menu_parent {
        padding-right: 0;
    }
    .saf_header_info_wrapper {
        padding-right: 15px;
    }
    .saf_logo {
        padding-left: 15px;
    }
}

@media (max-width: 1199.98px) {
    .saf_btn, .saf_btn:hover {
        padding: 10px 20px;
        min-width: inherit;
        line-height: inherit;
    }
    .saf_banner_img > img {
        max-width: 360px;
    }

    .saf_banner_text h1 {
        font-size: 50px;
    }
    .main_menu_wrapper ul>li>a {
        padding: 10px 10px;
    }
    .header_btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    .saf_search_wrap > ul>li:first-child {
        margin-right: 0;
    }
    .saf_search_wrap {
        margin-left: 30px;
    }

    .swiper-container.gallery-top {
        width: 80%;
        margin: auto;
    }
    .saf_banner_button {
        display: none;
    }
    .saf_about_img {
        margin-right: 0px;
        text-align: center;
    }
    .saf_whyUs_wrapper {
        padding: 72px 0 80px
    }
    .saf_whyUs_info p {
        font-size: 14px;
    }
    .saf_whyUs_wrapper .container {
        max-width: 100%;
    }
    a.saf_feature_heading {
        font-size: 32px;
    }
    .saf_footer_wrapper {
        padding: 73px 0 41px;
    }
    .saf_info_bg {
        margin-top: 51px;
    }
    .saf_about_detail h1 {
        font-size: 28px;
    }
    .saf_about_detail .saf_about_num {
        font-size: 28px;
    }

    .saf_about_img2 {
        max-width: 260px;
        left: 20px;
    }
    .saf_heading h4 {
        font-size: 26px;
    }
    .saf_price_box h1 {
        font-size: 42px;
        line-height: 1.4;
    }

}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .saf_blog_info li {
        margin-left: 5px;
    }
}

@media (max-width: 991.98px) {
    .main_menu_wrapper li.has_submenu:before,
    .main_menu_wrapper li.has_submenu:after {
        background: var(--primary-color);
    }
    .saf_about_detail .saf_about_num,
    .saf_about_detail h1,
    .saf_heading h4 {
        font-size: 30px;
    }
    .saf_header_info_wrapper ul li:first-child {
        margin-right: 20px;
        padding-right: 20px;
    }
    .menu_btn span {
        background: var(--white-color);
    }
    header {
        position: unset;
    }

    .saf_header_info_wrapper ul li:first-child {
        margin-right: 15px;
        padding-right: 15px;
    }
    .saf_header_info_wrapper ul li {
        font-size: 12px;
    }
    .saf_header_icon {
        width: 20px;
        height: 20px;
        line-height: 18px;
        margin-right: 6px;
    }
    .saf_header_icon svg {
        width: 10px;
    }
    .saf_header_info_wrapper {
        padding-right: 0;
    }
    .saf_logo {
        padding-left: 0;
    }
    .saf_header_info_wrapper ul li:first-child:before {
        height: 18px;
    }
    .saf_banner_section {
        padding:150px 0 50px;
    }
    .saf_banner_text h1 {
        font-size: 40px;
    }
    .saf_about_wrapper .row {
        /* text-align: center; */
    }
    .saf_job_btn_wrap {
        margin-top: 30px;
    }
    .saf_price_box h1 {
        font-size: 32px;
        line-height: 50px;
    }
    .saf_trial_wrap,
    .saf_blog_title,
    .saf_trial_wrap,
    .saf_sub_heading,
    .saf_title {
        font-size: 18px;
    }
    .saf_price_offer_wrap {
        right: -40px;
        top: 20px;
        font-size: 12px;
        padding: 8px 40px 8px 46px;
    }
    .saf_whyUs_img {
        text-align: center;
    }
    .saf_whyUs_ex {
        font-size: 35px;
    }
    .saf_whyUs_ex > span:last-child {
        font-size: 16px;
    }
    .saf_about_detail {
        padding-top: 50px;
    }
    .saf_counter_wrapper {
        padding: 80px 0 45px;
    }
    .saf_services_wrapper {
        padding: 74px 0 50px;
    }
    .saf_whyUs_wrapper {
        padding: 74px 0 80px;
    }
    .left_column {
        display: none;
    }
    .saf_whyUs_img2 {
        margin: 10px 0 20px;
    }
    .saf_feature_section {
        padding: 40px;
    }

    .saf_job_wrapper {
        padding: 74px 0 80px;
    }
    .saf_testimonial_wrapper {
        padding: 74px 0 80px;
    }
    .saf_pricing_wrapper {
        padding: 74px 0 44px;
    }
    .saf_blog_wrapper {
        padding: 74px 0 49px;
    }
    .saf_footer_wrapper {
        padding: 73px 0 44px;
    }
    .saf_copyright_wrapper {
        padding: 10px 0 9px;
    }
    .main_menu_wrapper ul>li>a {
        padding: 15px 20px 0px;
    }
    .main_menu_wrapper .sub_menu > li > a {
        color: #ffffff;
    }
    .saf_pagetitle {
        padding: 100px 0px 100px;
    }
    .saf_sidebar_search a {
        padding: 12px 15px;
    }
    .cs_field_holder {
        margin-bottom: 33px;
    }
    .saf_contact_form {
        padding: 30px;
    }

}

@media (max-width: 767.98px) {
    .saf_banner_img.wow.fadeInUp {
        display: none;
    }
    .saf_about_detail {
        padding-bottom: 24px;
    }
    .saf_about_detail .saf_about_num,
    .saf_about_detail h1,
    .saf_heading h4 {
        font-size: 26px;
    }
    .saf_header_info_wrapper ul li:first-child {
        margin-right: 0;
        padding-right: 0;
    }
    .saf_header_info_wrapper ul li:first-child:before {
        content: unset;
    }
    .saf_header_info_wrapper ul li {
        padding: 8px 0;
    }
    .saf_header_info_wrapper .display_flex.align-items-center {
        justify-content: left;
    }
    .saf_job_img img {
        width: auto;
    }
    .saf_job_img {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    .saf_job_info {
        width: 100%;
        padding: 0;
    }
    .saf_client_quote {
        flex-wrap: wrap;
    }
    .saf_client_quote p {
        margin-left: 0;
        width: 100%;
    }
    .saf_testimonials_section:before {
        left: 20px;
        right: 20px;
    }
    .blog_text {
        padding: 30px 20px 0;
    }
    .saf_callToAction_text h1 {
        font-size: 40px;
    }
    .saf_callToAction_text .video_btn {
        height: 80px;
        width: 80px;
        line-height: 80px;
    }
    .saf_job_info ul li {
        width: 100%;
        margin: 6px 0 0 0;
    }
    .gallery-thumbs {
        width: 80px;
    }
    .saf_testimonial_wrapper .gallery-thumbs .swiper-slide-active .swiper_client_thumb img,
    .saf_testimonial_wrapper .gallery-thumbs .swiper-slide-active {
        width: auto !important;
        height: 70px;
    }
    .saf_banner_section {
        padding: 100px 0 50px;
        text-align: center;
    }

    .saf_blog_wrapper {
        padding: 74px 0 50px;
    }
    .fdcr-md {
        flex-direction: column-reverse;
    }
    .saf_feature_details_sec {
        margin-top: 20px;
    }
    .saf_footer_wrapper {
        padding: 72px 0 44px;
    }
    .saf_info_bg {
        margin-left: 0;
        margin-right: 0;
    }
    .saf_contact_form {
        margin-right: 0;
    }
    .saf_blockquote {
        display: block;
    }
    .saf_blockquote_quote {
        width: 100%;
        padding: 15px 0px;
    }
    .saf_img_text_container {
        display: block;
    }
    .saf_img_text_container p {
        width: 100%;
        padding-top: 15px;
    }
    .saf_info_bg {
        width: 100%;
    }
    .saf_header_info_wrapper {
        display: none;
    }
}


@media (max-width: 575.98px) {
    .saf_banner_text h1 {
        font-size: 30px;
    }
    .saf_banner_section {
        padding: 90px 0 50px;
    }
    .saf_header_wrapper{
        padding: 8px 8px;
    }
    .saf_header_info_wrapper {
        padding: 0px 8px;
    }
    .main_menu_parent:before {
        content: unset;
    }
    .main_menu_parent {
        border-radius: 0;
    }
    .header_btn {
        padding: 8px 10px;
        font-size: 13px;
    }
    .saf_search_wrap {
        width: 100%;
    }
    .saf_search_wrap .display_flex {
        justify-content: flex-end;
    }
    .menu_btn {
        padding: 16px 0 0;
    }
    .saf_comment_holder {
        display: block;
    }
    .saf_comment_detail {
        width: 100%;
        padding: 15px 0;
    }
    .saf_comment_holder2 {
        margin-left: 0;
    }
    .saf_author_message_box {
        display: block;
    }
    .saf_author_content {
        width: 100%;
        padding-top: 15px;
    }
    .saf_about_img2 {
        max-width: 180px;
    }
    .saf_vector.aboutSec img {
        max-width: 70px;
    }
    .aboutSec.saf_vector li:last-child {
        bottom: 1%;
        right: 1%;
    }
    .saf_about_contant span, .saf_about_detail .saf_about_num {
        font-size: 20px;
    }
    .saf_feature_heading {
        font-size: 24px;
    }

}
@media (max-width: 479.98px) {
.header_mainlogo{
    display: none;
}
.header_reslogo{
    display: block;
}
}
@media (max-width: 420.98px) {
    .saf_banner_section {
        padding: 90px 0 30px;
    }
    .saf_about_img {
        padding: 0 0 150px 50px;
    }
}


@-webkit-keyframes scroll-x {
    from {
      transform: translateX(var(--scroll-start));
    }
    to {
      transform: translateX(var(--scroll-end));
    }
  }

  @keyframes scroll-x {
    from {
      transform: translateX(var(--scroll-start));
    }
    to {
      transform: translateX(var(--scroll-end));
    }
  }