@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
:root{
    --sc-primary: #f39916;
    --sc-secondary: #313231;
    --sc-text: #828282;
}
body{
    font-family: "Space Grotesk",sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--sc-text);
}

::-webkit-scrollbar {  
    width: 12px;  
}  
::-webkit-scrollbar-track {  
    background-color: #eaeaea;  
    border-right: 1px solid #cecece;  
}  
::-webkit-scrollbar-thumb {  
    background-color: #cecece;  
}  
::-webkit-scrollbar-thumb:hover {  
    background-color: #aaa;  
}  
::-webkit-scrollbar-track {
    border-radius: 0;
    box-shadow: none;
    border: 0; 
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    box-shadow: none;
    border: 0; 
}

/*Selection*/
::selection {
    color: #ffffff;
    background: var(--sc-primary);
}

h1, h2, h3, h4, h5, h6{
    color: var(--sc-secondary);
    font-weight: 500;
    line-height: 1.1;
}

a {
    transition: all .35s;
    color: inherit;
}
a:hover,
a:focus{
    color: var(--sc-primary);
    text-decoration: none;
}

.btn{
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 15px 40px;
    border: 0;
    border-radius: 2px;
    box-shadow: none !important;
    transition: all .2s ease;
}
.btn-default{
    background-color: var(--sc-primary);
    color: #fff !important;
}
.btn-default:hover,
.btn-default:focus{
    background-color: var(--sc-secondary);
}
.btn-lg{
    font-size: 16px;
    padding: 16px 40px;
}
.btn-sm{
    font-size: 12px;
    padding: 5px 15px;
}

.navbar{
    padding: 0;
}
.navbar-brand img{
    height: 40px;
}
.navbar-toggler{
    font-size: 30px;
    padding: 0;
}
.navbar-collapse{
    flex-grow: 0;
}
.navbar-nav>.nav-item{
    padding: 32px 20px;
}
.navbar-nav .nav-link{
    color: var(--sc-secondary);
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    padding: 5px 0 !important;
    position: relative;
}
/*.navbar-nav .nav-link::after{
    
}*/
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .active>.nav-link,
.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .active>.nav-link{
    color: var(--sc-primary);
}
.navbar-nav .nav-link::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--sc-primary);
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: center left;
    transform-origin: center left;
    -webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.navbar-nav .nav-link:hover::before,
.navbar-nav .active>.nav-link::before{
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.navbar-nav .nav-link>.fa-angle-down{
    margin-left: 5px;
    vertical-align: -1px;
}

.navbar .dropdown-menu{
    border-radius: 0;
    padding: 20px 30px;
    min-width: 275px;
}
.navbar .dropdown-menu .dropdown-item{
    padding: 10px 0;
    background-color: transparent !important;
}
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus{
    color: var(--sc-primary);
}
@media (min-width: 992px){
    .navbar .dropdown-menu {
        display: block;
        margin: 0;
        visibility: hidden;
        opacity: 0;
        -webkit-transform: rotateX(90deg);
        -moz-transform: rotateX(90deg);
        -ms-transform: rotateX(90deg);
        transform: rotateX(90deg);
        -webkit-transform-origin: top;
        -moz-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
        -o-transition: 0.3s;
        transition: 0.3s;
        -ms-transition: 0.3s;
        -moz-transition: 0.3s;
        -webkit-transition: 0.3s;
    }
    .navbar .dropdown:hover .dropdown-menu{
        visibility: visible;
        opacity: 1;
        -webkit-transform: rotateX(0);
        -moz-transform: rotateX(0);
        -ms-transform: rotateX(0);
        transform: rotateX(0);
    }
}

/*.ms-slide::before{
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,.2);
    z-index: 2;
}*/
.slide-title{
    font-size: 65px;
    /*text-transform: uppercase;*/
    font-weight: 500;
    line-height: 80px;
    /*text-align: center;*/
    color: #fff;
    /*max-width: 50%;*/
    z-index: 9;
}
.slide-desc{
    font-size: 20px;
    line-height: 32px;
    color: #fff;
    /*max-width: 50%;*/
    z-index: 9;
}
 
#masterslider .ms-nav-prev {
    left: 0;
}
#masterslider .ms-nav-next {
    left: 33px;
}

.section{
    padding: 100px 0;
}
.section-title{
    font-family: "Space Grotesk",sans-serif;
    font-size: 40px;
    margin-bottom: 30px;
}
.section-title span{
    color: var(--sc-primary);
}

