@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Josefin Sans', sans-serif;
    scroll-behavior: smooth;
    outline: 0 !important;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {
    font-size: 16px;
}

.wow {
    visibility: hidden;
}

#app {
    position: relative;
}

.menu-toggle,
.menu-wrapper {
    display: none !important;
}

.main-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    transition: 300ms;
    background: #fff;
    z-index: 99;
    padding-bottom: 10px;
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    padding: 15px 0;
    transition: 300ms;
}

.header-bar .languages {
    position: relative;
    width: 120px;
}

.header-bar .languages .active {
    transition: 300ms;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    overflow: hidden;;
}

.header-bar .languages .active:after {
    content: '\f105';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    transform: rotate(90deg);
    color: #a6a6a6;
    transition: 300ms;
}

.header-bar .languages .list {
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    z-index: 1;
    transition: 300ms;
    width: 100%;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    box-shadow: -10px 10px 12px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
}

.header-bar .languages .list li a {
    padding: 10px;
    display: block;
    font-size: 14px;
    transition: 300ms;
    color: #000;
    line-height: 1;
}

.header-bar .languages .list li a:Hover {
    background-color: #3fa2db;
    color: #fff;
}

.header-bar .languages:hover .list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-bar .languages:hover .active {
    background-color: #2f62aa;
    color: #fff;
}

.header-bar .languages:hover .active:After {
    color: #fff;
}

.header-bar .actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-bar .actions .phone {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: 300ms;
    color: #000;
}

.header-bar .actions .phone .title {
    margin-right: 10px;
    font-weight: lighter;
}

.header-bar .actions .phone .numbers {
    font-weight: bolder;
    transition: 300ms;
}

.header-bar .actions .phone i {
    margin-right: 10px;
    display: flex;
    width: 30px;
    height: 30px;
    color: #3fa2db;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    transition: 300ms;
}

.header-bar .actions .phone:Hover i {
    background-color: #2f62aa;
    transform: scale(1.1);
    box-shadow: -10px 10px 12px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.header-bar .actions .phone:Hover .numbers {
    color: #2f62aa;
}

.header-bar .actions .socials {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-bar .actions .socials a {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    transition: 300ms;
    border-radius: 5px;
    margin-right: 10px;
    color: #3fa2db;
}

.header-bar .actions .socials a:Hover {
    background-color: #2f62aa;
    transform: scale(1.1);
    box-shadow: -10px 10px 12px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.menu-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 300ms;
}

.menu-bar .logo {
    width: 180px;
}

.menu-bar .menu {
    width: calc(100% - 180px);
}

.menu-bar .menu ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-bar .menu ul li a {
    display: block;
    padding: 20px 30px 15px 30px;
    line-height: 1px;
    transition: 600ms;
    color: #7e7e7e;
    font-size: 18px;
    border-radius: 5px;
    position: relative;
}

.menu-bar .menu ul li:last-child a {
    background-color: #2f62aa;
    color: #fff;
}

.menu-bar .menu ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #2f62aa;
    z-index: -1;
    transition: 600ms;
    transform: scale(0);
    opacity: 0;
    border-radius: 5px;
}

.menu-bar .menu ul li:hover a:before {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: -10px 10px 12px rgba(0, 0, 0, .1);
}

.menu-bar .menu ul li:hover a {
    color: #fff;
}

.menu-bar .menu ul:Hover li:not(:Hover) a {
    opacity: .5;
}

.menu-bar .menu ul:Hover li:last-child a {
    background-color: transparent;
    color: #7e7e7e;
}

.menu-bar .menu ul li:last-child a:Hover {
    color: #fff;
}

.welcome-wrapper {
    height: 85vh;
    background-image: url(/images/home-bg.jpg);
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.welcome-wrapper .text {
    max-width: 40%;
}

.welcome-wrapper .text h1 {
    font-weight: bolder;
    font-size: 40px;
}

.welcome-wrapper .text p {
    margin: 15px 0 30px 0;
    max-width: 80%;
    color: #727272;
}

.welcome-wrapper .buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.welcome-wrapper .buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 120px;
    height: 40px;
    margin-right: 20px;
    font-size: 14px;
    transition: 300ms;
    border-radius: 5px;
}

.welcome-wrapper .buttons i {
    margin-right: 10px;
}

.welcome-wrapper .buttons .getorder {
    background-color: #eeeeee;
    color: #2f62aa;
    transition: 300ms;
}

.welcome-wrapper .buttons .getorder:Hover {
    background-color: #3fa2db;
    color: #fff;
}


.welcome-wrapper .buttons .callus {
    border: 1px solid #e6e6e6;
    color: #2f62aa;
}

.welcome-wrapper .buttons .callus:Hover {
    background-color: #3fa2db;
    color: #fff;
    border-color: transparent;
}

#about {
    margin-bottom: 120px;
}

