html,
body {
    margin: 0;
    padding: 0;
    background-color: #333333;
    font-family: Poppins,sans-serif;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.4;
    height:100vh;
    scroll-behavior:smooth;
}

a {
    color: #ff6600;
    font-weight: bold;
    text-decoration: none;
}

.disabled {
    cursor: not-allowed;
    box-shadow:none;
    cursor:not-allowed;
    filter:alpha(opacity=65);
    opacity:.65
}

.disabled * {
    pointer-events: none;
}

.wrapper {
    width: 940px;
    margin: 0 auto;
}

.flex {
    display: flex;
}


#header-mobile {
    display: none;
    background-color: #ffffff;
    color: #333333;
    padding: 10px 0;
}

#header-mobile .flex {
    flex-direction: row;
}

#header-mobile .logo {
    text-align: right;
    flex: 1 1 0px;
}

#header {
    display: block;
    background-color: #ffffff;
    color: #333333;
    padding: 10px 30px;
}

#header .logo {
    width: 152px;
    height: 66px;
}

#header .menu {
    flex-grow: 1;
    text-align: right;
}

#header .menu ul {
    line-height: 34px;
}

#header .menu ul li {
    width: 100px;
    display: inline-block;
    margin: 0 15px;
    text-align: center;
}

#header .menu ul li.flags {
    display: inline-flex;
    justify-content: center;
    width: auto;
    gap: 10px;
    align-items: center;
    height: 100%;
}

.body {
    background-color: #ffffff;
    color: #333333;
}

.body #about {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(51,51,51,.8),rgba(51,51,51,.8)),url('../assets/banner.jpg') #333333;
    background-size: cover!important;
    background-repeat: no-repeat!important;
    background-position: center center!important;
    color: #ffffff;
    width: 100%;
    padding: 50px 0;
}

.body #about .banner {
    text-align: center;
    padding: 60px 100px;
}

.body #about .banner h1 {
    font-size: 42px;
    margin-bottom: 60px;
}

.body #about .banner h2 {
    font-size: 22px;
}

.body #services {
    padding: 50px 0;
}

.body #services .service {
    text-align: center;
    margin: 15px;
    flex-basis: 100%;
}

.body #services .service hr {
    border: 2px solid #ff6600;
    background-color: #ff6600;
}

#contact {
    padding: 50px 0 15px 0;
    text-align: center;
}

#contact form {
    background-color: #ffffff;
    border-radius: 5px;
    color: #333333;
    padding: 20px;
    height: 100%;
}

#contact form h2 {
    margin-block-start: 0;
}

#contact form fieldset {
    border: 1px solid #ff6600;
    border-radius: 5px;
    margin: 10px 0;
    padding: 0 10px 5px 10px;
}

#contact form fieldset legend {
    text-align: left;
    color: #ff6600;
}

#contact form fieldset input,
#contact form fieldset textarea {
    width: calc(100% - 5px);
    border: 0;
    background-color: #ffffff;
    padding: 5px;
}

#contact form input:focus,
#contact form textarea:focus {
    outline: 0;
}

button {
    background-color: #ff6600;
    border: 1px solid #ff6600;
    border-radius: 15px;
    color: #ffffff;
    padding: 5px;
    float: left;
    cursor: pointer;
    width: 100px;
}

.loader {
    border: 3px solid #c3c3c3;
    border-radius: 50%;
    border-top: 3px solid #f3f3f3;
    width: 5px;
    height: 5px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    display: inline-block;
}
  
/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#contact form #result {
    text-align: left;
    margin: auto 10px;
    font-size: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 32px;
    width: calc(100% - 120px);
    float: right;
}

#contact form button {
    float: left;
    height: 32px;
}

#contact .map {
    flex-grow: 1;
    align-items: stretch;
    margin: 30px 0;
}

#contact .map .mapouter,
#contact .map .mapouter .gmap_canvas,
#contact .map .mapouter .gmap_canvas iframe {
    background-color: #666666;
    border-radius: 0 5px 5px 0;
    width: 100%;
    height: 100%;
    border-width: 0;
    overflow: none;
    margin-top: 0;
    margin-left: 0;
}

#contact .info {
    margin-top: 50px;
}

#contact .info .info-item {
    align-items: center;
    display: flex;
    margin: 0 30px;
    flex: 1 1 0px;
    font-size: 14px;
    text-align: left;
}

#contact .info .info-item .info-text {
    padding-left: 10px;
}

.footer {
    font-size: 14px;
    padding: 50px 0;
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .wrapper {
       width: 800px;
    }
}

@media screen and (max-width: 880px) {
    .wrapper {
       width: calc(100% - 40px);
    }

    .flex {
        flex-direction: column;
    }

    #header {
        display: none;
        padding-top: 0;
    }

    #header .wrapper {
        width: 100%;
    }

    #header .logo {
        display: none;
    }

    #header .menu ul {
        margin: 0;
        padding: 0;
    }

    #header .menu ul li {
        display: block;
        margin: 0;
        text-align: left;
    }
    
    #header .menu ul li.flags {
	float: left;
    }

    #header-mobile {
        display: block;
    }

    .body #about .banner {
        text-align: center;
        padding: 50px 0;
    }
    
    .body #about .banner h1 {
        font-size: 32px;
        margin-bottom: 60px;
    }
    
    .body #about .banner h2 {
        font-size: 18px;
    }

    .body #services .service hr {
        margin: 0 20px;
    }

    #contact .map .mapouter,
    #contact .map .mapouter .gmap_canvas,
    #contact .map .mapouter .gmap_canvas iframe {
        width: 100%;
        height: 400px;
        border-radius: 5px;
    }

    #contact .info {
        margin-top: 0;
	height: 224px;
    }

    #contact .info .info-item {
        width: 250px;
        margin: 0 auto;
        margin-top: 15px;
    }

    .footer {
        padding: 25px 0;
    }
}
