@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700;800;900&family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

body{
    padding: 0;
    margin: 0;
    /* font-family: 'Heebo', sans-serif; */
    font-family: 'Rubik', sans-serif;
}
ul {
    padding: 0;
    margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
    margin-bottom: 0;
}

:root {
    --font_black: #262626;
    --theme_orange: #ffa400;
    --theme_blue: #142c6c;
    --white: #fff;
    --para_color: #767E93;
}
p {
    font-family: 'Heebo', sans-serif;
    color: var(--para_color);
}
.btn {
    font-family: 'Heebo', sans-serif;
}


/* ======topbar start====== */
.topbar {
    padding: 10px 0;
    background: var(--white);
}
.top_brand_logo img {
    max-width: 220px;
}
.top_quick_action {
    display: flex;
    gap: 15px;
}
.top_quick_icon {
    width: 48px;
    height: 48px;
    background: var(--theme_blue);
    color: var(--white);
    display: grid;
    place-content: center;
    font-size: 20px;
}
.top_quick_info a {
    color: var(--para_color);
    text-decoration: none;
    display: block;
    transition: 0.5s;
}
.top_quick_info a:hover {
    color: var(--theme_orange);
    transition: 0.5s;
}
/* ======topbar close====== */

/* ======header start====== */
.container_inner {
    /* width: 100%;
    display: flex; */
    background: var(--theme_blue);
    padding: 15px 15px;
}
.navbar-brand {
    display: none;
}
header.header_area {
    position: absolute;
    width: 100%;
    top: 85px;
    z-index: 99;
}
.header_area .navbar-light .navbar-nav .nav-link {
    color: var(--white);
    transition: 0.5s;
}
.header_area .navbar-light .navbar-nav .nav-link.active, .header_area .navbar-light .navbar-nav .nav-link:hover {
    color: var(--theme_orange);
    transition: 0.5s; 
}
/* ======header start====== */

/* ======banner start====== */
.banner_sec {
    height: 800px;
}
.banner_slider, .banner_slider .owl-stage-outer, .banner_slider .owl-stage, .banner_slider .owl-item, .banner_slider .owl-item.active, .banner_item {
    height: 100%;
}
.banner_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}
.banner_slider .owl-item.active .banner_item img {
    transform: scale(1.1);
    transition: 10s;
}
.banner_item {
    position: relative;
}
.banner_item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #00000078;
}
.blue_btn {
    background: var(--theme_orange);
    border-radius: 0;
    color: var(--white) !important;
    padding: 14px 30px;
    position: relative;
    overflow: hidden;
}
.blue_btn span {
    position: relative;
    z-index: 2;
}
.blue_btn::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #da9009;
    position: absolute;
    left: -110%;
    top: 0;
    z-index: 1;
}
.blue_btn:hover::before {
    left: 110%;
    transition: 0.5s;
}
.blue_btn b {
    display: inline-block;
    margin-right: 15px;
}
.banner_wrapper .row {
    justify-content: flex-end;
}
.banner_wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 99;
}
.hero_content h1 {
    color: var(--white);
    font-size: 50px;
    margin-bottom: 30px;
    line-height: 70px;
}
.hero_content h1 span {
    display: inline-block;
    background: var(--white);
    padding: 2px 10px;
    color: var(--theme_blue);
}
.hero_content p {
    color: var(--white);
    margin-bottom: 15px;
}
/* =====banner close========= */

