/* BASE
================================================== */

body {
    font-size: 1rem;
    color: #000;
    background: #fafaf8;
}

body,
input,
button,
textarea {
    font-family: Outfit, Arial, sans-serif;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

p,
ul,
ol,
table,
figure,
blockquote {
    margin-bottom: 1.5rem;
}

a,
input,
textarea,
button {
    transition: color 0.3s, background-color 0.3s, border-color 0.3s,
        opacity 0.3s;
}

a {
    text-decoration: none;
    color: #d94200;
}

a:hover {
    color: #00aed9;
}

*,
*:focus {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

figure img {
    width: 100%;
}

strong {
    font-weight: 600;
}

blockquote {
    font-size: 1.25rem;
    font-weight: 600;
}

hr {
    border-top-color: #dadad9;
    opacity: 1;
}

.hide {
    display: none !important;
}

/* LAYOUT
================================================== */

/*
	Header
*/

.header {
    position: sticky;
    display: flex;
    align-items: center;
    z-index: 1010;
    top: 0;
    right: 0;
    left: 0;
    height: 4rem;
    background: #fff;
    box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
    transition: all 0.3s;
}

.header > .container {
    display: flex;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    margin-bottom: -1rem;
    background: #00aed9;
    border-radius: 0 0 0.3125rem 0.3125rem;
}

.header__logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.header__logo--white {
    background-color: #fff;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}

.header__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.25rem;
    color: #292929;
}

.header__icon:hover {
    color: #00aed9;
}

/*
    Navigation
*/

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.25rem;
    height: 1rem;
    margin-left: 2rem;
    transition: all 0.3s;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #002069;
}

.main-menu {
    display: flex;
    align-items: center;
}

.main-menu ul {
    margin-bottom: 0;
    padding: 0;
    list-style-type: none;
}

.main-menu li {
    position: relative;
}

.main-menu li a {
    font-size: 1rem;
}

.main-menu li a:not(.btn) {
    position: relative;
    display: flex;
    height: 6rem;
    align-items: center;
    padding: 0.5rem 0.25rem;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    color: #292929;
}

.main-menu li a.btn {
    padding-left: 1rem;
    padding-right: 1rem;
}

.main-menu > ul {
    display: flex;
    align-items: center;
}

.main-menu > ul > li {
    margin-left: 0.5rem;
}

.main-menu > ul > li:hover > a:not(.btn),
.main-menu > ul > li.active > a:not(.btn) {
    color: #00aed9;
    border-bottom-color: #00aed9;
}

.main-menu ul ul {
    position: absolute;
    z-index: 1;
    visibility: hidden;
    top: 100%;
    left: 0;
    min-width: 15rem;
    margin-left: -1.5rem;
    padding: 0.75rem 0;
    text-align: left;
    background: #fff;
    opacity: 0;
    border-radius: 0 0 0.3125rem 0.3125rem;
    transition: all 0.3s;
}

.main-menu ul ul a:not(.btn) {
    height: auto;
    padding: 0.5rem 1.75rem;
}

.main-menu ul ul li:hover > a:not(.btn),
.main-menu ul ul li.active > a:not(.btn) {
    color: #00aed9;
}

.main-menu li:hover > ul {
    visibility: visible;
    opacity: 1;
}

/*
	Footer
*/

.footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
    font-size: 0.875rem;
    text-align: center;
    color: #fff;
    background: linear-gradient(to right, #00aed9 0%, #002069 100%);
}

.footer a:not(.btn) {
    color: #fff;
}

.footer a:not(.btn):hover {
    color: rgba(255, 255, 255, 0.6);
}

.footer__logo {
    margin-bottom: 1.5rem;
}

.footer__logo a img {
    display: block;
    width: 8.5rem;
    margin: 0 auto;
}

.footer__menu {
    padding: 0;
    font-weight: 600;
    list-style-type: none;
}

.footer .author {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    color: rgba(255, 255, 255, 0.6);
}

.footer .author img {
    display: block;
    height: 1.75rem;
    margin-left: 0.375rem;
    opacity: 0.5;
}

.social-icons a img {
    width: 25px;
    height: 25px;
}

/*
    Offcanvas
*/

.offcanvas {
    max-width: 80%;
    font-size: 1rem;
    background: #fff;
}

.offcanvas ul {
    padding: 0;
    list-style-type: none;
}

.offcanvas ul a:not(.btn) {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.25rem 0;
    color: #292929;
}

.offcanvas ul a i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.75rem;
    margin-left: auto;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    cursor: pointer;
    transform: rotate(-90deg);
}

