*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* navbar */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
    padding: 0!important;
    margin: 0!important;
    --bs-gutter-x: 0rem!important;
    --bs-gutter-y: 0!important;
}

.row {
    --bs-gutter-x: 0rem!important; 
    --bs-gutter-y: 0;
}
.nav-head{
    height: 15px;
    width: 100%;
}
.navbar{
    --bs-navbar-padding-y: 0rem!important;
    border-bottom: 2px solid  #DA251C ;
}
.navbar-nav .nav-item{
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar-nav .nav-link {
    font-weight: bolder;
    position: relative; 
}

.navbar-nav .nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #DA251C; 
    transition: width 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
    color: #DA251C;
}
.navbar-toggler{
    color: #da251cb0!important;
    /* border:1px solid#DA251C!important; */
}
.bg-red{
    background-color: #DA251C;
}
.bg-blue{
    background-color: #FAFAFA;
}
.bg-footer{
    background-color: #d8d8d86f;
}
.nav-img {
  width: 35vw !important;
  
}
.nav-link{
    font-size: 25px;
    font-weight: bolder;
    margin: 0vw 0.5vw;
    color: black!important;
}
.btn-custom{
    padding: 8px 11px;
    background-color: #DA251C;
    font-size: 15px;
    color: white;
    font-weight: 600;
    /* margin-left: 10px; */
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.4s ease-in;
}

.btn-custom:hover{
    color: #DA251C;
    background-color: #fff7f7;
    border: 1px solid #DA251C;
}
.btn-custom-hero {
    padding: 9px 10px;
    background-color: #DA251C;
    font-size: 15px;
    color: white;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.4s ease-in;
    margin-top: 2vw!important;
}
.btn-custom-hero:hover{
    color: #DA251C!important;
    background-color: #fff7f7;
    border: 1px solid #DA251C;
}
.btn-custom-sec3{
    padding:5px 8px;
    background-color: #DA251C;
    font-size: 15px;
    color: white;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.4s ease-in;
    margin-top: 2vw!important;
}

.btn-custom-sec3:hover{
    color:  #DA251C;
    background-color: #fbfbfb;
   border: 1px solid #DA251C;
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
    margin-right: 10px;
}
.hero-details {
    padding: 2rem;
    /* background-color: #f0eaeab3; */
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; */
}
.cursor {
    height: 40px;
    width: 40px;
    background-color: #791515;
    border-radius: 50%;
    /* mix-blend-mode: difference; */
    animation: cursorAnimation 3s infinite;
    display: none;
    position: absolute;
    z-index: 1;
}

@keyframes cursorAnimation {
    0% {
        background-color: #79151599;
        transform: scale(1);
    }
    25% {
        background-color: #fcbbb88b;
        transform: scale(1.1);
    }
    50% {
        background-color:  #da251c7d;
        transform: scale(0.7);
    }
    75% {
        background-color: #79151566;
        transform: scale(0.5);
    }
    100% {
        background-color: #791515;
        transform: scale(1);
    }
}
.hero-details h1{
    font-size: 4vw;
    text-align: start;
    font-weight: bolder;
    line-height: 1.2;
}
.hero-details span{
    color: #DA251C;
    font-weight: bolder;
}
.hero-details p{
    text-align: left;
    font-size: 25px;
    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 25px;
}
.heading{
    position: absolute;
    top: 25px;
    left: 0px;
    /* background-color: #ffde5889; */
}
.heading h2{
    margin-top: 2vw;
    font-size: 2.4vw;
}
.heading p{
    font-size: 1.4vw;
    margin: auto;
    width: 70%;
    text-align: center;
    margin-top: 2vw;
}
/* sec 2 */
.sec-2-card {
    height: 25vw;
    width: 23vw;
    border-radius: 10px;
    background:white;
    border:2px solid rgba(136, 38, 38, 0.238);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px;
    padding: 2.6vw;
    transition: border 0.3ms ease-in-out;
}

