@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
/*
font-family: 'Roboto', sans-serif;
*/
/* --------------------------
:: 1.0 Base CSS Start
-------------------------- */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 24px;
    color: #868686;
    background-color:#ffffff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
}

img {
    max-width: 100%;
}

a {
    outline: none;
    color: #a2a3a3;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out ;
    -moz-transition: all 0.3s ease-in-out ;
    -o-transition: all 0.3s ease-in-out ;
    -ms-transition: all 0.3s ease-in-out ;
}

a:hover,
a:focus,
a:active {
    color: #f05526;
    text-decoration: none !important;
    outline: none !important;
}

li {
    list-style: none;
}
input:hover, input:focus{outline: none;}


/*============
custom css(07-02-19)
==============================*/
/*===-----
common
------===*/
div#main {
    z-index: 3;
    position: relative;
    background: #fff;
}
.container_max {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}
img{
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
    display: block;
    box-shadow: none;
    border-radius: 0;

}
.nopadd{
    padding: 0;
}
.padd_tb{
    padding: 90px 0;
}
.padd_t{
    padding-top: 90px;
}
.padd_b{
    padding-bottom: 90px;
}
.nopadd_left {
    padding-left: 0 !important;
}
.nopadd_right {
    padding-right: 0 !important;
}
.fluid_padd{
    padding: 0 7%;
}
.space_area{}
ul{
    margin: 0;
}
li{
    font-size: 15px;
    line-height: 23px;
    color: #333333;
    margin-bottom: 0;
}
h1, h2, h3, h4, h5, h6 {
    clear: both;
    color: #131313;
    margin-top: 0;
}
.secpanel{
    display: block;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.secpanel p{
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 15px;
    color: #333333;
}
.secpanel p:last-child{
    margin-bottom: 0;
}
.sub_content {
    margin: 0 auto 40px;
    width: 87%;
    max-width: 1170px;
}
.sub_content p {
    display: block;
    text-align: center;
}

.org_text{
    color: #f05526;
}
.total_wrapper{}
.row {
    margin-right: 0;
    margin-left: 0;
}
/*----------
top to bottom scroll
----------*/

#return-to-top {
    z-index: 99;
    position: fixed;
    bottom: 132px;
    right: 20px;
    background: #f05526;
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: #4b494a;
}
#return-to-top:hover i {
    color: #fff;

}
/*======================
Loader
===========================*/

.overlayload {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000000;
}
.overlayload .overlayDoor:before, .overlayload .overlayDoor:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background: #111;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
    transition-delay: 0.8s;
}
.overlayload .overlayDoor:before {
    left: 0;
}
.overlayload .overlayDoor:after {
    right: 0;
}
.overlayload.loaded .overlayDoor:before {
    left: -50%;
}
.overlayload.loaded .overlayDoor:after {
    right: -50%;
}
.overlayload.loaded .overlayContent {
    opacity: 0;
    margin-top: -15px;
}
.overlayload .overlayContent {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.overlayload .overlayContent .skip {
    display: block;
    width: 130px;
    text-align: center;
    margin: 50px auto 0;
    cursor: pointer;
    color: #fff;
    font-family: "Nunito";
    font-weight: 700;
    padding: 12px 0;
    border: 2px solid #fff;
    border-radius: 3px;
    transition: 0.2s ease;
}
.overlayload .overlayContent .skip:hover {
    background: #ddd;
    color: #444;
    border-color: #ddd;
}

.loader {
    width: 128px;
    height: 128px;
    border: 3px solid #fff;
    border-bottom: 3px solid transparent;
    border-radius: 50%;
    position: relative;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader .inner {
    width: 64px;
    height: 64px;
    border: 3px solid transparent;
    border-top: 3px solid #fff;
    border-radius: 50%;
    -webkit-animation: spinInner 1s linear infinite;
    animation: spinInner 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes spinInner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-720deg);
    }
}
@keyframes spinInner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-720deg);
    }
}
/*===============
Header
===============*/
.main_header {
    position: relative;
    transition: all 0.3s;
    z-index: 10;
}
.hdr_top_wrap{
    background: #1e1e1e;
    padding: 6px 0;
}
.hdr_top_area{
    display: flex;
    flex-wrap: wrap;
    /* padding: 22px 0; */
    align-items: center;
}
.hdr_top_left_box{
    width: 50%;
}
.hdr_top_left_box p{
    color: #fff;
    margin: 0;
    font-size: 15px;
    line-height: 23px;
    text-transform: uppercase;
}

.hdr_top_right_box{
    width: 50%;
    text-align: right;
}
.hdr_right_area{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
ul.hdr_contact {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}
ul.hdr_contact li {
    display: inline-block;
    vertical-align: middle;
    padding-left: 29px;
    background-repeat: no-repeat;
    background-position: left center;
    margin-right: 20px;
    color: #fff;
}
ul.hdr_contact li a {
    font-size: 17px;
    line-height: 17px;
    display: inline-block;
    color: #fff;
    margin-left: 10px;
}
ul.hdr_contact li a:hover, ul.hdr_contact li a:focus, ul.hdr_contact li a:active{
    color: #f05526;
}
.scl_icon{
}
.scl_icon ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
}
.scl_icon ul li{
    margin-left: 5px;
}
.scl_icon ul li a{
    width: 36px;
    height: 36px;
    display: inline-block;
    font-size: 20px;
    background: #f05526;
    color: #fff;
    text-align: center;
    line-height: 28px;
    border-radius: 50%;
    padding: 5px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
.scl_icon ul li a:hover, .scl_icon ul li a:focus, .scl_icon ul li a:active{
    background: #fff;
    color: #f05526;
}
.scl_icon ul li a img{}

.hdr_bottom_wrap{
    background-color: rgb(0 0 0);

    transition: all 0.3s;
    position: relative;
}
.sticky {
    /*    background: #fff;*/
    position: fixed;
    top: 0;
    z-index: 9;
    left: 0;
    right: 0;
    box-shadow: 1px 1px 18px rgba(0, 0, 0, 0.12);
    -webkit-animation: slide-down 0.7s;
    -moz-animation: slide-down 0.7s;
    animation: slide-down 0.7s;
    background: #050607;
}
@-webkit-keyframes slide-down { 0% { ; transform:translateY(-100%);}100% {  transform:translateY(0);}}
@-moz-keyframes slide-down { 0% {  transform:translateY(-100%);}100% {  transform:translateY(0);}}
@keyframes slide-down { 0% {  transform:translateY(-100%);}100% {  transform:translateY(0);}}
.hdr_bottom_area{
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    /* padding: 15px 0; */
}
.logoarea {
    width: 20%;
    max-width: 244px;
    display: inline-flex;
    margin: 0px 0 15px;
}
.logoarea a {
    display: inline-block;
    width: 100%;
}
.hdr_right_wrap {
    width: 80%;
    text-align: right;
}
.sticky .logoarea a {
    width: 130px;
}
.sticky .dstp_mainmenu nav ul.nav_list > li > a {
    line-height: 82px;
    font-size: 16px;
}
/*----- sticky header-----*/
.main_header.sticky {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.07);
}
.main_header.sticky .logoarea {
    max-width: 120px;
}
.main_header.sticky .hdr_right_wrap .hdr_right_area {
    display: none;
}
.main_header.sticky .dstp_mainmenu {
    text-align: right;
    margin-top: 0;
}

