
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'poppins';
  color: #444444;
  background: #FAFAFA;
}

a {
  color: #ED1C24;
  text-decoration: none;
}

a:hover {
  color: #e76668;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'poppins';
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.width100{width:100%;}
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ED1C24;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.top-header{
  padding: 8px 90px;
  box-shadow: 0 0 7px #ddd;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e65d5f;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 14px;
  margin: 0;
  padding: 0;
  font-weight: normal;  
  width: 100%;
  align-items: center;
  display: flex;
}

#header .logo a {
  color: #111111;
}

#header .logo a span {
  color: #ED1C24;
}

#header .logo img {
  max-height:auto;
}
.buttonLink{
  background: #ffdcdc;
  margin: 0 15px;
  border-radius: 35px;
  text-align: center;
  display: block;  
}
.navbar span.buttonLink a{
  display: block;
  color: #ED1C24;
  font-weight: 600;
  padding: 7px 12px;
}
.navbar span.buttonLink a:hover{
  text-decoration: underline;
}
.carousel-indicators li{width:50px;background-color: #fff;border: none;height: 5px;}
.carousel-indicators .active{width:50px; background-color:#ED1C24;height: 5px;}
/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 30px;  
  color: #111111;  
  padding: 8px 0px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  background: none;
    border: none;
}

.get-started-btn:hover {  
  color: #ED1C24;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5px 10px 25px;
  font-size: 13px;
  font-weight: 600;
  color: #313131;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ED1C24;
}
.navbar{
  min-height: auto;
  margin: 0 24px;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 7px #ddd;
    transition: 0.3s;
    border-radius: 12px;
 
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ED1C24;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #111111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
  z-index: 111;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    line-height: 52px;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0px;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 99;
  margin: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #111111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ED1C24;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ED1C24;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
.d-flex{display: flex;}
/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
.positionRelative{
  position: relative;
}
.backdrop{
  background: #00000012;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
}
.textMessage{
  background: #00000024;
    padding: 20px;
    position: absolute;
    top: 20px;
    left: 90px;
    z-index: 1;    
    max-width: 500px;
    width: 100%;
    background: linear-gradient(90deg, rgb(3 3 3 / 0%) 0%, rgb(3 3 3 / 38%) 0%, rgb(0 0 0 / 0%) 35%);;
}

.textMessage h2{
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  margin: 0;
}
.textMessage p{
  font-size: 30px;
  font-weight: 600;
  margin: 15px 0;
  color: #fff;
  line-height: 30px;
}
.textMessage p span{
  display: block;
}

.mr0{margin: 0;}
.pd0{padding: 0;}
.dropdown-content {
  display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 240px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 12;
    top: 60px;
    background: #fff;
    padding: 15px;
    right: 0;
    border-radius: 6px;
}
.contactDetails ul{
  margin: 0 ;
  padding: 0;
}
.contactDetails li{
  list-style-type: none;
  padding: 8px 0;
  color:#111111;
  font-size: 13px;
}
.contactDetails li i{
  color: #ED1C24;
  vertical-align: middle;
}
.contactDetails li a{
  padding: 8px 14px;
  font-weight: 500;
  line-height: 20px;
  margin:0;
}
.contactDetails li a:hover{
  color: #ED1C24;
  text-decoration: underline;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #8d8b8b;
  font-size: 14px;
  background: #fff;
  padding: 0 90px;
}
#footer p{font-size: 11px;}
.footerLinks{
  padding: 15px 0;
  border-bottom: 1px solid #e7e7e7;
}
.footerLinks a:hover svg path{fill:#ED1C24;}
.footerLinks a.icon-facebook:hover svg path{stroke:#ED1C24 !important;}
#footer .footer-top {
  padding: 20px 0 20px 0;
  background: #fff;
}
.mr10{
  margin-right: 10px;;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;  
  color: #3F3F3F;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;  
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {  
  color: #ED1C24;
  text-decoration: none;
}
.alignCenter{
  display: flex;
  align-items: center;
}
/*About section */
#about{
  padding: 20px 90px;
}
#about h2{
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px 0;
  color:#414141;
}
#about p{
  font-size: 14px;
  font-weight: normal;
  color:#545454;
}
/*Support Matrix Team */
.supportMatcixTeam{padding: 0px;}
.supportMatcixTeam table td{
  font-size: 13px;
  white-space: nowrap;
  color:#000;
  padding: 8px 6px;
}
.supportMatcixTeam table td.tdHeadingBorder1{
  background: #313131;
  color: #e7e7e7;
  font-size: 18px;
  font-weight: 600;
}
.supportMatcixTeam table tr.tdHeadingBorder2{
  background: #c3c3c3;
  color: #000000;
  font-weight: 600;
}

#supportMatrix .modal-lg{
  max-width:1240px;
  width: 100%;
}
/*Responsive Design code here*/
@media (max-width: 992px) {
  .alignCenter{
    display: inherit;    
  }
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 6px;
  }
  #header .logo img{width: 90%;}
  .top-header {
    padding: 5px 10px;
  }
  #footer {
    padding: 0px 40px;
  }
  #about{
    padding: 20px 40px 0px 40px;
  }
  .textMessage{
    top:10px;
    padding: 8px 15px;
    left: 10px;
    max-width: 360px;
  }
  .mbm20{margin-bottom: 20px;}
  .textMessage p{font-size: 20px;}
  .textMessage h2{font-size: 16px;}
  .carousel-indicators{display: none;}
}