.offcanvas ul a i:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-left: 2px solid #292929;
    border-bottom: 2px solid #292929;
    transform: rotate(-45deg) translate(1px, -6px);
    transform-origin: center center 0;
}

.offcanvas ul ul {
    margin-left: 1.5rem;
    font-size: 0.875rem;
}

.offcanvas-body > ul ul {
    display: none;
}

.offcanvas-body > ul li.active > ul {
    display: block;
}

.offcanvas ul li.active > a > i {
    transform: rotate(0);
}

.offcanvas-body > ul > li > a {
    font-weight: 600;
}

/* SECTIONS
================================================== */

.section {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
    background-position: center center;
    background-size: cover;
}

/*
    Intro
*/

.intro {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 6rem;
    padding: 1rem 0;
    color: #fff;
    background: #00aed9;
}

.intro .container {
    position: relative;
    z-index: 2;
}

.intro__bg {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    opacity: 0.7;
}

/*
    Hero
*/

.hero {
    position: relative;
    padding-bottom: 16rem;
    color: #fff;
    background: linear-gradient(to right, #00aed9 0%, #002069 100%);
}

.hero:after {
    position: absolute;
    content: "";
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10rem;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 100%
    );
}

.hero__bg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 50vw;
    margin-bottom: 3rem;
    background-position: center center;
    background-size: cover;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero + .section {
    position: relative;
    z-index: 4;
    margin-top: -13rem;
}

/*
    Search section
*/

.search-section {
    position: fixed;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    overflow: hidden;
    visibility: hidden;
    z-index: 1100;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(65, 64, 66, 0.9);
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.search-section .container {
    max-width: 1000px;
}

.search-section form {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

.search-section .form-control,
.search-section .form-control:hover,
.search-section .form-control:focus,
.search-section .btn {
    border-color: #fff;
    color: #fff;
}

.search-section .form-control:focus {
    box-shadow: none;
}

.search-section .form-control,
.search-section .btn {
    border-width: 0 0 1px;
    background-color: transparent;
    border-radius: 0;
}

.search-section .form-control::-webkit-input-placeholder {
    color: #fff;
}
.search-section .form-control::-moz-placeholder {
    color: #fff;
}
.search-section .form-control:-ms-input-placeholder {
    color: #fff;
}
.search-section .form-control:-moz-placeholder {
    color: #fff;
}

.search-section .btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.search-section .btn svg,
.search-section .btn svg * {
    fill: #fff;
}

.search-section .btn-close {
    position: absolute;
    z-index: 1;
    top: 2rem;
    right: 2rem;
    width: 20px;
    height: 20px;
    font-size: 1.25rem;
    color: #fff;
    background: transparent;
    opacity: 1;
}

.search-section .btn-close:focus {
    box-shadow: none;
}

.search-section--active {
    visibility: visible;
    opacity: 1;
}

/*
    News
*/



/* MODULES
================================================== */

/*
    Carousels
*/

.swiper-pagination {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    bottom: 0px !important;
}

.swiper-pagination-bullet {
    transition: all 0.3s;
}

.swiper-button-prev,
.swiper-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin: 0;
    font-size: 1.25rem;
    color: #00aed9;
    background-color: rgba(212, 235, 240, 0.6);
    transform: translate(0, -50%);
    transition: color 0.3s;
    border-radius: 100%;
    transition: all 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #002069;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.swiper-button-prev {
    left: -2rem;
}

.swiper-button-next {
    right: -2rem;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0;
}

.swiper-outer {
    position: relative;
}

.swiper-outer .swiper {
    position: static;
}

/*
    Post Box
*/

.post-box,
.post-box:hover {
    color: #292929;
}

.post-box {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 0.3125rem;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    font-size: 0.875rem;
}

.post-box figure {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.post-box figure:after {
    display: block;
    content: "";
    padding-bottom: 65%;
}

.post-box figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.post-box__header--bg-document {
    background-image: url('../img/document.png');
    background-position: right 1.5rem center;
    background-repeat: no-repeat;
}

.post-box__header {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 10rem;
    padding: 0.5rem 1.5rem 1.5rem;
    background-color: #e5f7fb;
}

.post-box__header .icon-property {
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    transform: translate(0, 50%);
}

.post-box__title {
    font-size: 1.375rem;
}

.post-box__body {
    padding: 3rem 1.5rem 1.5rem;
}

.post-box__body time {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #00aed9;
}

.post-box:hover {
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}

.post-box:hover figure img {
    transform: scale(1.1);
}

.row-news figure {
    width: 100%;
    aspect-ratio: 5 / 3;
}

/*
    Media Box
*/

.media-box,
.media-box:hover {
    color: #fff;
}

.media-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0.3125rem;
    font-size: 0.875rem;
}

.media-box:after {
    display: block;
    content: "";
    padding-bottom: 65%;
}

.media-box > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.media-box__content {
    position: absolute;
    display: flex;
    align-items: center;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 5.5rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.media-box__content img {
    display: block;
    margin-left: auto;
    width: 2.25rem;
}

.media-box__title {
    max-width: 80%;
    margin: 0;
    font-size: 1.25rem;
}

.media-box:hover > img {
    transform: scale(1.1);
}

/*
    Icon Property
*/

.icon-property {
    position: relative;
    padding: 0.125rem 1rem 0.125rem 4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    background: #00aed9;
    border-radius: 0.3125rem;
}

.icon-property span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: -0.25rem;
    width: 3.375rem;
    height: 3.375rem;
    border: 2px solid #fff;
    background-color: #d94200;
    transform: translate(0, -50%);
    border-radius: 100%;
}

.icon-property span img {
    display: block;
    width: 1.625rem;
    height: 1.625rem;
    object-fit: contain;
}

/*
    Partner Box
*/

.partner-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    font-size: 0.875rem;
}