/*===============
main menu
===============*/
.dstp_mainmenu{
    text-align: right;
}
.dstp_mainmenu nav{

}
.dstp_mainmenu nav ul.nav_list{margin: 0;
                               float: right;}
.dstp_mainmenu nav ul.nav_list li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 0 18px;
}
.dstp_mainmenu nav ul.nav_list > li:before {
    position: absolute;
    content: " ";
    background: #f05526;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    left: -8px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.dstp_mainmenu nav ul.nav_list li:first-child:before {
    display: none;
}
.dstp_mainmenu nav ul.nav_list > li > a {
    border-bottom: 0;
    color: #fff;
    line-height: 100px;
    font-size: 16px;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-block;
}
.dstp_mainmenu nav ul.nav_list li:last-child{
    padding-right: 0;
}
.current_menu{}
.dstp_mainmenu nav ul.nav_list li:hover a,
.dstp_mainmenu nav ul.nav_list li.current_menu > a{
    color: #f05526;
}
.dstp_mainmenu nav ul.nav_list li.current_menu > a.popupbtn{
    color: #fff;
}
.dstp_mainmenu nav ul.nav_list li.current_menu > a.popupbtn:hover{
    color: #f05526;
}
.dstp_mainmenu nav ul.nav_list li ul.sub_menu {
    position: absolute;
    top: 108%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    /* width: 262px; */
    background-color: #2b2b2b;
    border-bottom: 5px solid #f05526;
    border-radius: 0 0 5px 5px;
    z-index: 9999999;
    margin: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
.dstp_mainmenu nav ul.nav_list li ul.sub_menu:before{
    content:"";
    top: -12px;
    position: absolute;
    left: 45px;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 12px solid #2b2b2b;
}
.dstp_mainmenu nav ul.nav_list li ul.sub_menu li {display: block;width: 100%;padding: 0;
                                                  transition: all 0.3s ease-in-out;
                                                  -webkit-transition: all 0.3s ease-in-out;
                                                  -moz-transition: all 0.3s ease-in-out;
                                                  -o-transition: all 0.3s ease-in-out;
                                                  -ms-transition: all 0.3s ease-in-out;
}


.dstp_mainmenu nav ul.nav_list li ul.sub_menu li a{
    font-size: 14px;
    line-height: 24px;
    border-bottom: 1px solid #eee;
    width: 100%;
    padding: 10px 18px;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-block;
    color: #fff;
}
.dstp_mainmenu nav ul.nav_list li:hover ul.sub_menu {
    opacity: 1;
    visibility: visible;
}
.dstp_mainmenu nav ul.nav_list li:last-child ul.sub_menu{
    left: initial;
    right: 0;
    width: 150px;
}
.dstp_mainmenu nav ul.nav_list li ul.sub_menu li:hover{
    background: #f05526;
}
.dstp_mainmenu nav ul.nav_list li ul.sub_menu li:hover a{color: #e5e5e5;}
.parent_menu{}


/*======
Heading
========*/

.heading, .heading_center{
    margin-bottom: 20px;
    position: relative;
    /* padding-bottom: 15px; */
}
.heading_center {
    text-align: center;
}

.heading h2, .heading_center h2 {
    font-size: 34px;
    line-height: 38px;
    color: #1e1e1e;
    font-weight: 400;
    text-transform: uppercase;
}
.heading h3, .heading_center h3 {
    font-size: 30px;
    line-height: 36px;
    color: #131313;
    font-weight: 400;
/*    text-transform: uppercase;*/
}
.home_hdn {
    text-align: center;
    margin-top: -65px;
    z-index: 5;
    /* position: relative; */
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
}
.home_hdn:before {
    position: absolute;
    content: " ";
    background: #f05526;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    width: 51px;
    height: 21px;
    z-index: 2;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
}
.home_hdn h2{
    display: inline-block;
        color: #2b2b2b;
    font-size: 33px;
    line-height: 40px;
    padding: 22px 71px 0;
    background: #ffffff;
    position: relative;
    font-weight: 400;
    text-transform: uppercase;
    border-top: 4px solid #f05526;
    margin-bottom: 0;
}
.home_hdn h2:before,.home_hdn h2:after {
    position: absolute;
    content: " ";
    background: #ffffff;
    width: 35px;
    height: 65px;
    top: -4px;
    z-index: -1;
    /* border-top: 3px solid #f05526; */
}
.home_hdn h2:before{
        left: -15px;
        transform: skew(
        -24deg
        );
        border-left: 2px solid #f05526;
        }
.home_hdn h2:after{
    /* border-bottom: 65px solid #0e1215; */
    /* border-right: 30px solid transparent; */
    right: -15px;
    transform: skew(
        24deg
        );
    border-right: 3px solid #f05526;
}

/*======
Button
========*/
.main_btn{
    margin-top: 40px;
}
.main_btn a{
    background: transparent;
    border: 2px solid #f05526;
    color: #2b2b2b;
    display: inline-block;
    padding: 0px 48px;
    font-size: 16px;
    line-height: 46px;
    text-transform: uppercase;
    border-radius: 10px;
}
.main_btn a:hover, .main_btn a:active, .main_btn a:focus{
    background: #f05526;
    border-color: #f05526;
    color: #fff;
    outline: none;
    text-decoration: none;
}
.bg_btn a {
    background: #f05526;
    color: #ffffff;
}
.bg_btn a:hover, .bg_btn a:focus, .bg_btn a:active {
    background: transparent;
    color: #2b2b2b;
}
.dark_btn a {
    color: #ffffff;
}
/*-------------*/
.equi_btn {
    text-align: center;
}

.equi_btn a {
    /* width: 29%; */
    width: 330px;
}

.equi_btn a:first-child {
    margin-right: 15px;
    background: #f05526;
    color: #ffffff;
}
.equi_btn a:first-child:hover {
    background: transparent;
    color: #2b2b2b;
}
/*======
Banner
========*/
.main_bannerwrap {
    margin-top: -112px;
/*    margin-bottom: -7px;*/
}
.main_bannerwrap{}
.mainbanner_area{}
.bnr_slidebox {
    position: relative;
    overflow: hidden;
}
.mainbanner_img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.mainbanner_img img{
    margin: 0;
}
.bnr_txtbox{
    z-index: 1;
    position: relative;
    padding: 220px 0 190px;
    width: 100%;
}
/*---- home banner ---*/
.hmbnr_img{}
.hmbnr_img img{

}
.hmbnr_textwrap{}
.hmbnr_img img{
    height: 100%;
    object-fit: cover;
        width: 100%;
}
.hmbnr_textwrap{
    display: flex;
    align-items: center;
    justify-content: center;

}

.hmbnr_textarea{
    text-align: right;
    position: relative;
    z-index: 2;
    width: 80%;
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
    background: rgb(0 0 0 / 71%);
    padding: 60px 50px;
    border: 1px solid rgb(255 255 255 / 60%);
}
.hmbnr_textarea h1{
    position: relative;
    font-size: 36px;
    line-height: 40px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 400;
}
.hmbnr_textarea h1 span{
    font-weight: 500;
}
.hmbnr_textarea p{
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    width: 100%;
    padding: 0 80px;
}
.bnr_btn{
    margin-top: 30px;
}
.bnr_btn a{
color: #ffffff;
}
.bnr_btn a:last-child:hover{
    background: #fff;
    color: #000;
}
.bnr_slider .slick-arrow {
    position: absolute;
    /* top: 0; */
    bottom: 127px;
    height: 40px;
    z-index: 3;
    margin: auto;
    background: transparent;
    border: 0;
    padding: 0;
    font-size: 33px;
    color: #fff;
}
.bnr_slider .slick-prev{
    left: 45%;
}
.bnr_slider .slick-next{
    right: 45%;
}
.bnr_slider .slick-arrow:hover,
.bnr_slider .slick-arrow:focus,
.bnr_slider .slick-arrow:active{
    box-shadow: none;
    border: 0;
    outline: none;
}
.bnr_slider .slick-disabled{
    opacity: 0.4;
}
.bnr_btn a:hover, .bnr_btn a:focus,
.bnr_btn a:active{}
.bnr_slide {
    display: block !important;
}
/*-----*/
.bnr_small_img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    /* transform: skewX(10deg); */
    animation: fadeInRightBig 1s both 1s;
}
.bnr_small_img .bnr_sml_imgwrap {
    /* transform: skewX(20deg); */
    /* overflow: hidden; */
   width: 49.2%;
    float: right;
    max-width: 800px;
    height: 100%;
}
.bnr_small_img .bnr_sml_imgarea {
    /*transform: skewX(-20deg);
     width: 100%;
    margin-left: 0;
    height: 100%;*/
    background-image: url("images/bnr_smlimg.jpg");
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 20% 100%);
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% center;
}
.bnr_small_img .bnr_sml_imgarea img{
    height: 100%;
    object-fit: cover;
    /* width: 100%; */
    object-position: center;
    display: none;
}

