.main-page {
    margin: 170px auto 50px;
}

.header {
    width: 100%;
    z-index: 1000;
    transition: all 0.5s ease;
    top: 0;
    min-height: 12vh;
}

.header.on {
    background: #fff;
    box-shadow: 0 -17px 18px 6px #000;
    transition: all 0.5s ease;
}

.header-main {
    display: flex;
    justify-content: space-between;
    margin: 25px 50px;
    height: 60px;
    align-items: center;
}

.logo {
    width: 260px;
}

.menu {
    position: relative;
    width: 30px;
    height: 30px;
}

.menu i {
    font-size: 35px;
    cursor: pointer;
    position: absolute;
    transition: all 0.5s ease;
}

.menu .open {
    transform: rotate(
        223deg
    );
    transition: all 0.5s ease;
}

.menu i:before {
    color: var(--yellow) !important;
    transition: all 0.5s ease;
}

.menu .open:before {
    color: var(--gray) !important;
    transition: all 0.5s ease;
}

.menu .dark:before {
    color: #000 !important;
}

.menu .dark.open:before {
    color: var(--gray) !important;
}

.navigation {
    position: fixed;
    right: -40%;
    width: 33.333%;
    background: #fff;
    top: 0;
    height: 100%;
    z-index: -1;
    padding: 150px 0;
    transition-timing-function: cubic-bezier(.25, .49, .68, .32);
    transition: right 1.5s;
    box-shadow: 0 0 10px -6px #000;
}

.navigation.open {
    right: 0;
    transition-timing-function: cubic-bezier(.25, .49, .68, .32);
    transition: right 1.5s;
}

.navigation--content {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0 90px;
}

.navigation--link a {
    font-size: 3.5rem;
    color: var(--yellow);
    padding: 0 30px;
    transition: all 0.5s ease;
    position: relative;
}

.navigation--link a:hover {
    font-family: explenus-Bold !important;
    transition: all 0.5s ease;

}

.navigation--link a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 4px;
    bottom: 33px;
    left: 0;
    background-color: #000;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.navigation--link a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.social--content {
    display: flex;
    justify-content: space-around;
    margin-top: 155px;
    padding: 0 110px;
}

.social--list {
    width: 55px;
    height: 55px;
    background: #b7b7b7;
    text-align: center;
    line-height: 55px;
    border: 6px solid #fff;
}

.social--list i, .social--list i:before {
    font-size: 1.5rem;
    color: #fff;
}

.social--list:hover {
    background: #000;
    border: 6px solid var(--yellow);
}

.social--list:hover i, .social--list:hover i:before {
    color: var(--yellow);
}

.social--list a {
    display: block;
}

.btn-factor {
    width: 350px;
    height: 60px;
    text-align: center;
    border: 1px solid #000;
    line-height: 60px;
    font-size: 25px;
    font-family: explenus-Bold;
    margin: 5px 0 20px;
    transition: all 0.5s ease;
}

.btn-factor:hover {
    background: var(--yellow);
    transition: all 0.5s ease;
    border: 1px solid var(--yellow);
}

.show-more {
    display: flex;
    align-items: center;
    font-size: 25px;
    color: #6666669c;
}

.show-more:hover i {
    margin-left: 30px;
    transition: all 0.5s ease;
}

.show-more i {
    margin-left: 20px;
    font-size: 30px;
    transition: all 0.5s ease;
}

footer {
    background: #231f20;
}

footer p {
    text-align: center;
    color: #cccccc85;
    line-height: 65px;
    font-size: 0.9rem;
}

footer p a {
    font-family: explenus-Bold;
    color: #ccc;
}

footer p a:hover {
    color: var(--yellow);
}

.modal .forms {
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
    width: 100%;
    height: 100%;
}

.modal .forms img {
    width: 250px;
}

.modal .forms form {
    width: 59%;
    padding: 0 84px;
    text-align: left;
}

.modal .forms .title {
    font-size: 4rem;
    color: #ccc;
    text-align: left;
    margin-bottom: 115px;
}

.form-modal {
    margin: 25px 0;
}

.form-modal.submit {
    width: 100%;
    padding: 0 16px;
}

.form-modal .btn-factor {
    background: #fff;
    border: 1px solid #999;
    width: 100%;
    color: #000;
}

.form-modal .btn-factor:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}

.close-modal, .reply-close, .contact-close {
    cursor: pointer;
    position: absolute;
    right: 49px;
    font-size: 25px;
}