.sec-2-card:hover {
    background: linear-gradient(62deg, #da251c1a, #f26a6a3d, #ff99992c, #ffcccc3c);
    border:none;
}
.sec-2-card img {
        height: 10vw;
        width: 10vw;
 }

.sec-2-card p{
    font-size: 1.3vw;
    font-weight: 500;
    text-align: center;
}
/* sec-3  */
.sec-3-card{
    height:23vw;
    width: 23vw;
    border-radius: 10px;
    background-color: #fbfbfb;
    margin: 2.8vw;
    padding: 1.5vw;
}
.sec-3-card:hover{
    background-color: #fff2cd;
}
.sec-3-card h3{
    font-size: 2vw;
}
.sec-3-card img{
    height:6.5rem;
    width:6.5rem;
}
.sec-3-card p{
    font-size:1.2vw;
    font-weight: 400;
    line-height: 1.4;
    text-align: start;
   
}

/* sec-4 */
.sec-4-card{
    height: 20vw;
    width: 18vw;
    border-radius: 10px;
    padding: 1.4vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 10px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 3vw;
}
.sec-4-card img{
    height: 4rem;
    width: 4rem;
}

.sec-4-card:hover{
    background-color:#ffaba75d;
}
.details{
    margin-top: 1.4vw;
}
.details h3{
    font-size: 2vw;
    text-align: center;
}
/* .sec-4-card:hover .details h3{
    color: #982620f7;
} */

.details p{
    font-size: 1.4vw;
    text-align: center;
}

/* sec-5  */
.contact-card{
    padding: 3rem;
    /* background-color: #e2fe67; */
}
.contact-card h1{
    font-size: 3vw;
}
.inner-card{
    /* background-color: #5ad7ef; */
    display: flex;
    align-items: center;
    /* border: 1px solid red; */
    margin-bottom: 2vw;
}
.con-img{
    padding: 1vw;
    height: 6vw;
    width: 6vw;
    background-color:#DA251C;
    display: flex;
    justify-content: center;
    align-items: center;
}
.con-img .loc{
    height: 5vw;
    width: 6vw;
}
.fa-location-dot:before, .fa-map-marker-alt:before {
    content: "\f3c5";
    padding: 1vw;
}
.con-img i{
    color: white;
    font-size: 2.5vw;
}
.det{
    margin-left: 2vw;
    line-height: 1;
    /* background-color: #9e90ed; */

}
.det h4{
    font-weight: 500;
    font-size: 1.6vw;
}
.det p{
    font-weight: 600;
    font-size: 1.3vw;
    line-height: 1.4;
}
form {
    background-color: #fafafa;
    padding: 2.5vw;
}
.btn-submit{
    padding: 10px;
    display: block;
    width: 100%;
    background-color: black;
    color: white;
    font-size: 1.2vw;
    font-weight: bold;
    border-radius: 8px;
    align-self: center;
    margin: auto;
    border: none;
    margin-top: 20px;
    transition: all 0.2s ease-in-out;
}
.btn-submit:hover{
    background-color: #ffffff91;
    border: 1px solid black;
    color: rgb(0, 0, 0);
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
    margin: auto;
    margin-top: 3vw!important;
}
/* footer */
.footer-1 ,.footer-2 , .footer-3 , .footer-4{
    padding: 2vw;
}

.footer-1 h5, .footer-2 h5, .footer-3 h5, .footer-4 h5 {
    font-size: 1.4vw;
    position: relative; /* Required for the ::after pseudo-element */
    padding-bottom: 5px; /* Space for the border */
}

footer p{
    font-size: 1.5rem;
    font-weight: 400;
}
footer p:hover{
    color: #DA251C !important;
}

.social-media a{
    text-decoration: none;
}
.social-media i {
    /* margin: 1vw;*/
    font-size: 2vw;
    color: #585858;
    transition: color 0.3s ease; /* Add transition for smooth effect */
    padding-right: 10px;
}
.social-media i:hover {
    color: #DA251C !important;
    cursor: pointer;
}


footer a {
    text-decoration: none;
    color: black;
    transition: color 0.3s ease, transform 0.3s ease-in; /* Add transition for color and transform */
}

footer a:hover {
    color: #DA251C;
}
.footer-4 p {
    display: flex;
    position: relative;
    padding-left: 20px; /* Space for the icon */
    transition: color 0.3s ease; /* Smooth color transition */
}

.footer-4 p::before {
    font-family: 'Font Awesome 5 Free'; /* Font Awesome family */
    font-weight: 900; /* Font Awesome weight for solid icons */
    position: absolute;
    left: 0;
    top: 20%;
    font-size: 12px; /* Icon size */
    color: #6f6c6c; /* Icon color */
    transition: transform 0.5s ease; /* Smooth rotation transition */
}

/* Specific icons for each type of contact detail */
.footer-4 p:nth-child(2)::before {
    content: '\f3c5'; /* FontAwesome icon for address */
}

.footer-4 p:nth-child(3)::before {
    content: '\f1ad'; /* FontAwesome icon for office */
}

.footer-4 p:nth-child(4)::before {
    content: '\f095'; /* FontAwesome icon for phone */
}

.footer-4 p:nth-child(5)::before {
    content: '\f0e0'; /* FontAwesome icon for email */
}

.footer-4 p:hover {
    color: #DA251C !important; /* Hover text color */
}

.footer-4 i:hover {
    color: #DA251C !important; /* Hover text color */
}
/* media Query for mobile */

@media screen and (max-width:600px) {
    .nav-head{
        height: 5px;
        width: 100%;
    }
    .nav-img {
        width: 65vw!important;
        padding:10px;
        margin-left: 2vw;
    }
    .nav-item {
        padding-left: 0!important;
    }
    /* [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
        cursor: pointer;
        margin: 5px!important;
    } */
    .btn-submit{
        margin-top: 4vw!important;
        width: 100%!important;
    }
    .navbar-toggler{
        padding:3px ;
        font-size: 15px!important;
        margin: 12px!important;
    }
    .navbar .nav-item{
        display: flex;
        justify-content: center;
        
    }
    .hero-details {
        padding: 1.3rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .hero-details h1{
        font-size: 7vw;
        text-align: center;
        font-weight: bolder;
    }
  
    .hero-details p{
        text-align: center;
        font-size: 4vw;
        line-height: 1.2;
        margin-top: 2vw;
        margin-bottom: 2vw;
    }
    .btn-custom-hero {
        padding: 9px 11px;
        background-color: #DA251C;
        font-size: 15px;
        color: white;
        font-weight: 600;
        border-radius: 5px;
        text-decoration: none;
        transition: all 0.4s ease-in;
        margin-top: 10px !important;
    }
  
    .heading{
        position: absolute;
        top: 0px;
        left: 0px;
        /* background-color: #e36a6a; */
    }
    .heading h2{
        margin-top: 2vw;
        font-size: 4.5vw;
        padding: 2vw;
       
    }
    .heading p{
        width: 90%;
        font-size: 3.3vw;
        /* padding: 2vw; */
    }
 
    .nav-head-2{
        height: 100px;
    width: 100%; 
    }
    /* sec2 */
    .sec-2-card{
        height:55vw;
        width: 60vw;
        border-radius: 10px;
        /* background-color: #fbfbfb; */
        border: 2px solid rgba(158, 158, 158, 0.603);
        display:flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 20px;
        padding: 2.6vw;
        transition: all 0.2s ease-in-out;
    }
    .sec-2-card:hover {
        background: linear-gradient(62deg, #da251c1a, #f26a6a3d, #ff99992c, #ffcccc3c);
        border:none;
    }
    .sec-2-card img{
        height: 100px;
        width: 100px;
    }
    .sec-2-card p{
        font-size:3.4vw;
        font-weight: 600;
        text-align: center;
    }
    /* sec-3 */
    .sec-3-card{
        height:60vw;
        width: 65vw;
        border-radius: 10px;
        background-color: #fbfbfb;
        margin: 4vw!important;
        padding: 5.2vw;
    }
    .sec-3-card h3{
        font-size: 5.4vw;
        /* padding-bottom: 2.5vw; */
    }
    .sec-3-card img{
        height:3.5rem!important;
        width: 3.5rem!important;
    }
    .sec-3-card p{
        font-size:3.7vw;
        font-weight: 400;
        line-height: 1.4;
        text-align: start;
        margin-bottom: 10px;
    }
    .btn-custom{
        font-size: 3vw;
        margin: 10px;
    }
    .btn-custom-sec3{
        padding:5px 8px;
        background-color: #DA251C;
        font-size: 3.1vw;
        color: white;
        font-weight: 600;
        border-radius: 5px;
        text-decoration: none;
        transition: all 0.4s ease-in;
    }
    
    .btn-custom-sec3:hover{
        color:  #DA251C;
        background-color: #fbfbfb;
       border: 1px solid #DA251C;
    }
    /* sec-4 */
    .sec-4-card{
        height: 50vw;
        width: 50vw;
        /* background-color: #d0f44f; */
        border-radius: 10px;
        padding: 4.4vw;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 10px;
    }
    .sec-4-card:hover .details{
        background: none;
    }
    .sec-4-card img{
        height: 3rem;
        width: 3rem;
    }
    .details{
        margin-top: 2.4vw;
    }
    .details h3{
        font-size: 5vw;
        text-align: center;
    }

    .details p{
        font-size: 3.8vw;
        text-align: center;
    }
    /* sec-5  */
.contact-card{
    padding: 1rem;
    /* background-color: #e2fe67; */
}
.contact-card h1{
    font-size: 6vw;
    font-weight: bold;
}
.inner-card{
    /* background-color: #5ad7ef; */
    display: flex;
    align-items: center;
}
.con-img{
    padding: 4vw;
    height: 10vw;
    width: 10vw;
}
.con-img i{
    color: white;
    font-size: 3.5vw;
}
.det{
    margin-left: 3vw;
    line-height: 1;
    /* background-color: #9e90ed; */
}
.det h4{
    font-weight: 500;
    font-size: 4vw;
    margin-bottom: 0.3rem;
}
.det p {
    font-weight: 400;
    font-size: 3vw;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}
form{
    background-color: #fff;
    padding: 4vw;
}
input{
    width: 100%!important;
}
.btn-submit{
    padding: 10px;
    display: block;
    width: 90%;
    background-color: black;
    color: white;
    font-size: 3.2vw;
    font-weight: bold;
    border-radius: 8px;
    align-self: center;
    margin: auto;
    border: none;
    align-self: center;
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
    margin: auto;
}
/* footer */
.footer-1 ,.footer-2 , .footer-3 , .footer-4{
    padding: 3vw;
}
.footer-1 h5 , .footer-2 h5 , .footer-3 h5 , .footer-4 h5{
    font-size: 1.4rem;
}
    .social-media i {
        /* margin: 1vw;*/
        font-size: 4vw;
        padding-right: 10px;
    }
.footer-2 p .footer-3 p{
    margin-bottom:5px!important;
}
footer p{
    font-size: 3.2vw;
}
}   


/* media query for tablet */
@media (min-width:600px)  and (max-width:768px) {
    .nav-img {
        width: 60vw!important;
        margin-inline-start:10px;
    }
    [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
        cursor: pointer;
        margin: 10px;
    }
    .navbar .nav-item{
        display: flex;
        justify-content: center;

    }
    .hero-details {
        padding: 1.3rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .hero-details h1{
        font-size: 7vw;
        text-align: center;
        font-weight: bolder;
    }
    .hero-details p{
        text-align: center;
        font-size: 4vw;
        line-height: 1.2;
    }
    .heading{
        position: absolute;
        top: 25px;
        left: 0px;
    }
    .heading h2{
        font-size: 3.5vw;
       
    }
    .heading p{
        font-size: 2.5vw;
    }
    .nav-head-2{
        height: 100px;
    width: 100%; 
    }
      /* sec2 */
      .sec-2-card{
        height:45vw;
        width: 50vw;
        border-radius: 10px;
        /* background-color: #fbfbfb; */
        border: 2px solid rgba(174, 54, 54, 0.603);
        display:flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 20px;
        padding: 20px;
    }
    .sec-2-card img{
        height: 100px;
        width: 100px;
    }
    .sec-2-card p{
        font-size:3.4vw;
        font-weight: 600;
        text-align: center;
    }
        /* sec-3 */
        .sec-3-card{
            height:45vw;
            width: 60vw;
            border-radius: 10px;
            background-color: #fbfbfb;
            margin: 20px;
            padding: 4.2vw;
        }
        .sec-3-card h3{
            font-size: 4vw;
        }
        .sec-3-card img{
            height:4rem;
            width: 4rem;
        }
        .sec-3-card p{
            font-size:2.5vw;
            font-weight: 400;
            line-height: 1.4;
            text-align: start;
        }
           /* sec-4 */
        .sec-4-card{
            height: 50vw;
            width: 50vw;
            /* background-color: #d3fa7f; */
            border-radius: 10px;
            padding: 1.4vw;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            margin: 10px;
        }
        .sec-4-card img{
            height: 5rem;
            width: 5rem;
        }
        .details{
            margin-top: 3.4vw;
        }
        .details h3{
            font-size: 4vw;
            text-align: center;
        }

        .details p{
            font-size: 3vw;
            text-align: center;
        }
        /* sec-5 */
        .contact-card{
            padding: 2rem;
            /* background-color: #e2fe67; */
        }
        .contact-card h1{
            font-size: 5vw;
            font-weight: bold;
        }
        .inner-card{
            /* background-color: #5ad7ef; */
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        .con-img{
            padding: 4vw;
            height: 10vw;
            width: 10vw;
        }
        .con-img i{
            color: white;
            font-size: 3.5vw;
        }
        .det{
            margin-left: 2vw;
            line-height: 1;
            /* background-color: #9e90ed; */
        }
        .det h4{
            font-weight: 500;
            font-size: 3vw;
        }
        .det p {
            font-weight: 400;
            font-size: 2.5vw;
            line-height: 1.3;
            margin-bottom: 0.3rem;
        }
        form{
            background-color: #fff;
            padding: 4vw;
        }
        input{
            width: 100%!important;
        }
        .btn-submit{
            padding: 10px;
            display: block;
            width: 100%!important;
            background-color: black;
            color: white;
            font-size: 2.2vw;
            font-weight: bold;
            border-radius: 8px;
            align-self: center;
            margin: auto;
            border: none;
            margin-top: 3vw!important;
        }
        /* footer */
        .footer-1 ,.footer-2 , .footer-3 , .footer-4{
            padding: 1vw;
        }

        .footer-1 h5 , .footer-2 h5 , .footer-3 h5 , .footer-4 h5{
            font-size: 3.4vw;
        }

        footer p{
            font-size: 1rem;
        }
        .social-media i{
          /*  margin: 1vw;*/
            font-size: 4vw;
            cursor: pointer;
            padding-right:10px;
         
        }
        p::before {
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 20%;
            font-size: 2.6vw;
            color: #6f6c6c;
            transition: transform 0.5s ease;
        }
    
     
}

/* media query for laptop and desktop screen */
@media (min-width:769px)  and (max-width:1200px) {
    .nav-img {
        width: 45vw;
        margin-inline-start:10px;
    }
    [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
        cursor: pointer;
        margin: auto;
        /* margin-top: 3vw; */
    }
    .navbar-toggler{
        padding:3px ;
        font-size: 15px!important;
        margin-right: 10px!important;
    }
    .sec-3-card img {
        height: 4.5rem;
        width: 4.5rem;
    }
    .sec-4-card img {
        height: 3.4rem;
        width: 3.4rem;
    }
    .con-img {
        padding: 2vw;
        height: 5vw;
        width: 5vw;
        background-color: #DA251C;
        display: flex;
        justify-content: center;
        align-items: center;
        /* margin-bottom: 2vw; */
    }
    .det h4 {
        font-weight: 500;
        font-size: 1.4vw;
    }
    .det p{
        font-weight: 400;
            font-size: 1.3vw;
            line-height: 1.2;
            margin-bottom: 0.3rem;
    }
        /* footer */
    .footer-1 ,.footer-2 , .footer-3 , .footer-4{
        padding: 2vw;
    }

    .footer-1 h5 , .footer-2 h5 , .footer-3 h5 , .footer-4 h5{
        font-size: 1rem;
    }
     /* footer */
     .footer-1 ,.footer-2 , .footer-3 , .footer-4{
        padding: 1vw;
    }

    .footer-1 h5 , .footer-2 h5 , .footer-3 h5 , .footer-4 h5{
        font-size: 2vw;
    }

    footer p{
        font-size: 1.2vw;
    }
    .social-media i {
        /*margin: 1vw;*/
        font-size: 2vw;
        cursor: pointer;
        padding-right: 10px;
    }
}
@media (min-width:1200px)  and (max-width:1500px) {
    .btn-custom-hero {
        background-color: #DA251C;
        font-size: 1.6vw;
        color: white;
        font-weight: 600;
        border-radius: 5px;
        text-decoration: none;
        transition: all 0.4s ease-in;
        margin-top: 3vw!important;
    }
    .btn-custom-hero:hover{
        color: rgb(0, 0, 0);
        background-color: #fff7f7;
    }

         /* footer */
         .footer-1 ,.footer-2 , .footer-3 , .footer-4{
            padding: 2vw;
        }
    
        .footer-1 h5 , .footer-2 h5 , .footer-3 h5 , .footer-4 h5{
            font-size: 1rem;
        }
         /* footer */
         .footer-1 ,.footer-2 , .footer-3 , .footer-4{
            padding: 1vw;
        }
    
        .footer-1 h5 , .footer-2 h5 , .footer-3 h5 , .footer-4 h5{
            font-size: 2vw;
        }
    
        footer p{
            font-size: 1.2vw;
        }
        .footer-4 p{
            padding-left: 2.5vw;
        }
        .footer-4 p::before {
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5vw;
            color: #6f6c6c;
            transition: transform 0.5s ease;
        }
    .social-media i {
        /* margin: 1vw;*/
        font-size: 2vw;
        cursor: pointer;
        padding-right: 10px;
    }
}
@media (min-width:1500px)  and (max-width:1920px){
    .navbar-nav .nav-link {
        font-weight: bolder;
        position: relative; 
        font-size: 1.2vw;
    }
    .btn-custom{
        font-size: 1.2vw;
    }
    .btn-custom-hero {
        padding: 1vw;
        background-color: #DA251C;
        font-size: 1.3vw;
        color: white;
        font-weight: 600;
        /* margin-left: 10px; */
        border-radius: 5px;
        text-decoration: none;
        transition: all 0.4s ease-in;
        /* margin-top: 2vw!important; */
    }
    .btn-custom-hero:hover{
        color: rgb(0, 0, 0);
        background-color: #fff7f7;
    }
    .hero-details p {
        text-align: left;
        font-size: 25px;
        line-height: 1.2;
        margin-top: 20px;
        margin-bottom: 35px;
    }
    /* .sec-2-card{
        border:2px solid rgba(136, 38, 38, 0.238);
    } */
    .sec-3-card img {
        height: 5.5rem;
        width: 5.5rem;
    }
    .form-label {
        margin-bottom: .5rem;
        font-size: 1.2rem;
    }
    .form-control-lg {
        min-height: calc(1.5em + 1rem + 2px);
        padding: .8rem 1rem;
        font-size: 1.5rem;
        border-radius: .5rem;
    }
    .det p {
        font-weight: 400;
        font-size: 1.4vw;
        line-height: 1.1;
        margin-bottom: 0.3rem;
    }
    .sec-4-card {
        padding: 1.6vw;
    }
 /* footer */
 .footer-1 ,.footer-2 , .footer-3 , .footer-4{
    padding: 2vw;
}

.footer-1 h5 , .footer-2 h5 , .footer-3 h5 , .footer-4 h5{
    font-size: 1rem;
}
 /* footer */
 .footer-1 ,.footer-2 , .footer-3 , .footer-4{
    padding: 1vw;
}

.footer-1 h5 , .footer-2 h5 , .footer-3 h5 , .footer-4 h5{
    font-size: 2vw;
}

footer p{
    font-size: 1.2vw;
}
    .social-media i {
        /*  margin: 1vw;*/
        font-size: 2vw;
        cursor: pointer;
        padding-right: 10px;
    }
.footer p{
    padding: 10px;
}
.footer-4 p{
    padding-left: 2vw;
}
.footer-4 p::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1vw;
    color: #6f6c6c;
    transition: transform 0.5s ease;
}
} 
