/* fonts */
@font-face {
    font-family: 'robotoblack';
    src: url('./fonts/roboto-black-webfont.woff2') format('woff2'),
        url('./fonts/roboto-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotoblack_italic';
    src: url('./fonts/roboto-blackitalic-webfont.woff2') format('woff2'),
        url('./fonts/roboto-blackitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotobold';
    src: url('./fonts/roboto-bold-webfont.woff2') format('woff2'),
        url('./fonts/roboto-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotobold_italic';
    src: url('./fonts/roboto-bolditalic-webfont.woff2') format('woff2'),
        url('./fonts/roboto-bolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotoitalic';
    src: url('./fonts/roboto-italic-webfont.woff2') format('woff2'),
        url('./fonts/roboto-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotolight';
    src: url('./fonts/roboto-light-webfont.woff2') format('woff2'),
        url('./fonts/roboto-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotolight_italic';
    src: url('./fonts/roboto-lightitalic-webfont.woff2') format('woff2'),
        url('./fonts/roboto-lightitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotomedium';
    src: url('./fonts/roboto-medium-webfont.woff2') format('woff2'),
        url('./fonts/roboto-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotomedium_italic';
    src: url('./fonts/roboto-mediumitalic-webfont.woff2') format('woff2'),
        url('./fonts/roboto-mediumitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotoregular';
    src: url('./fonts/roboto-regular-webfont.woff2') format('woff2'),
        url('./fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotothin';
    src: url('./fonts/roboto-thin-webfont.woff2') format('woff2'),
        url('./fonts/roboto-thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotothin_italic';
    src: url('./fonts/roboto-thinitalic-webfont.woff2') format('woff2'),
        url('./fonts/roboto-thinitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
ol, ul {
    padding-left: 1.2rem;
}
.info-content ol li:not(:last-child) , .info-content ul li:not(:last-child) {
    margin-bottom: 8px;
}
.info-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F1EEE9;
    z-index: 99995;
    display: none;
}

.info-loading:before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid #B48F75;
    border-radius: 50%;
    border-top-color: #F1EEE9;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.loader{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1C1D21;
    z-index: 99;
    width: calc(100% + 20px);
}
.loader::before{
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid #E31E24;
    border-radius: 50%;
    border-top-color: #e76b6f;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
body {
    font-family: 'robotoregular';
    color: #000;
    font-size: 0.9rem;
}

a {
    color: #000;
    text-decoration: underline;
    transition: all .3s ease-in-out;
    -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;
}

a:hover {
    color: #E31E24;
}

.text-justify {
    text-align: justify !important;
}

.bg-brand {
    background-color: #E31E24 !important;
}

.bg-dark {
    background-color: #1C1D21 !important;
}
.info-bg-light{
    background-color: #F4F5FA !important;
}

.bg-half {
    position: relative;
}

.bg-half::before {
    content: '';
    position: absolute;
    width: 35%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #d5d5d5;
}

small {
    font-size: .75rem !important;
}

.lead {
    font-size: 1.15rem !important;
}

.text-light {
    color: #ffffffcb;
}
@media (max-width: 767px) {
    .bg-dark.bg-md-dark{
        background-color: rgb(28 29 33 / 50%) !important
    }
    .bg-light.bg-md-light{
        background-color: rgb(248 249 250 / 40%) !important
    }
}
.info-fw-black {
    font-family: 'robotoblack' !important;
}

.info-fw-bold {
    font-family: 'robotobold' !important;
}

.info-fw-medium {
    font-family: 'robotomedium' !important;
}

.breadcrumbs a {
    color: #0000009a;
    text-decoration: none !important;
}

.bg-brand .breadcrumbs a {
    color: #ffffffb5 !important;
    text-decoration: none !important;
}
.nav-pills .nav-link {
    /* font-family: 'robotobold'; */
    /* text-transform: uppercase; */
}
.btn-link {
    font-family: 'robotobold' !important;
    color: #000;
    font-size: 1rem;
    text-decoration: none;
    transition: all .3s ease-in-out;
    -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;
}

.btn-link::after {
    content: '\f061';
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    font-size: 16px;
    margin-left: 10px;
}

.link-normal.text-dark {
    color: #1E1E1C;
    transition: all .3s ease-in-out;
    -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;
}

.link-normal.text-dark:hover {
    color: #E31E24 !important;
}

.page-link:hover {
    color: #E31E24;
}

.text-link {
    color: #E31E24;
    text-decoration: none;
    transition: all .3s ease-in-out;
    -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;
}

.text-link::after {
    content: '\f061';
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    background: #E31E24;
    vertical-align: middle;
    margin-left: 5px;
    text-align: center;
    line-height: 20px;
    margin-right: 5px;
    width: 20px;
    display: inline-block;
    height: 20px;
    border-radius: 50rem;
    -webkit-border-radius: 50rem;
    -moz-border-radius: 50rem;
    -ms-border-radius: 50rem;
    -o-border-radius: 50rem;
    transition: all .3s ease-in-out;
    -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;
}

.text-link:hover {
    color: #4e4d4d;
}

.text-link:hover::after {
    background: #4e4d4d;
}

.btn.btn-wide {
    --bs-btn-padding-x: 1.5rem;
}

.btn.btn-full {
    width: 100%;
}

.btn-outline-white {
    --bs-btn-color: #ffffff;
    --bs-btn-border-color: #ffffff;
    --bs-btn-hover-color: rgb(0, 0, 0);
    --bs-btn-hover-bg: #ffffff;
    --bs-btn-hover-border-color: #ffffff;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: rgb(0, 0, 0);
    --bs-btn-active-bg: #ffffff;
    --bs-btn-active-border-color: #ffffff;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ffffff;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #ffffff;
    --bs-gradient: none;
}

.info-wiswig h1,
.info-wiswig h2,
.info-wiswig h3,
.info-wiswig h4,
.info-wiswig h5,
.info-wiswig h6 {
    font-family: 'robotoblack';
    margin-bottom: 25px;
    position: relative;
}

.info-wiswig h1::before,
.info-wiswig h2::before,
.info-wiswig h3::before,
.info-wiswig h4::before,
.info-wiswig h5::before,
.info-wiswig h6::before {
    content: '';
    width: 80px;
    height: 3px;
    background-color: #E31E24;
    position: absolute;
    bottom: -10px;
}

.info-single .img-banner {
    /* height: 450px;
    width: 100%;
    object-fit: cover;
    object-position: top; */
}

.info-wiswig li::marker {
    font-size: 1.5em;
    color: #E31E24;
}

.info-content-wiswig li::marker {
    color: #E31E24;
}

#main-header {
    min-height: 70px;
}

#main-header .navbar-brand {
    max-width: 220px;
}

#main-header .navbar-brand img {
    width: 100%;
}

.navbar-nav>.menu-item:not(:last-child) {
    margin-right: 15px;
}

.current_page_item .nav-link {
    color: #E31E24 !important;
    /* font-family: 'robotobold'; */
}
.current_page_item .dropdown-item {
    background-color: #E31E24 !important;
    color: #fff !important;
}
.dropdown-item {
    font-size: 0.9rem;
}
.navbar-nav .dropdown-menu {
    border-radius: 0;
}


.hero .hero-item {
    position: relative;
    min-height: 80vh;
}

.hero-item::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 50%);
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.hero-title {
    font-family: 'robotoblack';
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-title::before {
    content: '';
    width: 150px;
    height: 3px;
    background-color: #E31E24;
    position: absolute;
    bottom: 0;
    display: block;
}

.hero-disc {
    color: #fff;
    font-size: 1.3rem;
    font-family: 'robotoregular';
}

.hero-img {
    max-width: 225px;
    margin-bottom: 20px;
}

section .container {
    position: relative;
}

.info {
    padding: 60px 0;
}

.info-title {
    /* font-size: 3rem; */
    font-family: 'robotobold';
    position: relative;
    margin-bottom: 25px;
}
.info-title-small {
    font-family: 'robotobold';
    position: relative;
    margin-bottom: 15px;
}
.info-title.no-line::before {
    display: none;
}

.info-title.line-center::before {
    margin: auto;
    left: 0;
    right: 0;
}

.info-title.line-brand::before {
    background-color: #E31E24 !important;
}

.info-title::before {
    content: '';
    width: 130px;
    height: 4px;
    background-color: #E31E24;
    position: absolute;
    bottom: -10px;
}
.info-title-small::before {
    content: '';
    width: 80px;
    height: 2px;
    background-color: #E31E24;
    position: absolute;
    bottom: -8px;
}

.bg-brand .info-title::before {
    background-color: #ffffff;
}

.info-title-2 {
    font-size: 2.5rem;
}

.info-title-3 {
    font-size: 2rem;
}

.info-title-4 {
    font-size: 1.5rem;
}

.info .top-move {
    position: relative;
    margin-top: 0;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.info .top-move.top {
    margin-top: -150px;
}

.list-counter li {
    position: relative;
}

.list-counter li:not(:last-child)::before {
    content: '';
    width: 1px;
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    right: 0;
}

.info-grid {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 175px;
    grid-auto-flow: dense;
    margin: 10px auto;
    padding: 0 10px;
}

.info-grid .info-grid-item {
    align-items: center;
    display: flex;
    justify-content: center;
    background-color: #4e4d4d;
    position: relative;
    overflow: hidden;
}

.info-grid .info-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
    -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;
}

.info-grid .info-grid-item img:hover {
    transform: scale(1.1);
}

.info-grid .info-grid-item:nth-child(1) {
    grid-row: 4 / 2;
}

.info-grid .info-grid-item:nth-child(3) {
    grid-row: 1 / 3;
}

.info-grid .info-grid-item:nth-child(5) {
    grid-row: 2 / 4;
}

.info-footer-nav.two-column {
    column-count: 2;
}

.info-footer-nav li a {
    color: #ffffff;
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    /* text-transform: capitalize; */
    transition: all .3s ease;
}

.info-footer-nav li a:hover {
    /* color: #E31E24; */
    transform: translate(6px, 0);
    margin-left: 5px;
}

.info-footer-nav li {
    color: #ffffff;
}

.info-footer-nav.with-icon li {
    padding-left: 40px;
    position: relative;
}

.info-social-contact li:not(:last-child) {
    margin-bottom: 10px;
}

.info-social-contact.lg li:not(:last-child) {
    margin-bottom: 25px;
}

.info-social-contact.lg .info-list-icon {
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: -8px;
}

.info-social-contact .info-list-icon {
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0px;
}

.info-bg-diafnal {
    min-height: 300px;
    /* background: #468d9100; */
}

.info-diafnal {
    position: absolute;
    top: 0;
    right: 0;
    width: 58.33333333%;
    height: 100%;
    background: #1E1E1C;
}

.info-diafnal.brand {
    background: #E31E24;
}

/* .info-diafnal::before{
    content: '';
    width: 60%;
    height: 1000px;
    position: absolute;
    bottom: 0;
    background: #1E1E1C;
    left: -15%;
    top: -40%;
    transform: rotate(340deg);
} */
/* .info-diafnal.brand::before{
    background: #E31E24;
} */
.triangle-up {
    width: 0;
    height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-bottom: 150px solid #1E1E1C;
    position: absolute;
    bottom: -7%;
    left: 20%;
}

.triangle-up.brand {
    border-bottom: 150px solid #e31e24;
}

.info-banner {
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: 0%;
}

.info-list-icons {
    padding: 0;
    margin: 0;
    list-style: none;
    /* padding-left: 37%; */
}

.info-list-icons li {
    position: relative;
    padding-left: 115px;
    min-height: 90px;
    color: #fff;
    font-size: 1rem;
    font-family: 'robotolight';
}

.info-list-icons li:not(:last-child) {
    margin-bottom: 30px;
}

.img-object-fit{
    object-fit: contain;
    width: 100%;
}

/* .info-list-icons li:nth-child(1){
    margin-left: 0%;
  }
  .info-list-icons li:nth-child(2){
    margin-left: 9%;
  }
  .info-list-icons li:nth-child(3){
    margin-left: 17%;
  } */
.info-list-icons li .list-icon {
    padding: 15px;
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    border-radius: 50rem;
    -webkit-border-radius: 50rem;
    -moz-border-radius: 50rem;
    -ms-border-radius: 50rem;
    -o-border-radius: 50rem;
}

.card .card-img-overlay {
    bottom: 0;
    left: 0;
    top: initial;
}

.card .card-img-overlay .card-title {
    margin-bottom: 0;
}

.card .card-img-overlay .info-card-wrap.with-icon {
    position: relative;
    padding-right: 40px;
    width: 100%;
}

.card .card-img-overlay .info-card-wrap.with-icon .card-link-icon {
    color: #d5d5d5;
    position: absolute;
    right: 0;
    bottom: 0px;
    font-size: 16px;
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 50rem;
    -webkit-border-radius: 50rem;
    -moz-border-radius: 50rem;
    -ms-border-radius: 50rem;
    -o-border-radius: 50rem;
    transition: all .3s ease-in-out;
    -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;
}

.card .card-img-overlay .info-card-wrap.with-icon .card-link-icon:hover {
    color: #E31E24;
    background-color: #ffffff;
}

#ourTeamSlider .card:hover .card-social-link {
    top: 10px;
}

.card-social-link {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 50rem;
    left: 10px;
    top: -100%;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.card-social-link:hover {
    color: #E31E24;
}

.info-item-content-overlay {
    position: relative;
    overflow: hidden;

}

.info-item-content-overlay .info-item-content {
    background: linear-gradient(0deg, rgb(227 30 36 / 90%) 30%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    width: 100%;
    bottom: -40%;
    left: 0;
    min-height: 40%;
    display: flex;
    align-items: end;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.info-item-content-overlay:hover .info-item-content {
    bottom: 0;
}

.info-card {
    position: relative;
    overflow: hidden;
}

.info-card .card-img-overlay {
    background: linear-gradient(0deg, rgb(227 30 36 / 90%) 30%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    width: 100%;
    bottom: -40%;
    left: 0;
    min-height: 40%;
    display: flex;
    align-items: end;
    border-radius: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.info-card:hover .card-img-overlay {
    bottom: 0;
}

.info-item-content-overlay img {
    filter: gray;
    /* IE6-9 */
    -webkit-filter: grayscale(1);
    /* Google Chrome, Safari 6+ & Opera 15+ */
    filter: grayscale(1);
    /* Microsoft Edge and Firefox 35+ */
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

/* Disable grayscale on hover */
.info-item-content-overlay:hover img:hover {
    -webkit-filter: grayscale(0);
    filter: none;
}

#ourTeamSlider .slick-slide>div {
    display: flex;
    max-width: 100%;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}


.info-news_updates_grid {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 300px;
    grid-auto-flow: dense;
    margin: 10px auto;
}

.info-news_updates_grid .info-grid-item {
    align-items: end;
    display: flex;
    justify-content: center;
    background-color: #4e4d4d;
}

.info-news_updates_grid .info-grid-item:nth-child(1) {
    grid-column: 1 / 3;
}

.info-news_updates_grid .info-grid-content {
    padding: 15px;
    width: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 85%) 30%, rgba(0, 0, 0, 0) 100%);
    min-height: 80px;
    display: flex;
    align-items: end;
}

/* slick-slider */
.slick-slide>div {
    display: flex;
}

.slick-arrow {
    background: transparent;
    padding: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    position: absolute;
    bottom: 0;
    top: 0;
    margin: auto;
    color: #ffffff;
    z-index: 1;
    border: 0;
    font-size: 0;
    outline: none;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 1;
    font-family: "Font Awesome 6 Free";
}

.slick-arrow:hover {
    background: rgb(227 30 36 / 45%);
}

.slick-prev::before {
    content: '\f053';
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    font-size: 16px;
}

.slick-next::before {
    content: '\f054';
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    font-size: 16px;
}

.slick-arrow.slick-prev {
    left: 40px;
}

.slick-arrow.slick-next {
    right: 40px;
}

#awardSlider .slick-slide .slide-item {
    position: relative;
    pointer-events: none;
    transition: all .3s ease-in-out;
    -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;
}

#awardSlider .slick-slide .slide-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(227 30 36 / 60%);
    z-index: 1;
    opacity: 1;
    -webkit-transition: opacity 1.2s ease;
    -moz-transition: opacity 1.2s ease;
    -ms-transition: opacity 1.2s ease;
    -o-transition: opacity 1.2s ease;
    transition: opacity 1.2s ease-out;
}

#awardSlider .slick-slide.slick-current.slick-active .slide-item {
    pointer-events: auto;
}

#awardSlider .slick-slide.slick-active .slide-item::before {
    opacity: 0;
    z-index: 0;
}

#activitySlider .slick-slide .slide-item {
    position: relative;
    transition: all .3s ease-in-out;
    -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;
}

#activitySlider .slick-slide .slide-item .card-body {
    display: none;
}

#activitySlider .slick-slide.slick-active .slide-item .card-body {
    display: block;
}

#activitySlider .slick-slide .slide-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 1;
    opacity: 1;
    -webkit-transition: opacity 1.2s ease;
    -moz-transition: opacity 1.2s ease;
    -ms-transition: opacity 1.2s ease;
    -o-transition: opacity 1.2s ease;
    transition: opacity 1.2s ease-out;
}

#activitySlider .slick-slide.slick-active .slide-item::before {
    opacity: 0;
    z-index: 0;
}

#categorySlider .slick-slide .slide-item {
    position: relative;
}

#categorySlider .slick-slide.slick-active .slide-item::before {
    opacity: 0;
}