#about{
    position: relative;
}
#about::before{
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background-image: url(../images/about-bg.jpg);
    background-size: cover;
    background-position: 50% 0%;
    background-repeat: no-repeat;
    opacity: .2;
}
.video-btn{
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    margin-left: 25px;
}
.video-btn__icon{
    width: 53px;
    height: 53px;
    line-height: 53px;
    font-size: 17px;
    text-align: center;
    background-color: var(--sc-primary);
    color: #fff;
    border-radius: 100%;
    position: relative;
    margin-right: 10px;
    padding-left: 3px;
}
.video-btn:hover .video-btn__icon{
    background-color: var(--sc-secondary);
}
@-webkit-keyframes pulseAnim{
    from{
        transform:scale(1);
        opacity:1
    }
    to{
        transform:scale(1.4);
        opacity:0
    }
}
@keyframes pulseAnim{
    from{
        transform:scale(1);
        opacity:1
    }
    to{
        transform:scale(1.4);
        opacity:0
    }
}
.pulseAnim:after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background-color:inherit;
    border-radius:inherit;
    z-index:-1
}
.pulseAnim:after{
    -webkit-animation-name:pulseAnim;
    animation-name:pulseAnim
}
.pulseAnim:not(i):after {
    z-index: 0;
}
.pulseAnim:not(i) * {
    position: relative;
    z-index: 1;
}
.pulseAnim.pulseAnimAnimated:after{
    -webkit-animation-duration:1.5s;
    animation-duration:1.5s;
    -webkit-animation-iteration-count:infinite;
    animation-iteration-count:infinite;
    -webkit-animation-delay:1s;
    animation-delay:1s
}
.video-btn__text>h4{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}

.about-stats{
    position: relative;
    text-align: center;
}
.about-stats::before{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(112,112,112,.5);
}
.about-stats::after{
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    width: 1px;
    height: 100%;
    background-color: rgba(112,112,112,.5);
}
.stats-logo{
    width: 70px;
    height: 70px;
    line-height: 70px;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    padding: 15px;
    position: absolute;
    top: 50%;
    right: 50%;
    margin: -35px -35px 0 0;
    z-index: 99;
}
.stats-logo>img{
    max-width: 100%;
}
.stats-item{
    padding: 50px 15px;
}
.stats-item__count{
    font-size: 50px;
    font-weight: 400;
    color: var(--sc-secondary);
    line-height: 1;
    margin-bottom: 5px;
}
.stats-item__count>span{
    font-size: 30px;
}
.stats-item__desc{
    font-size: 13px;
}

.single-client{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    overflow: hidden;
    border: 1px solid #e9e9e9;
    padding: 15px;
    margin: 1px;
}
.single-client img{
    display: inline-block !important;
    width: auto !important;
    max-width: 100%;
    max-height: 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#products{
    background-color: #F8F8F7;
}
.product{
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    -webkit-box-shadow: 0 0 10.28px 1.72px rgba(0,0,0,.03);
    box-shadow: 0 0 10.28px 1.72px rgba(0,0,0,.03);
}
.product-img img{
    max-width: 100%;
    height: auto;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: perspective(1000px) translate3d(0,0,0);
    transform: perspective(1000px) translate3d(0,0,0);
}
.product:hover .product-img img{
    -webkit-transform: perspective(1000px) translate3d(0,0,21px);
    transform: perspective(1000px) translate3d(0,0,21px);
}
.product-content{
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 10px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease-out;
}
.product-content::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(0,0,0,.5);
}
.product-title{
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    transition: .66s cubic-bezier(.33,.02,0,.93) .1s;
}
.product-desc{
    font-size: 16px;
    line-height: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: .66s cubic-bezier(.33,.02,0,.93) .14s;
}
.product-link{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
}
.product:hover .product-content{
    opacity: 1;
}
.product:hover .product-title,
.product:hover .product-desc{
    opacity: 1;
    transform: translateY(0);
}

footer{
    background-color: var(--sc-secondary);
    position: relative;
    color: #fff;
}
.footer-bg{
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    position: absolute;
    inset: 0;
}
.footer-bg::before{
    content: '';
    background-color: var(--sc-secondary);
    opacity: .85;
    position: absolute;
    inset: 0;
}
.footer-top{
    padding: 100px 0 80px;
}
.footer-widget__title{
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.footer-widget__links ul{
    list-style: none;
    padding: 0;
}
.footer-widget__links ul>li{
    margin-bottom: 10px;
}
.footer-widget__links ul>li>a{
    color: #fff;
    position: relative;
}
.footer-widget__links ul>li>a:hover{
    opacity: 1;
}
.footer-widget__links ul>li>a::before{
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--sc-primary);
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: center left;
    transform-origin: center left;
    -webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.footer-widget__links ul>li>a:hover::before{
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.list-social>li>a{
    color: #fff;
    font-size: 20px;
}
.list-social>li>a:hover{
    color: var(--sc-primary);
}
.list-contacts>li{
    margin-bottom: 15px;
}
.list-contacts>li>i{
    color: var(--sc-primary);
    margin-right: 15px;
    margin-top: 2px;
    font-size: 18px;
}
.footer-bottom{
    padding: 0 0 30px;
    /*border-top: 1px solid rgba(255,255,255,.3);*/
}

#backToTop {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 30px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: var(--sc-primary);
    color: #fff;
    opacity: 0.8;
    display: none;
}
#backToTop:hover{
    opacity: 1;
}

