




#mainnav ul li a{
   font-family: "Roboto Condensed", sans-serif;
   font-size: 15px;
   margin-left: -2px;
   margin-bottom: 15px;
   margin-top: 13px;
} 

hr{ color: rgb(0, 0, 0);
margin-top: 4px;}


#secNav ul li :hover{
  color: #d82626;
    transition: 0.5s;
}
.navitemz{
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  margin-bottom: 0%;
  margin-left: 14px;
  color: rgb(36, 36, 36);
  transition: 0.3s ease-in-out;
  }

#mainnav{
  margin-bottom: -0.2rem;
}
#mainnav ul li {
  margin-top: 0.09rem;
  margin-left: -0.16rem;
}
.hover{
    max-width: 1920px;
    margin: auto;
}


.hamburger{color: #1a1919 !important;}

.hamburger:active{ color: #bd2c07;}



.theshadow{
  color: white;
box-shadow: 11px 97px 5px -85px rgba(0,0,0,0.28);
-webkit-box-shadow: 11px 97px 5px -85px rgba(0,0,0,0.28);
-moz-box-shadow: 11px 97px 5px -85px rgba(0,0,0,0.28);
}

.cardily {
    background: transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 30%;
    transition: all 0.4s ease-out;
    font-size: 20px;
    line-height: 35px;
}
  
.cardily:hover {
    box-shadow:  0px 1px 15px 0px rgba(22, 22, 22, 0.329); 
    transform: translateY(-10px) scale(1.008) translateZ(0);
}
.text-black{color: black !important;

}
.bg-black{ background-color: black;

}
.bg-gray{
    background-color: rgb(255, 255, 255);
}
.text-deepred{
margin-right: 10%;
color: #c64526;
font-family: Montserrat, sans-serif;
font-size: 14px;
}

.light-gray{
  background-color: #f1f1f1;
}

.buttons {
    width: 200px;
    margin: 0 auto;
    display: inline;}
    
    
.action_btn {
    background-color: hwb(253 18% 2% / 0.801);
    width: 200px;
    margin: 0 auto;
    display: inline;
    border: 0;
    border-radius: 10%;
    }


.action_btn:hover{
    background-color: rgb(209, 86, 15);

}


.action_btn2{
    
        background-color: rgb(0, 211, 211);
       border: 0;
       border-radius: 10%;
       
    }


.action_btn2:hover{
        background-color: rgb(209, 86, 15);
    
    }
    .action_btn4{background-color: #c64526 !important;
    border-radius: 4px; transition: 0.4s ease-in-out;}
    .action_btn4:hover{
      background-color: rgb(0, 0, 0) !important;
      transition: 0.7s ease-in-out;}

.arrow {
        border: solid orangered;
        
        border-width: 0 3px 3px 0;
        display: inline-block;
        padding: 3px;
      }
      
.right {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
      }

.header-top{
  z-index: 10 !important;
}
      
.buttonimp{
  padding: 2rem;
  background: transparent;
  position: sticky;
  bottom: 0;
}

.content {
  padding: 2rem;
}


/* main para text with same styling   */
.text-sp{font-family: Montserrat, sans-serif; font-weight:500; line-height: 1.8rem; margin-top: 2rem; font-size: 16px;}


/* card overlay css  */
  
  .item {
    position: relative;
    overflow-y: hidden;
    box-shadow: 0.1rem 0.1rem 1rem rgba(0, 0, 0, 0.1);
  }
  .item h3 {
    margin: 0;
    display: block;
    background-color: rgb(41, 41, 41);
    padding: 1rem;
    transform: translate3d(0, -100%, 0);
    transition: transform 300ms;
  }
  .item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  .item a:hover ~ .item__overlay, .item a:focus ~ .item__overlay {
    transform: translate3d(0, 0, 0);
  }
  .item a:hover ~ .item__overlay h3, .item a:focus ~ .item__overlay h3 {
    transform: translate3d(0, 0, 0);
  }
  .item a:hover ~ .item__overlay .item__body, .item a:focus ~ .item__overlay .item__body {
    opacity: 1;
  }
  
  
.item__overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: absolute;
    width: 50%;
    top: 0;
    transition: transform 300ms;
    background-color: #1a1919;
    transform: translate3d(0, 100%, 0);
    margin-left: 117px;
    
  }
  
  .item__body {
    flex-grow: 1;
    padding: 1rem;
    opacity: 0;
    transition: opacity 300ms 80ms;
    padding-bottom: 70px;
  }
  .item__body p {
    margin: 0;
  }


/* Parent Container */
.content123{
  position: relative;
  float: left;
  margin-right: 10px;
}

/* Child Text Container */
.content123 div{
  position: absolute;
  bottom: 0;
  right: 0;
  background: black;
  color: white;
  font-family: sans-serif;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s, opacity 0.5s linear; 
  transition: visibility 0s, opacity 0.5s linear;
}

/* Hover on Parent Container */
.content123:hover{
  cursor: pointer;
}

.content123:hover div{
  width: 250px;
  padding: 18px 35px;
  visibility: visible;
  opacity: 0.7; 
}




/* all text SLIDEUP animation here */

/* crops animations (slideup) that exceeds one line area */
.line {
  overflow: hidden;
 
}

/* lineup class animation and keyframes (slideup) */
.lineUp {
  animation: 2s anim-lineUp ease-out;
}
@keyframes anim-lineUp {
  0% {
    opacity: 0;
    transform: translateY(80%);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}



/* sticky, Style the navbar */
#secNav {
  overflow: hidden;
  z-index: 10;

}

/* sticky Navbar links */
#secNav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* mediaquery of mobile ph nav  */
@media (max-width: 991px) {
  
#secNav .float-panel {
  background-color: #f2f2f2;
}

  #secNav ul li{
   
    margin-left: -6rem;}


