﻿@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,800i,900|Quicksand:300,400,500,700&display=swap&subset=cyrillic,cyrillic-ext,latin-ext,vietnamese');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: black;
}

.darkred {
    color: #ce0000;
}

input:focus, textarea:focus, select:focus {
    outline: none;
}

.wrapper {
    /*   border: 2px solid #f08c00;*/
}

.hidden {
    display: none;
}

section {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: auto;
    grid-gap: 1em;
    align-items: center;
    text-align: center;
}

.section-title h2 {
    float: left;
    width: 100%;
    text-align: center;
    color: #d8252f;
    font-size: 34px;
    font-weight: 700;
}

.section-subtitle {
    position: absolute;
    color: white;
    width: 100%;
    text-align: center;
    left: 0;
    font-size: 64px;
    opacity: 0.13;
    z-index: -1;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 10px;
}

.section-separator {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px;
    height: 10px;
    color: red;
}

section.gray-section .section-separator {
    background: #f9f9f9;
}

.section-separator:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 4px;
    margin-left: -25px;
    width: 50px;
    border-radius: 3px;
    color: #d8252f;
    background-color: #d8252f;
    border-color: #d8252f;
}

.section-title p {
    color: #ffffff;
    font-size: 13px;
}

footer {
    background-color: black;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    grid-gap: 1em;
   /* line-height: 66px;*/
    color: white;
}

.footer-logo {
    background: #000000;
    display: flex;
    align-items: flex-start;
    justify-content: left;   
}

copyright {
    vertical-align:middle;
    line-height:40px;
    background: #000000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}


.footer-social {
    background: #000000;
    display: flex;
    align-items: flex-end;
    justify-content: right;
    margin-left:auto;
    padding-right:20px;
}

ol, ul {
    list-style: none;
    margin-top:2px;
    margin-bottom:2px;
}

.footer-social {
    text-align: right;
}

    .footer-social li {
        float: left;
        margin-left: 12px;
    }

.main-footer img {
    width: auto;
    height: 35px;
   /* margin-top: 15px;*/
    padding-left: 20px;
}

.scl-crcl {
    border-radius: 50%;
}

.scl-btn {
    padding: 10px;
    font-size: 16px;
    /* width: 30px; */
    text-align: center;
    text-decoration: none;
    /* margin: 4px; */
    color: white;
}

.fa-facebook-f {
    background: #3B5998;
    width: 18px;
    height: 18px;
    cursor:pointer;
}

.fa-facebook-g {
    width: 12px;
    height: 12px;
}



.fa-twitter {
    background: #55ACEE;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.fa-x-twitter {
    background: #55ACEE;
    width: 18px;
    height: 18px;
    cursor: pointer;
}



.fa-instagram {
    background: #125688;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.fa-youtube {
    background: #bb0000;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.fa-pinterest {
    background: #cb2027;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.copyright {
    display: inline-block;
    text-align: center;
    color: rgb(255,255,255);
    position: relative;
    font-size: 13px;
    position: relative;
    font-weight: 500;
    top: 0px;
}

.nav-logo a {
    display: block;
    width: 100%;
    height: 100%;
}


.leaflet-control-zoom-in {
    color: #cf070a;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}