/* =====quote start========== */
.get_quote {
    margin-top: -160px;
    position: relative;
    z-index: 99;
}
.get_quote_area {
    position: relative;
    padding: 30px;
}
.get_quote_area::before {
    width: 100%;
    content: "";
    height: 100%;
    background: url(../images/quote_bg.png) #fff;
    right: 0;
    background-size: cover;
    top: 0;
    position: absolute;
    z-index: -1;
    border-radius: 0px;
    box-shadow: 10px 20px 30px rgba(0,0,0,0.1);
}
.quote_title {
    font-size: 20px;
    display: block;
    margin-bottom: 30px;
    color: var(--theme_blue);
    border-bottom: 1px solid var(--theme_blue);
}
.get_quote_area .form-group {
    margin-bottom: 30px;
    position: relative;
}
.get_quote_area .form-control, .get_quote_area .form-select {
    border-radius: 0;
    box-shadow: none !important;
    background: transparent !important;
    border: 2px solid var(--theme_blue);
    color: var(--theme_blue);
    min-height: 44px;
}
.get_quote_area .form-group .dropdown_icon {
    position: absolute;
    right: 15px;
    top: 9px;
    z-index: -1;
    color: var(--theme_blue);
}
/* =====quote close========== */

/* ====about sec start======= */
section.about_sec {
    padding: 80px 0;
}
.section_title {
    margin-bottom: 30px;
}
.section_title small {
    color: #000;
}
.section_title h2 {
    color: var(--theme_blue);
    margin: 10px 0 20px;
    font-size: 32px;
}
.about_content {
    display: grid;
    gap: 30px;
}
.about_info {
    display: flex;
    gap: 15px;
}
.about_icon {
    width: 80px;
    height: 80px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--theme_blue);
}
.about_icon img {
    max-width: 45px;
}
.about_text {
    width: calc(100% - 85px);
}
.about_text b {
    color: var(--font_black);
    display: block;
    font-weight: 500;
    font-size: 18px;
}
.about_wraper {
    display: flex;
    padding-left: 50px;
}
.about_item_blue {
    padding: 40px;
    background: var(--theme_blue);
    color: var(--white);
}
.about_item_blue b {
    font-size: 18px;
    font-weight: 400;
    display: block;
    margin-bottom: 15px;
}
.about_item_blue.bg-white {
    color: var(--theme_blue);
    box-shadow: -12px -8px 30px rgba(0,0,0,0.1);
    margin-top: 30px;
}
/* ====about sec close======= */


/* =====request_callback_sec start==== */
.request_callback_sec {
    background: var(--theme_blue);
    position: relative;
}
.request_callback_sec::after {
    width: 48%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/banner3.jpg);
    background-size: cover;
}
.request_callback_area {
    padding: 80px 0;
}
.request_callback_sec .section_title small {
    color: var(--white);
}
.request_callback_sec .section_title h2 {
    color: var(--white);
}
.request_row {
    justify-content: flex-end;
}
.request_callback_form .form-group {
    margin-bottom: 30px;
}
.request_callback_form .form-group label {
    color: var(--white);
}
.request_callback_form .form-group .form-control, .request_callback_form .form-group .form-select {
    border-radius: 0px;
    min-height: 44px;
    box-shadow: none !important;
    color: var(--theme_blue);
    box-shadow: none !important;
}
/* =====request_callback_sec close==== */


/* ======our_services start=========== */
.our_services {
    padding: 80px 0;
}
.our_services .about_wraper {
    display: flex;
    padding-left: 0;
    margin-top: 50px;
}
.service_icon {
    margin-bottom: 15px;
}
.service_wrapper {
    margin-left: 50px;
    height: 100%;
    position: relative;
}
.service_wrapper::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(4,4,4,1) 15%, rgba(255,255,255,0) 95%);
}
.service_wrapper img {
    height: 100%;
    object-fit: cover;
}
.serviece_wrap_overley {
    position: absolute;
    bottom: 0;
    z-index: 9;
    padding: 30px 18% 50px;
}
.serviece_wrap_overley h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 30px;
}
.serviece_wrap_overley ul {
    display: flex;
    flex-flow: wrap;
    gap: 15px 30px;
    list-style: none;
}
.serviece_wrap_overley ul li {
    color: var(--white);
    width: 45%;
    font-family: 'Heebo', sans-serif;
}
.serviece_wrap_overley ul li i {
    /* color: var(--theme_orange); */
}
.contact_no {
    background: var(--white);
    padding: 15px;
    margin-top: 30px;
}
/* ======our_services close=========== */

