﻿@font-face {
    font-family: 'FuturaStd';
    src: url('font/FuturaStd-Bold.woff2') format('woff2'), url('font/FuturaStd-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
html {
    scroll-behavior: smooth;
}
*:hover {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
body {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    padding: 0;
    margin: 0;
    color:black;
}
.container {
    max-width: 1400px;
    width:100%;
    margin: 0 auto;
    padding: 20px 0;
    line-height: 1.6;
}
.header {
    background: #f7f7f7;
    border-bottom: 1px solid #e9e9e9;
}
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
.headerLeft img, .headerCenter img {
    width: 100%;
}
.headerLeft, .headerRight {
    width: 80px;
    margin: 0 20px;
}
.headerCenter {
    max-width: 200px;
}
.banner {
    background: url(img/pattern.png);
    background-size: cover;
    background-position: center;
}
.bannerCont {
    width: 100%;
    max-width: 630px;
    margin: 0 auto;
    text-align: center;
}
.topHightlight {
    background: #27b1db;
    color: white;
    border-radius: 99px;
    padding: 15px 10px;
    margin: 20px auto;
}
.txtBox {
    margin-bottom: 30px;
}
.bannerImg {
    margin: 0 auto 30px;
    max-width: 350px;
}
    .bannerImg img {
        width: 100%;
    }
.sectionWhy, .sectionConstruction {
    background: #5897B9;
    background: linear-gradient(0deg, rgba(60, 154, 180, 1) 0%, rgba(112, 184, 210, 1) 100%);
    color: white;
}
.contentBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contentBoxImg img {
    width: 100%;
}
.contentBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1030px;
    margin: 0 auto;
}
.title {
    font-family: FuturaStd;
    text-transform: uppercase;
    font-size: 25px;
    margin: 10px 0;
}
.contentBoxTxt {
    width: 80%;
    padding-left: 30px;
}
ul.list {
    list-style: none;
    font-size: 14px;
}
    ul.list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 5px;
    }
        ul.list li:before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 0;
        }
.sectionContact {
    padding: 50px 0;
    color: #27b1db;
}
.sectionConstruction {
    padding: 50px 0;
}
.basicBtn {
    text-decoration: none;
    background: #27b1db;
    color: white;
    border-radius: 99px;
    padding: 15px 20px;
    margin: 20px auto;
    opacity:1;
}
    .basicBtn:hover {
        background: #4381a2;
    }
.footer {
    background: #27b1db;
    color: white;
    padding: 30px 0;
    text-align: center;
}
.footerSocial a {
    font-size: 30px;
    color: white;
    opacity: 1;
    text-decoration: none;
}

    .footerSocial a:hover {
        opacity: 0.8;
    }
.copy {
    background: #1898bc;
    padding: 30px 0;
    text-align: center;
    color: white;
}
button#myBtn {
    position: fixed;
    z-index: 999;
    bottom: 40px;
    right: 30px;
    background: #4d85a3;
    border: none;
    color: white;
    font-size: 30px;
    padding: 12px 14px;
    border-radius: 99px;
}
@media only screen and (max-width: 600px) {
    .headerLeft, .headerRight {
        width: 50px;
    }
    .contentBox {
        flex-wrap: wrap;
        justify-content: center;
    }
    .container {
        padding: 20px 0;
    }
    .bannerCont, .footer .container, .header .container {
        width: 80%;
        margin: 0 auto;
    }
    .headerCenter {
        position: relative;
        left: 8%;
    }
    button#myBtn {
        bottom: 100px;
    }
}