/*-----**/

.mainbanner_img{
    animation:fadeInLeftBig 1s both 1s;
}
.main_bannerwrap .bnr_small_img{
    animation:fadeInRightBig 1s both 1s;
}
.main_bannerwrap .bnr_txtbox{
    animation:fadeIn 1s both 1.3s;
}
.main_bannerwrap .bnr_txtbox h1{
    animation:fadeIn 1s both 1.5s;
}

.main_bannerwrap .bnr_txtbox h2{
    animation:fadeIn 1s both 1.8s;
}
.main_bannerwrap .bnr_txtbox p{
    animation:fadeIn 1s both 2s;
}
.main_bannerwrap .bnr_txtbox .bnr_btn{
    animation:fadeIn 1s both 2.5s;
}
.main_bannerwrap .bnr_txtbox .bnr_btn a:first-child {
    background: #f05526;
    margin-right: 15px;
}
.main_bannerwrap .bnr_txtbox .bnr_btn a:first-child:hover {
    background: transparent;
}
/*=======================*/
.inner_bnr_wrap{}
.innrbnr_img{}
.innrbnr_img img{}
.innerbnr_contwrap{
/*    padding-bottom:  120px;*/
}
.innerbnr_contarea{}

.innerbnr_contarea h1{
    font-size: 40px;
    color: #f05526;
    line-height: 45px;
    font-weight: 400;
    margin-bottom: 15px;
}
.innerbnr_contarea h2 {
    font-size: 30px;
    color: #fff;
    line-height: 40px;
    font-weight: 400;
    text-transform: uppercase;
    color: #f05526;
    margin: 0 0 0;
}
.innerbnr_contarea p{}




.pan_visbor_wrap {
    overflow: visible;
    border-top: 2px solid #f05526;
}












/*===============
footer
===============*/
.ftr_wrap{
    background-color: #444444;
    overflow: hidden;
}
.ftr_top_wrap {
    border-top: 4px solid #1f1f1f;
}
.footer_area {
    /* overflow: hidden; */
    display:block;
}
.footer_top_area{
    display: flex;
    flex-wrap: wrap;
    /* padding: 60px 0; */
}
.footer_box{width: 30%;/* border-right: 1px solid #2b2b2b; *//* margin-right: 30px; */padding: 60px 0;}
.footer_box h4 {
    font-size: 22px;
    color: #fff;
    line-height: 30px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 0;
    margin-top: 0;
    font-weight: 400;
    text-transform: uppercase;
}
.footer_box h4:after {
    content: "";
    width: 50px;
    height: 2px;
    /* position: absolute; */
    left: 0;
    bottom: 0;
    background-color: #f05427;
}

/*------ quick link ------*/
.ftr_quicklink {
    /* padding: 0 40px; */
}
.ftr_quicklink ul {}
.ftr_quicklink ul li {

    position: relative;
}
.ftr_quicklink ul li:before {
    position: absolute;
    content:  " ";
    background: #f05526;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.ftr_quicklink ul li a {
    color: #d3d3d3;
    padding: 7px 0 7px 18px;
    display: inline-block;
    width: 100%;
    font-size: 14px;
}
.ftr_quicklink ul li a:hover {
    text-decoration: none;
    color: #f05527;
}

/*----- details ----*/
.ftr_col3 {
    background: #2b2b2b;
    width: 40%;
    padding-left: 60px;
    padding-right: 60px;
}
.ftr_details {}
.ftr_details ul {}
.ftr_details ul li {
    color: #d3d3d3;
    font-size: 14px;
    position: relative;
    padding-left: 46px;
    margin-bottom: 20px;
    padding-bottom: 2px;
}
.ftr_details ul li b {

}
.ftr_details ul li a {
    color: #ffffff;
    transition: all 0.5s ease-in-out;
    -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;
}
.ftr_details ul li a:hover,
.ftr_details ul li a:active {
    text-decoration: none;
    color: #f05527;
}
.ftr_details ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 54px;
    height: 100%;
    background-size: 24px;
}
.ftr_details ul li:first-child:before {
    background: url(images/phone.png) no-repeat center center;
    background-size: 24px;
    background-position: left;
}
.ftr_details ul li:nth-child(2):before {
    background: url(images/mail.png) no-repeat center center;
    background-size: 24px;
    background-position: left;
}


