body{
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #1e70ba;
    overflow-x: hidden;
    background: #fff;
}
html{
    overflow-x: hidden;
}
.ovhidden{
    overflow: hidden;
}


a{
  color: #545456;
  text-decoration: none !important;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
    font-weight: 400;
}
a:hover{
  text-decoration: none !important;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

/* .fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas{
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
} */
ul{
  padding-left: 0px; 
  list-style-type: none;
  margin: 0
}
img{
    display: block;
  max-width: 100%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

img.loadimg{
    opacity: 0;
    transform: scale(.95);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
img.loadimg.fade{
    opacity: 1.0;
    transform: scale(1);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

button{
    border: none;
    cursor: pointer;
    outline: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.h1, .h2, .h3, h1, h2, h3{
  font-weight: 700;
    color: #303030;
}
.h4, .h5, .h6, h4, h5, h6{
    font-weight: 600;
    line-height: 1.4;
    color: #303030;
}

input{
    font-family: "Poppins", sans-serif;
}
  


@media(min-width: 1366px){
.cmpad{
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
}
@media(max-width: 1366px){
.cmpad{
  padding-left:80px;
  padding-right:80px;
}
}
@media(max-width: 991px){
.cmpad{
  padding-left:40px;
  padding-right:40px;
}

}
@media(max-width: 767px){
.cmpad{
  padding-left:15px;
  padding-right:15px;
}

}
@media(max-width: 575px){
html{
  font-size: 90%;
}

}





@media(max-width: 767px){
.h1, h1{
    font-size: 2.2rem;
}
.h2, h2{
    font-size: 1.75rem;
}
}
@media(max-width: 575px){
.h2, h2{
    font-size: 1.5rem;
}
.h1, h1{
    font-size: 2rem;
}
}



@media(min-width:768px){
::-webkit-scrollbar{width:10px;height:6px}
::-webkit-scrollbar-track{background-color:#eee}
::-webkit-scrollbar-thumb{background-color:#3a3a3a}
::-webkit-scrollbar-thumb:hover{background-color:#444}
}

.custscroll::-webkit-scrollbar,.custscroll::-webkit-scrollbar-thumb{border-radius:13px;width:6px;height:6px;background-clip:padding-box;background:transparent}
.custscroll::-webkit-scrollbar-track{background:transparent}
.custscroll:hover::-webkit-scrollbar-thumb{background-color:#ccc}
.custscroll::-webkit-scrollbar-thumb:hover{background-color:#999}


.custscrollA::-webkit-scrollbar{border-radius:13px;width:6px;height:6px;background-clip:padding-box;background:transparent}
.custscrollA::-webkit-scrollbar-track{background:transparent}
.custscrollA::-webkit-scrollbar-thumb{background-color:#ccc;border-radius: 6px;}
.custscrollA::-webkit-scrollbar-thumb:hover{background-color:#999}


ul.social {
    display: flex;
    gap: 10px;
}
ul.social li {
    display: block;
}
ul.social li:last-child{
    margin-right: 0;
}
ul.social li a {
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    font-size: 0.875rem;
}

ul.social li a i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    font-size: .9rem;
    color: #fff;
    background-color: rgb(228 29 36 / 30%);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

ul.social li a:hover i {
    color: #fff;
    background-color: #e41d22;
}
p{
    margin-top: 0;
    color: #555555;
    font-size: 0.875rem;
}


.flexVcenter{
    display: flex;
    flex-flow: wrap;
    align-content: center;
}



@keyframes moveRight{
    0%{
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
    }
    50%{
        transform: translateX(5px);
        -webkit-transform: translateX(5px);
    }
    100%{
        transform: translate(0px);
        -webkit-transform: translate(0px);
    }
}
@keyframes moveLeft{
    0%{
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
    }
    50%{
        transform: translateX(-5px);
        -webkit-transform: translateX(-5px);
    }
    100%{
        transform: translate(0px);
        -webkit-transform: translate(0px);
    }
}
@keyframes moveDown{
    0%{
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
    }
    50%{
        transform: translateY(5px);
        -webkit-transform: translateY(5px);
    }
    100%{
        transform: translate(0px);
        -webkit-transform: translate(0px);
    }
}
@keyframes moveUp{
    0%{
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
    }
    50%{
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
    }
    100%{
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
    }
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/*PULSE*/
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}



.btn{
    padding: 10px 15px;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    border-radius: 8px;
}


.mybtn-primary{
    background: #ffffff;
    color: #000000;
    min-width: 134px;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.mybtn-primary:hover{
    background: #ed1a23;
    color:#fff;
}
.mybtn-primary:hover img{
    filter: brightness(0) invert(1);
}

.mybtn-white{
    background: #fff;
    color: #b00d08;
}
.mybtn-white:hover{
    color: #fcbe06; 
}
.outlinebtn{
    color: #0EB3C1;
    border: 1px solid #0EB3C1;
}
.outlinebtn:hover{
    color: #1d70bb;
    border: 1px solid #1d70bb;
}
.outlinebtn2{
    color: #1D75BD;
    background: linear-gradient(to right,#fff,#fff,#1D75BD,#0EB3C1);
    background-size: 300% 100%;
    width:135px;
}
.outlinebtn2:hover{
    color: #fff;
    background-position: 100% 0;
}
.mybtn-secondary{
   background: linear-gradient(to right,#1D75BD,#0EB3C1,#1D75BD,#0EB3C1);
   background-size: 300% 100%;
   overflow: hidden;
    -webkit-background-clip: text;
    font-size: 0.875rem;
    -webkit-text-fill-color: transparent;
}
.mybtn-secondary:hover{
   background-position: 100% 0;
}



.btn.center{
    display: table;
    margin: auto;
}

.mybtn-group{
    display: flex;
    flex-flow: wrap;
    align-items: center;
    margin: -5px;
}
.mybtn-group .mybtn-primary,
.mybtn-group .mybtn-secondary,
.mybtn-group .mybtn-third,
.mybtn-group .white-outline{
    margin: 5px;
}
.white-outline{
    border:1px solid #fff;
    color: #fff;
    background-color: transparent;
    opacity: .75;
}
.white-outline:hover{
    opacity: 1;
    background: #fff;
}


.posrel{
    position: relative;
}

@media(max-width:575px){
.btn{
    font-size: .875rem;
}
}





/*---------------------------------------*/
/*::::::::::::::::HEADER:::::::::::::::::*/
/*---------------------------------------*/
header{
    background: linear-gradient(90deg, #fff8e5, #ffebba);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}
header.sticky{
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    background-color: #b00d08;
    border-bottom: 0px solid transparent;
}
header.sticky .headmain{
    box-shadow: none;
}
header.sticky .headmain .logocol{
    width: 210px;
    padding: 5px 0;
    -webkit-transition: all .3s linear;
}


header .hedtop-full{
    background: #42BEED;
}
header .headtop{
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none;
}
.sticky .headtop{
display: none!important;
height: 0;
}
header .headtop .topmenu{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-weight: 500;
    font-size: .9rem;
}
header .topmenuli{
    padding-right: 15px;
    border-right: 1px solid #ffffff29;
}
.accesscol{
    display: flex;
    align-items: center;
}
.accesscol img{
    margin-right: 0px!important;
}
header .headtop .topsocial{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
header .headtop .jobprtl{
    padding: 10px 15px;
    background: #fff;
    color: #42beed;
}
header .headtop .jobprtl a{
    color: #42BEED;
    font-weight: 400;
}
header .headtop .jobprtl a:hover{
    color: #000080;
}
header.sticky .hedtop-full{
    margin-top: 0px;
    height: 0;
    -webkit-transition: all .3s linear;
}
header.sticky .hedtop-full .jobprtl{
   display: none;
}
header .headmain{
    display: flex;
    justify-content: space-between;
    gap: 15px;
    background: ;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    align-items: center;
}
header .headmain .logocol{
    width: 300px;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    z-index: 1;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}
/* header.sticky .headmain .logocol{
    width: 200px;
    margin-top: 0;
} */
header .headmain .logocol a{
    display: flex;
    width: 100%;
}
header .headmain .logocol a img{
    width: 100%;
}
/* header.sticky .headmain .logocol a img{
    height: 50px;
} */
header .headmain .menucol{
    flex: 1 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}
header .headmain .menucol .mainmenu{
    display: flex;
    align-items: center;
    height: 100%;
}

header .megamenu{
    height: 100%;
    flex: 1 0 auto;
    margin: 0 9px;
}
header .normalmenu{
    position: relative;
}
header .megamenu a.mainli{
    display: flex;
    align-items: center;
    font-weight: 400;
    position: relative;

}
header .megamenu:hover a.mainli{
    color: #1D70BB;
}
header .megamenu.active a.mainli{
    color: #1D70BB;
}
header .megamenu-content {
    display: flex;
    align-items: center;
    position: absolute;
    background-color: #fff;
    width: 100%;
    max-width: 100%;
    right: -15px;
    border: none;
    z-index: 99;
    height: 0;
    padding: 0 15px;
    overflow: hidden;
    box-shadow: 4px 6px 20px rgb(0 0 0 / 10%);
    line-height: 1.4;
    border-radius: .3rem;
}
header .normalmenu .megamenu-content{
    width: max-content;
    max-width: 463px;
    min-width: 200px;
}
header .megamenu:hover .megamenu-content {
    min-height: 315px;
    height: auto;
    align-items: flex-start;
    padding-top: 15px;
    animation-name: zoomIn;
    animation-duration: .4s;
    animation-iteration-count: 1;
}
header .normalmenu:hover .megamenu-content{
    padding: 0;
    padding-bottom: 5px;
    min-height: auto;
    height: auto;
}
header .normalmenu .normlist{
    display: flex;
    flex-flow: column;
    font-size: .9rem;
    width: 100%;
}

header .normalmenu .normlist li a{
    color: #4f6b78;
    display: flex;
    padding: 8px 10px;
    border-bottom: 1px solid #0000000d;
}
header .normalmenu .normlist li a:hover{
    color: #000050;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
    from {
      opacity: 0;
      -webkit-transform: scale3d(0.3, 0.3, 0.3);
      transform: scale3d(0.3, 0.3, 0.3);
    }
  
    50% {
      opacity: 1;
    }
  }
  @keyframes zoomIn {
    from {
      opacity: 0;
      -webkit-transform: scale3d(0.3, 0.3, 0.3);
      transform: scale3d(0.3, 0.3, 0.3);
    }
  
    50% {
      opacity: 1;
    }
  }


.sizeUp{font-size:110%!important;}
.sizeNormal{font-size:100%!important;}
.sizeDown{font-size:90%!important;}

.themebtn.active{
    background-color: #2a2a2a !important;
    color: #fff !important;
    border-color: #2a2a2a !important;
}

.bottom-nav{
    border-bottom: none!important;
}
.enquiry{
 display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;   
    margin-left: 10px;
    min-width: auto;
}
.enquiry img{
    width: 20px;
}

@media(max-width:1200px){
header .headmain .menucol .mainmenu{
    gap: 0;
}
}

@media(max-width:991px){
header .headtop{
    height: 36px;

}
header.sticky .headtop{
    margin-top: 0px;
}

header .megamenu{
    display: flex;
    align-items: center;
}
header .headmain .logocol{
    width: 190px;
    padding-bottom: 15px;
}
header.sticky .headmain .logocol{
    width: 150px;
}
}

@media(max-width:767px){
header .headtop .topmenu{
    display: none;
}
header .headtop{
    justify-content: center;
}
}

@media(max-width:575px){
header .headmain .logocol{
    width: 150px;
     padding-bottom: 15px;
}
header .headtop .topsocial{
    display: none;
}
}





/*---------------------------------------*/
/*:::::::::::::::::SLIDER::::::::::::::::*/
/*---------------------------------------*/

.slider {
    position: relative;
    width: 100%;
    padding-bottom: 40px;
    padding-top: 140px;
}
.sliderfull{
    display: flex;
    flex-direction: column;
}
.slider-con {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  justify-content: center;
  max-width: 100%;
  margin-bottom: 30px;
}
.slideform{
    padding: 0px 25px;
    background: #fff8e5;
    border-radius: 30px;
    height: 410px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slideform img{
    margin-left: auto;
    margin-right: auto;
}
.slider-con h4{
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 25px;
}
.slider-con h2{
    font-size: 3.25rem;
}
.myform input, .myform textarea, .myform select {
    width: 100%;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    padding: 12px 15px;
    border-radius: 0.5rem;
    box-shadow: none;
    background-color: #fff;
    outline: 0;
    border:none!important;
    color: #000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
/* For Chrome, Safari, Edge, and Opera */
.myform input[type="number"]::-webkit-inner-spin-button, 
.myform input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
.myform input[type="number"] {
    -moz-appearance: textfield;
}

.myform input::placeholder {
    color: #565656;
}
.myform textarea::placeholder {
    color: #565656;
}
.myform select::placeholder {
    color: #565656;
}


.slideform h5{
    font-weight: 500;
    font-size: 1.1rem;
}

.sldrotp{
    font-size: 0.875rem;
    color: #555555;
}
.sldrrefresh{
    font-size: 1rem;
    color: #303030;
}
.sldrrefresh img{
    display: inline-block;
    width: 16px;
}
.slideform2inr{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}


@media(max-width:991px){
    .slider-con h2 {
    font-size: 2.5rem;
}
.slider-con h4{
    font-size: 1rem;
}
}

@media(max-width:767px){
.slideform{
    width: 100%;
    max-width: 365px;
}
.ft-adrs{
    margin-bottom: 15px;
}
}
@media(max-width:388px){
header .headmain .menucol{
    display: none;
}
}
@media(max-width:350px){
    .slider-con h4{
    margin-bottom: 10px;
    font-size: 0.875rem;
}   
 .slider-con h2 {
    font-size: 1.55rem;
}   
}
 

/*footer*/
footer{
    background: linear-gradient(90deg, #fff8e5, #ffebba);
}
.fthed{
    font-size: 1rem;
}
.ft-social {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.ft-social a{
    width: 40px;
    height: 40px;
    display: flex;
    background:#ffffff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.ft-social a:hover{
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.ft-social a:hover img{
   filter: brightness(0.5); 
}