/*Preloader*/
#loading{
	background-color: #ffffff;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 999;
	margin-top: 0px;
	top: 0px;
}
#loading-center{
	width: 100%;
	height: 100%;
	position: relative;
}
#loading-center-absolute {
    display: flex;
    justify-content: center;
	position: absolute;
	left: 50%;
	top: 50%;
	height: 150px;
	width: 150px;
	margin-top: -75px;
	margin-left: -75px;
}
.object{
	width: 20px;
	height: 20px;
	background-color: var(--sc-primary);
	/*float: left;*/
	margin: 0 10px;
	margin-top: 65px;
	-moz-border-radius: 50% 50% 50% 50%;
	-webkit-border-radius: 50% 50% 50% 50%;
	border-radius: 50% 50% 50% 50%;
}

#object_one {	
	-webkit-animation: object_one 1.5s infinite;
	animation: object_one 1.5s infinite;
	}
#object_two {
	-webkit-animation: object_two 1.5s infinite;
	animation: object_two 1.5s infinite;
	-webkit-animation-delay: 0.25s; 
    animation-delay: 0.25s;
	}
#object_three {
    -webkit-animation: object_three 1.5s infinite;
	animation: object_three 1.5s infinite;
	-webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
	
	}

@-webkit-keyframes object_one {
75% { -webkit-transform: scale(0); }
}

@keyframes object_one {

  75% { 
    transform: scale(0);
    -webkit-transform: scale(0);
  }

}


@-webkit-keyframes object_two {
 

  75% { -webkit-transform: scale(0); }


}

@keyframes object_two {
  75% { 
    transform: scale(0);
    -webkit-transform:  scale(0);
  }

}

@-webkit-keyframes object_three {

  75% { -webkit-transform: scale(0); }

}