#categorySlider .slick-slide .slide-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(227 30 36 / 60%);
    z-index: 1;
    opacity: 1;
    -webkit-transition: opacity 1.2s ease;
    -moz-transition: opacity 1.2s ease;
    -ms-transition: opacity 1.2s ease;
    -o-transition: opacity 1.2s ease;
    transition: opacity 1.2s ease-out;
}

.category-arrows {
    position: relative;
}

.category-arrows .slick-arrow {
    position: initial !important;
    background: #E31E24;
}

.category-arrows .slick-arrow:not(:last-child) {
    margin-right: 10px;
}

.category-arrows .slick-arrow.slick-disabled {
    opacity: .7;
}

.our-team-arrows {
    position: relative;
}

.our-team-arrows .slick-arrow {
    position: initial !important;
    background: #E31E24;
}

.our-team-arrows .slick-arrow:not(:last-child) {
    margin-right: 10px;
}

.our-team-arrows .slick-arrow.slick-disabled {
    opacity: .7;
}

.our-team-arrows .slick-arrow.slick-prev {
    left: 0;
}

.our-team-arrows .slick-arrow.slick-next {
    right: 0;
}

.projects-arrows {
    position: relative;
}

.projects-arrows .slick-arrow:not(:last-child) {
    margin-right: 10px;
}

