@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500;700;900&amp;display=swap');

@font-face {

    font-family: 'Quicksand-reg';

    src: url(fonts/Quicksand-Regular.ttf);

}

@font-face {

    font-family: 'Quicksand-light';

    src: url(fonts/Quicksand-Light.ttf);

}

@font-face {

    font-family: 'Quicksand-med';

    src: url(fonts/Quicksand-Medium.ttf);

}

@font-face {

    font-family: 'Quicksand-semi';

    src: url(fonts/Quicksand-SemiBold.ttf);

}

@font-face {

    font-family: 'Quicksand-bold';

    src: url(fonts/Quicksand-Bold.ttf);

}

:root,:before,:after,*{

    box-sizing: border-box;

}

html,body{

    font-size: 16px;

    margin:0px;

    padding: 0px;

    min-height: 100vh;

    overflow-x: hidden;

    position: relative;

    font-family: 'Quicksand-med', sans-serif;

    --primary : rgb(215,12,12);

    --dark: rgb(21,23,26);

    --light: rgba(255,255,255,1);

    --secondary: rgb(54, 54, 54);

    --secondary1: rgba(54, 54, 54,.1);

    --secondary2: rgba(54, 54, 54,.2);

    --secondary3: rgba(54, 54, 54,.3);

    --secondary7: rgba(54, 54, 54,.7);

    --secondary8: rgba(54, 54, 54,.8);

    --secondary9: rgba(54, 54, 54,.9);

    /* --secondary: rgb(13,23,46); */

    --yellow: rgb(255,150,0);

    --yellow1: rgba(255,150,0,.1);

    --yellow2: rgba(255,150,0,.2);

    --yellow3: rgba(255,150,0,.3);

    --yellow7: rgba(255,150,0,.7);

    --yellow8: rgba(255,150,0,.8);

    --yellow9: rgba(255,150,0,.9);

    --white: rgb(255,255,255);

    --white1: rgba(255,255,255,.1);

    --white2: rgba(255,255,255,.2);

    --white3: rgba(255,255,255,.3);

    --white8: rgba(255,255,255,.8);

    --white9: rgba(255,255,255,.9);

    --white7: rgba(255,255,255,.7);

    /* --skin: rgba(244,242,243,1); */

    --skin: rgba(255,255,255,1);

}



/* Bootstrap Overrides Containers and Typography */

.container{

    max-width: 100%;

}

.container-max{

    width: 100% !important;

    max-width: 1920px !important;

    margin:auto;

    padding: 0px 15px;

}

.container-min{

    max-width: 60rem;

    margin:auto;

    padding: 0px 15px;

}



p{

    margin-bottom: 1rem;

}

p:last-child{

    margin-bottom: 0px;

}

ul:last-child{

    margin-bottom: 0px;

}



a{

    text-decoration: none;

    transition: .4s all;

}

a:hover{

    text-decoration: none;

}

.py-6{

    padding: 3rem 0px;

}

.py-7{

    padding: 4rem 0px;

}



.reg{

    font-family: 'Quicksand-reg', sans-serif;

}

.med{

    font-family: 'Quicksand-med', sans-serif;

}

.semi{

    font-family: 'Quicksand-semi', sans-serif;

}

.bold{

    font-family: 'Quicksand-bold', sans-serif;

}





button{

    background: transparent;

    outline: none;

}

button:focus{

    outline: none;

    box-shadow: none;

}



.heading1{

    font-size: 3rem;

}

.heading2{

    font-size: 2.5rem;

}

.heading3{

    font-size: 2.0rem;

}

.heading4{

    font-size: 1.6rem;

}

.heading5{

    font-size: 1.2rem;

}

.heading6{

    font-size: 1rem;

}

    

/* Bootstrap Overrides End */



body.menubar-on, body.modal-open{

    width: 100vw;

    height: 100vh;

    overflow: hidden;

}



.page-wrapper{

    display: flex;

    flex-direction: column;

    background: var(--skin);

    position: relative;

    z-index: 1;

    height: 100%;

}





/* Buttons Css End */



.btn, button, .btn-none{

    background: transparent;

    transition: .3s all;

}

.btn:focus, button:focus, .btn-none{

    outline: none;

    box-shadow: none;

}

.btn{

    padding: .5rem 1rem;

    min-width: 9rem;

    text-align: center;

    border-width: 0rem;

    border-style: solid;

    font-size: .85rem;

    text-transform: uppercase;

    border-radius: 0px;

}

.btn-sm{

    padding: .35rem .8rem;

    font-size: .8rem;

    min-width: 3rem;

}

.btn-form-item{

    padding: .7rem 1rem;

    width:100%;

    font-size: 1rem;

}

.btn-none{

    width:auto;

    min-width: auto;

    padding: .5rem .8rem;

}

.btn-basic{

    color: #fff;

    background-image: linear-gradient(to right, var(--primary)50%, var(--secondary)50%);

    background-size: 200%;

    background-position: right;

}

.btn-basic:hover{

    color: #fff;

    background-position: left;

}