.secNav_collapse{
width: 100%;
height: 100%;}

.text-deepred{ color: #c64526 !important;

}

#secNav ul li:hover a{ 
  background-color:rgb(46, 40, 40);
  width: 100%;
  text-align: left;
  transition: 0.5s;

}
#secNav ul li:hover a h6{
  color:  #c64526 ;
}


  #secNav ul li a h6 {
color: black;
margin-top: 1.5rem;
  }
}

/* 2nd last sliders btn  */

@media (min-width: 782px)
{.carbtn{
  background-color:#c64526;
  margin-top: 100% !important;
  margin-bottom: -100%;
  position: absolute;
  width: 3rem;
  height: 3rem;

}
.carbtn1{
  background-color: #c64526 !important;
  margin-top: 100% !important;
  margin-bottom: -100%;
  position: absolute;
  margin-left: 113%;
  margin-right: -935%;
  display: block;
  font-size: 100px !important;
  width: 3rem;
  height: 3rem;
  visibility: visible !important;

}
.carbtn2{  background-color: #c64526;
  margin-top: 100% !important;
  margin-bottom: -100%;
  position: absolute;
  margin-left: 113%;
  margin-right: -935%;
  width: 3rem;
  height: 3rem;


}
.carbtn3{  background-color:#c64526;
  margin-top: 100% !important;
  margin-bottom: -100%;
  position: absolute;
  width: 3rem;
  height: 3rem;

}
}




/* ALL PRODUCTS ARROW ANIMATION */
.pdct:hover{
  color: rgb(209, 86, 15);
  transition: 0.5s;

}
.blink{
  font-size: 25px;
  font-family: cursive;
  color: white;
  animation: blink 1s linear infinite;
}
@keyframes blink{
0%{opacity: 0;}
40%{opacity: .5;}
90%{opacity: 1;}
}

/* 
.blink{
    position: absolute;
    margin-left: 92%;
    margin-top: 0.2rem;
    left: -10px;
    -webkit-animation: slide 1s forwards;
    animation: slide 1s forwards infinite;
    
}

@-webkit-keyframes slide {
    90% { left: 0; }
}

@keyframes slide {
    90% { left: 0; }
} */






/* DUBAI UAE THE BUSINESS HUB CAPTION OVER CAROUSEL HERE */
.caption-style-1{
  list-style-type: none;
  margin-right: 0px;
  padding: 0px;
  
}
.caption-style-1 li{
  float:none;
  position: relative;
  overflow: hidden;
}
.caption-style-1 li:hover .caption{
  opacity: 10;
  transform: translateY(-100px);
  -webkit-transform:translateY(-100px);
  -moz-transform:translateY(-100px);
  -ms-transform:translateY(-100px);
  -o-transform:translateY(-100px);
}
.caption-style-1 img{
  float: none;
  z-index: 4;
}
.caption-style-1 .caption{
  cursor: pointer;
  position: absolute;
  margin-top: 4%;
  margin-left:55% ;
  opacity: 0;
  top:100%;
  -webkit-transition:all 0.25s ease-in-out;
  -moz-transition:all 0.25s ease-in-out;
  -o-transition:all 0.25s ease-in-out;
  -ms-transition:all 0.25s ease-in-out;
  transition:all 0.25s ease-in-out;
}
.caption-style-1 .blur{
 
  height: 150px;
  width: 200px;
  z-index: 5;
  position: absolute;
}
.caption-style-1 .caption-text h4{
  background-color: #1a1919;
  padding-top: 7%;
  width: 100%;
  height: 50%;
  border-radius: 10%;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}
.caption-style-1 .caption-text{
  z-index: 10;
  color: #fff;
  position: absolute;
  width: 200px;
  height: 75px;
  text-align: center;
  top:100%;
}










.maincrslbtn-next {
  position: absolute;
  top: 45%;
  right: -1%;
  bottom: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8%;
  height: 11.5%;
  padding: 0;
  color: aliceblue;
  background-color: transparent;
  text-align: center;
  border: 0;
}