.projects-arrows .slick-arrow.slick-disabled {
    opacity: .7;
}

.projects-arrows .slick-arrow {
    position: initial;
}

.projects-arrows .slick-arrow.slick-prev {
    left: 0;
}

.projects-arrows .slick-arrow.slick-next {
    right: 0;
}

#awardSlider .slick-list {
    padding-right: 150px;
}

#awardSlider .slick-slide>div {
    display: flex;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

#awardSlider .slick-arrow.slick-prev {
    left: -40px;
}

#awardSlider .slick-arrow.slick-next {
    right: -50px;
}

#awardsFilterSlider .filter-item {
    text-align: center;
    cursor: pointer;
}

#awardsFilterSlider .filter-item.active {
    font-family: 'robotoblack';
    font-size: 2rem;
    color: #E31E24;
    transition: all .3s ease-in-out;
    -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;
}

#awardsFilterSlider .slick-slide>div {
    display: flex;
    min-height: 50px;
    align-items: center;
}

#awardsFilterSlider .slick-arrow.slick-prev {
    left: -40px;
}

#awardsFilterSlider .slick-arrow.slick-next {
    right: -50px;
}

#awardsFilterSlider .slick-arrow {
    background: black;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

#awardsFilterSlider .slick-arrow.slick-disabled {
    opacity: .4;
}


