@import url(https://fonts.googleapis.com/css2?family=Open+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=MuseoModerno&display=swap);
@import url(font-awesome.min.css);
* {
    margin: 0;
    padding: 0;
    outline: none !important;
    box-sizing: border-box;
}

html,
body {
    color: #222222;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    line-height: normal;
    font-weight: 400;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

@media (min-width: 992px) and (max-width: 1199px) {
    body {
        overflow-x: hidden;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    body {
        overflow-x: hidden;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0;
    font-weight: normal;
    position: relative;
    padding: 0;
    font-weight: normal;
    line-height: normal;
    color: #1f1f1f;
    margin: 0
}

h1 {
    font-size: 24px;
    line-height: 50px;
}

h2 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
    color: #000;
    line-height: 21px;
    font-weight: 600;
    text-transform: none;
    margin: 30px 0 20px 0;
}

p {
    line-height: 30px;
    color: #707070;
    text-align: left;
}

@media (max-width: 767px) {
    p {
        font-size: 14px;
        ;
    }
}

@media screen and (max-width: 1000px) and (min-width: 767px) {
    p {
        font-size: 14px;
        ;
    }
}

p span.title {
    display: block;
    font-weight: 900;
    text-decoration: underline;
}

a {
    color: #000;
    text-decoration: none;
    outline: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a,
.btn {
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a.btn.main_bt,
button.btn.main_bt {
    background: #0055A5;
    border: none;
}

a.btn,
button.btn {
    min-width: 106px;
    height: 33px;
    border-radius: 5px;
    padding: 0;
    text-align: center;
    line-height: 33px;
    font-size: 16px;
    margin-top: 10px;
    color: #fff;
    border: solid transform 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .5);
    position: relative;
    font-family: 'Open Sans', sans-serif;
}

ol,
ul {
    list-style: none;
    margin: 0;
    color: #707070;
}

ul.disc {
    list-style-type: disc;
    margin-left: 20px;
}

ol.decimal {
    list-style-type: decimal;
    margin-left: 20px;
}

ol li:last-child,
ul li:last-child {
    margin-bottom: 10px;
}

header .header_top,
header .header_bottom,
section,
footer {
    float: left;
    width: 100%;
}

.container {
    width: 1200px;
    max-width: 1200px;
}

.header_top .col-md-4 {
    margin: auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        width: 980px;
        max-width: 980px;
    }
}

@media (max-width: 767px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (min-width: 767px) and (max-width: 991px) {
    .container {
        width: 750px;
        max-width: 750px;
    }
}

.footer-menu li a:hover,
.footer-menu li a:focus,
.breadcrumb .breadcrumb-wrap li a {
    color: #ff0000;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb .breadcrumb-wrap {
    display: flex;
}

.breadcrumb .breadcrumb-wrap li {
    font-weight: 500;
}

.breadcrumb .breadcrumb-wrap>li+li::before {
    position: relative;
    content: '\203A';
    margin: 0 10px;
    font-size: 18px;
    color: inherit;
    opacity: .7;
    display: inline-block;
}

.breadcrumb .breadcrumb-wrap li a {
    position: relative;
    top: 1px;
    left: 0;
}

article {
    width: 75%;
}

.menu_side {
    display: none;
}

@media (max-width: 768px) {
    article {
        width: 100%!important;
    }
}

nav {
    width: 25%;
}

@media (max-width: 769px) {
    nav {
        width: 100%;
    }
}

main.container {
    display: flex;
    padding: 30px 0;
}

article .container,
.main-content {
    width: 100%;
}

img {
    width: 100%;
}

.hide-me {
    display: none;
}

#button {
    display: inline-block;
    background-color: #ff0000;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    color: #fff;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.7em;
    line-height: 45px;
}

#button:hover {
    cursor: pointer;
    background-color: #fff;
    color: #ff0000;
    border: 1px solid #ff0000;
}

#button.show {
    opacity: 1;
    visibility: visible;
}