@import url('variable.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,600;0,700;0,800;0,900;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    /* --primary: #FC811B; */
    --primary: #E31E24;
    --text: #13223c;
    --text-color: #677289;
    --lightBg: #F6FAFF;
}

body p{
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: "Poppins", sans-serif;
}

.top_header{
    width: 100%;
    background: #fff;
}

.top_header .rm_social_icons{
    list-style: none;
    background: #f7f7f7;
    padding: 0px 30px;
}

.top_header .rm_social_icons li a{
    text-decoration: none;
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top_header .rm_social_icons li a i {
    font-size: 20px;
    color: var(--text-color);
}

.top_header .rm_social_icons li:hover a i{
    color: var(--primary);
}

.top_contact_list{
    list-style: none;
    padding-right: 40px;
}

.top_contact_list li{
    margin-right: 20px;
}

.top_contact_list li a{
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    transition: .4s ease-in-out;
}

.top_contact_list li a i{
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: var(--primary);
    border-radius: 20px;
    margin-right: 4px;
}

.top_contact_list li a:hover{
    color: var(--primary);
    letter-spacing: 1px;
}

.rm_header{
    width: 100%;
    padding: 10px 0px 10px 50px;
    background: #13223C;
    position: relative;
}

.rm-logo img{
    height: 70px;
}

.navbar ul li{
    list-style: none;
}

.navbar ul li a i{
    color: #959ca9;
    margin-left: 5px;
}

.navbar ul li a{
    text-decoration: none;
    color: #959ca9;
    font-size: 16px;
    display: inline-block;
    align-items: center;
    text-align: center;
    padding: 10px 15px;
    font-weight: 500;
    width: 100%;
}

.navbar ul li a::after{
    content: '';
    width: 0%;
    height: 2px;
    display: block;
    background: var(--primary);
    position: relative;
    transition: .4s ease-in-out;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after{
    width: 100%;
}

.navbar ul li a:hover,
.navbar ul li a:hover i,
.navbar ul li a.active{
    color: #fff;
}

.drop-menu ul{
    position: absolute;
    top: 90px;
    width: 200px;
    background: #fff;
    opacity: 0;
    height: 0px;
    transition:.3s ease-in-out;
}

.drop-menu:hover ul{
    box-shadow: 5px 5px 0px rgba(0,0,0,0.07);
    background: #fff;
    height: auto;
    opacity: 1;
    border: 1px solid #cfcfcf;
    overflow: hidden;
}

.drop-menu ul li a{
    width: 100%;
    text-align: left;
}

.drop-menu ul li a i {
    margin-right: 10px;
}

.drop-menu ul li a:hover,
.drop-menu ul li a:hover i{
    color: #fff;
}

.drop-menu ul li a:hover{
    background: #13223C;
}

.drop-menu ul li a::after{
   display: none;
}

.rm_call_btn{
    padding: 10px 20px;
    background: #fff;
    width: 300px;
    position: relative;
    top: 50%;
    right: 0;
}

.rm_call_btn::after{
    content: '';
    width: 47px;
    height: 47px;
    background: linear-gradient(45deg, #fff 50%, transparent 50%);
    display: block;
    border-radius: 5px;
    position: absolute;
    top: 40%;
    transform: rotate(45deg) translateY(-52%);
    left: -40px;
}

.rm_call_btn a{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.rm_call_btn a i{
    width: 45px;
    height: 45px;
    font-size: 26px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: var(--primary);
    margin-right: 15px;
}

.rm_call_btn a span{
    font-size: 12px;
}

.rm_call_btn a p{
    font-size: 16px;
    font-weight: 500;
}

.rm_call_btn a:hover p{
    color: var(--primary);
}

.mobile-header{
    display: none;
    background: #13223C;
    padding: 10px 0px 10px 10px;
}

.mobile_logo img{
    width: 150px;
}

.menu_btn{
    width: 100px;
    height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    background: var(--primary);
    padding: 5px 20px;
    font-size: 32px;
    cursor: pointer;
    border-radius: 50px 0px 0px 50px;
}

.menu_btn i{
    color: #fff;
}

.mobile_navbar{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -100%;
    background: rgba(0,0,0,0.8);
    z-index: 999;
    cursor: pointer;
    transition: .6s ease-in-out;
    overflow: hidden;
}

.mobile_navbar.active{
    left: 0%;
}

.mobile_navbar nav{
    width: 300px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -300px;
    background: #fff;
    pointer-events: auto;
    padding: 100px 20px 20px 20px;
    z-index: 99999;
    transition: 1.3s ease-in-out;
}

.mobile_navbar nav.active{
    right: 0px;
}

.mobile_navbar nav ul li{
    list-style: none;
}

.mobile_navbar nav ul li a{
    /* padding: 10px; */
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 5px;
    text-decoration: none;
    border-radius: 5px;
}


.mobile_navbar nav ul li a:hover i,
.mobile_navbar nav ul li a.active i{
    color: #fff;
    background: var(--primary);
}

.mobile_navbar nav ul li a i{
    margin-right: 15px;
    padding: 10px;
    border-radius: 5px;

}

.about_section{
    width: 100%;
    background: linear-gradient(124deg, #E4E5F1, #f9f9f9);
}

.about_content{
    margin-top: 40px;
    text-align: justify;
}

.about_content p{
    margin-bottom: 15px;
    color: #76787c;
}

.contact_card{
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.contact_card i{
    width: 40px;
    height: 40px;
    background: var(--i);
    color: #fff;
    padding: 8px;
    text-align: center;
    font-size: 22px;
    border-radius: 40px;
    border: 1px solid #000;
    box-shadow: -2px 2px 0px #000;
    margin-right: 15px;
}

.contact_card div span{
    display: block;
    font-size: 14px;
    font-weight: bold;
    padding: 4px 8px;
}

.contact_card div a{
    color: #000;
    text-decoration: none;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 4px;
    transition: .3s ease-in-out;
}

.contact_card div a:hover{
    background: var(--primary);
    color: #fff;
}

.product_section{
    width: 100%;
    background: #DDE4E7;
}

.product_card{
    width: 100%;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.047);
    border: 1px solid #c7c7c7;
    border-radius: 5px;
    margin-top: 30px;
    background: #f9f9f9;
}

.product_card .pro_img{
    background: #F1F1F6;
    border-radius: 5px;
}

.product_card .pro_img img{
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.pro_info{
    padding: 10px;
}

.pro_info h3 a{
    color: #000;
    text-decoration: none;
    font-weight: bolder;
}

.pro_info h3 a:hover{
    color: var(--primary);
}

.divider{
    width: 100%;
    margin: 10px auto;
    border: .45px dashed #c7c7c7;
}

.pro_btn{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.pro_btn a{
    font-size: 12px;
    text-decoration: none;
    border-radius: 3px;
    color: #fff;
    background: var(--primary);
    padding: 4px 10px;
    margin: 5px;
}


.pro_btn a:last-child{
    background: #FFA701;
}

.img-1{
    height: 100%;
    width: auto;
}

.partner{
    padding-top: 80px;
    padding-bottom: 80px;
    background: #FAF1E2;
}

.partner h2{
    font-size: 45px;
    margin-bottom: 20px;
}

.partner p{
    width: 800px;
    max-width: 100%;
    margin: 10px auto;
}

.partner a{
    color: #fff;
    background: var(--primary);
    text-decoration: none;
    padding: 10px 40px;
    display: inline-block;
    margin: 30px auto;
    box-shadow: 5px 5px 0px #000;
    border: 2px solid #000;
    transition: .4s ease-in-out;
}

.partner a:hover{
    box-shadow: -5px -5px 0px #000;
}

.footer{
    width: 100%;
    background: linear-gradient(124deg, #E4E5F1, #f9f9f9);
}

.footer h2{
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bolder;
}


.footer_follow ul.social{
    margin-bottom: 30px;
}

.footer_follow ul li{
    list-style: none;
}

.footer_follow ul.social li a{
    width: 40px;
    height: 40px;
    padding: 5px 10px;
    text-align: center;
    background: #000;
    color: #fff;
    font-size: 20px;
    border-radius: 5px;
    margin-right: 15px;
    text-decoration: none;
}

.footer_follow ul.social li a i{
    color: #fff;
}

.footer_menu{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
}

.footer_menu li a{
    margin-right: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #323232;
}

.footer_menu li a:hover{
    color: #000;
}

.reach_us iframe{
    width: 100%;
    border: 5px solid #000;
    box-shadow: 5px 5px 0px #000;
}

.copyright{
    color: #fff;
    padding: 10px;
    background: #0b091f;
    
}

.copyright a{
    color: var(--primary);
    font-weight: bold;
    text-decoration: none;
}

.about_page_image{
    width: 25%;
    padding: 20px;
}

.about_page_content{
    width: 75%;
    padding: 20px;
}

.about_page_content p{
    line-height: 34px;
    margin-top: 20px;
    text-align: justify;
}

.about_page_content p span,
.about_page_content p a{
    font-weight: bold;
}

.become_partner h2{
    padding: 5px 10px;
    background: #000;
    display: inline-block;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: -5px -5px 0px var(--primary);
}

.become_partner .col-2{
    padding: 20px;
    padding-left: 30px;
}

.become_partner .col-2:first-child{
    border-right: 1px solid #c4c4c4;
}

.partner_form{
    width: 100%;
    padding: 40px 30px;
}

.partner_form h3{
    margin: 20px 0px;
}

.partner_form button{
    padding: 10px 40px;
    background: var(--primary);
    color: #fff;
    border: 1px solid #000;
    box-shadow: 3px 3px 0px #000;
    cursor: pointer;
}

.form .input{
    width: 100%;
    margin-bottom: 15px;
}

.form .input label{
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.form .input input,
.form .input textarea,
.form .input select{
    width: 100%;
    display: block; 
    padding: 10px;
    background: #f8f8f9;
    outline: none;
    font-weight: bold;
    border: 1px solid #000;
}


.career{
    width: 100%;
    background: url('../img/bg/1.jpg');
}

.contact_info{
    width: 100%;
    margin: 60px auto;
    margin-bottom: 100px;
    max-height: 350px;
    background: var(--primary);
}

.contact_dtls_head{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.contact_dtls_head i{
    padding: 10px;
    background: #fff;
    border-radius: 50%;
    font-size: 22px;
    color: var(--primary);
    margin-right: 10px;
}

.contact_dtls_head h3{
    font-weight: bolder;
    color: #fff;
    padding-top: 5px;
}

.contact_dtls p{
    margin-left: 45px;
    color: #fff;
}

.contact_dtls{
    margin-bottom: 30px;
}

.contact_dtls p a{
    color: #ffff;
    text-decoration: none;
}

.contact_dtls p a:hover{
    color: #000;
}


.map_div{
    width: 80%;
    height: 450px;
    margin: 0px auto;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #c7c7c7;
    transform: translateY(-50px);
}

.map_div iframe{
    width: 100%;
    height: 100%;
    border: 0;
}


.contact_form{
    width: 100%;
    min-height: 300px;
    background: #f8f8f9;
    border-radius: 5px;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.047);
    border: 1px solid #444444;
    padding: 20px;
}

.contact_img{
    width: 30%;
    padding: 10px;
}


.contact_img img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
}

.contact_form .form{
    width: 70%;
    padding: 20px;
}

.contact_form .form h1{
    margin-bottom: 30px;
}

.contact_form .form button{
    padding: 10px 40px;
    background: var(--primary);
    color: #fff;
    border: 1px solid #000;
    box-shadow: 3px 3px 0px #000;
    cursor: pointer;
}


.product_layout{
    width: 70%;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product_image{
    width: 48%;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 10px;
    padding: 20px;
}

.product_image .main_img{
    width: 100%;
}

.product_image .main_img img{
    width: 100%;
    border-radius: 5px;
}

.product_image .more_images img{
    border: 1px solid rgba(0,0,0,0.07);
    width: 100px;
    margin: 10px 5px;
}


.product_info{
    width: 48%;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 10px;
    padding: 20px;
}


.product_info img{
    width: 200px;
    border-radius: 4px;
    background: #13223C;
    padding: 2px 5px;
    margin-bottom: 20px;
}


.product_info h2{
    font-size: 35px;
    font-weight: bolder;
    margin-bottom: 10px;
}

.product_info h3{
    margin-bottom: 15px;
}

.product_info ul{
    padding-left: 15px;
}

.product_info ul li{
    list-style: none;
    display: block;
    margin-bottom: 20px;
    font-weight: bold;
}

.product_info ul li i{
    color: var(--primary);
    margin-right: 10px;
}

.product_info a{
    margin-bottom: 20px;
    padding: 10px 30px;
    text-align: center;
    color: #fff;
    background: var(--primary);
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
}

.product_info p{
    font-weight: bold;
    display: block;
    margin: 15px 0px;
}