.partner-box:after {
    display: block;
    content: "";
    padding-bottom: 60%;
}

.partner-box img {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.partner-box:hover {
    box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.1);
}

/*
    Picture
*/

.picture {
    position: relative;
    display: block;
    overflow: hidden;
}

.picture:after {
    display: block;
    content: "";
    padding-bottom: 65%;
}

.picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.picture:hover img {
    transform: scale(1.1);
}

/*
    Card
*/

.card {
    border: 0;
    box-shadow: 0 0 1rem rgba(0 0 0 / 10%);
    font-size: 0.875rem;
}

.card-title {
    display: flex;
    align-items: center;
    min-height: 4rem;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    border-bottom: 1px solid #dcdcdc;
}

.card-body.bg-document {
    min-height: 14rem;
    background: url("../img/icons/document.png") right 1.5rem bottom 1.5rem
        no-repeat;
    background-size: auto 12rem;
}

/*
    User Box
*/

.user-box {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 1rem;
    background: #fff;
    border-radius: 0.3125rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
}

.user-box figure {
    position: relative;
    overflow: hidden;
    width: 5rem;
    flex: 0 0 auto;
    margin: 0 1rem 0 0;
    background-color: #ebebeb;
    border-radius: 100%;
}

.user-box figure:after {
    display: block;
    content: "";
    padding-bottom: 100%;
}

.user-box figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-box__content p {
    margin-bottom: 1rem;
}

.user-box__content > *:last-child {
    margin-bottom: 0;
}

.user-box__title {
    font-size: 1.125rem;
    color: #00aed9;
}

/*
    Map
*/

.map {
    position: relative;
    border: 0.3125rem solid #ced8e2;
}

.map:after {
    display: block;
    content: "";
    padding-bottom: 90%;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* COMPONENTS
================================================== */

/*
	Buttons
*/

.btn {
    padding: 0.75rem 1.5rem;
    border-width: 2px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: none;
    border-radius: 0.3125rem;
}

.btn:focus,
.btn:active:focus {
    box-shadow: 0 0 0 0.25rem rgba(0 0 0 / 10%);
}

.btn-secondary,
.btn-secondary:focus {
    border-color: #d94200;
    color: #fff;
    background-color: #d94200;
}

.btn-secondary:hover,
.btn-secondary:first-child:active,
.btn-secondary:hover:active,
.btn-secondary:focus:active {
    border-color: #1b1d3c;
    color: #fff;
    background-color: #1b1d3c;
}

.btn-outline-primary,
.btn-outline-primary:focus {
    border-color: #00aed9;
    color: #00aed9;
}

.btn-outline-primary:hover,
.btn-outline-primary:first-child:active,
.btn-outline-primary:hover:active,
.btn-outline-primary:focus:active {
    border-color: #00aed9;
    color: #fff;
    background-color: #00aed9;
}

.btn-outline-secondary,
.btn-outline-secondary:focus {
    border-color: #d94200;
    color: #d94200;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:first-child:active,
.btn-outline-secondary:hover:active,
.btn-outline-secondary:focus:active {
    border-color: #d94200;
    color: #fff;
    background-color: #d94200;
}

.btn--outline-white,
.btn--outline-white:focus {
    border-color: #fff;
    color: #fff;
}

.btn--outline-white:hover,
.btn--outline-white:first-child:active,
.btn--outline-white:hover:active,
.btn--outline-white:focus:active {
    border-color: #fff;
    color: #292929;
    background-color: #fff;
}

.btn-prev {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #00aed9;
}

.btn-prev img {
    transition: all 0.3s;
}

.btn-prev:hover img {
    transform: translate(-0.75rem, 0);
}

/*
	Form components
*/

.form-control,
.form-select {
    padding: 1.125rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 0.3125rem;
}

.form-control,
.form-control:focus,
.form-select,
.form-select:focus {
    border-color: #ced8e2;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(0 0 0 / 10%);
}

.form-check {
    padding-left: 2.5em;
    font-size: 0.875rem;
}

.form-check a {
    text-decoration: none;
    color: #00aed9;
}

.form-check a:hover {
    text-decoration: underline;
}

.form-check .form-check-input {
    width: 1.75em;
    height: 1.75em;
    margin-left: -2.5em;
    margin-top: 0;
    border-width: 1px;
    border-color: #ced8e2;
    background-color: #fff;
}

.form-check .form-check-input[type="checkbox"] {
    border-radius: 0.3125rem;
}

.form-check .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0 0 0 / 10%);
}

