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

:root {
    --primary-color: #EF5636;
    --highlight-color: #4B494E;
    --s_backgound-color: #f1f5fa;
    --secondary-color: #ffffff;
    --text-color: #202020;
    --p-color: #696969;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Rubik', sans-serif;
    font-family: 'Poppins', sans-serif;
    font-family: 'Roboto', sans-serif;
}

p {
    font-size: 15px;
}

#wrapper {
    background: url(../../images/background.webp) !important;
    background-repeat: repeat !important;
    background-position: top center !important; 
    background-size: contain !important;
    z-index: 9999 !important;
}


#fixed_icons {
    position: fixed;
    right: 0;
    top: 35%;
    z-index: 9999;
}

.fixed_icons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fixed_icons li {
    display: block;
    padding: 10px 10px;
    padding-left: 15px;
    color: var(--secondary-color);
    font-size: 17px;
}

.fixed_icons li a {
    display: block;
}

.whatsapp {
    background: #4ac959;
}

.phone {
    background: #34b7f1;
}

.facebook {
    background: #4267B2;
}

.youtube {
    background: #CD201F;
}

.twitter {
    background: #00acee;
}

.instagram {
    background: #d62976;
}

#top_bar {
    width: 100%;
    height: auto;
    padding: 15px 0;
    background: var(--highlight-color);
    z-index: 999 !important;
}

.top_phone_mail {
    padding: 0;
    margin: 0;
}

.top_phone_mail li {
    display: inline-block;
    color: var(--secondary-color);
    /* padding-right: 50px; */
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all 0.3s ease-in;
}

.top_phone_mail li a i {
    color: var(--secondary-color);
    padding-right: 6px;
    transition: all 0.3s ease-in;
}

.top_phone_mail li:hover {
    transition: all 0.3s ease-in;
    color: var(--secondary-color);
}

.mobile_icon {
    transform: rotate(-30deg);
}

.top_social {
    padding: 0;
    margin: 0;
}

.top_social li {
    display: inline-block;
    color: var(--secondary-color);
    padding: 0px 12px;
    transition: all 0.3s ease-in;
}

.top_social li :hover {
    color: var(--primary-color);
    transition: all 0.3s ease-in;
}

/* navbar  */

#header {
    position: sticky;
    top: 0;
    z-index: 9999 !important;
}

.navbar-brand {
    padding: 0px 15px;
}

.navbar {
    width: 100%;
    background: var(--secondary-color);
    border: none;
    border-radius: 0;
    margin: 0 !important;
    box-shadow: 0px 3px 6px 0px rgba(5, 37, 95, 0.2);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    padding-top: 7px !important;
    font-size: 32px;
}

#logo {
    height: 80px;
}

.navbar .navbar-nav>li>a {
    padding: 12px 20px;
    color: var(--text-color);
    font-size: 16px;
    letter-spacing: 0.15px;
    font-weight: 500;
    margin: 18px 2.5px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.navbar .navbar-nav>li>a:hover {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color) !important;
    background: var(--primary-color) !important;
    transition: all 0.3s ease;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color) !important;
    background: var(--primary-color) !important;
    transition: all 0.3s ease;
}

/* end navbar  */



/* slider  */

.carousel-control.left {
    background-image: none !important;
}

.carousel-control.right {
    background-image: none !important;
}

.carousel-control {
    width: 4% !important;
    opacity: 1;
}

.carousel-control i {
    color: var(--secondary-color);
    font-size: 33px;
    position: absolute;
    top: 45%;
}

.cc_left {
    right: 0 !important;
}

.cc_right {
    left: 0 !important;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
    color: var(--secondary-color);
    opacity: 1;
}


#main_slider {
    width: 50%;
    height: 100%;
    position: absolute;
    /* background: rgba(0, 0, 0, 0.4); */
    display: flex;
    align-items: center;
    /* justify-content: center; */
    /* margin: auto; */
    text-align: left;
    left: 8%;
    bottom: 0;
}

#box {
    position: relative;
    transition: all 1s;
    transform: scale(1);
}

@-webkit-keyframes s_heading {
    0% {
        transform: translatey(150px);
        opacity: 0;
    }

    50% {
        transform: translatey(150px);
        opacity: 0;
    }

    100% {
        transform: translatey(0px);
        opacity: 1;
    }
}

