html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

section {
    padding: 0 15px;
}


div,
ul,
li,
a {
    text-decoration: none;
    list-style: none;
    padding: 0;
}

p {
    text-decoration: none;
    list-style: none;
    padding: 0;
    font-size: 21px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    padding: 0 30px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Roboto', sans-serif;
    text-align: center;
}


/* Menu */

.logo {
    margin: 20px auto;
    text-align: center;
}

.logo img {
    width: 100%;
    max-width: 250px;
    height: auto;
}


.open-panel {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 9px;
    right: -15px;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
 
#site-navigation, nav a {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    color: #000;
    border-radius: 0;
}

.open-panel span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #000;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}



.open-panel span:nth-child(1) {
    top: 0;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.open-panel span:nth-child(2) {
    top: 9px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.open-panel span:nth-child(3) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.open-panel.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -2px;
    left: 3px;
}

.open-panel.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.open-panel.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 21px;
    left: 3px;
}



.menu-row {
    background-color: #00107b;
    padding: 20px 0;
}

.menu-pc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-pc div,
.menu-pc div a {
    color: #fff;
    padding: 0 25px;
    text-transform: uppercase;
    font-size: 19px;
    font-weight: 300;
    letter-spacing: 0.3px;

}

.menu-mobile {
    display: none;
}

.ico-burger {
    position: absolute;
    top: 40px;
    right: 40px;
}

.ico-burger img {
    width: 40px;
}


.ico-burger:hover {
    cursor: pointer;
}

.aside {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -280px;
    width: 280px;
    background-color: #00107b;
    transition: left .3s ease, width 0s ease .3s;
}

.ico-burger.active+.aside {
    left: 0;
    transition: left .3s ease, width 0s ease .3s;
    box-shadow: 280px 0 0 1000px rgb(0 0 0 / 20%), 0 0 20px rgb(0 0 0 / 20%);
}


.aside div,
.aside a {
    color: #fff;
    margin: 20px 0 0 12px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.3px;
    width: 100%;
    max-width: 230px;
}

.aside div:hover,
.aside a:hover {
    color: #ababab;
    cursor: pointer;
}

.aside h2 {
    color: #fff;
    margin: 20px 10px;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.3px;
}



/* Main */

.row-one,
.row-two,
.row-three {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 70px 0;
}

.row-double-desc {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.col-img img {
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-shadow: 2px 2px 9px 0px rgb(66 68 90);
}


.col-desc {
    width: 50%;
}

.col-desc-one {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    border: 1px solid #ababab;
    padding: 20px;
    margin: 0 20px;
    height: 450px;
    background: aliceblue;

}

.col-desc-one-con {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: 20px 0;
    margin: 0 20px;

}

.col-desc-one h2,
.col-desc-two h2 {
    text-transform: uppercase;
}

.col-desc-two {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    border: 1px solid #ababab;
    padding: 20px;
    margin: 0 20px;
    height: 450px;
    background: aliceblue;
}

.col-desc-two-con {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: 20px 0;
    margin: 0 20px;
}

.col-img {
    width: 50%;
    text-align: center;
}

.heading-row {
    text-align: center;
    margin: 40px auto;
    padding: 15px 0;
}

.heading-row h1 {
    color: #000;
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin: 10px 0;
}

.heading-row-separator {
    width: 20%;
    border-bottom: 4px solid #7b0000;
    margin: 0 auto;
}

.row-full-width-one {
    background-image: url(/img/back1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: center;
    background-color: #ededed;
    height: auto;
    padding: 70px 0 !important;
}

.row-full-width-two {
    background-image: url(/img/back2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: center;
    background-color: #ededed;
    height: auto;
    padding: 70px 0 !important;
}

.row-full-width-bg-off {
    background-color: #ededed;
    height: auto;
    padding: 40px 20px;
}

.row-full-width-home {
    display: flex;
    background-color: #ededed;
    height: auto;
    padding: 0 20px;
}

.row-full-width-bg-off p {
    text-align: center;
}


.row-full-width-one h2,
.row-full-width-two h2 {
    text-align: center;
    padding: 0 40px;
    color: #fff;
    font-weight: 300;
    font-size: 30px;
    text-transform: uppercase;
}

.row-full-width-one p,
.row-full-width-two p {
    margin: 0 auto;
    color: #fff;
    font-weight: 300;
    text-align: center;
}


/* Footer */

.footer-row {
    background-color: #000;
    height: auto;
    margin: 50px 0 0 0;
    padding: 15px 0;
}

.footer-section {
    display: flex;
    justify-content: space-around;
    padding: 20px 0 0 0;
}

.footer-heading {
    font-size: 19px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-copyright {
    display: flex;
    justify-content: center;
}


.footer-copyright,
.footer-copyright a,
.footer-item .menu>ul>li>a,
.adress {
    font-size: 16px;
    margin: 20px 0;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
}

.footer-item .logo img {
    width: 150px;
}

.footer-social-links a img {
    margin: 20px auto;
    padding: 0 10px;
}

.footer-social-links {
    text-align: center;
}



/* Responsive */

@media (max-width: 1199px) {

    .menu-pc div,
    .menu-pc div a {
        padding: 0 8px;
    }
}

@media (max-width: 767px) {

    .menu-pc,
    .menu-row {
        display: none;
    }

    .menu-mobile {
        display: block;
    }

    .row-double-desc 
    {
        flex-direction: column;
    }

    .row-one {
        flex-direction: column-reverse;
    }


    .row-double-desc,
    .col-desc-one,
    .col-desc-two {
        justify-content: flex-start;
    }

    .row-two {
        flex-direction: column;
    }

    .row-three {
        flex-direction: column-reverse;
    }

    .col-img,
    .col-desc {
        width: 100%;
        margin: 20px 0;
    }

    .footer-section {
        flex-direction: column;
        margin: 20px auto;
        text-align: center;
    }

    .footer-row {
        height: auto;
    }
}