#milestonSlider .slick-list {
    padding-right: 100px;
}

#milestonSlider .slick-slide>div {
    display: flex;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

#milestonFilterSlider .filter-item {
    text-align: center;
    cursor: pointer;
}

#milestonFilterSlider .filter-item.active {
    font-family: 'robotoblack';
    font-size: 2rem;
    color: #E31E24;
    transition: all .3s ease-in-out;
    -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;
}

#milestonFilterSlider .slick-slide>div {
    display: flex;
    min-height: 50px;
    align-items: center;
    border-bottom: 1px solid #707070;
    margin-bottom: 15px;
}

#milestonFilterSlider .slick-arrow.slick-prev {
    left: -50px;
}

#milestonFilterSlider .slick-arrow.slick-next {
    right: -50px;
}

#milestonFilterSlider .slick-arrow {
    background: #ffffff;
    border: 2px solid #000000;
    padding: 0;
    width: 40px;
    height: 40px;
    color: #000000;
    top: 30px;
    line-height: 36px;
    border-radius: 50rem;
    -webkit-border-radius: 50rem;
    -moz-border-radius: 50rem;
    -ms-border-radius: 50rem;
    -o-border-radius: 50rem;
}

#milestonFilterSlider .slick-arrow.slick-disabled {
    opacity: .4;
}