.btn-white{

    color: var(--white8);

    background-image: linear-gradient(to right, #ff3c4650%, rgba(255,255,255,.1)50%);

    border: 1px solid var(--white7);

    background-size: 200%;

    background-position: right;

}

.btn-white:hover{

    color: #fff;

    background-position: left;

}

.btn-play{

    width: 4rem;

    height: 4rem;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    min-width: auto;

    font-size: 1.3rem;

    line-height: 1;

}

.btn-play i{

    margin-top: 3px;

    margin-left:3px;

}

.btn-play.btn-play-yellow{

    background: #ff3c46;

    color: var(--white)

}

.btn-play.btn-play-yellow:hover{

    background: #ff3c46;

    color: var(--white)

}

.btn-close{

    border: none;

    font-size: 2rem;

    padding: 0px;

    line-height: 1;

    cursor: pointer;

}



/* Buttons Css End */



.header_wrapper{

    position: relative;

    z-index: 100;

}



.bg-yellow-2{

    background: #dbecff

}

.bg-yellow-1{

    background: #dbecff

}
.btn i{
    color:#fff !important;
}
.bg-secondary{
    background: var(--secondary) !important;
}
.bg-light-gray{
    background: #e0e0e0;
}

.bg-light-gray .border_box_heading{
    background: #e0e0e0;
}
.top-header{
        background: rgba(215, 12, 12, .03);
    padding: 9px 0px;
    padding-bottom: 9px;
}
.top-header .top-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-header .topLogo{
    max-width: 187px;
    margin-top: -8px;
}
.top_inner_middle{
    display: flex;
    align-items: center;
    max-width: 600px;
    width: 50%;
}
.top_inner_middle .btn{
    min-width: 2rem;
    color: var(--dark);
    border: 1px solid #e0e0e0;
    background: #ea1b24;

}

.top_inner_middle_content:first-child{

    margin-right: 2rem

}

.top_inner_middle p{

    font-size: .85rem;

    line-height: 1.4;

    font-family: 'Quicksand-med', sans-serif;

    color: var(--white);

}



.header_top_btn{

    display: flex;

    justify-content: space-between;

    white-space: nowrap;

    align-items: center;

    padding: 8px 20px;

    padding-left:10px;

    background: #ed2731;

    position: relative;

    color: #fff

}

.header_top_btn .icon{

    width: 35px;

    min-width: 35px;

    height: 35px;

    padding: 8px;

    border: 1px solid var(--primary);

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-right: 10px;

    filter: brightness(0) invert(1);

}

.header_top_btn p{

    font-size: 1rem;

    line-height: 1;

}

.header_top_btn p span{

    font-size: .75rem;

    line-height: 1.4;

}



.header_top_btn:before{

    content:'';

    position: absolute;

    right:100%;

    top:0;

    height: 100%;

    border-top: 2.5rem solid #ed2731;

    border-left: 1.8rem solid transparent;

    transition: .4s all;

}

.header_top_btn.with_icon:before{

    border-top: 3.2rem solid var(--white2);

}

.header_top_btn:hover{

    background: #ff3c46;

    color: #fff

}

.header_top_btn:hover:before{

    border-top-color: #ff3c46

}



.header{

    filter: drop-shadow(0px 0px 5px rgba(0,0,0,.25));

    position: absolute;

    top:7.5rem;

    transform: translateY(-2.4rem);

    left:0;

    right:0;

    transition: .4s all;

}

.header.after{

    position: fixed;

    top:7.5rem;

    left:0;

    width:100%;

    background: #fff;

    transform: translateY(-7.5rem);

}

.header.after .head_top_toggler{

    display: none;

}

.header_inner {

    display: flex;

    justify-content: space-between;

    background: #fff;

    align-items: center;

    border-radius: 4px;

}

.header_inner .header_inner_logo{

    padding: .5rem .5rem;

    max-width: 12rem;

    display: none;

}

.header.after .header_inner_logo{

    display: block;

}

.header.after .header_top_btn:after{

    content:'';

    opacity: 0;

    position: absolute;

    left:100%;

    top: 0px;

    bottom:0px;

    background: #dbecff;

    width: 50rem;

    transition: .4s all;

}

.header.after .header_top_btn:after{

    opacity: 1;

}

.header.after .header_top_btn:hover:after{

    background: #ff3c46

}

.header.after .header_top_btn:hover{

    border-radius: 0px;

}





.btn.menubar-closer{

    min-width: 20px;

    display: none;

}

/* .menubar{

    padding-left: 1.3rem

} */

.menubar:after{

    content:'';

    display: block;

    clear: both;

}

.menu_item{

    float: left;

    padding: 0rem .9rem;

    transition: .4s all;

    box-sizing: border-box;

}

.menu_link{

    display: block;

    padding: 1.78rem 0rem;

    color: #232323;

    text-transform: uppercase;

    font-size: .95rem;

    font-family: 'Quicksand-semi', sans-serif;

    line-height: 1;

    position: relative;

}

/* .menu_link:after{

    position: absolute;

    content:'';

    left:0;

    bottom:0;

    width:100%;

    height: 2px;

    background: var(--secondary);

    transform: scaleX(0);

    transition: .4s all;

} */

.header.after .menu_item{

    padding: 0rem .5rem;

}

/* .menu_item:hover .menu_link{

    color: var(--secondary)

} */

.menu_item:hover .menu_link, .menu_link:hover{

    color: var(--secondary)

}



.has-submenu{

    position: relative;

}

.submenu{

    position: absolute;

    left:50%;

    top:100%;

    background: var(--white);

    filter: drop-shadow(2px 4px 3px rgba(0,0,0,.15));

    display: none;

    transform: translateX(-50%);

    border-top: 3px solid var(--secondary);

    box-sizing: border-box;

}

.submenu.level-2{

    left: 100%;

    top: 0;

    transform: translateX(0px);

    border-top: none;

    border-left: 3px solid var(--secondary)

}

.submenu ul{

    position: relative;

    padding: .5rem 0rem;

    box-sizing: border-box;

    background: var(--white);

    box-sizing: border-box;

}

.submenu ul:before{

    position: absolute;

    content:'';

    left: 50%;

    bottom:100%;

    border-bottom: 10px solid var(--secondary);

    border-left: 8px solid transparent;

    border-right: 8px solid transparent;

    transform: translateX(-50%);

    box-sizing: border-box;

}

.submenu.level-2 ul:before{

    left: auto;

    right: 100%;

    border-right: 10px solid var(--secondary);

    border-top: 8px solid transparent;

    border-bottom: 8px solid transparent;

    border-left: none;

    top: .8rem;

    transform: translateX(0%);

}

.submenu ul:after{

    position: absolute;

    content:'';

    left: 0%;

    top:100%;

    height: 1rem;

    background: var(--white);

    width:100%;

    clip-path: polygon(0% 0, 100% 0%, 100% 100%);

    box-sizing: border-box;

    transform: translateY(-.5px);

    box-sizing: border-box;

}

.submenu li{

    border-bottom: 1px solid var(--white1)

}

.submenu a{

    white-space: nowrap;

    display: block;

    padding: .6rem 1rem;

    color: var(--dark);

    font-family: 'Quicksand-med', sans-serif;

    font-size: .9rem;

}

.submenu a:hover{

    background: var(--secondary3);

    color: var(--dark)

}







.header_inner .header_top_btn{
    background: #dbecff;
    color: #000000;
    height: 100%;
    min-width: 9rem;
    padding: 6px 1.3rem;
    border-radius: 0px 4px 4px 0px;
}

.header_inner .header_top_btn p{
        font-size: 17px;
    line-height: 25px;
}

.header_inner .header_top_btn span{

    color: var(--primary);

    transition: .4s all;

}

.header_inner .header_top_btn:hover span{

    color: var(--white);

}

.header_inner .header_top_btn:before{

    border-top-color: #dbecff;

    border-top-width: 4.5rem;

}

.header_inner .header_top_btn .icon{

    filter: brightness(1) invert(0);

    transition: .4s all;

}

.header_inner .header_top_btn:hover .icon{

    filter: brightness(0) invert(1);

}

.header_inner .header_top_btn:hover{

    background: #ff3c46;

    color: #fff;

}

.header_inner .header_top_btn:hover:before{

    border-top-color: #ff3c46

}









/* Hero slider on home page */



.main_page_slider .swiper-slide{

    position: relative;

    background-size: cover;

    background-repeat: no-repeat;

    background-position: right center;

}

.main_page_slider .swiper-slide:before{
    content:'';
    position: absolute;
    left:0;
    top: 0;
    width:100%;
    height:100%;
    /* background: rgba(255,255,255,.45); */
    background: rgba(0,0,0,.35);
    z-index: 0;
}
.main_page_slider .slide_inner{
    position: relative;
    /* display: flex; */
    width:100%;
    margin:auto;
    z-index: 1;
    /* justify-content: flex-end;
    align-items: flex-end; */
}

.main_page_slider .image img{
    width:100%;
    max-height: 40rem;
    object-fit: cover;

}
.main_page_slider .slide_text{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1784px;
    background-image: linear-gradient(to right, rgba(255,255,255,.45)30%, rgba(255,255,255,0)70%);
    padding: 10px 1rem; 
}
.main_page_slider .slide_text .slide_title{
    font-size: 2.3rem;
    max-width: 35rem;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    margin-bottom: .5rem;
    white-space: nowrap;
    color: var(--white);
    /* filter: drop-shadow(2px 3px 1px rgba(0,0,0,.65)); */

}

.main_page_slider .slide_text .silde_desc{
    font-size:18px; 
    line-height:30px;
    text-transform: capitalize;
    font-family: 'Quicksand-semi', sans-serif;
    color: var(--dark);
    max-width:40rem;
    /* filter: drop-shadow(1px 1px 0px rgba(255,255,255,.65)); */

}

.main_page_slider .slide_text .slide_btns{
    margin-top: 2.5rem;
}

.main_page_slider .swiper-button-prev, .main_page_slider .swiper-button-next{
    background-color: var(--primary);
    background-size: 45%;
}

.main_page_slider .swiper-button-prev{
    left: 3%;
}
.main_page_slider .swiper-button-next{
    right: 3%;
}
.svg-bg{
    width:100%;
    position: absolute;
    left: 0;
    bottom:0;
    right:0;
    z-index: 0;
    filter: drop-shadow(0px -6px 4px rgba(0,0,0,.25));
    max-height: 70%;
}

.btn-swiper{
    min-width: 40px;
    border: 1px solid var(--red);
    min-height: 40px;
    font-size: 1.3rem;
    line-height: 1;
    color: var(--red);
    transition: .3s all;
}

.btn-swiper:hover, .btn-swiper:focus{
    background: var(--red);
    color: #fff;
}

.article{
    z-index: 0;
}
.article_heading{
    margin-bottom: 1rem;
}

.article_heading.heading-centered{

    text-align: center;

}

.arrow-down{

    position: relative;

}

.arrow-down:before{

    content:'';

    position: absolute;

    left: 50%;

    top:0;

    border-top-width: 2rem;

    border-top-style: solid;

    border-left-width: 2rem;

    border-left-style: solid;

    border-right-width: 2rem;

    border-right-style: solid;

    border-left-color: transparent;

    border-right-color: transparent;

    transform: translateX(-50%);

}

.arrow-down.arrow-white:before{

    border-top-color: var(--white);

}





.border_box{

    padding: 2rem;

    border-width: .7rem;

    border-style: solid;

}

.border_box_heading{

    padding: 1.5rem .5rem;

    width: calc(100% + 3.5rem);

}

.border_box_content-left .border_box_heading{

    margin-left: -3.5rem;

}

.border_box_content-right .border_box_heading{

    margin-right: -3.5rem;

}

.bg-secondary .border_box_heading{

    background: var(--secondary);

    color: var(--white);

}

.yellow_border_box{

    border-color: #ff3c46

}

.heading1.big{
    font-size: 26px;
    color: var(--dark);
    line-height: 36px;
}

.heading1.big span{

    margin-left: .5rem;

}



.section_heading{

    margin-bottom: 2rem;

    position: relative;

    padding-bottom: .5rem;

}

.section_heading:after{

    content:'';

    position: absolute;

    left:0rem;

    top:100%;

    height: 3px;

    width: 5rem;

    background: var(--primary)

}

.section_heading h2.heading{

    display: inline-block;

}

.section_heading.full_width_underline{

    width: auto;

    display: inline-block;

    margin-bottom: 2rem;

}

.section_heading.full_width_underline:after{

    width: 100%;

    background: var(--secondary3);

    height: 1px;

}





.service_box_type_2{

    margin: 20px 15px;

    padding: 2rem;

    background: #fff;

    position: relative;

}

.service_box_type_2 span.first, .service_box_type_2 span.second{

    position:absolute;

    left: -1rem;

    top: -1rem;

    display: block;

    background: #ff3c46;

}

.service_box_type_2 span.first{

    height: 1rem;

    width: 50%;

}

.service_box_type_2 span.second{

    height: 50%;

    width: 1rem;

}

.service_box_type_2 span.first:before,.service_box_type_2 span.second:before{

    content:'';

    position: absolute;

}

.service_box_type_2 span.first:before{

    top: 0px;

    border-left: 1rem solid #ff3c46;

    border-top: 1rem solid transparent;

    left: calc(100% - 1px);



}

.service_box_type_2 span.second:before{

    top:calc(100% - 1px);

    border-right: 1rem solid #ff3c46;

    border-bottom: 1rem solid transparent;

    left: 0px;



}

.service_box_type_2 p{

    font-size: .9rem;

    line-height: 1.4;

}

.service_box_heading{

    margin-bottom: 1.5rem;

}

.service_box_content p{
    line-height: 28px;
    font-family: 'Quicksand-med', sans-serif;

    color: var(--dark)

}

.service_box_type_2 .service_count{

    width: 4rem;

    height: 4rem;

    margin-left: auto;

    font-size: 3rem;

    font-family: 'Quicksand-bold', sans-serif;

    line-height: 1;

    position: relative;

    z-index: 1;

    display: flex;

    justify-content: center;

    align-items: center;

    border: 1px solid var(--yellow8)

}

.service_box_type_2 .service_count span{

    position: absolute;

    left:50%;

    top:50%;

    transform: translate(-50%, -50%);

    z-index: -1;

    width: 2.5rem;

    filter: brightness(0) invert(.8);

    line-height: 1;

}

.service_box_type_2 .service_count span img{

    line-height: 1;

}





.skewd_bg{

    position:relative;

    z-index: 1;

}

.skewd_bg:before{

    content:'';

    position: absolute;

    left: 30px;

    top:0;

    right: 30px;

    bottom: 0;

    transform: perspective(1000px) skewY(-3.5deg);

    transform-style: preserve-3d;

}

.skewd_bg_light_secondary:before{

    background: var(--secondary2)

}



.banner{

    background-size: cover;

    background-position: center;

    position: relative;

    background-repeat: no-repeat;

    box-sizing: border-box;

}

.banner:before{

    content:'';

    position: absolute;

    left:0;

    top: 0;

    width:100%;

    height:100%;

    background-image: linear-gradient(to right, rgba(255,255,255,1)25%, rgba(255,255,255,0)90%);

    z-index: 0;

    box-sizing: border-box;

}

.banner .container{

    position: relative;

}

.banner_inner{

    height: 35vh;

    min-height: 350px;

    max-height: 500px;

    z-index: 1;

    display: flex;

    align-items: flex-end;

    padding-bottom: 3rem;

    padding-top: 3rem;

}

.banner.no-image .banner_inner{

    height: auto;

    min-height: auto;

    padding-bottom: 1rem;

}

.banner_inner .banner_content{

    max-width: 35rem;

}

.banner_inner .banner_heading{

    font-family: 'Roboto', 'Quicksand-bold', sans-serif;

    font-weight: 900;

    margin-bottom: 1.5rem;

    font-size: 2.5rem;

    color: var(--primary);

    text-transform: uppercase;

    max-width:30rem;

}

.banner_inner .breadcrumb{

    background: transparent;

    padding: 0px;

}

.banner_inner .breadcrumb a,.banner_inner .breadcrumb li{

    color: var(--dark);

    font-size: .8rem;

}



.sidebar li a{

    font-size: .9rem;

    display: block;

    padding: .6rem 1rem;

    text-transform: uppercase;

    font-family: 'Quicksand-bold', sans-serif;

    color: var(--primary);

}

.sidebar li a:hover{

    color: var(--dark);

}

.sidebar li a.active:hover, .sidebar li a.active{

    background: var(--primary);

    color: var(--white)

} 
.prodThumb{
        padding-top: 19px;
    padding-bottom: 40px;
} 
.category_thumb{
    width: 100%; 
    height: 14rem;
    background: rgba(245, 245, 245);
    padding: 0px 4px;
    padding-top: 3px;
    position: relative;
    transition: .4s all;
    margin: auto;
    cursor: pointer;
}

.prodThumb .swiper-slide{
    border:1px solid #ea1b23;
    min-height: 16rem;

}

.prodThumb  .category_thumb.active{ 
    margin-top: -15px;
    background: rgba(250,250,250);
    filter: drop-shadow(2px 4px 7px rgba(0,0,0,.2));

}

.prodThumb  .category_thumb .image{

    padding-bottom: 20px;

}

.category_thumb img{ 
    padding-bottom: 30px; 
    margin:auto;
    display: block; 
    border-radius:10px;

}

.prodThumb  .category_thumb.active img{ 
}

.category_thumb .name{
        position: absolute;
    left: 0;
    bottom: -67px;
    width: 100%;
    background: rgba(245, 245, 245);
    padding: 8px 2px;
    text-align: center;
}

.category_thumb .name{

    color: #232323

}

.prodThumb  .category_thumb.active .name{

    background: rgba(250,250,250);

}

.category_thumb h5{
        font-size: 15px;
    margin-bottom: 0px;
}



.product_thumb{

    margin: 8px auto;

    width:100%;

    max-width: 22rem;

    position: relative;

    perspective: 1000;

}

.product_thumb .thumb_inner{

    position: relative;

    height: 100%;

    width:100%;

    transition: 0.8s all;

    transform-style: preserve-3d;

}

.product_thumb .thumb_back, .product_thumb .thumb_front{ 

    padding:8px; 

    background: rgba(250,250,250,1);

    border-radius: 5px;

}

.product_thumb .thumb_back{

    padding-top: 0px;

    border-radius: 0px 0px 5px 5px;

}

.category-wrapper .product_thumb{

    margin: 15px 8px;

}

.product_thumb:hover{

    filter: drop-shadow(0px 4px 8px rgba(0,0,0,.2));

}

.product_thumb_image{

    text-align: center;

}

.product_thumb_image img{ 

    object-fit: contain;

}

.product_thumb a{

    color: var(--dark);

}

.product_thumb_details{

    padding: 1.3rem 0px;

    text-align: center;

    border-top: 1px solid var(--secondary7);

    margin-top: 20px;

    padding-bottom: 0px;

}

.thumb_back .product_thumb_details{

    padding-top:0px;

    border-top: 0px;

    border-bottom: 1px solid var(--secondary7);

    margin-bottom: 15px;

    padding-bottom: 1rem;

}

.thumb_back p{

    font-size: .8rem;

    font-family: 'Quicksand-med', sans-serif;

    max-height: 3.5rem;

    overflow-y: hidden;

}

.features p{

    font-size: .75rem;

    padding-left: 15px;

    position: relative;

}

.features p:before{

    content:'';

    position: absolute;

    left:0px;

    top:3px;

    height: 12px;

    width: 12px;

    background-image: url('../images/icons/check-red.png');

    background-position: center;

    background-size: contain;

    background-repeat: no-repeat;

}

.thumb_back .product_thumb_details{

    display: none

}

.product_thumb_details h5{

    font-size: 1rem;

    text-transform: uppercase;

    margin-bottom: .4rem;

}

.product_thumb_details .product_name{

    font-size: .85rem;

    font-family: 'Quicksand-semi', sans-serif;

    color: #343434

}



.thumb_back .thumb_btns{

    margin-top: 1.2rem

}











.product_image .gallery-top{

    border: 1px solid var(--yellow3);

}

.product_image .gallery-top .btn-swiper{

    display: flex;

    justify-content: center;

    align-items: center;

    background: var(--yellow7);

    font-size: 1.3rem;

}

.product_image .gallery-top .btn-swiper-prev{

    left:0

}

.product_image .gallery-top .btn-swiper-next{

    right:0

}

.product_image .gallery-top .btn-swiper:hover{

    background: var(--yellow9);

    color: #fff;

}

.product_image .gallery-top img{

    width:100%;

    height: 25rem;

    object-fit: contain;

}

.product_image .gallery-thumb .swiper-slide img{

    border: 1px solid var(--yellow3);

    opacity: .7;

    transition: .4s all;

    height: 8rem;

    width:100%;

    object-fit: contain;

}

.product_image .gallery-thumb .swiper-slide.swiper-slide-thumb-active img{

    opacity: 1;

    border: 1px solid var(--yellow7);

}



.product-details h1.heading4{

    font-family: 'Quicksand-bold', sans-serif;

    font-weight: 700;

    font-size: 2rem;

    text-transform: uppercase;

    margin-bottom: 2rem;

}

.product-details h1.heading4 span{

    display: block;

    font-size: 1.2rem;

    margin-top: .7rem;

    font-family: 'Quicksand-semi', sans-serif;

}

.product-details p{

    font-size: .95rem;

}

.product-details ul li{

    position: relative;

    padding-left: 25px;

    margin: .5rem .8rem;

    font-size: .9rem;

    font-family: 'Quicksand-semi', sans-serif;

}

.product-details ul li:before{

    content:'';

    position: absolute;

    left:0;

    top: .15rem;

    width: 1.2rem;

    height: 1rem;

    background-image: url('../images/icons/check-red.png');

    background-size: contain;

    background-position: left ;

    background-repeat: no-repeat;

}

.product-details .btn-basic i{

    font-size: 1.2rem;

}



.details-wrapper .tab_container{

    max-width: 1000px;

    margin:auto;

}



.technicalSpecification th{

    font-family: 'Quicksand-bold', sans-serif;

    font-weight: normal;

}

.technicalSpecification th, .technicalSpecification td{

    padding: .3rem .5rem

}

.technicalSpecification th.heading{

    width: 15rem

}

.technicalSpecification .heading{

    color: var(--primary)

}

.technicalSpecification .table{

    background: transparent

}

.technicalSpecification .table th, .technicalSpecification .table td{

    font-size: .9rem;

    font-family: 'Quicksand-med', sans-serif;

}

.technicalSpecification .table th{

    font-family: 'Quicksand-semi', sans-serif;

}



.introduction_article_1 .section_heading{ 
    color: var(--dark)

}

.introduction_article_1 .section_heading:after{

    display: none;

}

.introduction_article_1 h5.heading{

    color: var(--dark)

}

.introduction_article_1 .section_text{

    padding: 0rem 3rem;

    color: var(--dark);

}

.introduction_article_1 .border_box{

    max-width: 22rem;

    margin-left: auto

}



.introduction_article_1 .btn-play{

    position: absolute;

    left: 4rem;

    top: 100%;

    transform: translateY(1rem);

}

.introduction_article_1 span.heading6{

    color: #ff3c46;

    font-family: 'Quicksand-med', sans-serif;

}



.about-company p{

    text-align: justify;

}



ul.custom li, .core-value ul li{

    margin-bottom: 1rem;

    padding-left: 2rem;

    position: relative;

}

ul.custom li:before, .core-value ul li:before{

    content:'';

    position: absolute;

    left: 0px;

    top: .7rem;

    height: 3px;

    width: 1rem;

    background: var(--primary);

}



.btn-swiper{

    min-width: 2rem;

}

.timeline-wrapper{

    padding: 0px 3rem;

    position: relative;

    margin-top: -3rem

}

.timeline-wrapper .btn.btn-swiper{

    position: absolute;

    width: 3rem;

    height: 100%;

    padding: 0px .5rem;

    border: 1px solid var(--secondary);

    background: var(--secondary);

    color: var(--white7);

    font-size: 1.6rem;

    line-height: 1.6rem;

    margin-top:0px;

}

.timeline-wrapper .btn-swiper-prev{

    left:0rem;

    top:0px;

}

.timeline-wrapper .btn-swiper-next{

    right:0rem;

    top:0px;

}

.timeline{

    background: var(--primary);

    padding: 0px 0px;

}

.timeline .swiper-slide{

    height: 3rem;

    cursor: pointer;

}

.timeline .swiper-slide span{

    display: flex;

    height: 100%;

    width:100%;

    justify-content: center;

    align-items: center;

    font-family: 'Quicksand-med', sans-serif;

    font-size: 1rem;

    color: var(--white7);

    position: relative;

    line-height: 1;

    transition: .4s all;

}

.timeline .swiper-slide span:before,.timeline .swiper-slide span:after{

    content:'';

    width: .4rem;

    height: .4rem;

    background: var(--white7);

    border-radius: 50%;

}

.timeline .swiper-slide span:before{

    margin-right: .5rem;

}

.timeline .swiper-slide span:after{

    margin-left: .5rem;

}

.timeline .swiper-slide.swiper-slide-thumb-active span{

    font-size: 1.2rem;

    color: var(--white);

}

.history-content{

    height: 80vh;

    max-height: 600px;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 4rem 3rem

}

.history-content.history-year{

    background: #dbecff;

}

.history-content.history-year .heading1{

    font-family: 'Roboto', 'Quicksand-bold', sans-serif;

    font-weight: 900;

    color: var(--primary);

    font-size: 4.5rem;

    line-height: 1;

    margin-bottom: 0px;

}

.history-content.history-event{

    flex-direction: column;

}

.history-content.history-event p{

    font-size: 1.1rem;

    width:100%;

}



.management{

    margin: 1rem .4rem;

}

.management .image{

    position: relative;

    overflow: hidden;

}

.management .image img{

    min-height: 280px;

    object-fit: cover;

    transition: .4s all;

}

.management:hover img{

    transform: scale(1.1);

}

.management .heading5, .management .small{

    text-align: center;

}

.management .heading5{

    font-size: 1rem;

}

.management .details{

    padding: .8rem 1rem;

    background: #fff;

    transition: .4s all;

}

.management:hover .details{

    transform: translateY(-30px);

}



.values{

    margin: 2rem 0px;

}

.values .values-heading, .core-values .heading, .business-values .heading{

    font-size: 1.7rem;

    font-family: 'Roboto','Quicksand-bold', sans-serif;

    font-weight: 700;

    text-transform: uppercase;

    padding-bottom: .5rem;

    margin-bottom: 1.5rem;

    display: inline-block;

    position: relative;

}

.core-values .heading h5, .business-values .heading h5{

    font-size: 1.7rem;

    font-family: 'Roboto','Quicksand-bold', sans-serif;

    font-weight: 700;

}

.core-values, .business-values{

    margin-top: 5rem

}

.values .values-heading:after, .core-values .heading:after, .business-values .heading:after{

    content:'';

    position: absolute;

    left:0;

    top:100%;

    width: 100%;

    height: 1px;

    background: var(--secondary3)

}



.core-values .heading, .business-values .heading{

    margin-bottom: 0px;

}

.core-value{

    margin: 2rem 0px;

}

.core-value h5{

    font-family: 'Quicksand-bold', sans-serif;

    margin-bottom: .7rem;

}



.global-reach .reach{

    margin: 3rem 0px;

}

.global-reach .reach:first-child{

    margin-top:0px;

}

.global-reach .reach:last-child{

    margin-bottom:0px;

}

.reach .region_image{

    float: right;

    clear: left;

    max-width: 18rem;

    position: relative;

}

.export_details{

    margin-top: 2rem

}

.export_details p{

    margin-bottom: 2rem;

}

.export_details p:last-child{

    margin-bottom: 0px;

}

.facilities .article_heading .heading2{

    display: inline-block;

    text-transform: uppercase;

    font-size: 2rem;

    font-family: 'Roboto', 'Quicksand-bold', sans-serif;

    font-weight: 700;

    margin-right: 2rem;

}

.facilities .article_heading .heading2 span{

    display: block;

    text-align: right;

    font-size: 3rem;

    font-weight: 900;

    color: var(--primary);

    margin-right: -2rem

}

.facilities p{

    text-align: justify;

}

.facility{

    margin: 3rem 0px;

}

.awards .facility{

    padding: 3.5rem 2rem;

    margin:0px;

}

.facility:last-child{

    margin-bottom: 0px;

}

.awards .facility:first{

    margin-top: 2rem !important

}

.facility_image{

    margin-bottom: 20px;

    display: block;

    cursor: -moz-zoom-in;

    cursor: zoom-in;

}

.facility_image img{

    width:100%;

    border-radius: 10px;

    height: 550px;

    object-fit: cover;

}

.facility ul.custom li{

    line-height: 1.3;

}

.award_image{

    float: right;

    clear: left;

    margin-left: 30px

}

.awards .facility:nth-child(odd) .award_image{

    float: left;

    clear: right;

    margin-right: 30px;

    margin-left:0px;

}

.award_image img{

    width: 220px;

    height: 10rem;

    object-fit: contain;

}

.awards .facility:nth-child(odd){

    background: #dbecff

}

.cmdMessage{

    background: #dbecff;

    border-radius: 1rem;

    position: relative;

    margin-top: 4rem;

    padding: 3rem 2rem;

    padding-top: 4rem

}

.cmdMessage .cmd_image{

    width: 10rem;

    height: 10rem;

    padding: .5rem;

    position: absolute;

    border-radius: 5px;

    background: rgb(255,234,204);

    top:0;

    left: 3rem;

    transform: translateY(-50%);

}

.cmdMessage .cmd_image img{

    border-radius: 0%;

}

.quote{

    font-size: 5rem;

    color: var(--secondary1);

    line-height: 1;

    margin-left: -1.5rem;

    margin-top: -2rem

}

.message{

    margin-top: -2rem

}

.message p{

    text-align: justify;

}

.message p:last-child{

    text-transform: uppercase;

    font-family: 'Quicksand-semi', sans-serif;

}

.messageBy p{

    color: var(--primary);

    font-family: 'Quicksand-semi', sans-serif;

}

.messageBy h5{

    display: inline-block;

    margin-bottom: 0px;

    text-align: center;

}

.messageBy h5 span{

    display: block;

    font-size: .8rem;

    margin-top: .3rem

}

.certificate{

    margin: 1.5rem 0px;

}

.certificate .image img{

    height: 17rem;

    max-width: 100%;

    object-fit: contain;

}

.certificate .image {

    text-align: center;

    margin-bottom: 20px;

    cursor: zoom-in;

}

.certificate .cert_name h5{

    font-size: .9rem;

    font-family: 'Quicksand-bold', sans-serif;

    text-align: center;

}

.certificate .cert_name p{

    font-size: .85rem;

    font-family: 'Quicksand-semi', sans-serif;

    text-align: center;

}

.btn_tab{

    border: 1px solid var(--primary);

    margin: .2rem 0px;

    border-radius: .3rem;

}

.btn_tab:hover{

    background: #dbecff;

}

.btn_tab.active{

    background: var(--primary);

    color: var(--white);

}



.tab_btn_wrapper{

    margin-bottom: 3rem;

}



.tab_content_wrapper{

    margin-left: -15px;

    margin-right:-15px;

}

.tab_content_wrapper.image_wrapper{

    margin-left: -5px;

    margin-right:-5px;

    justify-content: center;

}

.tab_content_wrapper.video_wrapper{

    margin-left: -8px;

    margin-right:-8px;

}

.tab_content_wrapper .tab_content{

    position: relative;

    width: 100%;

    min-height: 1px;

    padding-right: 15px;

    padding-left: 15px;

    margin: 15px 0px;

}

.details-wrapper .tab_content{

    display: none;

}

.details-wrapper .tab_content.show{

    display: block;

}

.tab_content_wrapper.image_wrapper  .tab_content{

    flex: 0 0 16%;

    max-width: 16%;

    padding-right: 5px;

    padding-left: 5px;

    margin: 5px 0px;

    transition: .4s;

}

.tab_content_wrapper.image_wrapper .image{

    display: block;

    width: 100%;

}

.tab_content_wrapper.image_wrapper img{

    display: block;

    width: 100%;

    object-fit: cover;

    height: 10rem;

    background: var(--secondary2);

}

.tab_content_wrapper.video_wrapper .tab_content{

    flex: 0 0 20%;

    max-width: 20%;

    padding-right: 8px;

    padding-left: 8px;

    margin: 8px 0px;

}

.tab_content_wrapper.pdf_wrapper .tab_content{

    flex: 0 0 25%;

    max-width: 25%;

    padding-right: 8px;

    padding-left: 8px;

    margin: 8px 0px;

}

.tab_content_wrapper.video_wrapper .img{

    width: 100%

}

.tab_content_wrapper.video_wrapper a{

    display: block;

    width: 100%;

    position: relative;

    cursor: pointer;

}

.tab_content_wrapper.video_wrapper i{

    position: absolute;

    left: 50%;

    top:50%;

    transform: translate(-50%, -50%);

    width: 3rem;

    height: 2rem;

    display: flex;

    justify-content: center;

    align-items: center;

    line-height: 1;

    background: var(--primary);

    color: var(--white);

    font-size: 1.5rem;

    border-radius: 7px;

}

.tab_content_wrapper.video_wrapper .image{

    position: relative;

}

.tab_content_wrapper.video_wrapper h5{

    font-size: 1rem;

    font-family: 'Quicksand-bold', sans-serif;

    margin-top: .5rem;

    margin-bottom: 0px;

}

.tab_content_wrapper.pdf_wrapper .tab_content a{

    display: flex;

    justify-content: flex-start;

    align-items: center;

    background: #dbecff;

    color: var(--dark);

    border-radius: 10px;

}

.tab_content_wrapper.pdf_wrapper .tab_content a:hover{

    background: var(--primary);

    color: var(--white);

}

.tab_content_wrapper.pdf_wrapper .tab_content a .icon{

    display: flex;

    width: 4rem;

    min-height: 3rem;

    padding: 10px 0px;

    height: 100%;

    justify-content: center;

    align-items: center;

    font-size: 1.5rem;

    border-right: 1px solid var(--white7)

}

.tab_content_wrapper.pdf_wrapper .tab_content h5{

    font-size: 1rem;

    margin: 0px;

    padding: 10px .7rem;

}



.dealer_thumb{

    background: var(--white);

    padding: 1rem;

    margin: 1rem 0px;

    border-radius: .7rem;

}

.dealer_thumb h5{

    font-size: 1rem;

}

.dealer_thumb p{

    position: relative;

    padding-left: 25px;

    margin-bottom: .4rem;

    font-size: .9rem;

    font-family: 'Quicksand-semi', sans-serif;

    color: var(--dark)

}

.dealer_thumb p:last-child{

    margin-bottom: 0px;

}

.dealer_thumb p i{

    position: absolute;

    left: 0;

    top: 0rem;

    transform: translateX(0%);

    font-size: 1rem;

    color: var(--primary)

}

.dealer_thumb p a{

    color: var(--dark)

}



p.concent{

    max-height: 40px;

    overflow-y: auto;

}



.company-address{

    margin: 1.6rem 0px;

}

.company-address h5{

    font-size: 1.05rem;

    margin-bottom: .8rem;

}

.company-address h6{

    font-size: .9rem;

    color: var(--primary)

}

.company-address p{

    margin-bottom: .3rem;

    position: relative;

    padding-left: 25px;

    font-size: .9rem;

    color: var(--dark);

    font-family: 'Quicksand-semi', sans-serif;

}

p.line-contact{

    padding-left: 18px;

}

.company-address p:last-child{

    margin-bottom: 0px;

}

.company-address p i{

    position: absolute;

    left: 0;

    top: 0.05rem;

    color: var(--primary)

}

.company-address p a{

    color: var(--dark)

}

.company-address p span{

    color: var(--dark);

    font-size: .85rem;

    font-family: 'Quicksand-bold', sans-serif;

}







.faqs .btn-tab{

	display: block;

	width:100%;

	text-align: left;

	background: var(--yellow3);

	border: 1px solid var(--yellow7);

	margin-top: 1.3rem;

	color: rgb(23,23,23);

	padding-right: 2.5rem;

	position: relative;

}

.faqs .btn-tab i{

	display: block;

	position: absolute;

	right: .5rem;

	top: 50%;

    transform: translateY(-50%);

	color: var(--primary);

    font-size: 1.2rem;

    line-height: 1;

}

.faqs .btn-tab.active{

	background: var(--primary);

	color: var(--white9);

	border-radius: 4px 4px 0px 0px;

}

.faqs .btn-tab.active i{

	color: var(--white)

}

.faqs .btn-tab .heading5{

	font-size: 1.1rem;

	text-transform: uppercase;

}

.faqs .btn-tab .heading6{

	font-size: .9rem

}

.faqs .btn-tab.active .text-kapson{

	color: #fff;

}

.faqs .btn-tab.active .heading5{

	color: #fff;

}



.faqs .tab-content{

	padding: 1.5rem 1rem;

	border: 1px solid var(--yellow3);

	border-top:none;

	background: #dbecff;

	display: none;

}



.tab-content .heading5{

	text-transform: uppercase;

	font-family: 'barlow-med', sans-serif;

	color: var(--primary);

	margin-bottom: 1.3rem;

}

.tab-content p{

	font-size: .95rem

}



.testimonial {

    padding: 1rem .5rem;

    transition: .4s all;

    max-width: 350px;

}

.testimonial .icon{

    max-width: 3rem;

    margin-bottom: 1rem;

}

.testimonial .icon i{

    font-size: 1.8rem;

    opacity: .8;

}

.testimonial p{
    font-size: .85rem;
    text-align: justify;
}

.testimonial .content{
    background: #dbecff;
    padding: 1rem;
    padding-bottom: 4rem;
}

.testimonial .testimonial-footer{
    position: relative; 
    padding-bottom: 0rem;
    background: #dbecff

}

.testimonial .client-image{
    width: 6rem;
    height: 6rem;
    padding: .3rem;
    position: absolute;
    left: 50%;
    top:0;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: var(--white);
    border-radius: 50%;
}

.testimonial .client-image img{
    border-radius: 50%;
}

.testimonial .svg-wave{
    position: absolute;
    bottom: 4rem;
    z-index: 0;
    width:100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

.testimonial .svg-wave svg{
    transform: scale(1.05);
}

.client-details{

    position: relative;

    z-index: 1;

    padding: 1rem;

    min-height: 4.5rem;

}

.client-details h5{
    margin-top: 47px;
    color: var(--white);
    font-size: .9rem;
    margin-bottom: 0px;
}

.client-details p{
    color: var(--white9);
    font-size: .85rem;
    text-align: center;
}

.clientTestimonials .swiper-slide{
    padding: 1.2rem 0px;
    padding-bottom: 3rem;
}

.clientTestimonials .swiper-pagination-bullet{

    width: 10px;

    height: 10px;

    display: inline-block;

    border-radius: 100%;

    background: #ff3c46;

    opacity: 0.4;

}

.clientTestimonials .swiper-pagination-bullet-active{

    opacity: 1;

    width: 30px;

    border-radius: 20px;

    background: var(--primary);

    transition: .4s all;

}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets{

    bottom: 0px;

}



.thank-you .image{

    max-width: 45rem;

    margin: auto;

    position: relative;

    min-height: 18rem;

}

.thank-you .image img{

    width: 100%;

    height: auto;

}

.thank-you .heading{

    position: absolute;

    top: 23%;

    left: 50%;

    transform: translateX(-60%)

}

.thank-you .heading .heading1{

    font-size: 4.5rem;

    line-height: 1;

    display: inline-block;

}

.thank-you .heading .heading1 span{

    display: block;

    text-align: right;

    margin-right: -2rem

}

.thank-you p{

    position: absolute;

    bottom: 0px;

    left: 50%;

    transform: translate(-50%, -3rem);

    font-size: .85rem;

    width: 50%;

}

/* Form Elements CSS Start */



.input-group, .form-group{

    margin-bottom: 1.5rem;

}



input:focus, select:focus, textarea:focus, 

.form-control:focus{

    box-shadow: none;

    outline: none;

    background: transparent

}

.form-control{

    background: transparent;

    font-size: .9rem;

    border: 1px solid #e0e0e0;

    background: transparent;

    color: #212121;

    padding: .7rem 1rem;

    height: auto;

}

.input-group-text{

    background: transparent;

    border-left: none;

}

.input-group-text{

    border-left: 1px solid #ced4da;

    box-shadow: none;

}

.form-item{
    width: 100%;
    border: 1px solid #ea1b23;
    background: transparent;
    color: #212121;
    padding: .7rem 1rem;
    border-radius: 0px;
}

.input-group .form-item{

    flex: 1 1 auto;

    width: 1%;

}

.form-item.country_code{

    max-width: 6rem

}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,

input::-webkit-inner-spin-button {

  -webkit-appearance: none;

  margin: 0;

}



/* Firefox */

input[type=number] {

  -moz-appearance: textfield;

}
input[type="date"]::-webkit-calendar-picker-indicator{
    position: absolute;
    left: 0;
    top: 0;
    width:100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
}
input[type="date"]{
    position: relative;
}
label{
    font-size: .9rem;
    margin-bottom: .1rem;
    color: var(--dark);
    font-family: 'Quicksand-semi', sans-serif;
}
.footer_wrapper{
       background-image: linear-gradient(to right, rgb(60 136 217 / 50%), rgba(26, 26, 30, 1));
}

.footer_top{

    border-bottom: 1px solid rgba(255,255,255,.1);

    color: var(--white7);

}

.footer_top i{

    font-size: 2rem;

    color: #ff3c46;

}

.footer_top .form-item, .btn-white{

    border-color: var(--white3);

}

.footer_top .form-item{

    color: var(--white7);

    font-family: 'Quicksand-reg', sans-serif;

} 
.c-details a{
    margin-bottom:10px;
    color:#fff !important;
}
.foot_content h5{

    color: #ff3c46;

    font-size: 1rem;

    margin-bottom: 1.2rem;

}

.foot_content ul a{

    color:#fff;

    font-size: .85rem;

}

.foot_content p{

    color: var(--white7);

    font-size: .85rem;

}

.foot_content h6{

    color: var(--primary);

    font-size: .9rem;

}

.foot_content h6 span{

    display: block;

    color: rgba(255,255,255,.6)

}

.foot_content p, .foot_content h6{

    padding-left: 1.5rem;

    position: relative;

}

.foot_content h6 i, .foot_content p i{

    color: #ff3c46;

    position: absolute;

    left: 0;

    top: 3px;

}

.foot_content p a{

    color: var(--white7)

}

.foot_content p.c-details{
    margin-bottom: .5rem;
    color:#fff;
}



.footer-bottom{

    padding: 1.5rem 0px;

    border-top: 1px solid var(--white1);

    color: var(--white7);

    font-family: 'Quicksand-reg', sans-serif;

}
.whatsapp-link img {
    height: 57px;
    width: 57px;
    position: fixed;
    left: 30px;
    bottom: 19px;
    z-index: 9999;
}
.footer-bottom p{
    color:#fff !important;
}
.footer-bottom a{

    color: var(--white7);

    font-size: .8rem;

}

.footer-bottom img{

    max-width: 1.8rem;

}



.fixed-sideContent{

    position: fixed;

    right: 0rem;

    top: 50%;

    transform: translateY(-50%);

    z-index: 1;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

}

.fixed-sideContent a{

    display: flex;

    justify-content: space-between;

    align-items: center;

    background: var(--primary);

    color: var(--white9);

    border-bottom: 1px solid var(--white7);

    width:auto;

    width: 2.5rem;

    height: 2.5rem;

    overflow: hidden;

    white-space: nowrap;

    transition: .4s all;

}

.fixed-sideContent a:last-child{

    border-bottom:none

}

.fixed-sideContent a span{

    font-size: .9rem;

    line-height: 2.5rem;

    white-space: nowrap;

    box-sizing: content-box;

    padding-right: 15px

}

.fixed-sideContent a:hover{

    width: 100%;

}

.fixed-sideContent i{

    display: flex;

    text-align: center;

    min-width: 2.5rem;

    height: 2.5rem;

    justify-content: center;

    align-items: center;

    line-height: 1;

}









.select2-container .select2-selection--single{

    height: auto;

    background: transparent;

}

.select2-container--default .select2-selection--single{

    border-color: #e0e0e0;

    border-radius: 0px;

}

.select2-container--default .select2-selection--single .select2-selection__arrow{

    top: 50%;

    transform: translateY(-50%);

}

/* .select2-selection.select2-selection--single{

    height: 100%;

} */

.select2-container--default .select2-selection--single .select2-selection__rendered{

    padding: 0.7rem 1rem;

    line-height: inherit;

}





.modal-header .btn{

    font-size: 2rem;

    min-width: 0px;

    line-height: 1;

    padding: 0px;

}

#priceModal .modal-header {

    border-bottom: 1px solid #d0d0d0;

    background: var(--secondary2)

}

#priceModal p{

    font-size: .9rem;

}



#priceModal form{

    margin-top: 1rem;

    padding: 1rem;

    border: 1px solid #d0d0d0

}

#priceModal .form-group{

    margin-bottom: .7rem;

}

#priceModal label{

    font-size: .85rem;

}

#priceModal .form-item{

    padding: .5rem .6rem;

    font-size: .9rem;

}

.foot_content a.text-light{

    color: rgba(255,255,255,.8) !important;

}

.foot_content a.text-light:hover{

    color: #ff3c46 !important;

}

.request-shap::before{
    display: none;
}