*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li 
{
    list-style: none;
}

body 
{
    background: #ffffff !important;
}


/* custom css */
:root 
{
    --first-color: #d9232d;
    --sec-color: #3b4654;
}


.main-btn 
{
    background: var(--first-color);
    padding: 8px 19px;
    color: #fff;
    font-weight: 600;
    border: 0;
    border-radius: 3px;
}

#active-2 
{
    color: #d9232d;
    font-weight: 600;
}

/* Nav Start */

.navbar-brand 
{
    font-size: 1.8rem;
    color: var(--sec-color);
}

.navbar .nav-link 
{
    font-size: 1rem;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; 
}
/* Nav End */


/*  Home to service section start */
.home-service 
{
    background: #f2f4f6;
    margin-top: 77px;
}
/*  Home to service section End */ 

/* Service Star */
#service-sec i
{
    font-size: 2.3rem;
}

.icon-content 
{
    display: flex;
    align-content: baseline;
    color: var(--sec-color);
}

.card 
{
    transition: border-color 0.3s;
    cursor: pointer;
}

.icon-content i,
.card-tittle 
{
    transition: color 0.3s, border-color 0.3s;
}

.card:hover 
{
    border-color: var(--first-color);
}

.card:hover .icon-content h5
{
    color: var(--first-color);
}

.card:hover .icon-content i
{
    color: var(--first-color);
}
/* Service End */


/* Featured Start */
.about-section 
{
    text-align: left;
    border-radius: 8px;
    margin: 40px 0;
}

.small-text 
{
    font: 14px;
    color: #808080;
    letter-spacing: 1;
    position: relative;
}

.large-text 
{
    font-size: 24px;
    color: #4a4a4a;
    font-weight: bold;
    margin-top: 5px;
}

.small-text::after  
{
    content: '';
    position: absolute;
    width: 100px;
    height: 1px;
    background: var(--first-color);
    margin-top: 13px;
    margin-left: 10px;
}

.fetured-sec #btn-1k
{
    color: #d9232d;
    font-weight: 600;
}

.fetured-sec .button 
{
    cursor: pointer;
}

.fetured-sec .sec-col h4
{
    color: var(--sec-color);
    font-size: 1.6rem;
    font-weight: 600;
}

#part-2,
#part-3,
#part-4,
#part-5{
    display: none;
}

#part-1
{
    display: flex;
    flex-direction: column;
}

/* Featured End */



/* Footer Start */
.footer 
{
    margin-top: 50px;
    background: var(--sec-color);
}

.social-icon-sec 
{
    font-size: 1.3rem;
    display: flex;
    gap: 10px;
}

.social-icon-sec a
{
    color: #c4c8cc;
}

.social-icon-sec i 
{
    height: 40px;
    width: 40px;
    border: 1px solid #c4c8cc;
    border-radius: 50%;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icon-sec i:hover  
{
    color: var(--first-color);
    border-color: var(--first-color);
}

.list-section a 
{
    color: #c4c8cc;
    transition: 0.3s;
    font-size: 1rem;
}

.footer .list-section li a:hover {
    color: var(--first-color);
}

.input-groups 
{
    position: relative;
    border: 1px solid #808080;
    padding: 8px;
}

.input-1
{
    background-color: #3b4654;
    border: 0;
    width: 100%;
    outline: none;
    color: #ffffff;
}

.input-groups .input-2
{
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0;
}

.footer-content span 
{
    color: var(--first-color);
}
/* Footer End */


/* scroll top start */
.scroll-top-sec 
{
    position: fixed;
    right: 0;
    bottom: 40px;
    padding: 5px 10px;
    margin-right: 20px;
    background: var(--first-color);
    border-radius: 3px;
    opacity: 0;
    transition: 0.5s ease;
}

.scroll-top-sec.active 
{
    right: 20px;
    pointer-events: all;
    opacity: 1;
}


.scroll-top-sec a 
{
    text-decoration: none;
}

.scroll-top-sec i
{
    font-size: 1.3rem;
    color: #ffffff;
}
/* scroll top End */