.ftr_btm_wrap {
    background-color: #2b2b2b;
    padding: 10px 0;
    color: #fff;
}

.copyright{
    color: #b7b7b7;
    font-size: 14px;
}









/*===============
popups
===============*/
/*--big popup --*/
div#popup1 .modal-dialog.modal-lg {
    width: 80%;
    max-width: 1170px;
    top: 50%;
    /* left: 50%; */
    transform: translate(0, -50%);
    margin: 0 auto;
}
.big_popup_wrap {
    background-image: url(images/popup_form_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
    border: 0;
}
.popupleftbox {
    width: 50%;
    display: inline-block;
}
.telephone_hdn h1 {
    margin-top: 0 !important;
    background: #fe6100;
    color: #ffffff;
    font-size: 35px;
    padding: 17px 37px 13px;
    font-weight: 400;
    margin-bottom: 0px;
    line-height: 35px;
}
.telephone_hdn h2 {
    padding: 19px 37px;
    font-size: 32px;
    line-height: 35px;
    font-weight: 400;
    margin-bottom: 0px !important;
    margin-top: 0;
    color: #42464e;
}
ul.bnr_list {
    margin-bottom: 21px;
    padding: 19px 37px ;
    background: rgba(140, 140, 140, 0.34);
}
ul.bnr_list li {
    line-height: 19px;
    margin-bottom: 9px;
    color: #000000;
    padding-left: 22px;
    position: relative;
    background-image: url(images/checked.png);
    background-repeat: no-repeat;
    background-size: 13px;
    background-position: left 4px;
    display: inline-block;
    width: 49%;
}
.getaquote_hdn{
    margin-bottom: 30px;
}
.getaquote_hdn h2{
    /* background: #fe6100; */
    color: #f05526;
    font-size: 28px;
    /* padding: 17px 37px 13px; */
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
}
.getaquote_hdn p {
    text-align: center;
    color: #a9a8a8;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin: 0 0 15px;
}
.telephone_bnr_cntct {
    padding: 0px 37px;
}
.telephone_bnr_cntct form{}
.telephone_bnr_cntct form ul {
    font-size: 0;
    /* column-count: 2; */
    /* column-gap: 10px; */
    display: flex;
    flex-wrap: wrap;
}
.telephone_bnr_cntct form ul li{margin-bottom: 10px;display: inline-block;width: 48%;margin-right: 10px;vertical-align: top;}
.telephone_bnr_cntct form ul li:nth-child(2n){margin-right:0;}
.telephone_bnr_cntct .input-group {
    color: #9da0a3;
    background-color: #f7f8f9;
}
.telephone_bnr_cntct .input-group span.input-group-addon {
    background: #f05526;
    border: 0;
    color: #fff;
    width: 40px;
    text-align: center;
    line-height: 46px;
    position: absolute;
    left: 0;
    height: 100%;
    top: 0;
    font-size: 20px;
}
.telephone_bnr_cntct .input-group input,
.telephone_bnr_cntct .input-group textarea{
    background: transparent;
    border: 0;
    vertical-align: top;
    padding: 7px 12px;
    box-shadow: none;
    line-height: 46px;
    height: 46px;
    padding-left: 60px;
}
.telephone_bnr_cntct .input-group textarea{
    height: 120px;
    resize: none;
    width: 100%;
}
.telephone_bnr_cntct .input-group textarea:focus{
    outline: none;
}
.textareafield{
    vertical-align: top;
    padding-top: 5px;
}
.pop_submit {
    text-align: center;
    margin-bottom: 20px !important;
}
.telephone_bnr_cntct input[type="submit"] {
    display: inline-block;
    padding: 10px 55px;
    text-transform: uppercase;
    font-size: 21px;
    height: auto;
    border: 0;
    box-shadow: none;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #fff;
    width: initial;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    border-radius: 50px;
}
.telephone_bnr_cntct input[type="submit"]:hover,.telephone_bnr_cntct input[type="submit"]:focus{
    background-color: #f05526;
    border-color: #fff;
}
.big_popup_wrap button.close {
    color: #42464e;
    background-color: transparent;
    opacity: 1;
    text-shadow: none;
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: .65;
    padding: 0;
    font-style: normal;
    font-size: 28px;
}
.big_popup_wrap button.close:hover, .big_popup_wrap button.close:focus{
    color: #fff;
    outline: none;
}
.modal-backdrop {
    background-color: #000 !important;
    opacity: 0.8 !important;
}
/*--- small popup --*/
div#popup2 .modal-dialog.modal-xs,
div#popup3 .modal-dialog.modal-xs{
    max-width: 440px;
    top: 50%;
    transform: translate(0,-50%);
    margin: 0 auto;
}
.small_popup_wrap {
    /*    width: 440px;*/
    position: relative;
    margin: 0 auto;
    padding: 55px 40px 25px;
    border-radius: 10px;
    background-color: #0e1215;
}
.small_popup_wrap button.close {
    margin-top: -48px;
    margin-right: -26px;
    color: #ff0000;
    opacity: 1;
    font-size: 32px;
    text-shadow: none;
    text-align: right;
    outline: none;
}
.small_popup_wrap .telephone_bnr_txt{
    width: 99%;
    margin: 0 auto 26px;
    text-align: center;
    font-size: 19px;
    line-height: 26px;
}
.small_popup_wrap .telephone_bnr_cntct{
    padding: 0;
    margin-bottom: 0;
}
.chechbox{
    font-size: 12px;
    line-height: 20px;
    margin-top: 7px;
    display: inline-block;
}
.chechbox input[type=radio]{
    margin: 0 7px 0 0;
}
.small_popup_wrap .telephone_bnr_cntct form ul {
    column-count: 1;
    column-gap: 0;
    margin-bottom: 17px;
}
.small_popup_wrap .telephone_bnr_cntct form ul li{
                                                  width: 100%;
                                                  margin-right: 0;
                                                  border-radius: 6px;
                                                  overflow: hidden;
                                                  }
.small_popup_wrap .pop_submit{}
.small_popup_wrap .pop_submit input[type="submit"] {
    display: block;
    margin: 0 auto;
    float: none;
    width: 100%;
    font-size: 18px;
}