.maincrslbtn-prev {
  position: absolute;
  top: 45%;
  left: -1%;
  bottom: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8%;
  height: 11.5%;
  padding: 0;
  color: aliceblue;
  background-color: transparent;
  text-align: center;
  border: 0;
}



.crslbtn-next {
  position: absolute;
  top: 80%;
  left: 92%;
  bottom: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8%;
  height: 11.5%;
  padding: 0;
  color: #fff;
  text-align: center;
  background-color: rgb(194, 52, 0);
  border: 0;
}


.crslbtn-prev {
  position: absolute;
  top: 80%;
  left: 85.5%;
  bottom: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8%;
  height: 11.5%;
  padding: 0;
  color: #fff;
  text-align: center;
  background-color:rgb(194, 52, 0);
  border: 0;
}




/* about page styling  */
.zoomie{
	-webkit-animation: scale-up-center 4s cubic-bezier(0.590, 0.675, 0.865, 1.000) both;
	        animation: scale-up-center 4s cubic-bezier(0.590, 0.675, 0.865, 1.000) both;
}
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.zoomie img {
  height: auto;
  width:100%;
  position: relative;
  justify-content: center;
  overflow: hidden;
}

#brdr{
 font-weight: 500;
 margin: 25px 20px;
}
#brdr:after {
   content: '';
   display: block;
   position: relative;
   width: 2%;
   border: 2px solid #898989;
   margin-top: 8px; }



#dottedlinee{ font-family: Roboto Condensed,sans-serif !important;}

  

.itemest {
	-webkit-animation: slide-left 2.9s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-left 2.9s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
}




#slide-left {
	-webkit-animation: slide-left 2.9s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-left 2.9s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
}

@media (min-width: 775px){

#rightpara{margin-left:-40%;
    padding-right:7%;
    
    border: 1px solid rgb(205, 216, 224);
     border-top:none;
     border-right:none;}
#rightpara h3{padding-left:20px;}   
#rightpara p{padding-left:20px;} 
   
#rglogo{background-color:white;
    margin-left:0;
    margin-right:60%;
    margin-top:-10px;}

#backcolor{
    margin-left:20px;
    width: 155px;}

.bordercolor{
    background-color:white; 
    margin-left:11.1rem;
    margin-right:-12rem;
    margin-top:-10px;}

#leftpara{
margin-right:-22%;
border: 1px solid rgb(205, 216, 224); 
border-top:none;
border-left:none;
}
}


@media (max-width:1120px) {
    .bordercolor{
    background-color:white; 
    margin-left:9.3rem;
    margin-right:-3.4rem;
    margin-top:-10px
    }
}


@media (max-width:1090px) {
    .bordercolor{
        background-color:white; 
    margin-left:9.3rem;
    margin-right:-2rem;
    margin-top:-10px
    }   
}



/* contact page css  */

*{font-family: Montserrat, sans-serif;
  font-weight:500;}
*:focus {
    outline: none;
}

  @media (min-width: 815px){
.inputrg{ display: flex;
width:47rem;}


  }

#contactcard{ margin-top:12rem; margin-bottom: 3rem;}

.input-fields{
  font-size:15px;
  display: flex;
  flex-direction: column;
  text-align:left;
}

.input-fields,
.msg{
  width: 100%;
}

.input-fields .input,
.msg textarea{
margin: 10px;
background: transparent;
border: 0;
border-bottom: 1px solid #c64526;
padding: 22px;
width: 100%;
}

.msg textarea{
height: 100px;
}

::-webkit-input-placeholder {
color: gray;
}



.btn0 {
  background: #c64526;
  text-align: left;
  padding: 15px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-size:15px;
  width: 8.9rem !important;
}

@media screen and (max-width: 670px){
.contact-form{
  flex-direction: column;
}
.msg textarea{
  height: 80px;
}
.input-fields,
.msg{
  width: 150%;
}
}

.cool-link h6{font-size: 14px; color: #1a1919; transition: 0.3s ease-in-out;}

.cool-link {
  display: inline-block;
  text-decoration: none;
  width: 15rem;
  border-bottom:1px solid #a3a3a3;
  margin-bottom: 1rem;
}

.cool-link::after {
  content: '';
  display: block;
  width: 0;
  border: none;
  height: 2px;
  transition: width .3s;
}

.cool-link:hover::after {
  width: 15em;
  border-bottom:none;
  background: #b60000;
  transition: width .3s;
}
.cool-link:hover h6{  color: #b60000; border: none;}



.con-footer-imp a:hover{color: #b60000;}


.con-footer-imp a{color: rgba(61, 61, 61, 0.781);  text-decoration:none; transition: 0.2s ease-in-out;}

.page-anim-banner{position: absolute; z-index: 7 !important; overflow: hidden; height: 39%; width:100%}