#about .section-header {
    text-align: center;
    margin-bottom: 30px;
}

#about .section-header .sup-title {
    background: #f1f1f1;
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    padding: 10px 12px 8px 12px;
    border-radius: 5px;
    color: #00b648;
}

#about .section-header h2 {
    max-width: 50%;
    margin: auto;
}

.widgets {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
    text-align: center;
}

.widgets .title {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
}

.widgets .description {
    font-size: 14px;
    max-width: 80%;
    margin: auto;
}

#about .body {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-top: 130px;
}

#about .body:before {
    content: '';
    position: absolute;
    left: calc(50% - 1px);
    width: 1px;
    height: 120px;
    top: -20px;
    background-color: #c9c9c9;
    opacity: .5;
}

#about .body .image {
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -10px 10px 12px rgba(0, 0, 0, 0.2);
}

#about .body .text {
    width: calc(100% - 200px);
    padding-left: 30px;
}

#about .body .text {
    color: #767676;
}

.fixed-bar .main-header {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.fixed-bar .header-bar {
    margin-top: -75px;
}

.fixed-bar .menu-bar {
    padding: 20px 0 10px 0;
}

#works {
    margin: 120px 0;
}

#works .section-header {
    margin-bottom: 50px;
    text-align: center;
}

#works .section-header h2 {
    font-weight: bolder;
}

.works-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.works-container .work {
    width: calc(25% - 30px);
    margin: 15px;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.works-container .work .image {
    overflow: hidden;
}

.works-container .work .image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: 300ms;
}

.works-container .work .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 15px;
    transition: 300ms;
    color: #fff;
    font-weight: 900;
    z-index: 1;
    text-align: center;
}

.works-container .work:Hover .content {
    background-color: rgba(0, 0, 0, 0.5);
}

.works-container .work:hover .image img {
    transform: scale(1.1) rotate(2deg);
}

#contentTitle {
    font-weight: bolder;
}

#contentImage {
    height: 400px;
    margin-bottom: 20px;
}

#contentImage img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    height: 400px;
}

#services .section-header {
    text-align: center;
    margin-bottom: 30px;
}

#services .section-header h2 {
    font-weight: bolder;
}

#services .service-item {
    box-shadow: -10px 10px 12px rgba(0, 0, 0, 0.1);
    margin: 10px;
    overflow: hidden;
    border-radius: 15px;
}

#services .service-item .image {
    overflow: hidden;
    border-radius: 15px;
}

#services .service-item .image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

#services .service-item .content {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: -10px 10px 12px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#services .service-item .content a {
    white-space: nowrap;
    font-size: 14px;
    display: inline-block;
    background-color: #2f62aa;
    padding: 10px;
    line-height: 1;
    border-radius: 5px;
    color: #fff;
    transition: 300ms;
}

#services .service-item .content a:Hover {
    background-color: #3fa2db;
}

#services .service-item .content i {
    font-size: 8px;
}

#services .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 50px;
}

#services .owl-nav i {
    display: flex;
    font-size: 13px;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid #3fa2db;
    color: #3fa2db;
    transition: 300ms;
    margin: 5px;
    border-radius: 5px;
    box-shadow: -10px 10px 12px rgba(0, 0, 0, 0.1);
}

#services .owl-nav i:Hover {
    background-color: #3fa2db;
    color: #fff;
    box-shadow: -10px 10px 24px rgba(0, 0, 0, 0.1);
}

#offer {
    padding: 120px 0;
    background-image: url(/images/offer-bg.jpg);
    background-size: cover;
    margin-top: 120px;
    background-attachment: fixed;
}

#offer .section-header {
    text-align: center;
    margin-bottom: 50px;
}

#offer .section-header h2 {
    font-weight: bolder;
}

#offer .section-header p {
    max-width: 50%;
    margin: auto;
    text-align: center;
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    width: 540px;
    margin: auto;
    align-items: center;
    justify-content: space-between;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 10px;
    transition: 300ms;
    box-shadow: -3px -10px 12px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3fa2db;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
}

.contact-form textarea {
    height: 200px;
}

.contact-form button {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bolder;
    background-color: #2f62aa;
    color: #fff;
    padding: 15px 20px 10px 20px;
    transition: 300ms;
    border: 0;
    border-radius: 5px;
    line-height: 1;
}

