*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: arial;
    src: url(/fonts/ARIAL.TTF);
}
body {
  font-family: 'Arial', sans-serif;
}
:root{
    --color1: #fff;
    --color2: #231D1F;
    --color3: #EE4223;
    --color4: #04194E;
    --color5: #e6e6e5;
    --paracolor: #808080;
}
.padd{
    padding: 80px 0;
}
.padd_top{
    padding-top: 80px;
}
.padd_bottom{
    padding-bottom: 80px;
}
div.p-0{
    padding: 0;
}
div.pl-1{
    padding-left: 1rem;
}
div.pl-2{
    padding-left: 2rem;
}
div.pr-1{
    padding-right: 1rem;
}
div.pr-2{
    padding-right: 2rem;
}
.mt-2{
    margin-top: 2rem;
}
.mb-2{
    margin-bottom: 2rem;
}
.m-0{
    margin: 0;
}

.container{
    max-width: 1380px;
    margin: auto;
}
.section_title.light {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--color1);
}
/* .row{
    display: flex;
    flex-wrap: wrap;
}
.col-md-12{width: 100%; padding: 0 12px;}
.col-md-11{width: 91.666667%; padding: 0 12px;}
.col-md-10{width: 83.333333%; padding: 0 12px;}
.col-md-9{width: 75%; padding: 0 12px;}
.col-md-8{width: 66.666667%; padding: 0 12px;}
.col-md-7{width: 58.333333%; padding: 0 12px;}
.col-md-6{width: 50%; padding: 0 12px;}
.col-md-5{width: 41.666667%; padding: 0 12px;}
.col-md-4{width: 33.333333%; padding: 0 12px;}
.col-md-3{width: 25%; padding: 0 12px;}
.col-md-2{width: 16.666667%; padding: 0 12px;}
.col-md-1{width: 8.333333%; padding: 0 12px;}
.justify-content-between{justify-content: space-between;}
.justify-content-end{justify-content: end;}
.justify-content-start{justify-content: start;}
.justify-content-center{justify-content: center;} */
.align-center{align-items: center;}
.text-center{text-align: center;}
img{width: 100%;}
a{text-decoration: none !important;}
.navbar{
    margin: 0;
}
.inner_service_ul{
    padding-left: 1rem;
}
p, span {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--paracolor);
    line-height: 1.4em;
}
p {
    text-align: justify;
}
p.light, span.light{
    color: var(--color1);
}
.section_title {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 400;
}
.section_title span{
    color:var(--color3);
    font-weight: 600;
    font-size: 44px;
}
.innerBaner_title {
    font-size: 40px;
    color: var(--color1);
    margin-top: 94px;
}
.innerBaner_subtitle {
    margin: 0;
    color: var(--color1);
}
.banner_btn {
    padding: 12px 27px;
    background: var(--color1);
    color: var(--color3);
    font-size: 22px;
    font-weight: 700;
    border-radius: 30px;
    border: 1px solid var(--color3);
    transition: 0.3s;
    display: inline-block;
    margin-top: 20px;
    width: fit-content;
    text-transform: uppercase;
}
/* ======= Menu Bar css start ======= */
.menu_bar_section{
    position: fixed;
    width: 100%;
    top: 10px;
    z-index: 100;
}
.menu_bar{
    max-width: 1380px;
    width: 100%;
    margin: auto;
    background: var(--color1);
    border-radius: 50px;
    padding: 0 30px;
    /* position: absolute; */
    top: 20px;
    z-index: 100;
    transition: 0.3s;
    /* overflow: hidden; */
}
.menu_bar_section.sticky{
    top: 0;
    box-shadow: 0 4px 16px 0 #f3f3f3;
    background: white;
}
.menu_bar_section.sticky .menu_bar {
    position: sticky;
    border-radius: 0;
    /* box-shadow: 0 4px 16px 0 #f3f3f3; */
    transition: 0.3s;
    max-width: 1380px;
}
.menu_bar .logo {
    width: 79%;
    overflow: hidden;
}
.navbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    justify-content: end;
}
.navbar .nav_item a {
    color: black;
    font-size: 18px;
    margin: 0 23px;
    padding: 20px 0;
    display: block;
    position: relative;
}
.navbar .nav_item a::after{
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background: var(--color3);
    left: 0;
    bottom: 10px;
    transition: 0.3s;
}
.navbar .nav_item a:hover::after{
    width: 100%;
}

/* ======= Menu Bar css start ======= */

/* ======= footer css start ======= */
footer{
    background-image: url(../images/backdrop2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--color1);
    border-radius: 80px 80px 0 0;
}
.footer_title {
    font-size: 22px;
    color: var(--color1);
    margin-bottom: 14px;
    font-weight: 500;
}
footer .logo img {
    border-radius: 50%;
    width: 150px;
    margin-bottom: 20px;
    margin-left: 20px;
}
footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer ul li a {
    color: var(--color1);
    transition: 0.3s;
    padding: 10px 0 7px;
    display: inline-block;
    /* margin-bottom: 10px; */
}
footer ul li a:hover i{
    margin-right: 20px;
}
footer ul li a i{
    margin-right: 15px;
    transition: 0.3s;
    font-size: 13px;
}
 .socialList {
    list-style: none;
    margin: 0 0 0 14px;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
 }
.socialList li {
      margin: 5px;
 }
