@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    font-family: 'Roboto', sans-serif;
}
:root{
    --blue: #3d4a83;
    --black: #262626;
    --text: #54595f;
    --grey: #F7F7F7;
    --light-blue: #0170b9;
    --gray-drack: #b29374;
}
.blue{
    color: var(--blue);
}
.black{
    color: var(--black);
}
.text{
    color: var(--text);
}
.grey{
    color: var(--grey);
}
.light-blue{
    color: var(--light-blue);
}
.gray-drack{
    color: var(--gray-drack);
}
.fs14{
    font-size: 14px;
}
.fs16{
    font-size: 16px;
}
.fs18{
    font-size: 18px;
}
.fs20{
    font-size: 20px;
}
.fs22{
    font-size: 22px;
}
.fs24{
    font-size: 24px;
}
.fs30{
    font-size: 30px;
}
.fs60{
    font-size: 60px;
}
.fw300{
    font-weight: 300;
}
.fw400{
    font-weight: 400;
}
.fw500{
    font-weight: 500;
}
.fw700{
    font-weight: 700;
}
.fw900{
    font-weight: 900;
}
.index-9{
    z-index: 9;
}
.text-u{
    text-transform: uppercase;
}
.btn-blue{
    background-color: var(--light-blue);
    border: 1px solid var(--light-blue);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding: 12px 50px;
    border-radius: 10px;
}
.btn-blue:hover{
    color: #fff;
}
.bg-none {
    background-color: transparent !important;
}

.header {
    z-index: 9;
    background-color: #fff;
    box-shadow: 0px 0px 5px #d3d3d3;
    padding: 10px 0px;
}
.header .nav-item .nav-link:hover{
    color: var(--blue);
}
.header .nav-item .nav-link{
    color: var(--blue);
    padding: 0px;
    padding-right: 40px;
}
.header .nav-item:last-child .nav-link{
    padding: 0px 0px;
}

.header.fixed-header {
    position: fixed;
    left: 0px;
    right: 0px;
    z-index: 99;
    animation: smoothScroll .7s forwards;
}
@keyframes smoothScroll{
    0% {
        transform: translateY(-80px);
    }
    100% {
        transform: translateY(0);
    }
}


.banner{
    background-image: url('../img/Banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 160px 0px;
}
.banner::after{
    content: '';
    position: absolute;
    top: 0px;
    display: block;
    height: 100%;
    width: 100%;
    background-color: #000000ab;
}
.banner-cont {
    width: 60%;
}
.banner-cont h1{
    line-height: 28px;
}
.who-img img{
    width: 80%;
}
.consulting {
    padding: 100px 0px;
}

.service .service-wrapper a:hover{
    color: var(--light-blue);
}
.service .service-wrapper {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0px 0px 5px #d3d3d3;
    border-radius: 10px;
}

.btm-banner {
    margin: 100px 0px;
}
.f-menu ul li {
    margin-right: 40px;
}
.f-menu ul li:last-child {
    margin-right: 0px;
}
.f-menu ul li a:hover{
    color: var(--blue);
}
.footer {
    background-color: var(--grey);
    padding: 50px 0px 30px 0px;
}


.contact-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: bottom;
}

.contact .location-c {
    background-color: var(--grey);
    padding: 20px;
    border-radius: 10px;
}

.contact {
    padding: 100px 0px;
}

.aboutus{
    padding: 50px 0px;
}
.expertisen {
    background-image: url('../img/about-us-banner.jpg');
}
.carreer {
    background-image: url('../img/our-carrer.jpg');
}
.input textarea{
    border: 1px solid #ced4da !important;
    border-radius: 4px;
    padding-top: 15px;
    padding-left: 15px;
    width: 100%;
}