[type="radio"],
[type="radio"] {
    border: 0                      !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px                    !important;
    overflow: hidden               !important;
    padding: 0                     !important;
    position: absolute             !important;
    width: 1px                     !important;
    white-space: nowrap            !important;
}
[type="radio"]:focus + label::before,
[type="radio"]:focus + label::before {
    box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.4) !important;
}
[type="radio"]:hover + label::before,
[type="radio"]:hover + label::before {
    border-color: #000;
}
[type="radio"]:active + label::before,
[type="radio"]:active + label::before {
    transition-duration: 0;
}
[type="radio"] + label,
[type="radio"] + label {
    position: relative;
    padding: 6px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
[type="radio"] + label::before,
[type="radio"] + label::before {
    background-color: #fff;
    border: 1px solid #444;
    box-sizing: content-box;
    content: '';
    color: #444;
    margin-right: 6px;
    top: 50%;
    left: 0;
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}
[type="radio"] + label::after,
[type="radio"] + label::after {
    box-sizing: content-box;
    content: '';
    background-color: #444;
    position: absolute;
    top: 50%;
    left: 10px;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    transition: -webkit-transform 200ms ease-out;
    transition: transform 200ms ease-out;
    transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
}
[type="radio"][disabled] + label::before,
[type="radio"][disabled] + label::before {
    -webkit-animation: none;
    animation: none;
    box-shadow: none;
    border: 1px solid rgba(128, 128, 128, 0.5);
}
[type="radio"][disabled]:active + label::before, [type="radio"][disabled]:focus + label::before, [type="radio"][disabled]:hover + label::before,
[type="radio"][disabled]:active + label::before,
[type="radio"][disabled]:focus + label::before,
[type="radio"][disabled]:hover + label::before {
    border-color: rgba(128, 128, 128, 0.5);
    -webkit-filter: none;
    filter: none;
    transition: none;
}

[type="radio"] + label::before, [type="radio"] + label::after {
    border-radius: 0;
}
[type="radio"] + label::after {
    background-color: transparent;
    top: 50%;
    left: calc(6px + 1px + 24px/5);
    width: 12px;
    height: 4.8px;
    margin-top: calc(24px / -2 / 2 * 0.8);
    border-style: solid;
    border-color: #444;
    border-width: 0 0 3px 3px;
    border-radius: 0;
    -o-border-image: none;
    border-image: none;
    -webkit-transform: rotate(-45deg) scale(0);
    transform: rotate(-45deg) scale(0);
    transition: none;
}
[type="radio"]:checked + label::after {
    content: '';
    -webkit-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
    transition: -webkit-transform 200ms ease-out;
    transition: transform 200ms ease-out;
    transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
}

/*[type="radio"] + label::before, [type="radio"] + label::after {
  border-radius: 50%;
}
[type="radio"]:checked:active + label::before, [type="radio"]:checked:focus + label::before {
  -webkit-animation: none;
          animation: none;
  -webkit-filter: none;
          filter: none;
  transition: none;
}
[type="radio"]:checked + label::before {
  -webkit-animation: none;
          animation: none;
  background-color: #fff;
}
[type="radio"]:checked + label::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}*/

@-webkit-keyframes borderscale {
    50% {
        box-shadow: 0 0 0 2px #900;
    }
}

@keyframes borderscale {
    50% {
        box-shadow: 0 0 0 2px #900;
    }
}

/*---- validation----*/
.frm_era{
    color: red;
    font-size: 12px;
    line-height: 16px;
    margin: 7px 0 0 0;

}
.success, .pop_success{
    color: green;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid green;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
}
.app_error, .pop_error, .error{
    padding: 10px;
    margin-top: 20px;
    border: 1px solid red;
    text-align: center;
    font-weight: bold;
}

.success, #btndisable{
    display: none;
}
.error, .form_error, .form_error1, .form_valid_error1, .form_valid_error2, .form_error2, .form_error3, .form_error4,
.form_error5, .form_error6, .form_error7, .form_error8, .form_error9, .form_error10, .form_error11, .form_error12, .app_error, .pop_success, .pop_error{
    display: none;
}

.articles_banner{ background-image: url(images/slider_1.jpg); background-size: cover; background-repeat: no-repeat}
.article_mainarea{}
article_mainarea ul{}
.article_mainarea ul li{
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: inline-block;
    width: 48%;
    margin-right: 30px;
}
.article_mainarea ul li:nth-child(2n){
    margin-right: 0;
}
.article_content {}

span.article_title a {
    font-size: 18px;
    color: #f05526;
}




.sub_text {
    text-align: center;
    width: 83%;
    margin: 0 auto 40px;
}

.sub_text p {
    color: #ffff;
    margin-bottom: 0;
}

/*.modal-open .modal.modal-center {
  display: flex !important;
  align-items: center !important;
}
.modal-open .modal.modal-center .modal-dialog {
  flex-grow: 1;
      max-width: 480px;
}*/

.form_valid_error3{
    display: none;
}

/*----------------*/
.franchsreview_area .sub_content {
    width: 60%;
}
.spcl_wrap{}
.spcl_wrap ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.spcl_wrap ul li{
    width: 48%;
    margin-right: 30px;
    text-align: center;
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 7px;
    box-shadow: 3px 4px 6px rgb(0 0 0 / 10%);
}
.spcl_wrap ul li:last-child{
    margin-right: 0;
}
.spcl_testi_box{

}
.spcl_testi_box .imgbox{
    width: 140px;
    height: 140px;
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 21px;
    background: #2b2b2b;
}
.spcl_testi_box .imgbox img{
    height: 100%;
    object-fit: cover;
    width: 100%;
    object-position: top;
}
.testi_content{}

.client_details{
    font-size: 18px;
    line-height: 18px;
    color: #a3a3a3;
    text-transform: uppercase;
    margin-top: 18px;
    display: inline-block;
}
.client_details span{
    line-height: 18px;
}
.client_details span.clientname{
    color: #f05526;
    border-right: 1px solid #c6c6c6;
    padding-right: 10px;
    margin-right: 10px;
}
.client_details small {
    display: block;
    font-size: 12px;
    text-transform: capitalize;
    margin-top: 10px;
    color: #828181;
}
/*-------------------------------
sitemap
-----------------------*/
.sitemap_wrap{}
.sitemap_area{}
.sitemaplist{}
.sitemaplist ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.sitemaplist ul li{
    position: relative;
    width: 32%;
    margin: 0;
    padding: 10px  20px;
    border-bottom: 1px dashed #343434;
    margin-right: 20px;
    text-transform: capitalize;
    font-size: 14px;
}
.sitemaplist ul li:nth-child(3n) {
    margin-right: 0;
}
.sitemaplist ul li a{
    color: #717171;
}
.sitemaplist ul li a:hover, .sitemaplist ul li a:focus, .sitemaplist ul li a:active{
    color: #f05527;
}
.sitemaplist ul li:before{
    content: "";
    width: 5px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #f05527;
    margin: auto;
}
.sitemaplist ul li ul{
    margin-left: 20px;
}
.sitemaplist ul li ul li{
}
.otherpages_list {
    margin-top: 30px;
}