.socialList li a {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--color3);
    border-radius: 50%;
}
.socialList li a i{
    margin: 0;
    font-size: 18px;
}
.socialList li a:hover i{
    margin: 0;
    transform: scale(1.2);
}
.footer_bottom {
    text-align: center;
    font-size: 13px;
    background: #ffffff33;
    padding: 15px;
    margin: 10px 0;
    border-radius: 30px;
}
.footer_bottom span{
    color: var(--color1);
}
.banner_form {
    border-bottom: 1px solid #ffa797;
    margin-bottom: 55px;
}
.email_box {
    background: var(--color1);
    width: 500px;
    padding: 5px 5px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    margin: 23px auto 55px;
}
.banner_submit {
    padding: 12px 45px;
    background: var(--color3);
    color: var(--color1);
    font-size: 17px;
    border-radius: 30px;
    border: 1px solid var(--color3);
    transition: 0.3s;
}
.banner_submit:hover{
    background: var(--color4);
    border-color: var(--color4);
}
.banner_input {
    width: 100%;
    border: none;
    border-radius: 30px;
    margin-left: 30px;
}
.banner_input:focus-visible{
    outline: none !important;
}
/* ======= footer css end ======= */
.mobilemenu {
    display: none;
}
.menu-toggle {
    width: 40px;
    height: 40px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.menu-toggle .bar {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #222;
    border-radius: 2px;
    transition: 0.4s;
    position: relative;
}
.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(11px, -11px);
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(0 0 0 / 66%);
    color: #fff;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(.77,0,.18,1);
    z-index: 1000;
}
.mobilemenuarea {
    background-color: rgb(255 255 255);
    height: 100%;
    width: 78vw;
    border-right: 2px solid #cf3c23;
    position: relative;
}
.mobilemenulogo {
    border-bottom: 2px solid #000;
    padding: 15px;
    width: 70%;
}
.mobilemenuarea .menu-close {
    position: absolute;
    top: 15px;
    right: -21px;
    width: 40px;
    height: 40px;
    background: #c44a2f;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
    line-height: 1;
}
.mobilemenulist {
    overflow-x: hidden;
    height: 78vh;
    /* background-color: #f0f0f0; */
}
.mobilemenulist ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.mobilemenulist > ul > li > a {
    color: var(--color2);
    display: block;
    padding: 10px 20px;
    border-bottom: 1px solid #dddddd;
}
.mobilemenuarea .menu-close span {
    margin: -6px 0 0;
}
.mobilemenulist > ul > li.has-submenu > ul.submenu {
    display: none;
}
.mobilemenulist > ul > li.has-submenu > a > span {
    font-size: 20px;
}
.mobilemenulist > ul > li.has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
}
.mobilemenulist > ul > li.has-submenu.open > ul.submenu {
    display: block;
    padding: 0;
    width: 100%;
}
.mobilemenulist > ul > li.has-submenu.open > ul.submenu > li > a {
    display: block;
    border-bottom: 1px solid #dddddd;
    padding: 12px 0px 12px 30px;
    color: var(--color2);
    width: 90%;
}
.mobilemenulist ul.sub_under_menuBox .sub_under_menuItem a{
    display: block;
    border-bottom: 1px solid #dddddd;
    padding: 12px 0px 12px 30px;
    color: var(--color2);
}
body.noscroll {
    overflow: hidden;
}
.navbar .nav_item a {
    color: black;
    font-size: 18px;
    margin: 0 23px;
    padding: 20px 0;
    display: block;
    position: relative;
}
.navbar .nav_item a::after{
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background: var(--color3);
    left: 0;
    bottom: 10px;
    transition: 0.3s;
}
.navbar .nav_item a:hover::after{
    width: 100%;
}
.menu_bar_section .nav_item.sub_menu, .menu_bar_section .sub_under_menu.sub_menuItem {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-menu .sub_under_menu.sub_menuItem {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.nav_item.sub_menu:hover .sub_menuBox{
    opacity: 1;
    top: 70px;
}
.menu_bar_section .sub_under_menuBox {
    position: absolute;
    background: var(--color1);
    list-style: none;
    padding: 10px;
    top: 98px;
    left: 100%;
    border-radius: 10px;
    opacity: 0;
    box-shadow: 0 0 18px 0 #dcd8d88c;
    transition: 0.4s;
    width: 360px;
    visibility: hidden;
}
.menu_bar_section .sub_under_menu.sub_menuItem:hover .sub_under_menuBox {
    opacity: 1;
    top: 0px;
    visibility: visible;
    left: 100%;
}
.menu_bar_section .sub_menuBox {
    position: absolute;
    background: var(--color1);
    list-style: none;
    padding: 10px;
    top: 98px;
    border-radius: 10px;
    opacity: 0;
    box-shadow: 0 0 18px 0 #dcd8d88c;
    transition: 0.4s;
    width: 360px;
    visibility: hidden;
}
.menu_bar_section .nav_item.sub_menu:hover .sub_menuBox{
    opacity: 1;
    top: 70px;
    visibility: visible;
}
.sub_menuBox a{
    width: max-content;
}
.sub_menuBox .sub_menuItem a {
    padding: 8px 10px 8px 0  !important;
    width: 89%;
}
.sub_menuBox .sub_menuItem a:hover{
    color:var(--color3)
}
.sub_menuBox .sub_menuItem a::after{
    position: static;
}
.menu_bar_section .arrow {
    position: relative;
    right: 12px;
    font-size: 13px;
    color: var(--color3);
}
.mobile-menu .arrow {
    position: relative;
    right: 22px;
    font-size: 13px;
    color: var(--color3);
}
.has-submenu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.mobile-menu .sub_under_menuBox {
    list-style: none;
    /* transition: 0.4s; */
    height: 0;
    overflow: hidden;
}
.mobile-menu .sub_under_menu.sub_menuItem.open .sub_under_menuBox{
    height: auto;
    padding: 10px;
}