.slider_h {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: inherit;
    transform: translatey(0px);
    animation-name: s_heading;
    animation-iteration-count: 1;
    animation-duration: 1.8s;
    transition: all 1s;
    color: var(--secondary-color);
    transform: translatey(0px);
    text-align: left !important;
}

.slider_btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.35px;
    background: var(--primary-color);
    font-weight: 500;
    margin-top: 20px !important;
    transition: all 0.3s ease-in;
    color: var(--secondary-color);
    transform: translatey(0px);
    animation-name: s_heading;
    animation-iteration-count: 1;
    animation-duration: 2.4s;
    transition: all 1s;
}

.c_w {
    color: #ffffff !important;
}

/* slider  */

#banner_bottom {
    width: 100%;
    height: auto;
    padding: 60px 0;
    /* background: var(--secondary-color); */
    padding-bottom: 30px;
}

#about{
    width: 100%;
    height: auto;
    padding: 60px 0;
    padding-bottom: 30px;
}

.bb_h {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    line-height: inherit;
    font-weight: 600;
    color: #000000;
    letter-spacing: 0px;
}

#services {
    width: 100%;
    height: auto;
    padding: 80px 0;
    /* background: var(--secondary-color); */
}

.ser_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    padding-bottom: 20px !important;
    font-size: 32px;
}

.ser_h::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.service_box {
    width: 100%;
    height: auto;
    padding: 50px 25px;
    background: var(--secondary-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.service_box i {
    font-size: 32px;
    width: 65px;
    height: 65px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-align: center;
    padding-top: 14px;
    transition: all 0.3s ease;
}

.ser_b_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    padding-top: 20px !important;
    transition: all 0.3s ease;
    letter-spacing: 0.35px;
    line-height: inherit;
    font-size: 20px;
}

.ser_b_p {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.35px;
    color: var(--highlight-color);
    font-weight: 400;
    line-height: 30px;
    font-size: 15px;
    padding-top: 10px !important;
    transition: all 0.3s ease;
}

.ser_b_btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 15px;
    border: none;
    font-size: 16px;
    background: var(--primary-color);
    letter-spacing: 0.35px;
    padding: 12.5px 30px;
    transition: all 0.3s ease;
}

.service_box:hover {
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.service_box:hover i {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.service_box:hover .ser_b_p {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.service_box:hover .ser_b_h {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.service_box:hover .ser_b_btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

#about_home {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: url(../../images/abt_home.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ah_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 10px !important;
    letter-spacing: 0.65px;
}

.ah_p {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.35px;
    color: var(--secondary-color);
    line-height: 32px;
    font-size: 15px;
    padding-top: 15px !important;
}

.abt_h_btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--secondary-color);
    margin-top: 15px;
    border: none;
    font-size: 16px;
    background: var(--primary-color);
    letter-spacing: 0.35px;
    padding: 13px 35px;
}

.ser_box {
    margin-top: 45px;
    text-align: center;
}

.ser_box i {
    font-size: 42px;
    color: var(--primary-color);
}

.sb_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--highlight-color);
    padding-top: 15px !important;
    letter-spacing: 0px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.sb_p {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0;
    color: var(--highlight-color);
    line-height: 28px;
    font-size: 15px;
    padding-top: 10px !important;
}

.ser_box:hover .sb_h {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

#clients {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--highlight-color);
}

.p_box {
    padding: 10px !important;
}

#p_img {
    padding: 20px 15px !important;
    background: var(--secondary-color);
}

.client_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    padding-bottom: 20px !important;
    font-size: 32px;
}

.client_h::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
}

#contact {
    width: 100%;
    height: auto;
    padding: 80px 0;
}

.contact_input {
    height: auto;
    padding: 12px 7px;
    margin-top: 2.5px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    letter-spacing: 0.35px;
    border: none;
    border-bottom: 1px solid var(--highlight-color);
    box-shadow: none;
    border-radius: 0;
    outline: none !important;
}

.contact_input::placeholder {
    color: var(--p-color);
}

.contact_label {
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    letter-spacing: 0.35px;
    font-size: 16px;
}