#clientSlider .slick-slide>div {
    display: flex;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.filter-active {
    position: relative;
}

.filter-active::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    margin: auto;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border: 1px solid #707070;
    border-radius: 50rem;
    -webkit-border-radius: 50rem;
    -moz-border-radius: 50rem;
    -ms-border-radius: 50rem;
    -o-border-radius: 50rem;
}

.filter-active.active::before {
    background-color: #E31E24;
    border: 1px solid #E31E24;
}

#activitySlider .slick-list {
    padding-right: 25%;
    padding-left: 25%;

}

.our-team-arrows {
    position: relative;
}

.activity-arrows .slick-arrow {
    position: initial !important;
    background: #2e2727;
}

.activity-arrows .slick-arrow:not(:last-child) {
    margin-right: 10px;
}

.activity-arrows .slick-arrow.slick-disabled {
    opacity: .7;
}

.activity-arrows .slick-arrow.slick-prev {
    left: 0;
}

.activity-arrows .slick-arrow.slick-next {
    right: 0;
}

#activitySlider .slick-slide>div {
    display: flex;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

#projectSlider .slick-slide>div {
    display: flex;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

#projectSlider .slick-list {
    padding-right: 25%;

}

#projectFilterSlider .filter-item {
    padding: 5px 20px;
    color: #9A9B9C;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid #9A9B9C;
    border-radius: 3rem;
    -webkit-border-radius: 3rem;
    -moz-border-radius: 3rem;
    -ms-border-radius: 3rem;
    -o-border-radius: 3rem;
}

