@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&display=swap');
@import url('../vendor/fontawesome/css/all.min.css');

*{
    font-family: 'Montserrat', sans-serif;
}
a, button{
    cursor: pointer;
}
.main-head-fcon-mnt{
    background-color: #393939;
    display: block;
}
.main-head-fcon-mnt img{
    max-height: 95px;
}
.header-logo-a{
    display: block;
    text-align: left;
}
.main-head-logo-col{
    background-color: #282828;
    padding-top: 20px;
    padding-bottom: 20px;
}
.main-head-menu-col{
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.main-head-fcon-mnt .main-head-logo-col::before{
    content: '';
    position: absolute;
    width: 100%;
    display: block;
    background-color: #282828;
    height: 100%;
    top: 0;
    left: -100%;
    z-index: 1;
}
.desktop-main-head-menu{
    display: inline-flex;
    list-style: none;
    padding: 0 20px;
    margin: 0;
}
.desktop-main-head-menu li{
    padding-right: 30px;
}
.desktop-main-head-menu li:last-child{
    padding-right: 0px;
}
.desktop-main-head-menu li a{
    font-size: 18px;
    line-height: 22px;
    color: #afafaf;
    font-weight: 700;
    padding: 15px 0px 80px;
    text-transform: uppercase;
}
.desktop-main-head-menu li a:hover, .desktop-main-head-menu li a:focus{
    text-decoration: none;
    color: #ffffff;
}
.desktop-main-head-menu li.active a{
    color: #ffffff;
}
.desktop-main-head-menu li.active a::after{
    content: '';
    border-bottom: 2px solid #ffffff;
    display: block;
    width: 20px;
    position: absolute;
    bottom: -10px;
}
.desktop-main-head-menu .mnt-dropdown-item .mnt-dropdown-menu{
    background: #191919;
    visibility: hidden;
    opacity: 0;
    min-width: 8.5rem;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: 3.4rem;
    display: none;
    list-style: none;
    width: 720px;
    padding: 30px 35px 10px;
    z-index: 4;
}
.desktop-main-head-menu .mnt-dropdown-item .mnt-dropdown-menu.image-1{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.desktop-main-head-menu .mnt-dropdown-item:hover > .mnt-dropdown-menu,
.desktop-main-head-menu .mnt-dropdown-item .mnt-dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    display: block;
}
.desktop-main-head-menu .mnt-dropdown-item .mnt-dropdown-menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
}
.desktop-main-head-menu .mnt-dropdown-item .mnt-dropdown-menu ul li{
    width: 50%;
    margin-bottom: 20px;
}
.desktop-main-head-menu .mnt-dropdown-item .mnt-dropdown-menu ul li a{
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666666;
    border-left: 2px solid #666666;
    padding: 0px 0px 0px 15px;
    display: inline-block;
}
.desktop-main-head-menu .mnt-dropdown-item .mnt-dropdown-menu ul li a:hover, .desktop-main-head-menu .mnt-dropdown-item .mnt-dropdown-menu ul li a:focus{
    color: #ffffff;
    border-color: #ffffff;
}
.desktop-main-head-menu .mnt-dropdown-item .mnt-dropdown-menu ul li a.active{
    color: #ffffff;
    border-color: #ffb400;
}
.desktop-main-head-lang-m{
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.desktop-main-head-lang-m li{
    background-color: #282828;
    text-align: center;
}
.desktop-main-head-lang-m li:first-child{
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    padding-left: 5px;
}
.desktop-main-head-lang-m li:last-child{
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    padding-right: 5px;
}
.desktop-main-head-lang-m li a{
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    color: #737373;
    text-transform: uppercase;
    padding: 10px;
    display: inline-block;
}
.desktop-main-head-lang-m li a:hover, .desktop-main-head-lang-m li a:focus{
    text-decoration: none;
    color: #ffffff;
}
.desktop-main-head-lang-m li.active a{
    color: #ffffff;
}
.desktop-main-head-lang-m li.active{
    background-color: #1c1c1c;
}
.mobile-button-container{
    position: relative;
    margin-top: 0px;
    right: 0px;
    height: 25px;
    width: 35px;
    cursor: pointer;
    z-index: 98;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
    float: right;
}
.mobile-button-container.active .top{
    -webkit-transform: translateY(10px) translateX(0) rotate(45deg);
    transform: translateY(10px) translateX(0) rotate(45deg);
    background: #FFF;
}
.mobile-button-container.active .middle{
    opacity: 0;
    background: #FFF;
}
.mobile-button-container.active .bottom{
    -webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
    transform: translateY(-10px) translateX(0) rotate(-45deg);
    background: #FFF;
}
.mobile-button-container span{
    background: #ffffff;
    border: none;
    height: 5px;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    cursor: pointer;
}
.mobile-button-container span:nth-of-type(2){
    top: 10px;
}
.mobile-button-container span:nth-of-type(3){
    top: 20px;
}
.mobile-menu-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: hidden;
    -webkit-transition: opacity .35s, visibility .35s, width .35s;
    transition: opacity .35s, visibility .35s, width .35s;
    z-index: 50;
}
.mobile-menu-overlay:before{
    content: '';
    background: #eba808;
    left: -55%;
    top: 0;
    width: 50%;
    height: 100%;
    position: absolute;
    -webkit-transition: left .35s ease;
    transition: left .35s ease;
}
.mobile-menu-overlay:after{
    content: '';
    background: #eba808;
    right: -55%;
    top: 0;
    width: 50%;
    height: 100%;
    position: absolute;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
}
.mobile-menu-overlay.open{
    opacity: 1;
    visibility: visible;
    height: 100%;
}
.mobile-menu-overlay.open:before{
    left: 0;
}
.mobile-menu-overlay.open:after{
    right: 0;
}
.mobile-menu-overlay.open li{
    -webkit-animation: fadeInRight .5s ease forwards;
            animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .25s;
            animation-delay: .25s;
}
.mobile-menu-overlay.open li:nth-of-type(2){
    -webkit-animation-delay: .35s;
            animation-delay: .35s;
}
.mobile-menu-overlay.open li:nth-of-type(3){
    -webkit-animation-delay: .45s;
            animation-delay: .45s;
}
.mobile-menu-overlay.open li:nth-of-type(4){
    -webkit-animation-delay: .55s;
            animation-delay: .55s;
}
.mobile-menu-overlay.open li:nth-of-type(5){
    -webkit-animation-delay: .65s;
            animation-delay: .65s;
}
.mobile-menu-overlay.open li:nth-of-type(6){
    -webkit-animation-delay: .75s;
            animation-delay: .75s;
}
.mobile-menu-overlay.open li:nth-of-type(7){
    -webkit-animation-delay: .85s;
            animation-delay: .85s;
}
.mobile-menu-overlay.open li:nth-of-type(8){
    -webkit-animation-delay: .95s;
            animation-delay: .95s;
}
.mobile-menu-overlay.open li:nth-of-type(9){
    -webkit-animation-delay: 1.05s;
            animation-delay: 1.05s;
}
.mobile-menu-overlay.open li:nth-of-type(10){
    -webkit-animation-delay: 1.15s;
            animation-delay: 1.15s;
}
.mobile-menu-overlay nav{
    position: relative;
    height: 80%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    z-index: 100;
    overflow-x: auto;
}
.mobile-menu-overlay ul{
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
    width: 98%;
}
.mobile-menu-overlay ul li{
    display: block;
    margin-bottom: 20px;
    position: relative;
    opacity: 0;
}
.mobile-menu-overlay ul li a{
    display: block;
    position: relative;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;
}
.mobile-menu-overlay ul li a:hover:after, .mobile-menu-overlay ul li a:focus:after, .mobile-menu-overlay ul li a:active:after{
    width: 100%;
}
@-webkit-keyframes fadeInRight{
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}
@keyframes fadeInRight{
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}
.mobile-menu-overlay ul li.mobile-dropdown-mnt a::after{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    font-size: 80%;
    padding-left: 20px;
}
.mobile-menu-overlay ul li.mobile-dropdown-mnt a.active::after{
    content: "\f077";
}
.mobile-menu-overlay ul li .mobile-dropdown-menu-mnt{
    background-color: #ffb414;
    padding: 10px 15px;
    font-size: 70%;
    display: none;
    margin-top: 10px;
}
.mobile-menu-overlay ul li .mobile-dropdown-menu-mnt li{
    margin: 0px 0px 10px;
}
.mobile-menu-overlay ul li .mobile-dropdown-menu-mnt .s-link::after{
    display: none;
}
.mobile-menu-language-menu{
    display: inline-flex !important;
    padding: 0 !important;
    margin: 0 !important;
    align-items: center;
    justify-content: center;
}
.mobile-menu-language-menu li{
    text-align: center;
    border: 2px solid #ffffff;
}
.mobile-menu-language-menu li:first-child{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding-left: 5px;
}
.mobile-menu-language-menu li:last-child{
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-right: 5px;
}
.mobile-menu-language-menu li a{
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: #737373;
    text-transform: uppercase;
    padding: 10px;
    display: inline-block;
}
.mobile-menu-language-menu li.active{
    background-color: #ffffff;
}
.mobile-menu-language-menu li.active a{
    color: #eba808;
}
.slider-timg-group{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.slider-timg-group .img-div{
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
}
.slider-timg-group .text-div{
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
    background-color: #393939;
}
.custom-button-1{
    display: inline-block;
    min-width: 170px;
    min-height: 45px;
    text-align: center;
    color: #ffffff;
    background-color: #6b6b6b;
    border: 0;
    font-size: 13px;
    line-height: 1.4;
    padding: 13px 10px;
    font-weight: 400;
}
.custom-button-1:hover, .custom-button-1:focus{
    text-decoration: none;
    box-shadow: none;
    outline: none;
    color: #ffffff;
}
.slider-timg-group .text-div .text-abs-d{
    position: absolute;
    max-width: 550px;
    width: 100%;
    right: 12%;
    top: 50%;
    transform: translate(0%, -50%);
}
.slider-timg-group .text-div .text-abs-d .head-1{
    font-size: 85px;
    line-height: 90px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}
.slider-timg-group .text-div .text-abs-d .head-2{
    font-size: 85px;
    line-height: 90px;
    font-weight: 700;
    color: transparent; 
    -webkit-text-stroke: 1px #ffffff;
    margin-bottom: 10px;
}
.slider-timg-group .text-div .text-abs-d .desc-1{
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}
.slider-timg-group .text-div .text-abs-d .slider-margin{
    margin-top: 50px;
    margin-bottom: 80px;
}
.mainSlider.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px;
    position: absolute;
    bottom: 20%;
    left: 12%;
}
.mainSlider.owl-theme .owl-dots .owl-dot span {
    background: rgb(255, 255, 255, .5);
    border-radius: 0;
}
.mainSlider.owl-theme .owl-dots .owl-dot.active span{
    width: 16px;
    height: 16px;
    background: #ffffff;
    position: relative;
    top: 3px;
}
.mainSlider.owl-theme .owl-dots .owl-dot:hover span{
    background: #ffffff;
}
.mainSlider.owl-theme .owl-dots .owl-dot:focus, .mainSlider.owl-theme .owl-dots .owl-dot:hover{
    outline: none;
    box-shadow: none;
}
.bg-grey-28{
    background-color: #282828;
}
.main-page-padding-1{
    padding-top: 40px;
    padding-bottom: 130px;
}
.custom-head-stroke-1{
    font-size: 100px;
    line-height: 120px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .2);
    margin-bottom: 25px;
}
.custom-desc-1{
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}
.custom-desc-2{
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: #cccccc;
    margin-bottom: 30px;
}
.custom-section-bg{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.main-page-padding-2{
    padding-top: 80px;
    padding-bottom: 80px;
}
.custom-head-wbg-1{
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}
.custom-head-wbg-1 .square{
    width: 180px;
    height: 180px;
    background: #eba602;
    display: inline-block;
    position: absolute;
    z-index: -1;
    top: -160%;
    margin-left: -31px;
}
.hp-product-slider .slider-product .image{
    margin-bottom: 30px;
}
.hp-product-slider .slider-product .head{
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
}
.hp-product-slider .slider-product .head::after{
    content: '';
    border-bottom: 3px solid #ffb400;
    display: block;
    width: 50px;
    position: relative;
    margin-top: 30px;
}
.hp-product-slider .slider-product .a-link{
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #b2b2b2;
}
.hp-product-slider .slider-product .a-link:hover, .hp-product-slider .slider-product .a-link:focus{
    color: #ffffff;
    text-decoration: none;
}
.hp-product-slider.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 50px;
}
.hp-product-slider.owl-theme .owl-dots .owl-dot span {
    background: rgb(255, 255, 255, .5);
    border-radius: 0;
}
.hp-product-slider.owl-theme .owl-dots .owl-dot.active span{
    width: 16px;
    height: 16px;
    background: #ffffff;
    position: relative;
    top: 3px;
}
.hp-product-slider.owl-theme .owl-dots .owl-dot:hover span{
    background: #ffffff;
}
.hp-product-slider.owl-theme .owl-dots .owl-dot:focus, .hp-product-slider.owl-theme .owl-dots .owl-dot:hover{
    outline: none;
    box-shadow: none;
}
.main-page-padding-3{
    padding-top: 40px;
    padding-bottom: 40px;
}
.custom-head-stroke-2{
    font-size: 90px;
    line-height: 110px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .2);
    margin-bottom: 0px;
}
.head-rotate-180{
    transform-origin: center center;
    display: block;
    writing-mode: tb-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    margin: auto;
}
.hp-news-col-1{
    padding-left: 25px;
}
.hp-news-col-1::before{
    content: '';
    width: 8px;
    height: 8px;
    display: block;
    background-color: #6b6b6b;
    position: absolute;
    margin-left: -25px;
    margin-top: 12px;
}
.hp-news-col-1 .a-link{
    display: block;
}
.hp-news-col-1 .a-link:focus, .hp-news-col-1 .a-link:hover{
    text-decoration: none;
}
.hp-news-col-1 .head{
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    max-height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.hp-news-col-1 .desc-1{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #cccccc;
    margin-bottom: 20px;
    max-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.hp-news-col-1 .date{
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #848484;
    margin-bottom: 0;
}
.custom-footer-bg{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.main-footer{
    padding-top: 120px;
    padding-bottom: 50px;
}
.footer-contact-row{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.footer-contact-row .fc-col-1{
    -ms-flex: 0 0 15%;
    flex: 0 0 15%;
    max-width: 15%;
}
.footer-contact-row .fc-col-2{
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
.footer-contact-row .fc-col-3{
    -ms-flex: 0 0 65%;
    flex: 0 0 65%;
    max-width: 65%;
}
.footer-contact-row .icon-p{
    color: rgb(255, 255, 255, .1);
    font-size: 34px;
    margin: 0;
    line-height: 1;
}
.footer-contact-row .icon-head{
    font-size: 12px;
    line-height: 24px;
    font-weight: 700;
    color: #9f9f9f;
    margin: 0;
}
.footer-contact-row .icon-desc{
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}
.footer-contact-row .icon-link{
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}
.footer-contact-row .icon-link:hover, .footer-contact-row .icon-link:focus{
    text-decoration: none;
    color: #ffb400;
}
.footer-social-head{
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
}
.footer-social-desc{
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #6e6e6e;
    margin-bottom: 5px;
}
.footer-social-menu{
    padding: 0;
    margin-bottom: 24px;
    list-style: none;
    display: inline-flex;
}
.footer-social-menu li{
    margin-right: 10px;
}
.footer-social-menu li:last-child{
    margin-right: 0px;
}
.footer-social-menu li a{
    display: inline-block;
    line-height: 1;
    width: 40px;
    height: 40px;
    text-align: center;
    color: rgb(255, 255, 255, .5);
    border: 1px solid rgb(255, 255, 255, .5);
    border-radius: 50%;
    font-size: 20px;
    padding: 10px 2px;
}
.footer-social-menu li a:focus, .footer-social-menu li a:hover{
    text-decoration: none;
    color: #ffb400;
    border-color: #ffb400;
}
.custom-hr-f01{
    border-color: rgb(255, 255, 255, .1);
    margin-top: 30px;
    margin-bottom: 40px;
}
.footer-copyright{
    font-size: 12px;
    line-height: 24px;
    font-weight: 300;
    color: #808080;
    margin: 0;
}
.footer-copyright span{
    font-weight: 500;
    color: #aeaeae;
}
.page-banner-1{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-banner-1 .head{
    font-size: 100px;
    line-height: 120px;
    font-weight: 700;
    color: transparent; 
    -webkit-text-stroke: 1px #ffffff;
    margin-bottom: 0px;
    text-align: center;
}
.custom-w-head-1{
    font-size: 35px;
    line-height: 45px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 30px;
}
.light-gallery-item{
    cursor: pointer;
    margin-bottom: 30px;
}
.list-style-product-1 .image{
    margin-bottom: 30px;
    max-width: 100%;
    height: auto;
}
.list-style-product-1 .head{
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
}
.list-style-product-1 .head::after{
    content: '';
    border-bottom: 3px solid #ffb400;
    display: block;
    width: 50px;
    position: relative;
    margin-top: 30px;
}
.list-style-product-1 .a-link{
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #b2b2b2;
}
.list-style-product-1 .a-link:hover, .list-style-product-1 .a-link:focus{
    color: #ffffff;
    text-decoration: none;
}
.bg-grey-38{
    background-color: #393939;
}
.product-detail-col-margin{
    margin-top: -100px;
}
.product-detail-desc-div{
    margin: auto 60px;
    border-top: 4px solid #ffb400;
    padding: 35px;
}
.product-detail-desc-div .desc-div, .product-detail-desc-div .desc-div p{
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 30px;
}
.custom-form-1 ::-webkit-input-placeholder {
    color: #cccccc;
}

.custom-form-1 :-ms-input-placeholder {
    color: #cccccc;
}
.custom-form-1 ::placeholder {
    color: #cccccc;
}
.custom-form-1 input, .custom-form-1 select{
    background-color: #282828;
    font-size: 16px;
    line-height: 1;
    color: #cccccc;
    border-radius: 30px;
    border: 1px solid rgb(255, 255, 255, .2);
    height: 60px;
    padding: 20px 28px;
}
.custom-form-1 textarea{
    resize: none;
    background-color: #282828;
    font-size: 16px;
    line-height: 1.4;
    color: #cccccc;
    border-radius: 30px;
    border: 1px solid rgb(255, 255, 255, .2);
    padding: 20px 28px;
}
.custom-form-1 textarea:focus, .custom-form-1 input:focus, .custom-form-1 select:focus{
    background-color: #282828;
    border-color: #ffb400;
    outline: none;
    box-shadow: none;
}
.custom-button-2{
    display: inline-block;
    min-width: 200px;
    min-height: 60px;
    text-align: center;
    color: #ffffff;
    background-color: #ffb400;
    border: 0;
    font-size: 20px;
    line-height: 28px;
    padding: 13px 10px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
}
.custom-button-2:hover, .custom-button-2:focus{
    text-decoration: none;
    box-shadow: none;
    outline: none;
    color: #ffffff;
    background-color: #e49f00;
}
.file-upload-input-container {
    background-color: #282828;
    font-size: 16px;
    line-height: 1;
    color: #cccccc;
    border-radius: 30px;
    border: 1px solid rgb(255, 255, 255, .2);
    height: 60px;
    padding: 20px 28px;
}
.file-upload-input-container input[type='file'] {
    display: none;
}
.file-upload-input-container .file-info {
    font-size: 16px;
    line-height: 20px;
    color: #cccccc;
    font-weight: 400;
    cursor: pointer;
    display: block;
    max-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.file-upload-input-container .browse-btn {
    background-color: #282828;
    font-size: 16px;
    line-height: 1;
    color: #cccccc;
    border-radius: 30px;
    border: 1px solid rgb(255, 255, 255, .2);
    height: 60px;
    padding: 20px 28px;
    position: absolute;
    right: 0;
    bottom: 0;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    max-width: 200px;
    width: 100%;
}
.file-upload-input-container .browse-btn:hover {
    background: #303030;
    text-decoration: none;
}
.file-upload-input-container .browse-btn i{
    color: rgba(255, 255, 255, 0.20);
    float: right;
}
.contact-page-h{
    font-size: 22px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 40px;
}
.contact-page-info-div{
    padding: 55px 85px;
}
.contact-page-row{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.contact-page-row .cp-col-1{
    -ms-flex: 0 0 15%;
    flex: 0 0 15%;
    max-width: 15%;
}
.contact-page-row .cp-col-2{
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
.contact-page-row .cp-col-3{
    -ms-flex: 0 0 65%;
    flex: 0 0 65%;
    max-width: 65%;
}
.contact-page-row .icon-p{
    color: rgb(255, 255, 255, .1);
    font-size: 34px;
    margin: 0;
    line-height: 1;
}
.contact-page-row .icon-head{
    font-size: 12px;
    line-height: 24px;
    font-weight: 700;
    color: #9f9f9f;
    margin: 0;
}
.contact-page-row .icon-desc{
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}
.contact-page-row .icon-link{
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}
.contact-page-row .icon-link:hover, .contact-page-row .icon-link:focus{
    text-decoration: none;
    color: #ffb400;
}
.contact-page-social-menu{
    padding: 0;
    margin: 0;
    list-style: none;
}
.contact-page-social-menu li{
    margin-bottom: 10px;
}
.contact-page-social-menu li:last-child{
    margin-bottom: 0px;
}
.contact-page-social-menu li a{
    font-size: 15px;
    line-height: 50px;
    font-weight: 400;
    color: #ffffff;
}
.contact-page-social-menu li a .icon{
    display: inline-block;
    height: 38px;
    width: 38px;
    text-align: center;
    border: 1px solid #ffffff;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    padding: 8px 7px;
}
.contact-page-social-menu li a .desc-line{
    padding-left: 10px;
}
.contact-page-social-menu li a:hover, .contact-page-social-menu li a:focus{
    text-decoration: none;
    color: #ffb400;
}
.contact-page-social-menu li a:focus .icon, .contact-page-social-menu li a:hover .icon{
    border-color: #ffb400;
}
.body-overflow-mnt{
    overflow: hidden;
}
.light-gallery-item img {
    height: 250px;
    width: 100%;
}
.light-gallery-1.corporate .light-gallery-item img{
    height: auto;
    width: 100%;
}