.contact_btn {
    font-family: 'Poppins', sans-serif;
    padding: 14px 40px;
    background: var(--primary-color);
    border: none;
    color: var(--secondary-color);
    margin-top: 5px;
    font-size: 16px;
    letter-spacing: 0.65px;
    font-weight: 400;
    margin-bottom: 40px;
}

.contact_sh {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 19px;
    letter-spacing: 0;
    padding-left: 15px !important;
    line-height: inherit;
}

.contact_sh i {
    color: var(--primary-color);
    padding-right: 10px;
}

.contact_input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid var(--highlight-color);
}

.contact_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    line-height: inherit;
    padding-top: 40px !important;
}


#footer {
    width: 100%;
    height: auto;
    padding: 60px 0;
    padding-top: 20px;
    background: var(--highlight-color) url(../../images/background.webp);
    background-position: top center;
    background-size: cover;
}

.footer_box {
    margin-top: 40px;
}

.footer_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 23px;
    padding-bottom: 20px !important;
}

.footer_p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.35px;
    color: var(--secondary-color);
    margin-top: 20px !important;
}

.footer_li {
    padding: 0;
    margin: 0;
}

.footer_li li {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.35px;
    color: var(--secondary-color);
    list-style: none;
    font-size: 16px;
    padding-bottom: 15px;
    padding-left: 10px;
}

.footer_li li i {
    padding-right: 5px;
}

#copyrights {
    width: 100%;
    height: auto;
    padding: 15px 0;
    /* background: #343337; */
    background: var(--primary-color);
    text-align: center;
}

.copy_p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.35px;
    color: var(--secondary-color);
}


#bredcum_headings {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--highlight-color);
}

.bredcum_box {
    text-align: center;
}

.bredcum_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.bredcum_li {
    padding: 0;
    margin: 0;
    margin-top: 20px !important;
}

.bredcum_li li {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.65px;
    color: var(--secondary-color);
    font-size: 16px;
}

.bredcum_li li i {
    padding: 0 8px;
}

#inner_pages {
    width: 100%;
    height: auto;
    padding: 80px 0;
}

#inner_services_pages {
    width: 100%;
    height: auto;
    padding: 80px 0;
    padding-top: 40px;
}

.abt_p {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.35px;
    color: var(--highlight-color);
    line-height: 32px;
    font-size: 15px;
    font-weight: 400;
    padding-top: 10px !important;
}

#abt_bottom {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--primary-color);
}

.abt_sh {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.65px;
    font-size: 26px;
}

.abt_sh_box {
    margin-top: 30px;
}

.abt_ssh {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.65px;
    font-size: 22px;
}

.abt_btn {
    font-family: 'Poppins', sans-serif;
    padding: 14px 40px;
    background: var(--secondary-color);
    border: none;
    color: var(--primary-color);
    margin-top: 0px;
    font-size: 16px;
    letter-spacing: 0.35px;
    font-weight: 500;
    float: right;
}

.ser_i_h {
    font-family: 'Montserrat', sans-serif;
    line-height: inherit;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0px;
    margin-bottom: 15px !important;
}

.ser_i_sh {
    font-family: 'Montserrat', sans-serif;
    line-height: inherit;
    font-weight: 600;
    color: var(--p-color);
    letter-spacing: 0px;
    font-size: 20px;
}

.inner_h_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 30px;
}

.product_box {
    margin-top: 40px;
    position: relative;
}

.pb_img {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pb_img img {
    transform: scale(1);
    transition: all 0.3s ease;
}

.product_box:hover .pb_img img {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.pb_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    padding-top: 12px !important;
    line-height: 30px;
    transition: all 0.3s ease;
    min-height: 80px;
}

.product_box:hover .pb_h {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

#contact_form{
    background: var(--secondary-color);
}


#expertise{
    width: 100%;
    height: auto;
    padding: 60px 0;
    padding-bottom: 30px;
}
.expertise_box{
    margin-top: 40px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 10px;
    background: var(--secondary-color);
}
.expertise_img{
    overflow: hidden;
}
.expertise_img img{
    transform: scale(1);
    transition: all 0.3s ease;
}
.expertise_box:hover .expertise_img img{
    transform: scale(1.1);
    transition: all 0.3s ease;
}
.eb_h{
    padding: 20px 0 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-align: center;
    padding-bottom: 10px !important;
    font-size: 16px;
    letter-spacing: 0;
    line-height: inherit;
}