/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");

:root {
    --headerclr: #013f5c;
    --mainclr: #7e0204;
    --whiteclr: #fff;
    --greyclr: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2s;
    /* font-family: 'Montserrat', sans-serif; */
}

html {
    /* font-size: 62.5%; */
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    height: 100%;
}



a {
    text-decoration: none;
    color: initial;
}

/* .navbar-toggler {
    margin-right: 80px;
} */

/* redcolor: #7e0204; */

/* .header-img {
    margin-left: 30%;
} */

.navbar-toggler:focus,
.navbar-toggler:after {
    box-shadow: 0 0 0 transparent;
}

.navbar {
    /* background-color: #ffffff7a; */
    background-color: #fff;
    /* background-color: #fdb42a; */
    /* background-color: #fdb42a; */
    height: 75px;
    border-bottom: 2px solid #000;
}


/* .navbar-bg {
    background-color: #648da1;
    height: 75px;
} */


/* .nav-item {
    padding-right: 30px;
} */

.nav-link {
    margin-right: 10px;
}


/* .navbar-brand {
    margin-left: 20px;
} */

.navbar-brand img {
    height: 80px;
}

.nav-item>a {
    color: #3e0201;
    /* font-weight: 300; */
    font-size: 0.9rem;
    /* margin-left: 1rem; */
    justify-content: space-between;
}

.navbar-nav .nav-link.active {
    background-color: var(--mainclr);
    color: var(--whiteclr);
}


.nav-item a:hover {
    color: var(--whiteclr);
    background-color: var(--headerclr);
    /* border-radius: 50px; */
}

.nav-item:hover .dropdown-menu {
    display: block;
}


.dropdown-menu {
    /* background-color: #252f568f; */
    background-color: #013f5c7a;
}

.dropdown-menu .dropdown-item {
    color: #fff;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #7e0204;
    /* color: #013f5c; */
    animation: color 10s linear ease-in;
}

@keyframes color {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100%, 0);
    }
}


h2 {
    color: #013f5c;
    letter-spacing: 2px;
    font-weight: 300;
}

.dropdown-item.active {
    background-color: #7e0204;
    color: #fff;
}

/* .navbar-nav .nav-link.active {
    color: #013f5c;
} */

.eng-services {
    margin-top: 150px;
}

.heading-name {
    /* margin-top: 60px; */
    position: relative;
    overflow: hidden;
    color: var(--headerclr);
}

.heading-name::before {
    content: "";
    position: absolute;
    width: 10%;
    height: 3px;
    background-color: #7e0204;
    /* background-color: #fff;  */
    border: 1px solid #7e0204;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 1s;
}

.heading-name:hover:before {
    width: 20%;
}

.paragraph {
    color: #504a4a;
    font-weight: 200;
}

.header {
    padding: 2rem 7%;
    position: fixed;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--headerclr);
}

h1,
h3,
h4,
h5 {
    color: var(--headerclr);
}

p {
    text-transform: initial;
}

.footer {
    /* height: 240px; */
    /* background-color: #0b43578a; */
    /* background-color: #30354b; */
    background-color: #e9ecef;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    /* position: fixed;
    bottom: 40px; 
    right: 20px;
    z-index: 1; */
}

.footer .icon-container {
    text-align: center;
}

.footer-img {
    width: 14rem;
    height: 7rem;
    margin-left: 0px;
}

.footer .border-side {
    border-right: 1px solid #fff;
}

.footer .border-left-side {
    border-left: 1px solid #fff;
}

.footer .item img {
    height: 3rem;
    width: 3rem;
}

.footer .item p {
    font-size: 0.5rem;
    text-align: start;
    color: #000;
}

.footer .icon-row img {
    height: 3rem;
    width: 3rem;
}

.footer .icon-row p {
    font-size: 0.5rem;
    text-align: center;
    color: #000;
}

.footer .desc-row p {
    font-size: 0.7rem;
    text-align: start;
    color: #000;
    line-height: 1.3rem;
}


.footer .contact-footer p {
    font-size: 0.8rem;
    color: #000;
    text-align: start;
}

/* .footer img {
    height: 10rem;
    width: 2rem;
    pointer-events: none;
} */


.service-name,
.service-name-small {
    position: relative;
    overflow: hidden;
}

.service-name::before,
.service-name-small::before {
    content: "";
    position: absolute;
    width: 10%;
    height: 3px;
    background-color: #7e0204;
    /* background-color: #fff;  */
    border: 1px solid #7e0204;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 1s;
}