/* ======testimonial_sec start======== */
.testimonial_sec {
    background: var(--theme_blue);
    position: relative;
}
.testimonial_sec::after {
    content: "";
    width: 48%;
    height: 100%;
    position: absolute;
    background: url(../images/testimonial.jpg);
    background-size: cover;
    top: 0;
    right: 0;
}
.testimonial_sec .section_title small, .testimonial_sec .section_title h2 {
    color: var(--white);
}
.testimonial_area {
    padding: 80px 0;
}
.quote_sign {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 44px;
    background: #ffffff54;
    color: #fff;
}
.quote_para {
    color: var(--para_color);
    font-style: italic;
    font-size: 18px;
    text-align: center;
    width: 90%;
    margin: 0 auto 60px;
}
.client_img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    font-size: 34px;
    display: grid;
    place-content: center;
    background: #fff;
    color: #ddd;
}
.testimonial_item h6 {
    text-align: center;
    color: var(--white);
}
.testimonial_item small {
    text-align: center;
    display: block;
    color: var(--para_color);
}
.testimonial_slider {
    margin-top: 50px;
}
/* ======testimonial close============= */

/* ======get in touch start================== */
.get_touch {
    padding: 80px 0;
}
.contact_li_icon {
    width: 80px;
    height: 80px;
    background: var(--theme_blue);
    color: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 29px;
}
.contact_listing {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-flow: wrap;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}
li.contact_li {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 46%;
}
.contactli_text {
    width: calc(100% - 95px);
}
.contactli_text span {
    display: block;
    font-size: 22px;
    font-weight: 500;
}
.social_bar {
    display: flex;
    gap: 15px;
    list-style: none;
    margin-top: 30px;
}
.social_bar li a {
    background: var(--theme_blue);
    width: 45px;
    height: 45px;
    display: inline-flex;
    color: var(--white);
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.5s;
}
.social_bar li a:hover {
    background: var(--theme_orange);
    transition: 0.5s;
}
.contact-from {
    padding: 40px;
    box-shadow: 0px 3px 15px 0px rgba(18.000000000000007, 43.99999999999999, 108, 0.1);
    margin-left: 40px;
}
.contact-from .form-control {
    border-radius: 0px;
    min-height: 44px;
} 
.contact-from .form-group {
    margin-bottom: 30px;
}
/* ======get in touch close================== */


/* =====footer start===============-= */
.footer_area {
    background: #020c25;
    padding: 80px 0 30px;
}
.footer_content h3 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 20px;
}
.footer_brand a img {
    filter: brightness(0) invert(1);
}
.fmenu_listing {
    list-style: none;
    display: grid;
    gap: 7px;
}
.fmenu_listing li a {
    color: var(--white);
    font-family: 'Alegreya Sans', sans-serif;
    display: block;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.5s;
}
.fmenu_listing li a:hover {
    color: var(--theme_orange);
    transition: 0.5s;
}
.footer_brand a img {
    max-width: 220px;
}
.fmenu_listing li a span {
    display: inline-block;
    margin-right: 5px;
}
.call_btn {
    background: var(--theme_color);
    color: var(--white);
    border-radius: 0;
    padding: 8px 40px;
    margin: 15px 0 0;
    border: 2px solid var(--theme_color);
}
.call_btn:hover {
    background: transparent;
    color: var(--theme_color);
}
.copyright_bar {
    margin-top: 50px;
    border-top: 1px solid var(--theme_color);
    padding-top: 15px;
    font-size: 14px;
    color: #7c7b7b;
    font-family: 'Alegreya Sans', sans-serif;
}
.copyright_bar a {
    color: var(--theme_orange);
    text-decoration: none;
}
/* =====footer_area close========== */