.otherpages_list ul {}

.otherpages_list ul li {
    width: 23.7%;
}
.otherpages_list ul li:nth-child(3n){
    margin-right: 20px;
}
.otherpages_list ul li:nth-child(4n){
    margin-right: 0;
}
.letter_hd {
    margin-top: 27px;
    font-size: 26px;
    line-height: 50px;
    /* background: #2b2b2b; */
    text-align: center;
    margin-bottom: 12px;
    background: #f05527;
    display: inline-block;
    width: 50px;
    height: 50px;
}


/* COOKIE POPUP STYLES */

.cookie-popup {

    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: fixed;
    bottom: -6.25rem;
    left: 1.25rem;
    right: 1.25rem;
    padding: 0.625rem 0.9375rem;
    box-shadow: 0 0 0.625rem 0 rgba(0,0,0, .15);
    line-height: 28px;
    transition: opacity .5s;
    opacity: 0.9;
    padding: 30px 20px;
}
.cookie-popup--short {
    right: none;
    width: 475px;
}
.cookie-popup--dark {
    background: #000;
    color: #c0c0c0;
}
.cookie-popup--not-accepted {
    opacity: 0.9;
    animation: cookie-popup-in .5s ease forwards;
    z-index:9999;
}
.cookie-popup--accepted {
    opacity: 0;
    display: none;
}
.cookie-popup a {
    color: #ff6000;
}
.cookie-popup a:visited {
    color: skyblue;
    text-decoration: none;
}
.cookie-popup-actions {
    flex: 1;
    text-align: center;
}
.cookie-popup-actions button {
    background: transparent;
    border: 2px solid #ff6000;
    color: #ff6000;
    display: inline-block;
    padding: 0 45px;
    font-size: 16px;
    line-height: 46px;
    text-transform: uppercase;
    border-radius: 63px;
    margin-top: 20px;

}
.cookie-popup-actions button:hover {
    text-decoration: none;
    background: #ff6000;
    color:#ffffff;
    transition: 0.5s;
}

@keyframes cookie-popup-in {
    from { bottom: -6.25rem; }
    to { bottom: 1.25rem; }
}

/*=============
custom responsive
===============*/
@media screen and (max-width: 1920px) and (min-width: 1601px) {


}
@media screen and (max-width: 1600px) {

}