#projectFilterSlider .filter-item{
    margin-right: 15px;
}

#projectFilterSlider .filter-item.active {
    color: #E31E24;
    font-family: 'robotoblack';
    border-color: #E31E24 !important;
}

#categorySlider .slick-list {
    padding-bottom: 150px;

}

#categorySlider .slick-slide>div {
    display: flex;
    max-width: 100%;
    padding-top: calc(var(--bs-gutter-x) * .5);
    padding-bottom: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.nav-link {
    color: #1E1E1C;
}

.nav-pills .nav-item:not(:last-child) {
    margin-right: 20px;
}

.bg-brand .nav-pills .nav-link.active,
.bg-brand .nav-pills .show>.nav-link {
    color: #E31E24;
    background-color: #ffffff;
}
.bg-brand .nav-pills .nav-link, .bg-brand .nav-pills .nav-link{
    color: #ffffff;
    border: 1px solid #fff;
}

.bg-white .nav-pills .nav-link.active,
.bg-white .nav-pills .show>.nav-link {
    color: #ffffff;
    background-color: #E31E24;
    border-color: #E31E24 !important;
}
.bg-white .nav-pills .nav-link, .bg-white .nav-pills .nav-link{
    color: #E31E24;
    border: 1px solid #E31E24;
}

.bg-brand .form-container .form-control {
    padding: 0.375rem 0.75rem;
    padding-left: 0 !important;
    padding-bottom: 0.8rem !important;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 0;
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
}

.bg-white .form-container .form-control {
    padding: 0.375rem 0.75rem;
    padding-left: 0 !important;
    padding-bottom: 0.8rem !important;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    background-color: transparent;
    border: 1px solid #a7a7a7;
    border-radius: 0;
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
}

.bg-brand .form-container ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ffffff88;
    opacity: 1;
    /* Firefox */
}

.bg-brand .form-container :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #ffffff;
}

.bg-brand .form-container ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #ffffff;
}

.bg-white .form-container ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(0,0,0,.5)!important;
    opacity: 1;
    /* Firefox */
}

.bg-white .form-container :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(0,0,0,.5)!important;
}

