/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;900&display=swap');

/* basic */
*:focus{
    outline: 0 !important;
}

a{
    text-decoration: none;
}

body{
    padding: 0;
    margin: 0;
    font-family: Lato;
}

.page{
    margin: 0 !important;
}

.container{
    max-width: 1385px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-block h1{
    font-weight: 900;
    font-size: 36px;
    color: #333333;
    margin-top: 0;
}

.text-block p{
    font-weight: normal;
    font-size: 16px;
    color: #000000;
}

.text-block a{
    color: #000000;
}

.text-block ul{
    padding: 0;
    list-style: none;
    margin-left: 15px;
}

.text-block ul li{
    font-size: 16px;
    color: #000000;
}

.text-block ul li::before{
    content: "\2022";
    color: red;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* header */
header{
    position: relative;
}

.header-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

/* header logos */
.main-logo-wrap{
    max-width: 145px;
    max-height: 155px;
}

.sec-logo-wrap{
    max-width: 215px;
    max-height: 110px;
}

.main-logo-wrap img,
.sec-logo-wrap img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* menu */
.menu{
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu li:not(:last-child){
    margin-right: 50px;
}

.menu li a{
    font-size: 18px;
    color: #828282;
    text-transform: uppercase;
    transition: color .4s;
}

.menu li a:hover{
    color: #FB0000;
}

.menu .current-menu-item a{
    color: #FB0000;
}

/* mob btn */
.mob-offset,
.menu-btn-wrap{
    display: none;
}

.mob-offset{
    width: 54px;
}

/* menu btn */
.toggle_mnu{
    position: relative;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.toggle_mnu span {
    display: block; 
}

.sandwich {
    width: 30px;
    height: 35px;
    position: relative;
    margin: auto;
}

.sw-topper,
.sw-bottom,
.sw-footer{
    position: absolute;
    height: 2px;
    background: #000;
    left: 0;
    border-radius: 5px;
}
  
.sw-topper {
    width: 100%;
    top: 7px;
    transition: transform 0.5s, top 0.2s;
}

.sw-bottom {
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.5s, top 0.2s;
    transition-delay: 0.2s, 0s; 
}

.sw-footer {
    width: 70%;
    bottom: 7px;
    transition: all 0.5s;
    transition: transform 0.5s, top 0.2s;
}

.sandwich.active .sw-topper {
    top: 17px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg); 
}

.sandwich.active .sw-bottom {
    opacity: 0; 
}
  
.sandwich.active .sw-footer {
    width: 100%;
    top: 17px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg); 
}

/* breadcrumbs */
.breadcrumb-wrap{
    padding: 20px 0;
    background: #171719;
}

.breadcrumb-wrap p,
.breadcrumb-wrap a{
    margin: 0;
    color: #fff;
    text-transform: uppercase;
}

/* pages */
.content-container{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    min-height: calc(100vh - 200px);
}

.content-wrap{
    padding: 25px 50px;
    background: rgba(255, 255, 255, 0.8);
}

.right-content-wrap{
    max-width: 905px;
    margin-left: 40%;
    margin-right: 20px;
}

.center-content-wrap{
    max-width: 1385px;
    margin: 0 auto;
}

/* footer */
.footer-container{
    padding: 60px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.credit-info{
    font-size: 16px;
}

.credit-info p{
    margin-top: 0;
    margin-bottom: 10px;
}

.credit-info span{
    color: #FC0000;
}

.credit-info a{
    color: #000;
}

.footer-info{
    display: flex;
    align-items: center;
}

.footer-info p{
    font-weight: bold;
    font-size: 18px;
    color: #333333;
    margin: 0 40px 0 0;
}

@media(max-width: 1110px){
    .menu li:not(:last-child) {
        margin-right: 20px;
    }

    .menu li a {
        font-size: 16px;
    }
}

@media(max-width: 930px){
    .sec-logo-wrap{
        display: none;
    }
}

/* mob */
@media(max-width: 800px){
    /* main logo */
    .main-logo-wrap{
        max-width: 80px;
        max-height: 90px;
    }

    /* menu */
    .mob-offset,
    .menu-btn-wrap{
        display: block;
    }

    .menu-wrap{
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        text-align: center;
        padding: 25px 10px;
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s;
    }

    .menu-wrap.fade{
        opacity: 1;
        visibility: visible;
    }

    .menu{
        display: block;
    }

    .menu li:not(:last-child){
        margin-right: 0;
        margin-bottom: 20px;
    }

    .menu li a{
        font-size: 18px;
    }

    /* content */
    .content-container{
        padding: 0;
        min-height: auto;
    }

    .content-wrap{
        background: #fff;
        padding: 15px;
    }

    .right-content-wrap{
        max-width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    /* footer */
    .footer-container{
        display: block;
        padding: 30px 15px;
        text-align: center;
    }

    /* footer credits */
    .credit-info{
        margin-bottom: 20px;
    }

    .credit-info p{
        margin-bottom: 0;
    }

    /* footer info */
    .footer-info{
        justify-content: center;
    }

    .footer-info p {
        margin: 0 10px 0 0;
    }
}

.container-404{
    text-align: center;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