.service-name:hover:before,
.service-name-small:hover:before {
    width: 20%;
}

.links a {
    margin-top: 50%;
    color: var(--whiteclr);
    border: 1px solid var(--mainclr);
    background-color: var(--mainclr);
}

.credits {
    font-size: 0.5rem;
    color: #000;
    letter-spacing: 1px;
}

.credits p {
    color: #000;
}


/* -------------------------LOADER DESIGN ---------------------- */


/* -------------------final loader------------------ */
.wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--whiteclr);
    /* opacity: 0.5; */
}

@keyframes animate {
    0% {
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        transform: rotate(360deg);
        opacity: 1;
    }
}

@keyframes animate1 {
    0% {
        transform: scale(0) rotate(0);
        opacity: 1;
    }

    100% {
        transform: scale(1.15) rotate(360deg);
        opacity: 0;
    }
}

.loadingio-spinner {
    width: 200px;
    height: 200px;
    display: inline-block;
    overflow: hidden;
    background: url('../images/logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.loaderio {
    width: 250px;
    height: 250px;
    content: '';
    border: 1px solid black;
    position: relative;
    display: inline-block;
    margin-top: 150px;
    animation: animate 15s linear infinite;
    border: 0px solid transparent;
}

.loaderio .dot {
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: black;
    animation: animate1 2s linear infinite;
}

/* -------------------------------SOCIAL MEDIA---------------------- */
.social-media-icons {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    position: fixed;
    z-index: 100;

}

.social-media-icons nav {
    /* box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.4); */
    /* position: fixed; */
    width: 40px;

}

.social-media-icons nav:-moz-drag-over {
    position: relative;
}

.social-media-icons ul {
    padding: initial;
    list-style: none;
}

.social-media-icons nav li {
    height: 45px;
    position: relative;
}

.social-media-icons nav li a {
    display: block;
    color: var(--whiteclr);
    height: 100%;
    width: 100%;
    line-height: 50px;
    /* padding-left: 12px; */
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.4); */
    transition: all 0.3s linear;
}

.social-media-icons nav li button {
    display: block;
    color: var(--whiteclr);
    height: 100%;
    width: 100%;
    line-height: 50px;
    transition: all 0.3s linear;
}

.social-media-icons nav li a i {
    position: absolute;
    top: 1px;
    right: 7px;
    font-size: 20px;
}

.social-media-icons nav li button i {
    position: absolute;
    top: 0px;
    right: 7px;
    font-size: 20px;

}

.facebook {
    background-color: #3b5998;
    text-align: center;
}

.whatsapp {
    background-color: #25D366;
}

.contactus {
    background-color: var(--mainclr);
}

.linkedin {
    background-color: #0e76a8;
}

.company-profile {
    background-color: #c7913d;
}

.social-media-icons nav li a span {
    text-transform: uppercase;
    display: none;
    float: right;
    margin-top: -10px;
    font-size: 12px;
}

.social-media-icons nav li button span {
    text-transform: uppercase;
    display: none;
    float: right;
    margin-top: -10px;
    font-size: 12px;
}

.social-media-icons ul li:hover {
    width: 200px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
    border-top-right-radius: 20px;
    color: var(--whiteclr);
    margin-right: 20px;
    transform: translateX(-50%);
}

.social-media-icons ul li a:hover span {
    display: block;
    padding-right: 50%;
}

.social-media-icons ul li button:hover span {
    display: block;
    padding-right: 50%;
    color: var(--whiteclr);
}

.social-media-icons ul li button:focus {
    border: 0px solid transparent;
}

.modal-content .close {
    border: 0px;
    background: transparent;
}

.modal-content .send {
    background-color: var(--mainclr);
    border: 0px;
}

/* 
.social-media ul li:nth-child(1) {
    background-color: #3b5998;
}
.social-media ul li:nth-child(2) {
    background-color: #25D366;
}
.social-media ul li:nth-child(3) {
    background-color: #0e76a8;
}
.social-media ul li:nth-child(4) {
    background-color: #c7913d;
} */
@media (max-width:900px) {
    html {
        overflow-x: hidden;
    }

    .navbar-toggler {
        margin-right: 1px;
    }

    body {
        overflow-x: hidden;
    }

    .navbar {
        height: 100px;
    }

    .navbar-brand {
        margin-left: 1px;
    }

    .navbar-brand img {
        height: 65px;
    }

    .loadingio-spinner-blocks {
        margin-top: 50%;
    }
}