.bg-white .form-container ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgba(0,0,0,.5)!important;
}
.bg-white .form-check-input:checked {
    background-color: #e31e24;
    border-color: #e31e24;
}
.form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input[type=radio] {
    border-radius: 0%;
    -webkit-border-radius: 0%;
    -moz-border-radius: 0%;
    -ms-border-radius: 0%;
    -o-border-radius: 0%;
}
.bg-white .wpcf7-not-valid-tip {
    color: #e31e24;
}
.bg-brand .wpcf7-not-valid-tip {
    color: #ffffff;
}
.wpcf7-not-valid-tip {
    font-size: .8em;
    font-weight: normal;
    display: block;
}
.wpcf7-form-control .wpcf7-list-item{
    margin: 0 !important;
}
.wpcf7-form-control .wpcf7-list-item:not(:first-child) {
    margin-left: 15px !important;
}
.info-list-items {
    /* display: flex; */
}

.info-list-item.active .btn {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}

#careers-list.info-list-items .info-list-item:not(:last-child) {
    margin-right: 10px;
}

.info-list-items .info-list-item:not(:last-child) {
    margin-right: 10px;
}
.info-img-hover {
    transition: all .3s ease-in-out;
    -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;
}
.info-img-hover:hover {
    transform: scale(1.1);
}
.btn-rounded {
    /* padding-left: 1rem;
    padding-right: 1rem; */
    border-radius: 5rem;
    -webkit-border-radius: 5rem;
    -moz-border-radius: 5rem;
    -ms-border-radius: 5rem;
    -o-border-radius: 5rem;
}

.btn-outline-brand {
    --bs-btn-color: #E31E24;
    --bs-btn-border-color: #E31E24;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #E31E24;
    --bs-btn-hover-border-color: #E31E24;
    --bs-btn-focus-shadow-rgb: 33, 37, 41;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #E31E24;
    --bs-btn-active-border-color: #E31E24;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #E31E24;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #E31E24;
    --bs-gradient: none;
}

.btn-brand {
    --bs-btn-color: #fff;
    --bs-btn-bg: #E31E24;
    --bs-btn-border-color: #E31E24;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #E31E24;
    --bs-btn-hover-border-color: #E31E24;
    --bs-btn-focus-shadow-rgb: 66, 70, 73;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #E31E24;
    --bs-btn-active-border-color: #E31E24;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #E31E24;
    --bs-btn-disabled-border-color: #E31E24;
}



.element-arrow {
    position: absolute;
    top: 50px;
    left: -22px;
    width: 30px;

}

.modal .btn-close {
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 99;
    width: 30px;
    height: 30px;
    border-radius: 50rem;
    opacity: 1;
    color: #fff;
    background-color: #ffa9a9;
}

.modal .btn-close::before {
    content: '';
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    right: -10px;
    top: -10px;
    z-index: 99;
    width: 30px;
    height: 30px;
    display: block;
}
@media (max-width: 991px) {

    #awardSlider .slick-list {
        padding-right: 75px;
    }
}

@media (max-width: 767px) {
    .lead {
        font-size: 1rem !important;
    }
    .hero .hero-item {
        padding: 40px 20px;
    }
    .info {
        padding: 40px 20px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-title br {
        display: inline !important;
    }

    .info-title {
        /* font-size: 2.4rem; */
        margin-bottom: 20px;
    }
    .info-title-2 {
        font-size: 2rem;
    }
    .info-title-3 {
        font-size: 1.6rem;
    }

    .info-title-4 {
        font-size: 1.3rem;
    }
    .info-title::before {
        width: 90px;
        bottom: -10px;
        height: 3px;
    }

    .list-counter li:not(:last-child) {
        padding-bottom: 25px;
    }

    .list-counter li:not(:last-child)::before {
        display: none;
    }

    .info-diafnal {
        width: 100%;
    }

    .info-list-icons li:not(:last-child) {
        margin-bottom: 30px;
    }

    .info-list-icons li {
        padding-left: 70px;
        min-height: 90px;
    }

    .info-list-icons li .list-icon {
        padding: 5px;
        width: 60px;
        height: 60px;
    }
    .mb-bg-top{
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 3;
    }
    .info-news_updates_grid {
        grid-template-columns: 1fr;
    }
    .info-news_updates_grid .info-grid-item:nth-child(1) {
        grid-column: 1;
    }

    #homeHeroSlider .slick-arrow.slick-prev {
        left: 15px;
        bottom: 15px;
        top: initial;
    }

    #homeHeroSlider .slick-arrow.slick-next {
        right: initial;
        bottom: 15px;
        top: initial;
        left: 55px;
    }

    .slick-arrow {
        background: rgb(227 30 36 / 45%);
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .info-grid {
        grid-auto-rows: 80px;
    }

    .info .top-move.top {
        margin-top: 0px !important;
    }

    .shadow-mb-none {
        box-shadow: none !important;
    }

    .bg-mb-none {
        background: none !important;
    }

    .slick-arrow.slick-prev {
        left: -15px;
    }

    .slick-arrow.slick-next {
        right: -15px;
    }

    .hero-item.hero-item-img{
        min-height: 100% !important;
    }
    .hero-item.hero-item-iframe{
        min-height: 250px !important;
    }
    .border-end{
        border: 0 !important;
    }
}

