body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}
a, button {
    color: #ed5826;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
a:hover {
    text-decoration: none;
    color: #ed5826;
} 
p {
    line-height: 1.8;
    color: #7c818c;
    font-size: 13px;
    font-weight: 500;
}
.form-control:focus {
    outline: none;
    box-shadow: none;
}

.navSection .navbar-brand img {
    height: 50px;
    width: auto;
}
.navSection .navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #040707;
    position: relative;
}
.navSection .navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 3px;
    height: 15px;
    background-color: #ed5826;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.navSection .navbar-nav .nav-link:hover,
.navSection .navbar-nav .nav-link.active {
    color: #ed5826;
}
.navSection .navbar-nav .nav-link.active:after,
.navSection .navbar-nav .nav-link:hover:after {
    opacity: 1;
}
header .customToggler:focus {
    outline: none;
}
header .customToggler .navbar-toggler-icon {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 2px;
    background: #c22026;
}
header .customToggler .navbar-toggler-icon.active {
    background: none;
}
header .customToggler .navbar-toggler-icon:before,
header .customToggler .navbar-toggler-icon:after {
    content: '';
    width: 32px;
    height: 2px;
    background: #c22026;
    position: absolute;
    left: 0;
    transition: all 0.15s ease-out;
}
header .customToggler .navbar-toggler-icon.active:before {
    top: 0;
    transform: rotate(45deg);
    background: #c22026;
}
header .customToggler .navbar-toggler-icon.active:after {
    top: 0;
    transform: rotate(135deg);
    background: #c22026;
}
header .customToggler .navbar-toggler-icon:before {
    top: -7px;
}
header .customToggler .navbar-toggler-icon:after {
    bottom: -7px;
}

.bannerSlider {
    position: relative;
}
.bannerSlider .bannerItem {
    position: relative;
}
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.3, 1.3);
  }
}
@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.3, 1.3);
  }
}
.bannerSlider .owl-item.active .bannerItem > img {
    -webkit-animation: zoom 30s;
    animation: zoom 30s;
}
.bannerSlider .bannerContent {
    width: calc(50% - 60px);
    z-index: 4;
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translate(0px, -50%);
}
.bannerSlider .bannerContent .coverText h1 {
    display: none;
    color: #fff;
    font-weight: 700;
    margin: 0px;  
    font-size: 32px;
}
.bannerSlider .bannerContent .coverText h1 span {
    position: relative;
}

.bannerSlider .bannerContent .coverText h1 span i {
    font-size: 24px;
}
.bannerSlider .bannerContent .coverText h1 span:after {
    content: '';
    position: absolute;
    bottom: 15px;
    right: -60px;
    width: 50px;
    height: 4px;
    background-color: #ed5826;
}
.show {
    display: block!important;
}
.show-inline {
    display: inline-block!important;
}
.bannerSlider.owl-theme .owl-dots {
    display: block;
    position: absolute;
    width: 100%;
    bottom: 10px;
    text-align: center;
    margin-top: 0px;
    cursor: pointer;
}
.bannerSlider.owl-theme .owl-dots .owl-dot.active span, 
.bannerSlider.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #ed5826;
}
.aboutSection {
    padding: 70px 0;
}
.aboutBg {
    background-image: url('../images/about-bg.jpg');    
    background-repeat: no-repeat;
    background-size: cover;
}
.mainTitle {

}
.mainTitle h1 {
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 20px;
    position: relative;
}
.mainTitle h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #ed5826;
}
.aboutContent {

}
.aboutContent p b {
    color: #040707;
    letter-spacing: 0.5px;
}
.aboutContent span {
    color: #ed5826;
}
.vmSection {
    background-image: url('../images/vm-bg.jpg');
    padding: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
}
.mainTitle.whiteTitle {
    color: #fff;
}
.vmSection .vmContent p {
    color: #fff;
}
.storySection {
    padding: 70px 0;
}
.storyImg img {
    max-width: 100%
}
.pb-30px {
    padding-bottom: 30px;
}
.advantageSection {
    padding: 70px 0;
    background-image: url('../images/advantage-bg.jpg');
}

.adItems {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}
.advantageSlider.owl-carousel .owl-stage {
    display: flex;
}
.adWidget {    
    margin-top: 45px;
    height: 100%;
    position: relative;
    background-color: #ebebeb;
    padding: 45px 30px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.adItems:hover .adWidget {
    background-color: #ed5826;
}
.adWidget .adImg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.adWidget .adImg img {
    max-width: 80px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.adItems:hover .adWidget .adImg img {
    filter: brightness(100);
}
.adWidget .adDes {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
}
.adWidget .adDes h3 {
    color: #000;    
    font-size: 20px;
    font-weight: 700;
}
.adItems:hover .adWidget .adDes h3 {
    color: #fff;    
}
.adWidget .adDes h3 span {
    color: #ed5826;
    display: block;
}
.adItems:hover .adWidget .adDes h3 span {
    color: #fff; 
}
.adWidget .adDes p {
    color: #7c818c;
}
.adItems:hover .adWidget .adDes p {
    color: #fff;
}
.advantageSlider.owl-theme .owl-nav [class*=owl-] {
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    width: auto;
    height: auto;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    border-radius: 0;
    background: transparent;
    color: #fff;
}
.advantageSlider.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
}
.advantageSlider.owl-theme .owl-nav [class*=owl-] i {
    font-size: 50px;
}
.advantageSlider.owl-theme .owl-nav button.owl-prev {
    left: -30px;
}
.advantageSlider.owl-theme .owl-nav button.owl-next {
    right: -30px;
}
footer {
    padding: 70px 0 0 0;
}
.contactForm {
    padding: 30px 25px;
    background-color: #333333;
}
.contactForm .form-control {
    border-color: #ed5826;
    border-radius: 0;
    outline: none;
    background-color: transparent;
    font-size: 14px;
    color: #fff;
}
.contactForm .form-control::-webkit-input-placeholder {
    color: #7c818c!important;
}
.contactForm .form-control:-ms-input-placeholder {
    color: #7c818c!important;
}
.contactForm .form-control::placeholder {
    color: #7c818c!important;
}
.formBtn {
    width: 100%;
    background-color: #ed5826;
    color: #fff;
    padding: 8px;
    border: 2px solid #ed5826;
    font-weight: 700;
}
.formBtn:hover {
    background-color: transparent;
    color: #ed5826;
}
.addressWidget {
    padding-bottom: 60px;
}
.addBox h4 {
    font-weight: 700;
    font-size: 18px;    
    margin-bottom: 20px;
}
.mapSection {
    margin-top: -50px;
    margin-bottom: -6px;
}
.pt-30px {
    padding-top: 30px;
}
.copyBg {
    padding: 15px 0;
    background-color: #202020;
}
.copyBg p {
    margin-bottom: 0;
}
.copyBg p span {
    color: #ed5826;
}