@media screen and (max-width: 1440px) {
    .heading h2, .heading_center h2 ,.hm_pasev_area .heading_center h2{
        /*        font-size: 36px;
                line-height: 40px;*/
    }
    .container_max {
        width: 90%;
    }

}
@media screen and (max-width: 1368px) {
    .heading h2, .heading_center h2 {
        font-size: 30px;
        line-height: 35px;
    }
}
@media screen and (max-width: 1366px) {
    .hm_pasev_area{
        font-size: 30px;
        line-height: 35px;
    }


}
@media screen and (max-width: 1280px) {
    .heading h2, .heading_center h2 {
        font-size: 28px;
        line-height: 33px;
    }
    .hm_pasev_area{
        font-size: 28px;
        line-height: 33px;
    }
    .bnr_small_img {
        right: -15%;
    }
}
@media screen and (max-width: 1200px) {

    .fluid_padd {
        padding: 0 5%;
    }
    /*.container {
        width: 90% !important;
    }*/
    .heading h2, .heading_center h2, .hm_pasev_area .heading_center h2 {
        font-size: 32px;
        line-height: 38px;
    }

}
@media screen and (max-width: 1199px) {
    .heading h2, .heading_center h2 {
        font-size: 24px;
        line-height: 32px;
    }
    .ftr_btm_left {
        width: 100%;
        margin-top: 15px;
    }
    .bnr_txtbox.hmbnr_textwrap {
        width: 100%;
        transform: skew(0deg);
        margin: 0;
        text-align: center;
    }
    .hmbnr_textarea {
        transform: skew(0deg);
        text-align: center;
        padding: 50px;
        width: 90%;
        margin: 0 auto;
    }
    .hmbnr_textwrap:before {
        transform: skew(0deg);
        right: 0;
        top: 0;
        bottom: -7px;
        width: 100%;
    }
    .hmbnr_textarea h1 {
        font-size: 30px;
        line-height: 35px;
    }
    .hmbnr_textarea p {
        padding-left: 0;
    }
    .bnr_slider .slick-prev {
        left: 45.5%;
        right: inherit;
    }
    .bnr_slider .slick-next {
        right: 45.5%;
    }
}
@media screen and (max-width: 1080px) {

    .heading h6, .heading_center h6, .hm_pasev_area .heading_center h6 {
        font-size: 16px;
        line-height: 20px;
    }

    .heading, .heading_center {
        position: relative;
        margin-bottom: 20px;
    }
    .padd_tb {
        padding: 94px 0;
    }
    h2 , h3, h4 {
        margin-top: 0px;
    }


}
@media screen and (max-width: 1024px) {
    .heading h2, .heading_center h2 , .hm_pasev_area .heading_center h2{
        font-size: 24px;
        line-height: 30px;
    }
    .heading, .heading_center {
        position: relative;
        margin-bottom: 13px;
    }
    .secpanel p {
        font-size: 14px;
        line-height: 22px;
    }
    .btn_grp a {
        padding: 10px 25px;
        font-size: 14px;
        line-height: 16px;
    }


}
@media screen and (max-width: 991px) {
    .container {
        width: 90% !important;
            max-width: 100%;
    }
    .main_btn a {
        padding: 0px 38px;
        font-size: 15px;
        line-height: 40px;
    }
    .dstp_mainmenu nav ul.nav_list li {
        padding: 0 10px;
    }
    .dstp_mainmenu nav ul.nav_list li:before {
        left: -4px;
    }
    .padd_tb {
        padding: 60px 0;
    }
    /*    #mobilemenuwrap{display: none;}*/
    #mobilemenuwrap{display: block;}
    .m_menu_logoarea img {
        width: 140px;
    }
    .m_menu_logoarea {
        padding: 15px 20px;
        background: #000;
        width: 100%;
    }
    .m_menu_logoarea a {

        width: 190px;
        /* height: 60px; */
        display: block;
        background-size: 100%;
        background-repeat: no-repeat;
    }
    .mainmobilemeu{}
    .mainmobilemeu ul.hdr_contact {
        display: block;
        padding: 0 20px;
        background: #292929;
    }
    .mainmobilemeu ul.hdr_contact li {
        padding: 9px 0;
        background-image: url(https://www.theskycam.co.uk/images/call_icon.png);
        padding-left: 25px;
        background-repeat: no-repeat;
        background-size: 20px;
    }
    .mainmobilemeu ul.hdr_contact li a {
        color: #fff;
        padding: 0;
        font-size: 15px!important;
        line-height: 25px!important;
    }
    .mobilemenu_btn {
        display: none;
    }
    .mobilemenu_btn {
        position: fixed;
        top: 56px;
        left: 0;
        color: #fff;
        font-size: 36px;
        line-height: 70px;
        font-weight: bolder;
        padding: 0;
        cursor: pointer;
        z-index: 200;
        width: 70px;
        height: 70px;
        text-align: right;
        /* background: #050607; */
    }
    .mobilemenu_btn.active{
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 26px;
        padding-top: 0;
        z-index: 99999;
        right: 29px !important;
        color: #ea5555;
        position: fixed;
        top: 20px;
    }
    .mobilemenu {
        background: #0a0d0f;
        width: 300px;
        left: -100%;
        top: 0;
        overflow: auto;
        position: fixed;
        height: 100%;
        z-index: 9999;
        padding-top: 0;
        overflow-x: hidden;
        /*        overflow-y: hidden;*/
    }
    .mobilemenu .mobilemeu_area{    }
    .mobilemenu .mobilemeu_area ul{        padding:0;        margin:0;        list-style:none;    }
    .mobilemenu .mobilemeu_area ul li {        border-bottom: 1px solid rgba(255, 254, 254, 0.09); position: relative;   }
    .mobilemenu .mobilemeu_area ul li a {        text-decoration: none;        display: block;        color: #fff;
                                                 padding: 10px 20px;        transition: all 0.1s linear; position: relative;   }
    .mobilemenu .mobilemeu_area ul li.mobileactive {            background: #f05526;   }
    .mobilemenu .mobilemeu_area ul li.mobileactive a {        color: #fff;    }
    .mobilemenu .mobilemeu_area ul li a:hover{        background:#0a0d0f;        color:#fff;      }
    .sub_menu {
        background: #171717;
        /* display: none; */
        height: 0px;
        overflow-y: scroll;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .mobilemenu .mobilemeu_area ul li .sub_menu ul {        background: #2a2a2a;  /*    display: none;  height: 0px;*/     overflow-y: hidden;
                                                            -webkit-transition: all 1s ease-in-out;
                                                            transition: all 1s ease-in-out;
    }
    .mobilemenu .mobilemeu_area ul li ul li{        display: block;        text-align: left;        padding-left: 0;    }
    .mobilemenu .mobilemeu_area ul li ul li:last-child {    border: 0;}
    .mobilemenu .mobilemeu_area ul li ul li a {    padding-left: 16px;}
    .mobilemenu ul.nav_menu li.mainactive a:after{        display: none;    }
    span.open_child_menu {
        position: absolute;
        width: 48px;
        height: 48px;
        /* background: #fff; */
        right: 0;
        top: 0;
        margin: auto;
        z-index: 9999;
        background-image: url(images/arrow_white.png);
        background-size: 14px;
        transform: rotate(270deg);
        background-repeat: no-repeat;
        background-position: center;
    }
    .mobilemenu .mobilemeu_area ul li ul.sub_menu.someClass {
        display: block;
    }

    .padd_tb{
        padding: 60px 0;
    }
    .padd_t{
        padding-top: 60px;
    }
    .padd_b{
        padding-bottom: 60px;
    }
    .nopadd_left, .nopadd_right {
        padding: 0 !important;
    }
    .logoarea {
        margin: 0;
    }
    .dstp_mainmenu nav ul.nav_list > li > a {
        line-height: 78px;
        font-size: 14px;
    }

    .hdr_top_left_box p, .hdr_top_right_box p {
        font-size: 14px;
    }
    .hdr_top_right_box .hdr_right_area {
        font-size: 14px;
    }
    .hdr_top_right_box .hdr_right_area ul li {
        font-size: 14px!important;
        line-height: 19px!important;
    }
    .inrbnr_hd h1 {
        font-size: 30px;
        line-height: 36px;
        margin: 0 0 0;
    }
    .inrbnr_hd {
        padding: 0;
        background: transparent;
        border: 0;
        text-align: left;
        width: 100%;
    }
    .serv_contwrap {
        padding-bottom: 0;
        display: none;
    }
    ul.hdr_contact li a {
        font-size: 14px;
    }
    .mainbanner_img {
        position: relative;
    }
    .bnr_txtbox{
        padding: 0;
    }
    .hmbnr_textarea {
        padding: 0;
        width: 100%;
        border: 0;
        background: transparent;
        border: 0;
        text-align: left;
        padding: 50px 5% 100px;
        background: #0f0f0f;
    }
    .hmbnr_textarea h1 {
        font-size: 30px;
        line-height: 37px;
        margin-bottom: 16px;
    }
    .hmbnr_textarea p {
        font-size: 18px;
        line-height: 26px;
        width: 100%;
        padding: 0;
    }
.sub_content {
    width: 100%;
    margin: 0;
    text-align: left;
}
.sub_content p {
    text-align: left;
    margin-bottom: 10px;
}
    .footer_box {
        width: 100%;
        margin-bottom: 0;
    }
    .ftr_quicklink {
        padding: 50px 0;
    }
    .bnr_slider .slick-arrow {
        bottom: 79px;}

    ul.hdr_contact li {
        padding-left: 18px;
    }

    .inrbnr_hd h2 {
        font-size: 20px;
    }
    .bnr_txtbox.innerbnr_contwrap {
        padding: 0;
        text-align: left;
        background: transparent;
    }
    .bnr_small_img {
        display: none;
    }
    .dstp_mainmenu nav ul.nav_list li:hover ul.sub_menu {
        opacity: 1;
        visibility: visible;
        height: auto;
    }

.ftr_quicklink {
    padding:0px 0 40px;
    width: 50%;
}
.footer_box h4 {
    font-size: 20px;
    line-height: 30px;
}
.ftr_col3 {
    padding: 30px;
}
.ftr_details ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.ftr_details ul li {
    margin-right: 40px;
    margin-bottom: 0;
}

.ftr_top_wrap {
    padding: 60px 0;
}

  .home_hdn h2 {
        font-size: 26px;
        line-height: 41px;
    }

.heading h3, .heading_center h3 {
    font-size: 26px;
    line-height: 30px;
}

.innerbnr_contarea h2 {
    font-size: 20px;
    line-height: 25px;
}

}
@media screen and (max-width: 960px) {

}
@media screen and (max-width: 900px) {

}
@media screen and (max-width: 812px) {
    .scl_icon ul li a {
        width: 30px;
        height: 30px;
        font-size: 17px;
        line-height: 20px;
    }
    .hdr_top_right_box .hdr_right_area ul li,
    ul.hdr_contact li a{
        font-size: 12px!important;
        line-height: 19px!important;
    }
    .hdr_top_left_box p, .hdr_top_right_box p {
        font-size: 12px;
    }
    /*    .dstp_mainmenu nav ul.nav_list li {
        padding: 0 6px;
    }*/
}
@media screen and (max-width: 768px) {
    .heading {
        text-align: left;
        width: 100%;
    }
    .heading_center {
        text-align: center;
        flex-wrap: wrap;
    }
    .container {
        width: 90%;
    }
}
@media screen and (max-width: 767px) {

    .padd_tb {
        padding: 40px 0;
    }
    .padd_t{
        padding-top: 40px;
    }
    .padd_b{
        padding-bottom:40px;
    }
    .dstp_mainmenu {
        display: none;
    }
    .inrbnr_hd {
        padding: 16px 0;
        border: 0;
        background: transparent;
        text-align: left;
        width: 100%;
    }
    .main_bannerwrap .bnr_txtbox {
        padding-bottom: 0;
        background: rgb(0 0 0 / 71%);
        text-align: left;
    }
    .mobilemenu_btn {
        display: block;
        /* top: 48px; */
        color: #ffffff;
    }
    .logoarea {
        width: 210px;
    }
    .hdr_top_area {
        text-align: center;
    }
    .hdr_top_right_box .hdr_right_area {
        justify-content: flex-end;
    }
    .hdr_bottom_area {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hdr_top_left_box {
        /* width: 100%; */
        /* margin-bottom: 0; */
        text-align: left;
    }
    .hmbnr_textarea h1 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 12px;
    }
    .hdr_top_right_box {
        /* display: none; */
    }
    ul.hdr_contact li {
        padding-left: 0;
    }
    .main_bannerwrap {
        margin-top: 0;
    }
    .bnr_txtbox, .hmbnr_textarea {
        text-align: left;
    }
    .bnr_slider .slick-arrow {
        bottom: 130px;
    }
    .bnr_slider .slick-next {
        right: 6.5%;
    }
    .bnr_slider .slick-prev {
        left: 82.5%;
        right: inherit;
    }
    .bnr_txtbox.innerbnr_contwrap {
        padding: 0 0 0;
        text-align: left;
        background: transparent;
    }
    .hmbnr_textarea {
        padding: 40px 5% 115px;
    }
    .hmbnr_textarea.innerbnr_contarea {
    padding: 40px 5% 90px;
}
    ul.hdr_contact {
    display: none;
}
  .mobilemenu_btn.stickymenu {
    top: 0;
}
 .sticky .logoarea a {
    width: 100%;
}
 .sticky .logoarea {
    width: 150px;
}

.main_btn a {
    padding: 0px 20px;
}
.home_hdn h2 {
    font-size: 22px;
    line-height: 42px;
}
.equi_btn a {
    /* width: 29%; */
    width: 48%;
}
.heading h3, .heading_center h3 {
    font-size: 24px;
    line-height: 28px;
}
}
@media screen and (max-width: 736px) {
    .heading h6, .heading_center h6, .hm_pasev_area .heading_center h6 {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 6px;
    }
    .heading h2, .heading_center h2, .hm_pasev_area .heading_center h2 {
        font-size: 20px;
        line-height: 25px;
    }

    .logoarea {
        padding: 7px 0px;
    }
.ftr_details ul {
    display: block;
}
.ftr_details ul li {
    margin-right: 0;
    margin-bottom: 15px;
}
}
@media screen and (max-width: 667px) {
 .home_hdn {
    width: 70%;
    text-align: center;
    margin: -65px auto 0;
  }

}
@media screen and (max-width: 640px) {
    .inrbnr_hd h1 {
        font-size: 24px;
    }

}
@media screen and (max-width: 568px) {
    .heading h2, .heading_center h2 {
        font-size: 21px;
        line-height: 30px;
        text-align: left;
    }

    .mobilemenu_btn {
        /* top: 47px; */
    }
    .stickymenu{
        top:25px;
        -webkit-animation: slide-down 0.7s;
        -moz-animation: slide-down 0.7s;
        animation: slide-down 0.7s;
    }


}
@media screen and (max-width: 543px) {
    br {
        display: none;
    }
.main_btn a {
    padding: 0px 20px;
    font-size: 14px;
    line-height: 48px;
    width: 100%;
    text-align: center;
}
.main_bannerwrap .bnr_txtbox .bnr_btn a:first-child{
    margin-right: 0;
    margin-bottom: 15px;
}
.home_hdn h2 {
    font-size: 24px;
    line-height: 30px;
    padding:30px 20px 10px;
}
.home_hdn:before {
    width: 40px;
    height: 14px;
}
.equi_btn a {
    /* width: 29%; */
    width: 100%;
}
.equi_btn a:first-child {
    margin-bottom: 15px;
    margin-right: 0;

}








}
@media screen and (max-width: 480px) {
    .logoarea {
        width: 150px;
    }
    .hdr_top_area {
        padding-left: 0;
    }
    .hdr_top_left_box p, .hdr_top_right_box p {
        font-size: 13px;
        line-height: 16px;
        text-align: left;
    }
.hdr_top_right_box {
    width: 40%;
    text-align: right;
}

.hdr_top_left_box {
    width: 60%;
}
.mobilemenu_btn {
    top: 45px;
    width: 57px;
}
    .hmbnr_textarea p {
        font-size: 15px;
        line-height: 21px;
        width: 100%;
    }
    .hmbnr_textarea h1 {
        margin-top: 0;
    }

  .cookie-popup--short {
    width: 90%;
}
}
@media screen and (max-width: 420px) {
.hdr_top_left_box {
    width: 75%;
}
  .hdr_top_right_box {
    width: 25%;
  }
.home_hdn h2 {
   font-size: 20px;
    line-height: 30px;
    padding: 26px 20px 5px;
}
.home_hdn h2:before, .home_hdn h2:after {
    width: 35px;
    height: 61px;
}
  .home_hdn {
    margin: -61px auto 0;
}
.ftr_top_wrap {
    padding: 40px 0;
}
.ftr_quicklink {
    padding: 0px 0 20px;
    width: 100%;
     border-bottom: 1px solid #2b2b2b;
    margin-bottom: 20px;
}
.ftr_quicklink ul li a {
    padding: 4px 0 4px 18px;
}

.ftr_col3 {
    padding: 0;
    background: transparent;
}


}
@media screen and (max-width: 375px) {




}
@media screen and (max-width: 360px) {
    .hdr_top_left_box {
        margin-bottom: 0;
    }

}
@media screen and (max-width: 320px) {
    .mobilemenu_btn {
        top: 85px;
    }
}