@keyframes object_three {

  75% { 
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  
}

.section.bg{
    background-color: #F8F8F7;
}
.page-header{
    background-color: #0A0A0A;
    background-image: url(../images/banner-3.jpg);
    background-size: cover;
    /*border-bottom: 1px solid #18191a;*/
    padding: 100px 0;
    position: relative;
}
.page-header::before{
    content: '';
    position: absolute;
    width: 50%;
    left: 0;
    top: 0;
    bottom: 0;
    background: #313231;
    background: -webkit-linear-gradient(0deg,#313231 0,rgba(51,51,51,0) 100%);
    background: linear-gradient(90deg,#313231 0,rgba(51,51,51,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#313231",endColorstr="#313231",GradientType=1);
    opacity: .7;
}
.page-header h2{
    color: #fff;
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
}
.breadcrumb{
    margin: 0;
    padding: 0;
    background: transparent;
    position: relative;
}
.breadcrumb-item{
    vertical-align: middle;
}
.breadcrumb a,
.breadcrumb-item{
    font-size: 14px;
    color: #fff;
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: 10px;
}
.breadcrumb-item+.breadcrumb-item::before{
    padding-right: 8px;
    display: inline-block;
    vertical-align: middle;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    content: "\f105";
    font-size: 18px;
    color: #fff;
    margin-top: -3px;
}
.breadcrumb-item.active{
    color: #fff;
}

.page-content strong{
    color: var(--sc-secondary);
}

.clients-grid .single-client{
    height: 140px;
    margin-bottom: 30px;
}

.branch-contacts h4{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
.branch-contacts ul li{
    font-size: 17px;
    margin-bottom: 10px;
}

.wpcf7-form p{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}
.wpcf7-form-control-wrap{
    display: block;
    margin-bottom: 1rem;
    padding-right: 5px;
    padding-left: 5px
}
@media (min-width: 576px){
    .wpcf7-form-control-wrap[data-name="your-name"],
    .wpcf7-form-control-wrap[data-name="your-email"],
    .wpcf7-form-control-wrap[data-name="your-phone"],
    .wpcf7-form-control-wrap[data-name="your-subject"]{
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .wpcf7-form-control-wrap[data-name="your-message"]{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.form-control,
.wpcf7-form-control:not(.wpcf7-submit){
    height: 55px;
    border: 1px solid #eee;
    border-radius: 3px;
    font-size: 15px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}
.form-control:focus,
.wpcf7-form-control:not(.wpcf7-submit):focus,
.wpcf7-form-control:not(.wpcf7-submit):focus-visible{
    border-color: var(--sc-primary) !important;
    box-shadow: none !important;
    outline: 0 !important;
}
.wpcf7-textarea{
    height: 180px !important;
}
.wpcf7-submit{
    margin-left:5px;
}

.news-item{
    margin-bottom: 40px;
}
.news-item__img img{
    max-width: 100%;
    height: auto;
}
.news-item__content{
    margin-top: 15px;
}
.news-item__meta{
    font-size: 13px;
}
.news-item__title{
    margin: 5px 0 0;
    font-size: 20px;
    line-height: 1.3;
}

.page-sidebar{
    background-color: rgba(113,117,97,.05);
    padding: 40px 30px;
}
.page-sidebar__title{
    margin-bottom: 15px;
    font-weight: 600;
}
.page-sidebar__nav li{
    position: relative;
    transition: 0.4s;
}
.page-sidebar__nav li a{
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    transition: 0.4s;
}
.page-sidebar__nav li:last-child a{
    border-bottom: 0;
    padding-bottom: 0;
}
.page-sidebar__nav li a:hover{
    color: var(--sc-primary);
}
.page-sidebar__nav .active a{
    font-weight: 600;
    color: var(--sc-primary);
}

.nav-tabs {
    border: 0;
}
.nav-tabs .nav-link{
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    min-width: 200px;
    padding: 15px 30px;
    background: #fff;
    border-bottom: none;
    border: 0;
    border-top: 2px solid transparent;
    margin-right: 5px;
    color: var(--sc-secondary);
    transition: all .2s;
}
.nav-tabs .nav-link.active, 
.nav-tabs .nav-link:hover, 
.nav-tabs .nav-link:focus {
    background: transparent;
    border-top-color: var(--sc-primary);
    color: var(--sc-primary);
}
.tab-content {
    border-radius: 0 0 5px 5px;
    border-top: 0;
    padding: 0;
    margin-top: 30px;
}

/*gridder*/
.gridder{
    margin: 0 -15px;
    text-align: center;
}
.gridder-list {
    width: 100%;
    padding: 0 15px;
    position: relative;
    text-align: left;
}
@media (min-width: 576px){
    .gridder-list {
        width: 33.333333%;
    }
}
@media (min-width: 992px){
    .gridder-list {
        width: 25%;
    }
}
.single-member>img{
    width: 100%;
    filter: url('../js/filters.svg#grayscale'); /* Firefox 3.5+ */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(1); /* Webkit Nightlies, Google Chrome Canary and Microsoft Edge*/
    cursor: pointer;
}
.single-member>h5{
    font-size: 24px;
    margin: 25px 0 15px;
}
.single-member>p{
    font-size: 14px;
    height: 42px;
    overflow: hidden;
}
.gridder-list.selectedItem .single-member>img,
.single-member:hover>img{
     filter: none; /* Applies to FF + IE */
    -webkit-filter: grayscale(0);
}
.gridder-list.selectedItem .single-member>h5{
    color: var(--sc-primary);
}
.gridder-list.selectedItem::after {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: #f7f7f7;
    border-width: 15px;
    left: 50%;
    margin: -30px 0 0 -15px;
}

.gridder-list:nth-child(n) {
    margin-right: 0;
    margin-bottom: 30px;
}
.gridder-show{
    width: calc(100% - 30px);
    background: #f7f7f7;
    margin: -30px 15px 30px;
    text-align: left;
}
.gridder-padding{
    padding: 80px;
}
.gridder-navigation .gridder-close{
    position: absolute;
    width: 30px;
    height: 30px;
    top: 30px;
    right: 30px;
    cursor: pointer;
    font-size: 0;
    z-index: 999;
}
.gridder-navigation .gridder-close::before, 
.gridder-navigation .gridder-close::after {
    content: '';
    position: absolute;
    width: 100%;
    top: 50%;
    height: 1px;
    background: #888;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.gridder-navigation .gridder-close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.gridder-navigation .gridder-close:hover::before, 
.gridder-navigation .gridder-close:hover::after {
    background: #333;
}

.gridder-navigation .gridder-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    color: #888;
}
.gridder-navigation .gridder-nav:hover{
    color: #333;
}
.gridder-navigation .gridder-nav.prev{
    left: 30px;
}
.gridder-navigation .gridder-nav.next{
    right: 30px;
}
.gridder-navigation .gridder-nav::before{
    font-family: "Font Awesome 5 Pro"; 
    font-weight: 300; 
    font-size: 45px;
}
.gridder-navigation .gridder-nav.prev::before{
    content: "\f104";
}
.gridder-navigation .gridder-nav.next::before{
    content: "\f105";
}
.gridder-navigation .gridder-nav.disabled{
    display: none;
}

.category-item{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.category-item__img img{
    max-width: 100%;
    height: auto;
}