@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&display=swap');
body{
    /* background-color: #f5f5f5; */
    font-family: 'Rubik', sans-serif;
}

.navbar{
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;

}

.logo{
    height: 70px;
}

@media (max-width: 768px) {
    .logo{
        height: 35px;
    }
}

.breadcrumbs{
    padding: 70px 0;
    background-image: url(/assets/images/bg-down.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.breadcrumbs::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.8;
    z-index: 0;
}

.breadcrumbs ul{
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.breadcrumbs ul li{
    display: flex;
    align-items: center;
}

.breadcrumbs ul li + li{
    margin-left: 7px;
}

.breadcrumbs li a{
    color: #d10010;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumbs li i{
    color: #d10010;
    font-size: 20px;
    margin-left: 7px;
}

.breadcrumbs li span{
    color: red;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .breadcrumbs{
        padding: 30px 0;
    }
    .breadcrumbs li + li::before{
        content: '';
        margin-right: 0;
    }
}

.slider{}

.slider .slide{
    height: calc(100vh - 90px);
    overflow: hidden;
    position: relative;
}

.slider .slide::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d10010;
    opacity: 0.3;
}

.slider .slide .slider-text{
    z-index: 2;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider .slide .slider-text h1,
.slider .slide .slider-text h2{
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.slider .slide .slider-text p{
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    max-width: 740px;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .slider .slide .slider-text h1,
    .slider .slide .slider-text h2{
        font-size: 30px;
    }
    .slider .slide .slider-text p{
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.slider .slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-red{
    background-color: #d10010;
    color: #fff;
    border: 0;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid #d10010;
}

.btn-red:hover{
    background-color: white;
    color: #d10010;
    border: 2px solid #d10010;
}

.btn-white{
    background-color: white;
    color: #d10010;
    border: 0;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-white:hover{
    background-color: #d10010;
    color: white;
    border: 2px solid white;
}

.about-us .description{
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
}

.services-item{
    display: flex;
}

@media (max-width: 768px) {
    .services-item{
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
}

.services-item .icon{
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 20px;
}

.services-item .icon img{
    width: 100px;
}

.services-item .details{
    padding-right: 30px;
}

.services-item .details .description{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    text-align: inherit;
}

@media (max-width: 768px) {
    .services-item .icon{
        margin-right: 0px;
    }
    .services-item .details{
        padding-right: 0px;
    }
    .services-item .details .description{
        text-align: center;
    }
}

.contact-us{
    color: #fff;
    position: relative;
    background-image: url(/assets/images/contact-us-bg.jpg);
    background-size: cover;
    padding: 80px 0;
}

.contact-us::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d10010;
    opacity: 0.3;
    z-index: 0;
}

.contact-us *{
    z-index: 1;
}

.contact-us .description{
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
}

.contact-us .description a{
    color: #000;
}

.contact-us-item{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    padding: 20px;
    background-color: #f3f3f4;
    border-radius: 20px;
}

.contact-us-item .icon{
    height: 70px;
    flex: 0 0 100px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin-left: 20px;
}

.contact-us-item .icon span,
.contact-us-item .icon i{
    font-size: 3rem;
    color: #d10010;
}

.contact-us-item .details{
    color: #000;
    flex: 1;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-us-item{
        margin-bottom: 20px;
    }
    .contact-us-item .details{
        text-align: center;
    }
}

.work-team-bg{
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.work-team-bg::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.35;
}

.work-team-bg .truck{
    position: absolute;
    bottom: 50px;
    left: clac(50% - 200px);
    width: 400px;
}

@media (max-width: 768px) {
    .work-team-bg{
        display: none;
    }
}

.work-team{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    background-color: #d6d6d5;
    flex-direction: column;
}

.work-team img{
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #d10010;
}

.work-team .name{
    font-size: 30px;
    font-weight: 700;
    margin-top: 20px;
}

.work-team .divider{
    width: 100px;
    height: 1px;
    background-color: #000;
    margin: 20px 0;
}

.work-team .title{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #d10010;
}

.work-team-container{
    position: relative;
}

.work-team-container .icons{
    height: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    z-index: 2;
}

.work-team-container .icons img{
    width: 75px;
    height: 75px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .work-team {
        padding: 30px 0;
    }
    .work-team-container{
        flex-direction: column-reverse;
    }
    .work-team-container .icons{
        display: none;
    }
}

.branches-description{
    padding: 0;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
    color: #d10010;
}

.branches-bg{
    max-width: 100%;
    margin-top: 20px;
}

.branch img{
    max-width: 80%;
    height: 290px;
    object-fit: contain;
}

.partners{
    background-color: #f4f6f8;
    padding: 40px 0;
}

.partners h2{
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #d10010;
}

.partners .partner-img{
    height: 100px;
    object-fit: contain;
    max-width: 100%;
}

.blogs{
    padding: 40px 0;
}

.blogs h2{
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    background-color: #d10010;
    padding: 5px 50px;
    border-radius: 20px;
}

.blogs .blog-item{
    margin-bottom: 20px;
    background-color: #f3f3f4;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.blogs .blog-item img{
    object-fit: cover;
    border-radius: 20px;
}

.blogs .blog-item.blog-lg img{
    height: 300px;
}

.blogs .blog-item.blog-sm img{
    height: 200px;
}

.blogs .blog-item.blog-lg .date{
    font-size: 15px;
    margin-top: 10px;
}

.blogs .blog-item.blog-sm .date{
    font-size: 12px;
    margin-top: 10px;
}

.blogs .blog-item.blog-lg h3{
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
    color: #d10010;
}

.blogs .blog-item.blog-sm h3{
    font-size: 15px;
    font-weight: 700;
    margin-top: 10px;
    color: #d10010;
}

.blogs .blog-item a{
    text-decoration: none;
}

.blog-details{
    margin-top: 50px;
    margin-bottom: 20px;
    background-color: #f3f3f4;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.blog-details .blog-image{
    margin-bottom: 20px;
}

.blog-details .blog-image img{
    object-fit: cover;
    border-radius: 20px;
    width: 100%;
    height: 500px;
}

footer{
    background-color: #2b2f34;
    color: #fff;
}

footer .upper{
    padding: 40px 0;
}

footer .upper .social-media{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

footer .upper .social-media li{
    list-style: none;
    margin: 0 10px;
}

footer .upper .social-media li a{
    color: #fff;
    font-size: 20px;
}

footer .upper .footer-links{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    flex-direction: column;
    padding: 0;
}

footer .upper .footer-links li{
    list-style: none;
}

footer .upper .footer-links li a{
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

footer .copyrights{
    background-color: #202120;
    padding: 20px 0;
}

footer .copyrights p{
    margin: 0;
}

.map-section{
    border-radius: 20px;
    margin: 20px 0;
    border: 1px solid #e8eaed;
    position: relative;
}

.map-section #map{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.map-section .contacts-table{
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    border: 1px solid #e8eaed;
    box-shadow: 1px 1px 1px 0 rgba(0,0,0,0.1);
    background-color: #fefefe;
    padding: 20px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .map-section{
        height: 600px;
    }
    .map-section .contacts-table{
        width: calc(100% - 60px);
        top: unset;
        bottom: 30px;
        height: unset;
    }
}

.map-section .contacts-table h1{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center;
}

.map-section .contacts-table .contact-item{
    margin-bottom: 20px;
}

.map-section .contacts-table .contact-item i.icon{
    font-size: 20px;
    color: #d10010;
    margin-top: 6px;
}

.map-section .contacts-table .contact-item p{
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

.map-section .contacts-table .contact-item p a{
    color: #000;
}

.contact-form{
    padding: 20px;
    background-color: #fefefe;
    border-radius: 20px;
    margin: 20px 0;
    border: 1px solid #e8eaed;
    box-shadow: 1px 1px 1px 0 rgba(0,0,0,0.1);
}

.contact-form .form-control{
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    background-color: #e8eaed;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus{
    background-color: #fff;
}

.contact-form h1{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center;
}

.contact-form p{
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    text-align: center;
    margin-bottom: 20px;
}

.contact-form button[type="submit"]{
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
}

.about-us-container{
    padding: 50px 0;
    background-color: #051f3c;
    box-shadow: 1px 1px 5px 0 rgba(0,0,0,0.1);
    color: #fff;
    overflow: hidden;
}

.about-us-container h1,
.about-us-container h2{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
    color: #d10010;
}

.about-us-container .scope-of-work-item{
    display: flex;
    align-items: center;
}

.about-us-container .scope-of-work-item img{
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    z-index: 2;
}

.about-us-container .scope-of-work-item span{
    margin-left: -15px;
    padding: 5px 10px 5px 20px;
    background-color: #fff;
    color: #051f3c;
    border-radius: 7px;
    font-size: 18px;
    font-weight: 400;
    flex: 1;
}

.whatsapp-float-button{
    position: fixed !important;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 1px 1px 5px 0 rgb(0 0 0 / 10%);
    color: #fff;
    text-decoration: none;
    font-size: 2.5rem;
}

.pulse {
    overflow: visible;
    overflow: initial;
    position: relative
}

.pulse:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    transition: opacity .3s,transform .3s;
    -webkit-animation: pulse-animation 1s cubic-bezier(.24,0,.38,1) infinite;
    animation: pulse-animation 1s cubic-bezier(.24,0,.38,1) infinite;
    z-index: -1
}

@-webkit-keyframes pulse-animation {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0;
        transform: scale(1.5)
    }

    to {
        opacity: 0;
        transform: scale(1.5)
    }
}

@keyframes pulse-animation {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0;
        transform: scale(1.5)
    }

    to {
        opacity: 0;
        transform: scale(1.5)
    }
}
