/* Slider */
.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}
.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}
/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    transition: 0.4s all ease-in-out;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 100;
    background-color: rgba(0,0,0,0.2);
    border:1px solid;
    border-color: rgba(255,255,255,0.6);
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    outline: none;

    color: #fff;
    width: 35px;
    border-color: rgba(255,255,255,0.9);
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}
.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 30px;
    /*line-height: 1;*/
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '‹';
}
[dir='rtl'] .slick-prev:before
{
    content: '›';
}
.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '›';
}
[dir='rtl'] .slick-next:before
{
    content: '‹';
}
/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}
.slick-dots
{
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: #fff;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 70px!important;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: #fff;
}
.slider {
    width: 50%;
    margin: 100px auto;
}
.responsive .slick-slide {
    margin: 0px 10px;
}
.slick-prev:before,
.slick-next:before {
    color: #fff;
}
.slick-list:focus
{
    outline: none;
}
.slick-prev{left: 10px; height: 30px;width: 35px;}
.slick-next{right: 10px;    height: 30px;width: 35px;}
.responsive  .slick-prev{left: 1%; top: 45%; background-color: rgba(0,0,0,0.5); border:none;}
.responsive  .slick-next{right: 1%;top: 45%;background-color: rgba(0,0,0,0.5);border:none;}
/*.responsive  .slick-prev:hover, .responsive  .slick-prev:focus, .responsive  .slick-next:hover, .responsive  .slick-next:focus{width: 40px; background-color: #ec5237;}
*/
.responsive1  .slick-prev{left: -4%; top: 54%; background-color: rgba(0,0,0,0.5); border:none;}
.responsive1  .slick-next{right: -4%;top: 54%;background-color: rgba(0,0,0,0.5);border:none;}
.slick-dots li button:before {font-size: 15px;line-height: 15px;}
body { margin:0px; padding: 0px; font-size: 16px; font-weight: 400; color: #666;font-family: 'Poppins', sans-serif;}
a{text-decoration: none;}
*{margin: 0px; padding: 0px;}
h1,h2,h3,h4,h5,h6{margin: 0px;padding: 0px; font-family: 'Poppins', sans-serif; line-height: 1.2; margin-bottom: .375rem;}
h1{font-size: 2.1875rem;font-weight: 600;color: #333; margin-bottom:20px;}
h2{font-size: 1.575rem;font-weight: 600;color: #333; margin-bottom:20px;}
h3{font-size: 22px;font-weight: 600;color: #333;}
h4{font-size: 20px;font-weight: 600;color: #333;}
h5{font-size: 18px;font-weight: 600;color: #333;}
h6{font-size: 16px;font-weight: 600;color: #333;}
p{font-family: 'Open Sans', sans-serif;font-size: 16px;font-weight: 400;color: #666;line-height: 28px;}
ul{margin:0px; padding: 0px;}
form{margin: 0px; padding: 0px;}
input{outline: none;border:none;}
html { scroll-behavior: smooth;overflow-x: hidden; }
select { -webkit-appearance: none; -moz-appearance: none;font-size: 15px; }
.container-fluid{padding-left: 50px;padding-right: 50px;}
/*scrool up*/
#myBtn {display: none;position: fixed;bottom: 20px;right: 30px;z-index: 99;font-size: 24px;border: none;outline: none;background-color: #e32c0c;color: white;cursor: pointer;padding: 3px 13px;border-radius: 4px;}
#myBtn:hover {background-color: #0082d6;}
/*CSS BEGINGS*/
.all-nav-wrapper{}
#nvd{position: fixed;top: -50px;left: 0px;width: 100%;opacity: 0;box-shadow: 0px 0px 1px #eda10a;}
#dnvd{position: fixed!important;left: 0px;width: 100%;opacity: 0;box-shadow: 0px 0px 1px #eda10a;padding: 0px 100px;}
.top-header{transition: 0.4s all ease-in-out; padding: 10px 0px; background: #ffffff17;}
.top-header ul li i{transition: 0.4s all ease-in-out; padding: 5px;width: 35px;height: 35px;display: flex;align-items: center;justify-content: center;margin-left: 5px;background: #f5f5f5;border-radius: 50%;}
.top-header ul li i:hover{background:#06a3df;color: #fff; transform: rotate(10deg); }
.top-header a{display: flex;align-items: center; transition: 0.4s all ease-in-out; color: #484848;text-decoration: none;font-weight: 400;font-size: 16px;}
.top-header a:hover{color: #854c4c;text-decoration: none;font-weight: 400;font-size: 15px; margin-left: 5px;}
.top-header i{margin-right: 5px;color:#666;}
.top-header ul{display: flex;justify-content: flex-end;align-items: center;height: 100%;}
.top-header ul li{margin-left: 4px;}
.top-header form{display: flex;align-items: center;height: 100%;}
.top-header form .form-control{border: none!important;background: #f5f5f5;}
.top-header form .form-control:focus{box-shadow: none;}
.top-header form .btn{background: #ddd!important;}
.my-slider-ban .all-overlay{position: absolute;height: 750px;width: 100%;background: #000000b8;top: 0px;left: 0px;}
.my-slider-ban{position: relative;background: transparent;}
.my-slider-ban img{width: 100%;height: 450px;object-fit: cover;filter: brightness(70%);}
.my-slider-ban h1{font-weight: normal;color: #fff;text-shadow: 0px 2px 5px #00000059;margin: 0px;font-size: 40px;font-weight: 900;}
.my-slider-ban .small-tg{display: flex;}
.my-slider-ban .small-tg p {margin: 0px; width: inherit;padding: 0px 15px;border-radius: 25px; text-transform: inherit!important; font-weight: 700;margin: 5px 0px;text-shadow: 0px 2px 5px #00000059;}
.my-slider-ban .ban-frrm .btn-primary{width: 100%;align-items: center;justify-content: center;padding: 10px 15px;border-radius: 0px 5px 5px 0px;background: #119dcb;border: none;}
.my-slider-ban .my-ban{position: relative;}
.my-slider-ban .my-ban .ban-overlay{width: 80%; position: absolute;top: 45%;left: 50%;transform: translate(-50%,-50%); z-index: 99;}
.my-slider-ban .my-ban .ban-overlay h2{font-size: 60px;font-weight: 700;color: #fff;margin-bottom: 25px;font-family: 'Poppins', sans-serif;}
.my-slider-ban .my-ban .ban-overlay p{width: 80%;font-size: 18px;color: #fff; text-transform: uppercase;padding-left: 0px;font-weight: 700;}
.my-slider-ban .my-ban .ban-overlay .ban-link{transition: 0.4s all ease-in-out; margin-top: 20px;}
.my-slider-ban .my-ban .ban-overlay .ban-link a{transition: 0.3s all ease-in-out; letter-spacing: 1px; color: #fff!important;background:#d93600!important; padding: 6px 14px;border-radius: 4px;font-weight: 600;letter-spacing: 0px;}
.my-slider-ban .my-ban .ban-overlay .ban-link a:hover{padding: 6px 20px;color: #fff!important;}
.navigation{position: relative; z-index: 1000; background-color: transparent;}
.navigation .bg-light{background: #1c1b1b!important;}
.logo img{height: 55px;width: auto;}
.navigation .navbar{padding: 0!important;margin: 0!important;position: relative;display: block!important;}
.navigation .navbar .navbar-collapse{flex-grow: 0;width: 100%;}
.navigation .navbar .navbar-brand img{height: 21px;}
.navigation .navbar .nav-form form{position: absolute;right: 0px;bottom: -48px;width: 100%;background: rgba(255,255,255,0.9);display: flex;align-items: center;padding: 0px 100px;height: 40px;border: 1px solid #333;border-radius: 25px;}
.navigation .navbar .nav-form input{width: 100%;color: #000;padding: 6px 0px;}
.navigation .navbar .nav-form button{border: none;padding: 0;margin: 0;background: none;border: 1px solid #151515;padding: 2px 13px;border-radius: 25px;}
.navigation .navbar .nav-form p{margin-left: 20px; border: none;border-radius: 4px;cursor: pointer;color: red;padding: 0px 12px;border: 1px solid red;}
.navigation .navbar .nav-form p i{cursor: pointer; padding: 0px;margin: 0px;color: red;font-size: 14px;padding: 1px 2px;border: 1px solid red;}
.navigation .navbar .nav-form button i{padding: 0;margin: 0;color: #333;}
.navigation #nv-search{cursor: pointer;}
.navigation .navbar-light .navbar-nav .nav-link{ font-size: 16px;font-weight: inherit; font-weight: 400; color: #fff;padding: 10px 15px!important;}
.nv-hvr{background: #d93600!important;}
.nv-hvrr{background: #2a2727c7!important;}
.navigation .navbar-light .navbar-nav .nav-item{border-right: 1px solid #464545;}
.navigation .navbar-light .navbar-nav .nav-item:first-child{border-left: 1px solid #464545;}
.navigation .navbar-light .navbar-nav .nav-link:focus{background:#d93600;color: #fff;}
.navigation .navbar-light .navbar-nav .nav-item:hover{background:#d93600;color: #fff;}
.navbar-expand-lg .navbar-nav li:first-child{}
.navigation .navbar-toggler{padding: 14px 15px;border: none;}
.navigation .navbar-toggler:focus{box-shadow: none!important;outline: none!important;}
.navigation .small-form{margin-left: 20px;display: none;}
.navigation form input{background: transparent;color: #fff;}
.navigation form i{color: #999;margin-right: 10px;font-weight: 300!important;}
.navigation #nv-search{color: #a4d6f3;padding: 10px}
.navigation .nav-form{display: none;}
.lft-inq{transition: 0.4s all ease-in-out; color: #eda10a;border: 1px solid #eda10a;padding: 4px 15px;color:#eda10a!important;}
.lft-inq:hover{background: #eda10a;color: #fff!important;}
.aaaa {box-shadow: 0 0 0 0 rgba(255,0,0, 1);transform: scale(1);animation: aaa 2s infinite;}
@keyframes aaa {
    0% {transform: scale(0.99);box-shadow: 0 0 0 0 rgba(255,255,255, 0.7);}
50% {transform: scale(1);box-shadow: 0 0 0 10px rgba(255,0,0, 0);}
100% {transform: scale(0.99);box-shadow: 0 0 0 0 rgba(255,0,0, 0.0);}
}
.ss1 {box-shadow: 0 0 0 0 rgba(255,0,0, 1);transform: scale(1);animation: s 2s infinite;animation-delay: 0.2s;}
@keyframes s {
    0% {transform: scale(0.95);box-shadow: 0 0 0 0 rgba(0,128,0, 0.9);}
50% {transform: scale(1);box-shadow: 0 0 0 10px rgba(0,128,0, 0);}
100% {transform: scale(0.95);box-shadow: 0 0 0 0 rgba(0,128,0, 0.0);}
}
.s-lft {box-shadow: 0 0 0 0 rgba(255,0,0, 1);transform: scale(1);animation: ss 2s infinite;}
@keyframes ss {
    0% {transform: scale(0.95);box-shadow: 0 0 0 0 rgba(0,128,0, 0.7);}
50% {transform: scale(1);box-shadow: 0 0 0 10px rgba(0,128,0, 0);}
100% {transform: scale(0.95);box-shadow: 0 0 0 0 rgba(0,128,0, 0.0);}
}
.ss2 {box-shadow: 0 0 0 0 rgba(255,0,0, 1);transform: scale(1);animation: ssss 2s infinite;animation-delay: 0.2s;}
@keyframes ssss {
    0% {transform: scale(0.95);box-shadow: 0 0 0 0 rgba(65,105,225, 0.9);}
50% {transform: scale(1);box-shadow: 0 0 0 10px rgba(65,105,225, 0);}
100% {transform: scale(0.95);box-shadow: 0 0 0 0 rgba(65,105,225, 0.0);}
}
.s-lft2 {box-shadow: 0 0 0 0 rgba(255,0,0, 1);transform: scale(1);animation: sssss 2s infinite;}
@keyframes sssss {
    0% {transform: scale(0.95);box-shadow: 0 0 0 0 rgba(65,105,225, 0.7);}
50% {transform: scale(1);box-shadow: 0 0 0 10px rgba(65,105,225, 0);}
100% {transform: scale(0.95);box-shadow: 0 0 0 0 rgba(65,105,225, 0.0);}
}
.bbbb {box-shadow: 0 0 0 0 rgba(255,0,0, 1);transform: scale(1);animation: bbb 2s infinite;animation-delay: 0.5s; color: #fff!important;}
@keyframes bbb{
    0% {transform: scale(1);box-shadow: 0 0 0 0 rgba(255,255,255, 0.9);}
50% {transform: scale(1);box-shadow: 0 0 0 10px rgba(255,255,255, 0);}
100% {transform: scale(1);box-shadow: 0 0 0 0 rgba(255,255,255, 0.0);}
}
.blob {box-shadow: 0 0 0 0 rgba(255,0,0, 1);transform: scale(1);animation: pulse 2s infinite;}
@keyframes pulse {
    0% {transform: scale(0.95);box-shadow: 0 0 0 0 rgba(255,255,255, 0.7);}
50% {transform: scale(1);box-shadow: 0 0 0 10px rgba(255,0,0, 0);}
100% {transform: scale(0.95);box-shadow: 0 0 0 0 rgba(255,0,0, 0.0);}
}
.bloo {box-shadow: 0 0 0 0 rgba(255,0,0, 1);transform: scale(1);animation: pul 2s infinite;animation-delay: 0.5s;}
@keyframes pul{
    0% {transform: scale(0.95);box-shadow: 0 0 0 0 rgba(255,255,255, 0.9);}
50% {transform: scale(1);box-shadow: 0 0 0 10px rgba(255,255,255, 0);}
100% {transform: scale(0.95);box-shadow: 0 0 0 0 rgba(255,255,255, 0.0);}
}
.blod {box-shadow: 0 0 0 0 rgba(255,0,0, 1);transform: scale(1);animation: bld 2s infinite;animation-delay: 0.5s; color: #fff!important;}
@keyframes bld{
    0% {transform: scale(0.95);box-shadow: 0 0 0 0 rgba(0,191,255, 0.9);}
50% {transform: scale(1);box-shadow: 0 0 0 10px rgba(0,191,255, 0);}
100% {transform: scale(0.95);box-shadow: 0 0 0 0 rgba(0,191,255, 0.0);}
}
.full-width-drop{display: none; height: 500px;overflow-y: scroll; margin: 0px 5%; position: absolute;top: 84%;left: 0px; background: #fff;box-shadow: 0px 150px 200px #000;z-index: 99}
.full-width-drop:hover{display: block!important;}
.full-width-drop ul{padding: 20px;}
.full-width-drop ul li a{font-weight: 400; transition: 0.3s all ease-in-out; padding: 5px;display: block;font-size: 14px;color: #666;}
.full-width-drop ul li a:hover{color: #008ffc;}
.small-nav{display: none;padding: 8px 0px;position: stick!important;top: 0px;z-index: 99;background: #fff;box-shadow: 0px 1px 1px #f5f5f5;}
.small-nav .connect img{height: 20px;width: auto;}
.small-nav .connect a{display: flex;align-items: center;justify-content: center;margin: 0px 4px;}
.small-nav .connect{display: flex;align-items: center;justify-content: space-between;}
.small-nav .content{display: flex;align-items: center;justify-content: space-between;}
.small-nav button:focus{box-shadow: none!important;}
.small-nav button img{filter: brightness(1%);}
.small-nav .small-logo img{height: 33px;width: auto;}
.small-logo a{font-family: 'Poppins', sans-serif;color: #333!important;font-weight: 900;}
#nav-side{display: none; background: rgba(0,0,0,0.2); position: fixed;top: 0px;left: -100%;width: 100%;z-index:9999;height: 100vh;}
#n-side{display: none; width: 100%;background: #fff;height: 100%;}
#nav-side ul li{display: inherit;}
#nav-side ul li a{display: block;padding: 8px 20px;color: #212529!important;background: #3331f;margin-bottom: 1px;font-size: 16px;}
#nav-side .card-header{padding: 0px;margin: 0px;background: transparent;border: none;}
#nav-side .card{border-radius: 0px;border: 0px;background: transparent;}
#nav-side .card .card-body{padding: 0px;}
#nav-side .fa{margin-right: 4px!important;}
#nav-side .card .btn-link{border-bottom: 1px solid #1f2132; background: #101222!important;color: #d6d6d6!important;text-align: justify!important;padding: 8px 10px!important;border-radius: 0px!important;width: 100%;text-decoration: none;}
#nav-side .accordion button{padding: 8px 20px!important;background: #ccc;}
#nav-side .accordion button:focus{box-shadow: none!important;}
#nav-side .accordion .accordion-body{padding: 0px!important;}
#nav-side #accordionExample button{background: #33387;}
#nav-side #accordionExampletwo button{background: #f5f5f5;}
.accordion-button:not(.collapsed){color: #fff!important;background: #06a3df!important}
.dropdown-menu[data-bs-popper]{margin-top: 0px!important;}
.navbar-expand-lg .navbar-nav .dropdown-menu li{width: 100%!important;position: relative;}
.navbar-expand-lg .navbar-nav .dropdown-menu li .second-drop{transition: 0.5s all ease-in-out; display: none; border-left: 1px solid #1e4e6c; position: absolute;top: -1px;left: 100%;width: 500px;max-width: 100%;background: #252d34;}
.navbar-expand-lg .navbar-nav .dropdown-menu li .second-drop ul li a{color: #fff;}
.navbar-expand-lg .navbar-nav .dropdown-menu li .second-drop ul li{transition: 0.5s all ease-in-out;padding: 10px 20px;color: #fff;border-bottom: 1px solid #ffffff0d;font-size: 15px;}
.navbar-expand-lg .navbar-nav .dropdown-menu li .second-drop ul li:hover{background: #036991;}
.navbar-expand-lg .navbar-nav .dropdown-menu li:hover .second-drop{display: block;}
.navbar-expand-lg .navbar-nav .dropdown-menu li .dropdown-item{display: flex;align-items: center;justify-content: space-between; transition: 0.5s all ease-in-out; padding: 10px 20px;color: #fff;border-bottom: 1px solid #ffffff47;font-size: 15px;}
.navbar-expand-lg .navbar-nav .dropdown-menu li .dropdown-item i{font-size: 12px; margin-left: 7px;}
.navbar-brand {padding: 0px;margin: 0px; font-family: 'Poppins', sans-serif;color: #fff!important;display: block!important;}
.navbar-brand h1{margin-bottom: 0px;font-size: 15px;font-weight: 700;line-height: 15px;color: #d93600;letter-spacing: 3px;}
.navbar-brand p{padding: 0px; margin: 0px;line-height: 15px;font-size: 13px;font-weight: 400;color: #000;text-align: center;}
.dropdown-menu[data-bs-popper]{margin-top: 0px!important;}
.navbar-expand-lg .navbar-nav .dropdown-menu li{width: 100%!important;}
.navbar-expand-lg .navbar-nav .dropdown-menu li .dropdown-item:hover{background: #2a2727c7;color: #fff!important;padding-left: 25px;}
.navbar-expand-lg .navbar-nav .dropdown-menu{background: #d93600!important;padding: 0px!important;border: none!important;border-radius: 0px!important;border-top: 1px solid #111!important;margin-left: 1px;left: -1px!important;}
.navbar-expand-lg .navbar-nav .nav-item:hover .dropdown-menu{display: block!important;}
.top-header .info4{margin-left: 25px;}
.top-header .top-email, .top-address, .top-phone{display: flex;align-items: center;height: 100%;}
.top-header .top-phone{position: relative;justify-content: flex-end;}
.top-header .top-phone a{background: #d93600;padding: 4px 10px;border-radius: 4px;color: #fff;}
.top-header .top-phone i{color: #fff;}
.top-header .top-phone p{position: absolute;top: 0px;right: 0px; background: #06a3df!important;font-size: 10px;font-weight: 500;padding: 2px 5px;line-height: 13px;color: #fff;border-radius: 4px;}
.top-header .info4 ul li{margin: 0px 5px;}
.top-header .info4 ul li a .fa-facebook{color: #3a5896;}
.top-header .info4 ul li a .fa-twitter{color: #3e98fe;}
.top-header .info4 ul li a .fa-instagram{color: #f5aa3e;}
.top-header .info4 ul li a .fa-youtube{color: red;}
.top-header .info4 ul li a .fa-linkedin{color: #4775b3;}
.top-header section{display: flex;align-items: center;justify-content: space-between;padding: 0;margin-bottom: 0;}
.top-header section .info{display: flex;align-items: center;justify-content: flex-end;}
.top-header section .info p{padding: 0px; font-size: 14px;color: #666;display: flex;align-items: center;justify-content: flex-end;}
.top-header section .info a{font-weight: 500;font-size: 16px;color: #333;}
.top-header section .info .info1{margin-right: 25px;}
.top-header section .info .info2{display: flex;align-items: center;justify-content: flex-end;}
.top-header section .info .info3 img{height: 22px;width: auto;}
.top-header section .info .info3 a{font-weight: 700;font-size: 20px;}
.top-header section .info .info2 .info4 img{height: 45px;width: 45px;border-radius: 50%;object-fit: cover;margin-left: 10px;}
section{padding: 35px 0px;}
.shp-section{position: absolute;width: 100%;top: -55px;background-image: url(../images/shape.png);left: 0px;height: 55px;background-repeat: repeat-x;animation: slide 100s linear infinite;-webkit-animation: slide 100s linear infinite;}
 @keyframes slide{
    from { background-position: 0 0; }
      to { background-position: 1920px 0; }
  }

  @-webkit-keyframes slide{
    from { background-position: 0 0; }
      to { background-position: 1920px 0; }
  }
  .welcome{padding: 55px 0px;background: #fff;position: relative;padding-top:35px;}
.welcome .wel-l{margin-top: 15px;}
.welcome .wel-l a{transition: 0.5s all ease-in-out; border: 1px solid #d93600; padding: 8px 15px; color: #d93600;border-radius: 4px;}
.welcome .wel-l a:hover{ background: #d93600; color: #fff;padding: 8px 20px;border-color: #d93600;}
.welcome .wel-l a i{font-size: 14px;}
.welcome .content p{padding-top: 0px;color: #6c6c6c;line-height: 30px;font-weight: 500;}
.welcome ul li{display: inherit;margin-bottom: 10px;}
.welcome ul li i{margin-right: 7px; color: #119dcb;}
.welcome h1{font-weight: 700;color: #404040;font-size: 36px;}
.welcome h1 span{font-size: 20px;}
.welcome h2{font-weight: 500;color: #04b4f7;font-size: 20px;}
.welcome h6{color: #eda10a;font-size: 20px;padding-bottom: 15px;}
.welcome img{transition: 0.5s all ease-in-out; object-fit: cover;width: 354px; height: 354px;display: flex;align-items: center;justify-content: flex-end;border: 1px solid #fff;}
.welcome .first{position: relative; height: 100%;display: flex;align-items: center;justify-content: flex-end;}
.welcome .first .discount{position: absolute;top: -111px;right: 0px; background: #fff;width: 100%;border-radius: 4px!important;}
.welcome .first .discount h2{color: #fff;font-weight: 700;font-size: 24px;text-align: center;background: #d93600;padding: 20px;}
.welcome .first .discount .form{padding: 20px;box-shadow: 0px 0px 10px #ccc;}
.welcome .first .discount .form .form-control{border-radius: 4!important;margin-bottom:10px;padding: 10px 10px;}
.welcome .first .discount .form button{background: red;}
.side-section .form{padding: 20px;box-shadow: 0px 0px 10px #ccc;}
.side-section .form .form-control{border-radius: 4!important;margin-bottom:10px;padding: 10px 10px;}
.side-section .form button{background: red;}                                
.side-section h2 {color: #fff;font-weight: 700;font-size: 24px;text-align: center;background: #d93600;padding: 20px;}
.welcome .col-md-7 a{position: absolute;bottom: 20px;right: 30px;color: #fff;z-index: 9;font-weight: 600; background: #119dcb;padding: 5px 15px;border-radius: 4px;}
.wel-to-fx{position: absolute;width: 100%;top: -70px;left: 0px;}
.wel-top{display: flex;align-items: center;justify-content: space-between;background: #fff;border-radius: 10px;box-shadow: 0px 5px 5px #f5f5f5;}
.wel-top .cont1{display: flex;align-items: center; justify-content: center;width: 100%;padding: 15px;}
.wel-top .cont1 p{padding: 0px;}
.wel-top .cont1 h1{margin: 0px;color: #ff6922 !important;}
.wel-top img{height: 100px;width: auto;}
.major-services .title h1{margin-bottom: 0px!important;font-size: 36px;font-weight: 700;}
.major-services .title p{padding: 0px;padding-bottom: 30px;}
.major-services .content{margin-bottom: 15px; transition: 0.4s all ease-in-out; text-align: center;background: #fff;padding: 25px 20px;border-radius: 10px;}
.major-services .content img{width: 100%;height: auto;filter: brightness(100);}
.major-services .content .img-cont{margin: 0 auto; height: 80px;width: 80px;padding: 15px;border: 1px solid red;border-radius: 50%;background: red;}
.major-services .content h2{transition: 0.4s all ease-in-out; color: #333;font-weight: 700;font-size: 18px;margin-top: 15px;}
.major-services .content p{transition: 0.4s all ease-in-out; font-size: 15px;line-height: 24px;color: #333;text-align: center;}
.major-services .content .link{padding: 4px 15px;}
.major-services .content .link a{transition: 0.4s all ease-in-out; color: red;border: 1px solid red;padding: 4px 15px;border-radius: 25px;}
.major-services .content .link a:hover{padding: 4px 20px;}
.major-services .content:hover{background: red;}
.major-services .content:hover .img-cont{background: #fff;}
.major-services .content:hover img{filter:none;}
.major-services .content:hover a{color:red;border-color: #fff;background: #fff;}
.major-services .content:hover h2{color: #fff;}
.major-services .content:hover p{color: #fff;}
.service {padding: 40px 0px;}
.service .title h1{margin-bottom: 0px!important;font-size: 36px;font-weight: 700;}
.service .title p{padding: 0px;padding-bottom: 30px;}
.service .content{box-shadow: 0px 0px 5px #ccc; margin-bottom: 15px; transition: 0.4s all ease-in-out; text-align: center;background: #fff;}
.service .content .down-cont{padding: 15px;}
.service .active{background: #333;}
.service .active h2{color: #fff!important;}
.service .active .down-cont{border-radius: 25px 0px!important;}
.service .active p{color: #fff!important;}
.service .active a{color: red!important; background: #fff!important;border: none!important;}
.service .content img{width: 100%;height: 250px;object-fit: cover;}
.service .content h2{transition: 0.4s all ease-in-out; color: #333;font-weight: 700;font-size: 18px;margin-top: 15px;}
.service .content p{transition: 0.4s all ease-in-out; font-size: 15px;line-height: 24px;color: #333;text-align: center;}
.service .content .link{padding: 4px 15px;}
.service .content .link a{transition: 0.4s all ease-in-out; color: red;border: 1px solid red;padding: 4px 15px;border-radius: 25px;}
.service .content .link a:hover{padding: 4px 20px;}
.service .content:hover{background: red;}
.service .content:hover .img-cont{background: #fff;}
.service .content:hover img{filter:none;}
.service .content:hover a{color:red;border-color: #fff;background: #fff;}
.service .content:hover h2{color: #fff;}
.service .content:hover p{color: #fff;}
.city-wise-links {padding: 40px 0px;background: #fff;}
.city-wise-links .title h1{margin-bottom: 0px!important;font-size: 36px;font-weight: 700;margin-bottom: 15px!important;}
.city-wise-links .title p{padding: 0px;padding-bottom: 30px;}
.city-wise-links .link a{color: #333;font-size: 14px;}
.city-wise-links .link{margin-bottom: 5px;}
.city-wise-links .link a i{color: red;font-size: 14px;}
.city-wise-links .link a:hover{color: red;text-decoration: underline;}
.anities{margin-bottom: 45px;}
.anities .row{background: #522904;padding: 35px 30px;}
.anities h6{font-size: 20px;font-weight: 700;color: #eda10a;margin-bottom: 15px;text-align: center;}
.anities h1{font-size: 36px;font-weight: 900;color: #fff;text-align: center;margin-bottom: 30px;}
.anities .content{margin-bottom: 30px;margin-right: 20px;}
.anities .content i{margin-right: 30px;font-size: 40px;color: #eda108;}
.anities .content h5{color: #fff;font-family: 'Poppins', sans-serif;font-size: 20px;}
.anities .content p{padding: 5px 0px; color: #a5a5a5;}
section .upcomming .title-section{display: flex;align-items: center;justify-content: space-between;}
section .upcomming .title-section .link{display: flex;align-items: center;justify-content: space-between;}
section .upcomming .title-section .link .form-select{margin-left: 20px;width: inherit;border-radius: 25px;}
section .upcomming .title-section .link a{transition: 0.4s all ease-in-out; color: orange;font-weight: 600; display: flex;align-items: center;justify-content: center; padding: 5px 20px;border-radius: 25px;border: 1px solid orange;}
section .upcomming .title-section .link a:hover{background: orange;color: #fff;}
section .upcomming .table{min-width: 1116px!important;}
section .upcomming .table table tr td{padding: 20px 0px;}
section .upcomming .table table tr td h3{font-weight: 700;}
section .upcomming .table table tr td h6{font-weight: 400;color: #999;}
section .upcomming .table table tr .guaranteed{color: #7ed321;font-weight: 600;}
section .upcomming .table table tr td span{margin-left: 5px; padding: 0px 8px;background: #e94555;border-radius: 4px;color: #fff;}
section .upcomming .table table thead th{border: none;font-size: 16px;font-weight: 900;color: #999;text-transform: uppercase;}
section .upcomming .table table thead{border-bottom: 1px solid #ccc;}
section .upcomming .table table tr td a{transition: 0.4s all ease-in-out; color: #4594b3;font-weight: 600; display: flex;align-items: center;justify-content: center; padding: 5px 20px;border-radius: 25px;border: 1px solid #4594b3;}
section .upcomming .table table tr td a:hover{background: #4594b3;color: #fff;}
.testi{background: #f5f5f5;}
.responsive{padding-top: 20px; padding-bottom: 20px;}
.responsive .res-1{transition: 0.4s all ease-in-out; margin-bottom: 10px;padding: 30px;border: 1px solid #f5f5f569;background: #464545;border-radius: 20px 0px;}
.responsive .res-1 .all{display: flex;align-items: center;justify-content: center;flex-direction: column;}
.responsive .res-1 .all p{font-weight: 600!important;color: #40caff;}
.responsive .res-1 .test-img img{width: 80px;height: 80px;display: block;margin: auto;object-fit: cover;border: 1px solid #fff;margin-bottom: 10px;border-radius: 4px;}
.responsive .res-1 p{font-weight: 400; line-height: 28px;text-align: center;color: #f8f8f8;padding-top: 0px;font-size: 15px;}
.responsive .res-1 h2{text-align: center; transition: 0.4s all ease-in-out; margin-bottom: 5px; font-size: 20px; color: #f5f5f5;margin-top: 5px; font-weight: 700;}
.testi h1{font-size: 36px;font-weight: 600;color: #333!important;padding-top: 40px;margin-bottom: 10px;text-align: center;}
.responsive .res-1 h2 span{ transition: 0.4s all ease-in-out; color: #333; text-align: center; font-weight: 400;}
.responsive .res-1 ul{text-align: center;}
.responsive .res-1 ul li{margin: 0px 7px;}
.responsive .res-1 ul li a{transition: 0.4s all ease-in-out; color: #666;}
.our-team .res-1{height: 300px;overflow-y: scroll; transition: 0.4s all ease-in-out; margin-bottom: 30px;padding: 20px; background: #f5f5f5;border: 1px solid #f5f5f538;padding-top: 0px;}
.our-team .res-1 .all{padding-bottom: 24px; display: flex;align-items: center;padding-top: 20px;position: sticky;top: 0px;background: #f5f5f5;}
.our-team .res-1 .all p{font-weight: 600!important;color: #06a3df;}
.our-team .res-1 .test-img img{width: 80px;height: 80px;border-radius: 50%;display: block;margin: auto;object-fit: cover;margin-right: 20px;}
.our-team .res-1 p{font-weight: 400; line-height: 28px;text-align: justify;color: #2a2727;padding-top: 0px;}
.our-team .res-1 h2{transition: 0.4s all ease-in-out; margin-bottom: 5px; font-size: 18px; color: #2a2727;margin-top: 5px; font-weight: 700;}
.our-team .res-1 h2 span{ transition: 0.4s all ease-in-out; color: #333; text-align: center; font-weight: 400;}
.our-team .res-1 ul{text-align: center;}
.our-team .res-1 ul li{margin: 0px 7px;}
.our-team .res-1 ul li a{transition: 0.4s all ease-in-out; color: #666;}
section .blog img{height: 300px;width: 100%;object-fit: cover;filter: brightness(80%);}
section .blog .title{text-align: center;margin-bottom: 20px;}
section .blog .title h1{margin-bottom: 0px;font-weight: 700;}
section .blog .title p{text-align: center;}
section .blog .content{box-shadow: 0px 0px 10px #00000017;}
section .blog .content p{border-radius: 4px;font-weight: 300;color: #666;font-size: 13px; padding: 0px;}
section .blog .content .blog-down{display: flex;align-items: center;justify-content: space-between;padding: 5px 25px;padding-bottom: 20px;}
section .blog .content .blog-down a{transition: 0.4s all ease-in-out; font-weight: 300;color: #666;text-decoration: none;}
section .blog .content a:hover{color:#119dcb;}
section .blog .content{background: #fff;border-radius: 10px;position: relative;}
section .blog .content h3{padding: 15px;padding-bottom: 5px;}
section .blog .tit{color: #333;font-weight: 500;font-size: 16px;display: block;padding: 15px 25px;padding-bottom: 5px;}
.my-blog .content{padding: 20px;margin-bottom: 20px;}
.my-blog .content h3{padding-left: 0px!important;}
footer h4{color: #fff;margin-bottom: 10px;font-weight: 700;font-family: 'Poppins', sans-serif;font-size: 22px;}
footer .line{height: 2px;width: 70px;background: #06a3df;margin: 15px 0px;}
footer{padding: 35px 0px;background: #2a2727;}
footer ul li{padding: 5px 0px;font-size: 15px;font-weight: 400;display: inherit;}
footer ul li a{transition: 0.4s all ease-in-out; text-decoration: underline;color: #999;margin-right: 10px;}
footer ul li a:hover{color: #ccc;font-weight: 500;}
footer ul li a i{transition: 0.4s all ease-in-out; border: 1px solid #333;padding: 6px;width: 36px;text-align: center;margin-top: 10px;}
footer ul li a:hover i{color: #fff;border-color: #333;background: #333;}
footer form{display: flex;align-items: center;justify-content: flex-start;}
footer form input{background: #fff!important;margin:10px 0px;border: none!important;color: #fff!important;border-radius: 4px 0px 0px 4px!important;padding: 10px!important;}
footer form button{color: #fff!important; width: 150px!important;border-radius: 0px 4px 4px 0px!important;border: none!important;padding: 10px!important;background: #2893f5!important;height: 47px;}
footer form .form-control:focus{outline: none!important;box-shadow: none!important;}
footer .lnk a{text-decoration: none;}
.payment{padding: 20px 0px;text-align: center;}
.payment h4{padding-bottom: 20px;}
.payment img{height: 45px;width: auto;}
.pay-lgo{background: #f5f5f5;}
.pay-lgo .content{display: flex;align-items: center;justify-content: space-around; margin-bottom: 35px;padding-top: 40px;}
.pay-lgo .content ul li{margin: 0px 20px; list-style: none; display: inline-block;}
.affi{padding: 20px 0px;text-align: center;}
.affi i{transition: 0.5s all ease-in-out; height: 50px;width: 50px;border-radius: 10%;display: flex;align-items: center;justify-content: center;}
.affi i:hover{transform: rotate(360deg); transform: scale(1);box-shadow: 0 0 0 10px rgba(65,105,225, 0.2); }
.affi h4{padding-bottom: 20px;font-size: 20px;font-weight: 700;}
.affi img{height: 45px;width: auto;}
.new-page{padding: 35px 0px;}
.pag-img{position: relative;}
.pag-img h1{position: absolute;bottom: 10%;left: 0px;width: 100%;text-align: center;z-index: 9;color: #fff;font-size: 48px;font-weight: 900;}
.pag-img img{width: 100%;height: 400px;object-fit: cover;filter: brightness(50%)}
.breadcum ul li{list-style: none; display:inline-block;}
.breadcum ul li a{transition: 0.4s all ease-in-out; color: #5e5e5e; padding: 2px 10px; background: #dfdfdf24;border-radius: 4px;margin-right: 7px;}
.breadcum ul li a:hover{background:#06a3df;color: #fff; }
.breadcum ul li:last-child{background: #06a3df;padding: 3px 10px; border-radius: 4px;color: #fff;}
.breadcum ul li i{font-size: 12px;}
.new-page .content{padding: 25px 0px;}
.new-page .content .bg-dark{position: sticky!important;padding: 0px;background: #2a2727!important;}
.new-page .content .bg-dark .nav-link{font-weight: 700;font-size: 16px;color: #fff!important;padding: 12px 20px;border-right: 1px solid #434242;}
.details-image{position: relative;}
.details-image h1{margin-bottom: 0px; position: absolute;bottom: 0px;left: 0px;z-index: 9;color: #fff;font-size: 24px;background: #00000063;padding: 10px 15px;}
.details-image img{width: 100%;height: 400px;object-fit: cover;}
.navbar-dark .navbar-nav .nav-link.active{background: #06a3df !important}
.new-page .content p{padding: 0px!important;}
.new-page .content h1,h3,span,h6{color: #4c4c4c;font-weight: 700;}
.new-page .content h6{font-weight: 400;}
.new-page .content h3{margin-top: 20px;}
.new-page .col-md-9 h1{margin-bottom: 10px;font-weight: 36px;}
.new-page .content .icon-section{display: flex;align-items: center;padding:20px 0px;}
.new-page .content .icon-section .sec1{padding: 0px 15px;border-right: 1px solid #ccc;}
.new-page .content h1{font-size: 20px!important;}
.new-page .content #section3 ul li{display: flex; font-size: 18px;font-weight: 400;padding:10px;background: #f5f5f5; margin-bottom: 5px;border-radius: 4px;}
.new-page .content #section3 ul li i{color: #00b600;margin-right: 10px;margin-top: 5px;font-size: 20px;}
.new-page .content #section4 ul li{display: flex; font-size: 18px;font-weight: 400;padding:10px;background: #f5f5f5; margin-bottom: 5px;border-radius: 4px;}
.new-page .content #section4 ul li i{color: red;margin-right: 10px;margin-top: 5px;background: #da4343;color: #fff;padding: 10px 10px;height: 21px;width: 21px; border-radius: 50%;font-size: 12px;display: flex;align-items: center;justify-content: center;}
.new-page .content #section5 .route-map{padding: 20px;border: 1px solid #999;}
.new-page .content #section5 .route-map img{width: 100%;height: auto;}
.new-page .social ul li a{transition: 0.4s all ease-in-out; color: #2698ff;padding: 2px 10px;background: #f5f5f5!important;border-radius: 4px;}
.new-page .social ul li a:hover{background: #2698ff!important;color: #fff;}
#section2 .content-section{padding: 20px;background: #f5f5f5;margin-bottom: 10px;border-radius: 10px;}
.side-section form .form-control{margin-bottom: 10px;}
.side-section form button{background: red!important;color: #fff;}
.side-section{background: #f5f5f5;padding: 20px; border-radius: 10px; position: relative;text-align: center;}
.side-section h1{margin-bottom: 10px!important; border-radius: 9px 9px 0px 0px; background: #065691;color: #fff;font-size: 30px;font-weight: 400;padding: 10px!important;}
.side-section h1 span{color: #fff;font-size: 12px;}
.side-section h6{position: absolute;top: -6;left: 50%;transform: translate(-50%,-50%); width: 90%;background: #00b600;color: #fff;padding: 4px;}
.side-section h5{padding-top: 10px;font-family: 'Poppins', sans-serif;font-weight: 900;}
.side-section .down-section{border-radius: 0px 0px 10px 10px; padding: 10px;background: #f5f5f5;margin-top: 0px;text-align: initial;}
.side-section .down-section ul li{padding: 3px 0px; display: flex;align-items: center;justify-content: space-between;}
.side-section .down-section ul li span{color: #333;font-size: 15px;font-weight: 300;}
.side-section .down-section ul li:first-child{border-bottom: 1px solid #4594b3;margin-bottom: 10px;}
.side-section .down-section ul li:first-child span{font-weight: 900;font-size: 16px;}
.side-section .down-section h4{padding: 5px 0px;font-weight: 900;color: #4594b3;}
.side-section .down-section button{color: #999;font-weight: 600; display: flex;align-items: center;justify-content: center; padding: 5px 20px;border-radius: 5px;background: #f5f5f5;margin: 8px 0px;border: 1px solid #ccc;}
.side-section .down-section button:hover{background:#00b7ff;color: #fff;border-color:#00b7ff;}
.side-section .down-section a{color: #ccc;font-weight: 600; display: flex;align-items: center;justify-content: center; padding: 10px 20px;border-radius: 5px;background: #232c3d;margin: 8px 0px;}
.side-section .down-section a i{margin-right: 5px;}
.side-section .down-section a:last-child{color: #00b7ff;background: #00b7ff30;}
.side-section .down-section a:hover{background:#00b7ff;color: #fff; }
.side-section .down-section .frm-strght{padding: 5px 10px; display: flex; align-items: center;justify-content: space-between;background: #fff;border: 1px solid #ced4da;border-radius: 4px;}
.side-section .down-section  .form-control{outline: none!important;border: none!important;}
.side-section .down-section  .form-control:focus{box-shadow: none!important;outline: none!important;}
.side-section .down-section .sbm{font-size: 20px; width: 100%!important;background: #00b7ff!important;padding: 10px 20px;border: none!important;color: #fff!important;}
.didnot-find{padding: 15px 0px; background-color: #2893f5;text-align: center;margin-bottom: 40px;}
.didnot-find a{font-weight: 300; padding:5px 20px;background-color: #2d4860;color: #fff;border-radius: 25px;}
.didnot-find h3{ color: #fff;font-family: 'Poppins', sans-serif;font-weight: 300;font-size: 24px;}
.didnot-find .find-req{display: flex;align-items: center;justify-content: space-between;}
.icon-all-top .all-icon-detail{display: flex;justify-content: space-between;}
.icon-all-top .all-icon-detail .content{display: flex;justify-content: flex-start;align-items: center;width: 100%;padding: 0px!important; padding-top: 30px!important;}
.icon-all-top .all-icon-detail .content i{font-size: 30px; margin-right: 10px;}
.icon-all-top .all-icon-detail .content p{padding: 0px;font-weight: 300;font-size: 14px;text-transform: uppercase;line-height: 20px;}
.icon-all-top{position: relative; padding: 30px;margin-top: 30px;border: 1px solid #ccc; padding-top: 0px!important;border-radius: 10px;}
.icon-all-top h3{position: absolute;top: 0%;left: 50%;transform: translate(-50%,-50%); background: #06a3df;padding: 4px 10px;border-radius: 4px;color: #fff;}
.top-small-icon{margin-bottom: 15px;}
.top-small-icon li{margin: 0px 10px;}
.upcomming .title-section{display: flex;align-items: center;justify-content: space-between;}
.upcomming .title-section .link{display: flex;align-items: center;justify-content: space-between;}
.upcomming .title-section .link .form-select{margin-left: 20px;width: inherit;border-radius: 25px;}
.upcomming .title-section .link a{transition: 0.4s all ease-in-out; color: orange;font-weight: 600; display: flex;align-items: center;justify-content: center; padding: 5px 20px;border-radius: 25px;border: 1px solid orange;}
.upcomming .title-section .link a:hover{background: orange;color: #fff;}
.upcomming .table table th{padding-left: 0px;}
.upcomming .table table tr td h3{font-weight: 400;font-size: 16px;margin-top: 0px;}
.upcomming .table table tr td h6{font-weight: 400;color: #999;font-size: 16px;}
.upcomming .table table tr td h5{font-size: 16px;}
.upcomming .table table tr .guaranteed{color: #bb4c4c;font-weight: 400;font-size: 16px;}
.upcomming .table table tr td span{margin-left: 5px; padding: 0px 8px;background: #e94555;border-radius: 4px;color: #fff;}
.upcomming .table table thead th{border: none;font-size: 16px;font-weight: 900;color: #999;text-transform: uppercase;}
.upcomming .table table thead{border-bottom: 1px solid #ccc;}
.upcomming .table table tr td a{font-size: 14px; transition: 0.4s all ease-in-out; color: #333;font-weight: 600; display: flex;align-items: center;justify-content: center; padding: 5px 14px;border-radius: 25px;border: 1px solid #333;}
.upcomming .table table tr td a:hover{background: #333;color: #fff;}
.upcomming .container{border-left: 1px solid #dee2e6;border-bottom: 1px solid #dee2e6;border-right: 1px solid #dee2e6;}
#section7 button{font-family: 'Poppins', sans-serif;font-weight: 600;}
.gallery{margin-top: 40px; margin-bottom: 0px;}
.gallery h6{color: #eda10a;font-weight: 600;font-size: 20px;margin-bottom: 15px;margin-top: 20px;text-align: center;}
.gallery h1{font-size: 36px;font-weight:700;color: #363636; margin-bottom: 25px;text-align: center;}
.gallery .images .btn-primary{width: 100%; padding:0; border:none; outline: none; margin-bottom: 30px; position: relative; background-color: transparent;}
.gallery .images .btn-primary:focus{outline: none!important;box-shadow: none!important;}
.gallery .images .btn-primary i{transition: 0.4s all ease-in-out; padding:10px;background-color: #eda10a; font-size: 20px; color: #fff; border-radius: 5px;opacity: 0;}
.gallery .images .my-icon{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);z-index: 99;}
.gallery .gallery .title h1{font-size: 36px;font-weight:700;color: #333; margin-bottom: 25px; }
.gallery .images .mdl{transition: 0.3s all ease-in-out; width: 100%; height: 200px;object-fit: cover;} 
.gallery .images .mdl:hover{-ms-transform: scale(1.05); /* IE 9 */-webkit-transform: scale(1.05); /* Safari 3-8 */transform: scale(1.05); filter: brightness(50%); }
.gallery .images .btn-primary:hover i{opacity: 1;}
.gallery .images img{transition: 0.3s all ease-in-out; width: 100%; height: auto;} 
.gallery .img-more{margin-bottom: 40px;display: flex;align-items: center;justify-content: center;}
.gallery .img-more a{transition: 0.4s all ease-in-out; letter-spacing: 1px; text-transform: uppercase; color: #eda10a!important;border: 1px solid #eda10a; padding: 6px 14px;border-radius: 4px;}
.gallery .img-more a:hover{background:#eda10a;color: #fff!important;}
.com-back {background: #f5f5f5;}
.com-back a{color: #046991;}
.com-back p{padding: 10px 0px; color: #333;}
.about-us .book-rooms{box-shadow: 0px 0px 5px #ccc;padding: 20px;}
.about-us .book-rooms button{background: #eda10a!important;margin-top: 20px;border-color:#eda10a; }
.about-us .book-rooms .form-control:focus{outline: none!important; box-shadow: none!important;}
.about-us .book-rooms button:focus{outline: none!important; box-shadow: none!important;}

.com-back-1 li{list-style: none; display: inline-block;}
.cal-section .p-top{
    font-weight: 600;
    color: #333;
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 14px;
    line-height: 20px;
}
.top-header ul.call-now{ display: flex;  justify-content: flex-end;   align-items: center;}
.top-header ul li{list-style: none; display: inline-block;}
.top-header ul.call-now a{
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    transition: 0.4s all ease-in-out;
    color: #191919;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}
.top-header input:focus,.seach-form input:focus{outline:none;box-shadow:none;border: 1px solid #ced4da;}
.small-nav-wraper,.for-phone-contact{display:none;}
/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .welcome .first .discount{position: static;margin-top: 40px; margin-bottom: 40px;}
.welcome h1{margin-top: 10px;}
.discount-section .content {width: 90%;}
.my-slider-ban .ban-frrm{display: none!important;}
.my-slider-ban .my-ban .ban-overlay p {text-align: center;}
.payment img{height: 30px;}
.affi img{height: 30px;}
.affi ul li{list-style: none;display: inline-block;}
.wel-top .cont1 img{height: 40px;}
.wel-top .cont1 h1{font-size: 20px;}
.wel-top .cont1 p{display: none;}
.my-slider-ban h1{font-size: 20px;}
.my-slider-ban .my-ban .ban-overlay{width: 83%;}
.didnot-find h3 {font-size: 18px;}
.pay-lgo .content{flex-direction: column;}
.top-header{display: none;}
.small-nav{display: block;}
.navigation{display: none!important;}
.details-image img{height: 300px;}
.details-image h1{left: 20px;font-size: 24px;}
.new-page .navbar-nav{flex-direction: row!important;}
.new-page .content .bg-dark .nav-link{font-size: 15px;padding: 12px 7px;}
footer h4{margin-top: 15px}
section .upcomming .title-section{flex-direction: column;}
.upcomming{overflow-x: scroll;}
section .upcomming .table{min-width: 1150px!important;}
.navigation #nv-search{display: none;}
.navigation .small-form{display: block;}
.navigation .container-fluid{padding: inherit!important;}
.top-header section .info .for-desktop{display: none;}
.top-header section .info .info3 img{height: 30px;width: auto;}
.top-header section .info .info1 a{font-size: 24px;}
.my-slider-ban img{width: 100%;height: 250px;}
.my-slider-ban .my-ban .ban-overlay h2{font-size: 24px;}
.my-slider-ban .my-ban .ban-overlay .ban-link a{font-size: 13px;padding: 3px 14px;border-radius: 25px;}
.welcome{padding: 0px;}
.didnot-find{display: none;}
.new-page .content .bg-dark .nav-link{font-size: 12px;}
.my-slider-ban .my-ban .ban-overlay{top: 50%;}
.welcome img{width: 100%;height: 220px;border-radius: 10px;margin-top: 20px;margin-bottom: 20px;}
.discount-section p{font-size: 12px;line-height: 15px;}
#dnvd{padding: 0px 10px;}
.my-slider-ban .my-ban .ban-overlay p{display: none;}
.major-services .col, .service .col,.row-cols-sm-3>*,.row-cols-sm-4>*,.row-cols-sm-2>*{flex: 0 0 100%;}
.branch-icon{margin:0;display:block;border:0;}
footer .col{flex: 0 0 100%;}
.small-nav-wraper,.for-phone-contact{display:block;}
.for-phone-contact {
    position: fixed;
    bottom: 4px;
    left: 5px;
    z-index: 9999;
}
.for-phone-contact ul li a{
    color:#fff;
    background:#337ab7;
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.small-nav-wraper {
    position: sticky;
    top: -75px;
    z-index: 999;
}
.small-nav {
    padding: 8px 0px;
    position: relative;
    top: 0px;
    z-index: 99;
    background: #fff;
    box-shadow: 0px 1px 1px #f5f5f5;
}
.small-nav .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:10px;
}
.small-nav .top-m-icon a i {
    font-size: 30px;
    margin-left: 15px;
    margin-top: 5px;
}
.small-nav-wraper .small-nv-frm {
    background: #1b293a;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.small-nav-wraper .form {
    padding: 4px 10px;
    width: 100%;
    background: #1b293a;
    display: flex;
    align-items: center;
}
.small-nav-wraper .form input {
    background: #1b293a;
    border-radius: 0px;
    border: none;
    margin-left: 10px;
    margin-right: 5px;
    color: #fff;
}
.small-nav-wraper .small-nv-frm button span {
    color: #fff;
    display: flex;
    font-weight: 400;
}
.small-nav-wraper .small-nv-frm button span i {
    margin-right: 10px;
}
.small-navbox{height:calc(100vh - 85px);overflow-y:scroll;background:#fff;}
}
img{max-width:100%;}
/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {
    .welcome .first .discount{position: static;margin-top: 40px;margin-bottom: 40px;}
.welcome h2{margin-top: 10px;}
.discount-section .content {width: 90%;}
.my-slider-ban .ban-frrm{display: none!important;}
.my-slider-ban .my-ban .ban-overlay p {text-align: center;}
.payment img{height: 30px;}
.affi img{height: 30px;}
.wel-top .cont1 img{height: 40px;}
.wel-top .cont1 h2{font-size: 20px;}
.wel-top .cont1 p{display: none;}
.my-slider-ban h2{font-size: 20px;}
.my-slider-ban .my-ban .ban-overlay{width: 83%;}
.didnot-find h3 {font-size: 18px;}
.pay-lgo .content{flex-direction: column;}
.pay-lgo .content ul li{list-style: none; display:inline-block;}
.top-header{display: none;}
.small-nav{display: block;}
.navigation{display: none!important;}
footer h4{margin-top: 15px}
section .upcomming .title-section{flex-direction: column;}
.upcomming{overflow-x: scroll;}
section .upcomming .table{min-width: 1150px!important;}
.navigation #nv-search{display: none;}
.navigation .small-form{display: block;}
.navigation .container-fluid{padding: inherit!important;}
.top-header section .info .for-desktop{display: none;}
.top-header section .info .info3 img{height: 30px;width: auto;}
.top-header section .info .info1 a{font-size: 24px;}
.my-slider-ban img{width: 100%;height: 250px;}
.my-slider-ban .my-ban .ban-overlay h2{font-size: 24px;}
.my-slider-ban .my-ban .ban-overlay .ban-link a{font-size: 13px;padding: 3px 14px;border-radius: 25px;}
.welcome{padding: 0px;}
.didnot-find{display: none;}
.new-page .content .bg-dark .nav-link{font-size: 12px;}
.my-slider-ban .my-ban .ban-overlay{top: 50%;}
.welcome img{width: 100%;height: 220px;border-radius: 10px;margin-top: 20px;margin-bottom: 20px;}
.discount-section p{font-size: 12px;line-height: 15px;}
.my-slider-ban .my-ban .ban-overlay p{display: none;}
.major-services .col, .service .col,.row-cols-sm-3>*,.row-cols-sm-4>*,.row-cols-sm-2>*{flex: 0 0 100%;}
.branch-icon{margin:0;display:block;border:0;}
footer .col{flex: 0 0 100%;}
.small-nav-wraper,.for-phone-contact{display:block;}
.for-phone-contact {
    position: fixed;
    bottom: 4px;
    left: 5px;
    z-index: 9999;
}
.for-phone-contact ul li a{
    color:#fff;
    background:#337ab7;
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.small-nav-wraper {
    position: sticky;
    top: -75px;
    z-index: 999;
}
.small-nav {
    padding: 8px 0px;
    position: relative;
    top: 0px;
    z-index: 99;
    background: #fff;
    box-shadow: 0px 1px 1px #f5f5f5;
}
.small-nav .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:10px;
}
.small-nav .top-m-icon a i {
    font-size: 30px;
    margin-left: 15px;
    margin-top: 5px;
}
.small-nav-wraper .small-nv-frm {
    background: #1b293a;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.small-nav-wraper .form {
    padding: 4px 10px;
    width: 100%;
    background: #1b293a;
    display: flex;
    align-items: center;
}
.small-nav-wraper .form input {
    background: #1b293a;
    border-radius: 0px;
    border: none;
    margin-left: 10px;
    margin-right: 5px;
    color: #fff;
}
.small-nav-wraper .small-nv-frm button span {
    color: #fff;
    display: flex;
    font-weight: 400;
}
.small-nav-wraper .small-nv-frm button span i {
    margin-right: 10px;
}
.small-navbox{height:calc(100vh - 85px);overflow-y:scroll;background:#fff;}
}
/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
    .welcome .first .discount{position: static;margin-top: 40px;margin-bottom: 40px;}
.welcome h1{margin-top: 10px;}
.discount-section .content {width: 90%;}
.my-slider-ban .ban-frrm{display: none!important;}
.my-slider-ban .my-ban .ban-overlay p {text-align: center;}
.payment img{height: 30px;}
.affi img{height: 30px;}
.wel-top .cont1 img{height: 40px;}
.wel-top .cont1 h1{font-size: 20px;}
.wel-top .cont1 p{display: none;}
.my-slider-ban h1{font-size: 20px;}
.my-slider-ban .my-ban .ban-overlay{width: 83%;}
.didnot-find h3 {font-size: 18px;}
.pay-lgo .content{flex-direction: column;}
.top-header{display: none;}
.small-nav{display: block;}
.navigation{display: none!important;}
footer h4{margin-top: 15px}
section .upcomming .title-section{flex-direction: column;}
.upcomming{overflow-x: scroll;}
section .upcomming .table{min-width: 1150px!important;}
.navigation #nv-search{display: none;}
.navigation .small-form{display: block;}
.navigation .container-fluid{padding: inherit!important;}
.top-header section .info .for-desktop{display: none;}
.top-header section .info .info3 img{height: 30px;width: auto;}
.top-header section .info .info1 a{font-size: 24px;}
.my-slider-ban img{width: 100%;height: 250px;}
.my-slider-ban .my-ban .ban-overlay h2{font-size: 24px;}
.my-slider-ban .my-ban .ban-overlay .ban-link a{font-size: 13px;padding: 3px 14px;border-radius: 25px;}
.welcome{padding: 0px;}
.didnot-find{display: none;}
.new-page .content .bg-dark .nav-link{font-size: 12px;}
.my-slider-ban .my-ban .ban-overlay{top: 50%;}
.welcome img{width: 100%;height: 220px;border-radius: 10px;margin-top: 20px;margin-bottom: 20px;}
.discount-section p{font-size: 12px;line-height: 15px;}
.my-slider-ban .my-ban .ban-overlay p{display: none;}
.major-services .col, .service .col,.row-cols-sm-3>*,.row-cols-sm-4>*,.row-cols-sm-2>*{flex: 0 0 50%;}
.branch-icon{margin:0;display:block;border:0;}
footer .col{flex: 0 0 50%;}
.small-nav-wraper,.for-phone-contact{display:block;}
.for-phone-contact {
    position: fixed;
    bottom: 4px;
    left: 5px;
    z-index: 9999;
}
.for-phone-contact ul li a{
    color:#fff;
    background:#337ab7;
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.small-nav-wraper {
    position: sticky;
    top: -75px;
    z-index: 999;
}
.small-nav {
    padding: 8px 0px;
    position: relative;
    top: 0px;
    z-index: 99;
    background: #fff;
    box-shadow: 0px 1px 1px #f5f5f5;
}
.small-nav .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:10px;
}
.small-nav .top-m-icon a i {
    font-size: 30px;
    margin-left: 15px;
    margin-top: 5px;
}
.small-nav-wraper .small-nv-frm {
    background: #1b293a;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.small-nav-wraper .form {
    padding: 4px 10px;
    width: 100%;
    background: #1b293a;
    display: flex;
    align-items: center;
}
.small-nav-wraper .form input {
    background: #1b293a;
    border-radius: 0px;
    border: none;
    margin-left: 10px;
    margin-right: 5px;
    color: #fff;
}
.small-nav-wraper .small-nv-frm button span {
    color: #fff;
    display: flex;
    font-weight: 400;
}
.small-nav-wraper .small-nv-frm button span i {
    margin-right: 10px;
}
.small-navbox{height:calc(100vh - 85px);overflow-y:scroll;background:#fff;}
}
/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {
}
/*Extra large devices (large desktops, 1200px and up)*/
.contact-details{margin: 50px;margin-top: 0px;padding-top: 60px;}
.contact-details h1{font-size: 36px;font-weight:700;color: #333;}
.contact-details .contact1 ul li{display: inherit; border-bottom: 1px solid #999;padding: 20px 0px;}
.contact-details .contact1 ul li h3{color: 300;font-size:22px;font-weight: 400; margin-bottom: 10px;}
.contact-details .contact1 ul li h3 i{font-size: 20px;margin-right: 10px;}
.contact-details .contact1 ul li a{color: #666;font-size: 16px;}
.contact-form h2{margin-bottom: 20px; font-size: 36px;font-weight: 700; margin-top: 40px;}
.contact-form label{font-size: 22px;}
.contact-form .form-control::placeholder{font-weight: 300;font-size: 14px;}
.contact-form .form-group{margin-bottom: 18px;}
.contact-form .btn-primary{background-color: #333;outline: none; border:none;}
.about-us .about-img{position: relative; width: 100%;height: auto; overflow: hidden; margin-bottom: 30px;}
.about-us .about-img img{margin-top: 30px; width: 100%;height: auto;object-fit: cover; filter: brightness(50%);}
.about-us .about-img .overlay{}
.about-us .about-img .overlay a{transition: 0.4s all ease-in-out; color: #fff;font-size: 36px;font-weight: 400;}
.about-us .about-img .overlay a:hover{margin-right: 5px; text-decoration: none;}
.about-us .about-img .overlay ul li{color: #fff;font-size: 36px;font-weight: 400;}
.about-us h1{font-size: 36px;font-weight:700;color: #333; margin-bottom: 10px;}
.about-us p{line-height: 28px;text-align: justify;color: #333;margin-bottom: 30px;padding-top: 0px!important;}
.about-us .content{padding-top: 5px;padding-bottom: 20px;}
.my-expert-class{position: relative; background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)) , url(../images/back.jpg);background-attachment: fixed;background-position: center;background-repeat: no-repeat;background-size: cover; padding-top: 40px;}
.my-expert-class h2{color: #fff!important;}
.my-expert-class .responsive .res-1{background: #fff!important;box-shadow: 0px 0px 10px #99999985!important;border-radius: 10px!important;}
.about-us{margin-top: 36px;padding-bottom: 25px;}
.alert-dismissable .btn-close{float:right;}