.form-modal input {
    height: 60px;
    border-radius: 100px;
    background: #cccccc8c;
    padding: 0 20px;
    border: 0;
    width: 100%;
    display: block;
}
.form-modal select{
    height: 50px;
    border-radius: 100px;
    background: #cccccc8c!important;
    padding: 0 20px;
    border: 0;
    width: 100%;
    display: block;
}
input:focus, input:active, input:visited {
    outline: none;
    border: 0;
    box-shadow: none;
}

.form-modal label {
    font-size: 1.2rem;
    display: block;
    text-align: left;
    margin: 0 0 8px;
}

html.modal-active, body.modal-active {
    overflow: hidden;
}

#modal-container, #modal-reply, #modal-contact {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    z-index: 10000;
}

#modal-container.one, #modal-reply.one, #modal-contact.one {
    transform: scaleY(0.01) scaleX(0);
    animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.one .modal-background .modal, #modal-reply.one .modal-background .modal, #modal-contact.one .modal-background .modal {
    transform: scale(0);
    animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.one.out, #modal-reply.one.out, #modal-contact.one.out {
    transform: scale(1);
    animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.one.out .modal-background .modal, #modal-reply.one.out .modal-background .modal, #modal-contact.one.out .modal-background .modal {
    animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.modal-background {
    display: table-cell;
    background: var(--yellow);
    text-align: center;
    vertical-align: middle;
    transition: all 0.5s ease;
}

.modal-background.dark {
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.5s ease;
}

.modal-background .modal {
    background: white;
    padding: 50px;
    display: inline-block;
    border-radius: 50px;
    font-weight: 300;
    position: relative;
    width: 92%;
    height: 84%;
}

#modal-contact .modal-background .modal {
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 15px;
    overflow: inherit !important;
}

#modal-contact .modal-background .modal .form-modal input {
    height: 50px;
}

#modal-contact .modal-background .modal .form-modal textarea {
    width: 100%;
    border-radius: 20px;
    padding: 14px;
    background: #e3e3e3;
    border: 0;
}

#modal-contact .modal-background .modal .form-block .form-modal {
    margin: 0 0 15px;
    max-width: 50%;
    flex: 50%;
    display: block;
    padding: 0 2% 0;
}

#modal-contact .modal-background .modal .full {
    max-width: 100% !important;
    flex: 100% !important;
}

#modal-contact .modal .forms form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }
    50% {
        transform: scaleY(0.005) scaleX(1);
    }
    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }
    50% {
        transform: scaleY(0.005) scaleX(1);
    }
    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

html.modal-active, body.modal-active {
    overflow: hidden;
}

.breadcrumb-main {
    margin: 18px auto 0;
    display: inline-block;
    width: 100%;
    padding: 0 10%;

}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
    list-style: none;
    background: #282828;
    line-height: 55px;
    padding: 0 30px;
}

.breadcrumb-list li {
    font-size: 1.2rem;
}

.breadcrumb-list li a {
    color: #999;
}

.breadcrumb-list li a:hover {
    color: #7e7e7e;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    display: inline-block;
    padding: 0 0.8rem;
    color: #7e7e7e;
    font-weight: bold;
}

button:active, button:focus, button:visited {
    border: 1px solid #000;
}

.box--desc {
    flex: 50%;
    max-width: 50%;
    padding-left: 3%;
}

.box--desc .text-h2 {
    color: var(--yellow);
    font-size: 3.1rem;
    margin: 0 0 60px;
    display: block;
    transition: all 0.5s ease;
}

.box--desc .text-h2:hover {
    color: var(--gray);
    transition: all 0.5s ease;
}

.box--desc .description {
    color: #000;
    line-height: 28px;
    font-size: 1.4rem;
    position: relative;
    font-family: 'icomoon' !important;
}
.box--desc .description p{
    z-index: 1;
    position: relative;
    font-family: explenus-Regular !important;
    text-align: justify;
    margin: 0 0 30px;
}
.content-block {
    min-height: 58.7vh;
}

.content-block .box--desc {
    padding: 0 50px;
}

.swal2-container {
    z-index: 10001 !important;
}
.swal2-confirm {
    background: #ffc316!important;
    border-color: #ffc316!important;
    color: #000 !important;

}
.paginate {
    display: inline-block
}

.notify {
    text-align: center;
    height: 56px;
    margin: 4px 0;
    border-radius: 12px;
    line-height: 53px;
    font-size: 14px;
    position: fixed;
    bottom: 78px;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 0 37px;
    width: 95%;
    z-index: 100000;
}

@media (min-width: 768px) {
    .notify {
        transform: translate(0, 0);
        bottom: 30px;
        font-size: 18px;
        width: auto;
        left: 31px;
    }
}

.notify.success {
    color: #1e8822;
    background: #c8e6c9cc;
}

.notify.danger {
    color: #ffffff;
    background: #f4433661;
}