@media (max-width: 600px) {
    #legendsSlider .slick-slide>div {
        display: flex;
        max-width: 100%;
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        padding-right: calc(var(--bs-gutter-x) * 1);
        margin-top: var(--bs-gutter-y);
    }
    #legendsSlider .slick-list{
        padding-right:50px;
    }
    #directorsSlider .slick-slide>div {
        display: flex;
        max-width: 100%;
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        padding-right: calc(var(--bs-gutter-x) * 1);
        /* padding-left: calc(var(--bs-gutter-x) * .5); */
        margin-top: var(--bs-gutter-y);
    }
    #ourTeamSlider .slick-slide>div {
        display: flex;
        max-width: 100%;
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-top: var(--bs-gutter-y);
    }
    #directorsSlider .slick-list{
        padding-right:30px;
    }
    #legendsSlider .slick-list{
        padding-right:30px;
    }
    #ourTeamSlider .slick-list{
        padding-right:30px;
    }
    #awardSlider .slick-list {
        padding-right: 30px;
    }
    #projectSlider .slick-list {
        padding-right: 30px;
    }
    #projectFilterSlider .filter-item {
        padding: 5px 20px;
        font-size: 0.8rem;
    }
    #awardsFilterSlider .slick-arrow.slick-next {
        right: -25px;
    }
    #awardsFilterSlider .slick-arrow.slick-prev {
        left: -25px;
    }
    #milestonSlider .slick-list {
        padding-right: 50px;
    }
    #milestonFilterSlider .slick-arrow.slick-prev {
        left: -25px;
    }
    #milestonFilterSlider .slick-arrow.slick-next {
        right: -25px;
    }
    #categorySlider .slick-list {
        padding-bottom: 0px;
        /* padding-right: 50px; */
    }
    .slick-prev::before {
        font-size: 14px;
    }
    .slick-next::before {
        font-size: 14px;
    }
    #milestonFilterSlider .slick-arrow {
        padding: 0;
        width: 30px;
        height: 30px;
        line-height: 28px;
    }
    #milestonFilterSlider .filter-item.active {
        font-size: 1.5rem;
    }
    #activitySlider .slick-list {
        padding-right: 50px;
        padding-left: 0;
    }
}

#projectSlider .card{
    display: none;
}
#projectSlider.slick-initialized .card{
    display: block;
}

.wpcf7-response-output{
    margin: 0 !important;
}

.brand-element{
    position: relative;
    overflow: hidden;
}
.brand-element::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-image: url(../img/img-brand-element.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    z-index: 0;
    opacity: .04;
}
.brand-element.element-right::before{
    left: initial;
    right: -25%;
}

.map-element{
    position: relative;
    overflow: hidden;
}
.map-element::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    background-image: url(../img/img-map-element.png);
    background-repeat: no-repeat;
    background-position: 100% center;
    background-size: cover;
    z-index: 0;
    opacity: .04;
}

.social-list-items li a{
    display: inline-block;
    text-align: center;
    font-size: 0.9rem;
    line-height: 2.2;
    width: 35px;
    height: 35px;
    border: 2px solid #ffffff;
    border-radius: 50rem;
    -webkit-border-radius: 50rem;
    -moz-border-radius: 50rem;
    -ms-border-radius: 50rem;
    -o-border-radius: 50rem;
}
.social-list-items li a:hover{
    background-color: #ffffff;
    color: #E31E24 !important;
}
.taxonomy-card .card .card-img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: top;
}