.form-check .form-check-input:checked {
    border-color: #00aed9;
    background-color: #00aed9;
}

.form-check-label {
    padding-top: 0.25em;
}

/*
    Titles
*/

.page-title {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 2rem;
    font-size: 1.375rem;
}

.article-title {
    display: flex;
    overflow: hidden;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    text-transform: uppercase;
}

.article-title span {
    position: relative;
    display: block;
    padding-right: 1.25rem;
}

.article-title span:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 100%;
    width: 2000px;
    border-bottom: 1px solid;
    opacity: 0.5;
}

.block-title {
    font-size: 1rem;
}

.related-documents {
    border-radius: 10px;
    box-shadow: 0 0 5px #ababab;
    color: black;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s;
}

.related-documents:hover {
    color: #00aed9;
    box-shadow: 0 0 10px #00aed9;
}

.related-documents img {
    max-width: 35px;
}

/*
    Breadcrumb
*/

.breadcrumb-item + .breadcrumb-item::before {
    content: "|";
}

.breadcrumb-item a {
    color: inherit;
}

.breadcrumb-item a:hover {
    color: #00aed9;
}

.breadcrumb-item span {
    font-style: italic;
}

/*
    Table
*/

.table > :not(caption) > * > * {
    border-bottom: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: #d1e6eb;
}

table th {
    font-weight: 600;
}

/* GLOBALS
================================================== */

.bg-light-primary {
    background-color: #e5f7fb;
}

