@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.t-primary-bgcolor {
    background-color: #959595;
}

a {
    color: rgb(0, 61, 121);
}

body {
    background-color: #fff;
}

.container {
    width: 1200px;
}

.header {
    width: 100%;
    font-family: "Be Vietnam Pro", sans-serif;
    background-image: url(header-bg.jpeg);
    background-size: cover;
    background-position: center 45%;
}

.header__top {
    background-color: #959595;
}

.header__top .container {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo img {
    width: 125px;
}

.top__nav {
    display: flex;
    align-items: center;
}

.top__nav a {
    text-transform: uppercase;
    padding: 0 12px 0 8px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.top__nav a:hover {
    opacity: 0.6;
    text-decoration: none;
}

.top__nav span {
    position: relative;
}

.top__nav span:after {
    position: absolute;
    content: '|';
    top: 0;
    right: 0;
    color: #fff;
    opacity: 1 !important;
}

.top__nav span:last-child:after {
    display: none;
}

.start-project-button {
    background: rgb(243, 203, 62);
    color: rgb(0, 61, 121);
    padding: 5px 10px 2px;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}

.start-project-button:hover {
    text-decoration: none;
    background: rgba(243, 203, 62, 0.7);
}

.contact-phones {
    display: flex;
    flex-direction: column;
    line-height: 30px;
}

.contact-phones i {
    font-size: 18px;
    color: #a8b1ba;
    padding-right: 6px;
}

.contact-phones a {
    font-size: 16px;
    font-weight: 100;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.contact-phones a:hover {
    text-decoration: none;
    opacity: 0.6;
}

.header__nav {
    background-color: rgba(0, 0, 0, 0.7);
}

.header__nav .container {
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__nav .container a {
    color: #f3d03e;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

.header__nav .container a:hover {
    text-decoration: none;
    color: #fff;
}

.banner__text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px 0 76px;
}

.banner__text span {
    padding: 22px 48px;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 38px;
    color: #fff;
    font-weight: 500;
}

@media screen and (max-width: 1094px) {
    .start-project-button {
        display: none;
    }
}