:root {
    --primary-color: #007bff;      /* Blue */
    --secondary-color: #6c757d;    /* Gray */
    --accent-color: #ffc107;       /* Yellow */
    --success-color: #28a745;      /* Green */
    --main-red-color:rgba(254, 36, 0, 1) !important;   
        --sub-title-font-size: 22px; /* Red */
      
     
}  
html {
    margin: 0 138px;
}

@media (max-width: 768px) {
    html {
        margin: 0 50px;
    }
}

@media (max-width: 480px) {
    html {
        margin: 0 20px;
    }
}
.sub-title-font {
    font-size: var(--sub-title-font-size) !important;
  }
body{
    background-color: unset !important;
}
header.main-header {
    background-color: #fff;
    padding: 10px 0;
}
nav.main-nav label {
    font-size: 11px;
}

.logo img {
    height: 95px;
    width: 78%;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}
.nav-row {
    border-bottom: 2px solid #e6e6e6;
    margin: 0;
    border-top: 2px solid #e6e6e6;
}
.copy-text {
    font-size: 12px;
    color: #9e9e9e;
}
.main-nav li {
    border-right: 2px solid rgb(0 0 0 / 12%);
}
.main-nav li a.active{
    border-radius: unset;
}

.main-nav li:last-child {
    border-right:none;
}

nav.main-nav a {
    height: 105px;
    position: relative;
    width: 125px;
    padding: 30px 0px 30px 0px;
}
nav.main-nav p {
    font-size: 10px;
    margin-top: 13px;
}

nav.main-nav a:hover:after, nav.main-nav a.active:after {
    font-family: "Material Icons";   /* Use the Material Icons font */
    content: "\e5c7";                /* Unicode character for the desired icon */
    position: absolute;              /* Position it absolutely */
    bottom: -13px;                   /* Position 13px below the bottom of the button */
    right: 46%;                      /* Position it approximately centered horizontally */
    text-align: center;  
    font-size:20px            /* Center the text inside the element */
}
.btn-outline-danger {
    color: var(--main-red-color)!important;
    border-color: var(--main-red-color) !important;
    padding: 10px 49px 11px 50px !important;
    border-radius: 10px;
}
.btn-outline-danger.active, .btn-outline-danger:active,.btn-outline-danger:hover  {
    color: #fff !important;
    background-color: var(--main-red-color)!important;
    border-color: var(--main-red-color)  !important;
}
a:hover {
    color: #fe2400;
}
/* Container setup */
.main {
    display: flex;
    flex-direction: column;
    min-height: 70vh;
  }
  
  /* Main content should expand */
  main {
    flex: 1;
  }
.btn-outline-danger:hover  {
    color: rgba(51, 51, 51, 0.5) !important;
}
.red-color{
    color:  var(--main-red-color)!important;
}
ul.first-section-list {
  list-style: none;
}

ul.first-section-list li:before {
  content: '✓';
  color:red;
  padding-right:5px;
  margin-left: 40px;

}
#carouselExampleCaptions .carousel-item img {
    height: 384px;
    width: 100%;
}

.main-nav a {
    text-decoration: none;
    color: #000;
    font-weight: bold;

}
.custom-list {
    display: flex;
    list-style-type: none;
    padding: 0;
}

.custom-list li {
    margin: 0;
    font-size:13px
}

.custom-list li + li::before {
    content: '|';
    margin: 0 10px;
    color: #000; /* Change color as needed */
}
footer {
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
    color: #666;
}
.red{
    color: #fe2400 ;
} 
.btn-reg {
    display: inline-block;
    margin: 0px;
    padding: 11px 20px;
    background-color: #ff6f61;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease;
    width:100%;
}
.c-gr {
    color: #777777;
}
.home:hover , .home.active{
    background:linear-gradient(to top, #ECF3E2, #ecebe9e8);
    /* background-color:#ECF3E2 !important; */
}
ul.slick-dots button {
    display: none;
}
.pricing:hover, .pricing.active{
    background:linear-gradient(to top, #D6E5DE, #ecebe9e8);
    /* background-color:#D6E5DE !important; */
}
.services:hover,.services.active{
    background:linear-gradient(to top, #EDDAE4, #ecebe9e8);
    /* background-color:#EDDAE4 !important; */
}

.order:hover,.order.active{
    background:linear-gradient(to top, #FADADB, #ecebe9e8);
    /* background-color:#FADADB !important; */
}
.tour:hover,.tour.active{
    background:linear-gradient(to top, #F8DFD7, #ecebe9e8);
}
.faq:hover,.faq.active{
    background:linear-gradient(to top, #F8F3D8, #ecebe9e8);
    /* background-color:#F8F3D8 !important; */
}
.serv-box {
    position: relative;
    margin-bottom: 25px;
    width: 24%;
    overflow: hidden;
    padding: 0px;
    margin: 0 AUTO;
    margin-bottom: 10px;
}
.serv-box:hover.serv-box img {
    border:2px solid red
}
.serv-box:hover.serv-box p {
    background-color: red;
}
.serv-box img {
    width: 100%;
    height: 100%;
}
.serv-box p {
    width: 100%;
    position: absolute;
    bottom: 0px;
    background-color: gray;
    display: inline-block;
    left: 0px;
    margin: 0px;
    text-align: center;
    color: #000;
    font-weight: bold;
    font-size: 15px;
}
.form-check-input:checked {
    background-color: var(--main-red-color)!important;
    border-color: var(--main-red-color)!important;
}
.services_hover {
    position: absolute;
    top: 141px;
    background-color: white;

    box-shadow: 0px 0px 9px 1px black;
    padding: 9px;
    display: none;
    width: 77%;
    z-index: 9999999999999999999999999;
}
.main-nav .services:hover .services_hover{
    display: block;
}
@media (min-width: 992px) {
    .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        padding-right: 2rem !important;
        padding-left: 2rem !important;
    }
}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
width: 3px;
height: 3px;
padding: 4px;
margin-right: 3px;
margin-left: 3px;
text-indent: -999px;
cursor: point;
background-color:gray;
background-clip: padding-box;
border: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
opacity: .5;
transition: opacity .6s ea;
border-radius: 100%;
}
.carousel-indicators .active{
    background-color: red !important;
    opacity:unset !important;
}
.footer-row {
    border-top: 1px solid #d1d1d1;
}
/* modal css */
.modal-dialog.modal-lg {
    width: 923px !important;
    max-width: 923px !important;
    height: 539.248px !important;
}
.modal-body .title {
    background-color: white;
    text-align: center;
    color: black;
    font-size: 28px;
}
.modal-content {
    height: 539.248px;
}
.after img, .before img{
    width: 100%;
    height: auto;
    max-height: 510px !important;
}
.after p, .before p{
    margin: 0px;
}
.modal .modal-header .btn-close{
margin-top: 0px;
}
.modal-header {
    padding: 0px;
}