.contact-form button:Hover {
    background-color: #3fa2db;
    box-shadow: -10px 10px 12px rgba(0, 0, 0, 0.1);
}

.main-footer {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 12px rgba(0, 0, 0, .2);
}

.footer-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-container > div {
    width: 30%;
}

.footer-container .contacts {
    text-align: right;
}

.footer-container .returnTop {
    display: inline-block;
    color: #3fa2db;
    margin-top: 20px;
    transition: 300ms;
}

.footer-container .returnTop:hover {
    color: #2f62aa;
}

.footer-container .contacts .title {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.footer-container .contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.footer-container .contacts ul li {
    margin-bottom: 10px;
    transition: 300ms;
}

.footer-container .contacts ul:Hover li:not(:hover) {
    opacity: .6;
}

.main-footer .socials {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

.main-footer .socials a {
    font-size: 20px;
    color: #3fa2db;
    margin-right: 10px;
    transition: 300ms;
}

.main-footer .socials a:Hover {
    color: #2f62aa;
}

.copyright {
    font-size: 14px;
}

.copyright a {
    transition: 300ms;
    color: #000;
}

.copyright a:hover {
    color: #2f62aa;
}

.footer-container .logo img {
    width: 180px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .header-bar {
        display: none;
    }

    .menu-bar .menu {
        display: none;
    }

    .menu-bar .logo {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
    }

    .menu-bar .logo img {
        width: 120px;
    }

    .menu-toggle {
        display: flex !important;
        border: 0;
        background-color: transparent;
        color: #46a5dc;
        transition: 300ms;
    }


    .main-header {
        padding: 10px 0;
    }

    .fixed-bar .menu-bar {
        padding: 10px 0;
    }

    .welcome-wrapper {
        background-size: 1500px;
        height: 100vh;
        position: relative;
        z-index: 1;
    }

    .welcome-wrapper:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(255 255 255 / 70%);
        z-index: -1;
    }

    .welcome-wrapper .text {
        max-width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        position: relative;
        padding-bottom: 70px;
    }

    .welcome-wrapper .text h1 {
        color: #000;
    }

    .welcome-wrapper .text p {
        color: #000;
    }

    .welcome-wrapper .buttons .callus {
        background-color: #fff;
        border-color: transparent;
    }

    #about {
        margin: 30px 0;
    }

    #about .section-header h2 {
        max-width: 100%;
    }

    .widgets {
        flex-wrap: wrap;
    }

    #about .body {
        flex-wrap: wrap;
    }

    #about .body .image {
        width: 100%;
    }

    #about .body .text {
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }

    #works {
        margin: 30px 0;
    }

    .works-container .work {
        width: calc(50% - 30px);
    }

    .works-container .work .image img {
        height: 200px;
    }

    #offer {
        margin-top: 0;
    }

    #offer .section-header p {
        max-width: 100%;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-container > div {
        width: 100%;
    }

    .footer-container .contacts {
        text-align: left;
    }

    .menu-wrapper {
        display: flex !important;
        position: fixed;
        z-index: 99;
        left: 0;
        width: calc(100% - 100px);
        flex-direction: column;
        background-color: #fff;
        padding: 20px;
        height: 100%;
        justify-content: space-between;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
        transition: 300ms;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
    }

    .menu-wrapper .logo {
        text-align: center;
    }

    .menu-wrapper .logo img {
        width: 120px;
        margin: auto;
    }

    .menu-wrapper .languages .active {
        display: none;
    }

    .menu-wrapper .languages .list {
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 14px;
    }

    .menu-wrapper .languages .list a {
        color: #000;
        padding: 5px 0;
        display: block;
    }

    .menu-wrapper .menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu-wrapper .menu ul li a {
        font-size: 18px;
        color: #000;
        font-weight: bolder;
        padding: 5px 0;
        display: block;
    }

    .menu-wrapper .socials {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .menu-wrapper .socials a {
        color: #000;
        display: flex;
        width: 30px;
        height: 30px;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        background-color: #41a3db;
        border-radius: 5px;
        font-size: 14px;
    }

    .menu-wrapper .phone {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .menu-wrapper .phone i {
        display: flex;
        width: 30px;
        align-items: center;
        justify-content: center;
        background-color: #41a3db;
        border-radius: 5px;
        height: 30px;
        color: #fff;
    }

    .menu-wrapper .phone .title {
        margin-left: 10px;
        font-size: 12px;
        color: #000;
    }

    .menu-wrapper .phone .numbers {
        padding-left: 40px;
        font-weight: bolder;
        color: #000;
    }

    .open-menu .menu-wrapper {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .contact-form{
        width: 100%;
    }
}