.bg-gradient-primary {
    background: linear-gradient(to right, #00aed9 0%, #002069 100%);
}

.bg-gradient-primary-light {
    background: #e5f7fb;
}


;

.c-primary {
    color: #00aed9;
}

.miw-160 {
    min-width: 10rem;
}

.miw-200 {
    min-width: 12.5rem;
}

.text--lg {
    font-size: 1rem;
}

.fw-bold {
    font-weight: 600 !important;
}

/* RESPONSIVE
================================================== */

/*
	XS
*/

@media screen and (max-width: 575px) {
}

/*
SM and down
*/

@media screen and (max-width: 767px) {
    .card-body.bg-document {
        display: none;
    }
}

/*
	MD and down
*/

@media screen and (max-width: 991px) {
}

/*
	LG and down
*/

@media screen and (max-width: 1199px) {
}

/*
	LG and up
*/

@media screen and (min-width: 768px) {
    .hero__bg {
        height: 40vw;
    }
}

/*
	LG and up
*/

@media screen and (min-width: 992px) {
    .footer {
        text-align: left;
    }

    .footer__logo a img {
        margin-left: 0;
    }

    .hero {
        display: flex;
        align-items: center;
        min-height: 40rem;
        padding-top: 2rem;
    }

    .hero:before {
        position: absolute;
        content: "";
        z-index: 2;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("../img/bg-intro.png") center bottom;
        background: 100% auto;
    }

    .hero:after {
        height: 16rem;
    }

    .hero__bg {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 10rem;
        height: auto;
        margin: 0;
    }

    .hero + .section {
        margin-top: -14rem;
    }
}

/*
    XL and up
*/

@media screen and (min-width: 1200px) {
    .header {
        height: 6rem;
    }

    .header__logo {
        width: 8.25rem;
        height: 8.25rem;
        margin-bottom: -2.25rem;
    }

    .header__logo img {
        width: 100%;
        height: auto;
    }

    .intro {
        min-height: 18.5rem;
    }

    .hero {
        min-height: 60rem;
        padding-bottom: 20rem;
        font-size: 1.125rem;
    }

    .hero + .section {
        margin-top: -20rem;
    }

    .section {
        padding-top: 6rem;
        padding-bottom: 4.5rem;
    }

    .post-box {
        font-size: 1rem;
    }

    .card-body {
        padding: 2.5rem;
    }

    .card-title {
        margin-top: -1rem;
        min-height: 8rem;
    }

    .page-title {
        margin-bottom: 3rem;
        font-size: 3.75rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-title--sm {
        font-size: 1.5rem;
    }

    .article-title {
        margin-bottom: 3rem;
        font-size: 1.875rem;
    }

    .btn {
        font-size: 1.125rem;
    }

    .table > :not(caption) > * > * {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .text--lg {
        font-size: 1.125rem;
    }

    blockquote {
        font-size: 2.25rem;
    }

    .row-news ~ p {
        margin-bottom: 0px;
    }
}

/*
    XXL and up
*/

@media screen and (min-width: 1400px) {
    .hero {
        min-height: 70rem;
        padding-top: 12rem;
        padding-bottom: 32rem;
    }

    .hero + .section {
        margin-top: -26rem;
    }

    .main-menu li a {
        font-size: 1.125rem;
    }

    .main-menu > ul > li {
        margin-left: 1.25rem;
    }

    .footer-left {
        border-right: 1px solid rgba(255, 255, 255, 0.4);
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 4rem;
        height: 4rem;
        font-size: 2rem;
        color: #fff;
        background-color: rgba(255, 255, 255, 0.3);
    }

    .partners-carousel .swiper-button-prev,
    .partners-carousel .swiper-button-next {
        color: #00aed9;
        background-color: rgba(212, 235, 240, 0.6);
    }

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        color: #fff;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .swiper-button-prev {
        left: -3.5rem;
    }

    .swiper-button-next {
        right: -3.5rem;
    }

    .user-box {
        padding: 2rem;
    }

    .user-box figure {
        width: 7.875rem;
        margin-right: 2rem;
    }


}

/*
	XXXL and up
*/

@media screen and (min-width: 1600px) {
    .container {
        max-width: 1460px;
    }
}

/*
	XXXL and up
*/

@media screen and (min-width: 1700px) {
    .swiper-button-prev {
        left: -6rem;
    }

    .swiper-button-next {
        right: -6rem;
    }
}

/*tender logo*/
.tender_logo {
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 1030;
    transition: all 0.3s;
}
.tender_logo_bottom.closed {
    transform: translate(0, 100%);
}
.tender_logo_toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -40px;
    right: 15px;
    color: #fff;
    border-radius: 100%;
    background: #164194;
    width: 35px;
    height: 35px;
    font-size: 20px;
}
.tender_logo_toggle:hover {
    background: #e30613;
}
.tender_logo_image {
    max-width: 250px !important;
    overflow-y: scroll;
}

.tender_logo_top {
    top: 0px;
    bottom: initial;
}
.tender_logo_top .tender_logo_toggle {
    top: 170px;
}
.tender_logo_top.closed {
    transform: translate(0, -165px);
}

@media screen and (max-width: 620px) {
    .tender_logo_top.closed .tender_logo_toggle {
        top: 180px;
        right: 50px;
    }

    .swiper-button-next {
        right: 0;
    }

    .swiper-button-prev {
        left: 0;
    }
}

/*
    Accordion
*/

.accordion-item {
    overflow: hidden;
    margin-bottom: 1rem;
    border: 0;
    font-size: 1rem;
    border-radius: 0.25rem;
    box-shadow: 0 0 1.5rem rgba(0 0 0 / 10%);
}

.accordion-button,
.accordion-button:not(.collapsed),
.accordion-button:focus {
    color: #292929;
    background: #e5f7fb;
    box-shadow: none;
}


.accordion-button:hover {
    background: #d2e6eb;
}

.accordion-button {
    display: flex;
    align-items: center;
    padding: 1.25rem 4.5rem 1.25rem 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.accordion-button::after {
    display: none;
}

.accordion-button span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    right: 1rem;
    width: 3.375rem;
    height: 3.375rem;
    border: 2px solid #fff;
    font-size: 1.5rem;
    color: #fff;
    background-color: #d94200;
    border-radius: 100%;
    transform: translate(0, -50%);
    transition: all .3s;
}

.accordion-button[aria-expanded="true"] span {
    transform: translate(0, -50%) rotate(-180deg);
}

.accordion-body {
    padding: 1.25rem 1.5rem;
}

.accordion-body > *:last-child {
    margin-bottom: 0;
}