@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Limelight&display=swap");
/********************* Color *********************/
/********************* font *********************/
/*font-size*/
/*line height*/
/********************* Utilities *********************/
/********************* Animation *********************/
* {
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
}

.small {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
}

h1, .h1 {
  font-size: clamp(2rem, 0.2222rem + 3.7037vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
}

h2, .h2 {
  font-size: clamp(1.75rem, 1.2885rem + 0.9615vw, 2.25rem);
  font-weight: 400;
  line-height: 1.3;
}

h3, .h3 {
  font-size: clamp(1.75rem, 1.625rem + 0.4167vw, 2.125rem);
  font-weight: 400;
  line-height: 1.3;
}

h4, .h4 {
  font-size: clamp(1.5rem, 1.4167rem + 0.2778vw, 1.75rem);
  font-weight: 400;
  line-height: 1.3;
}

.accent-color {
  color: #E3051B;
}

.text-white {
  color: #FFFFFF;
}

h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  margin-bottom: 30px;
}

.letter-spacing {
  letter-spacing: 30%;
}

.bu-home {
  font-size: clamp(2.1875rem, 0.9792rem + 2.5174vw, 4rem);
  line-height: 1.3;
  font-weight: 400;
}

/*#image-carousel:before{
	animation: respiroSoft 15s ease-in-out infinite;
}*/
@keyframes respiroSoft {
  0% {
    transform: scale(1);
    rotate: 0deg;
  }
  25% {
    rotate: 5deg;
  }
  50% {
    transform: scale(1.5);
    rotate: -5deg;
  }
  100% {
    transform: scale(1);
    rotate: 0deg;
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.text-bg-primary a {
  text-decoration: underline;
}

.text-bg-primary .IMEC-title-before:before {
  background: #FFFFFF;
}

.bg-gray-100 {
  background: #EDF2F7 !important;
}

.bg-gray-50 {
  background: #7F8C91;
}

.txt-primary {
  color: #E3051B;
}

.txt-gray-100 {
  color: #EDF2F7;
}

.txt-gray-50 {
  color: #7F8C91;
}

.txt-gray-60 {
  color: #667074;
}

.black-link {
  color: #000000;
  text-decoration: none;
}
.black-link:hover, .black-link:focus {
  text-decoration: underline;
  color: #E3051B;
}

.site-content {
  width: 100%;
}

.sidebar {
  width: 60px;
  background: #161D2A;
  transition: all 0.25s ease-in-out;
  padding: 20px;
}
.sidebar .menu {
  list-style: none;
  padding: 0;
  transition: all 0.25s ease-in-out;
}
.sidebar .menu li .menu-link {
  padding: 20px 0;
  display: flex;
  border-bottom: 1px solid transparent;
}
.sidebar .menu li span {
  opacity: 0;
  width: 0;
  display: inline-block;
}
.sidebar .menu li.menu-item a:before {
  width: 24px;
  display: inline-block;
  height: 24px;
  opacity: 1;
  margin-right: 20px;
}
.sidebar .menu li.menu-item-from-to a:before {
  content: "";
  background: url("../img/conversion_path.svg");
  background-size: cover;
}
.sidebar .menu li.menu-item-CNTR a:before {
  content: url("../img/container.svg");
  background-size: cover;
}
.sidebar .menu li.menu-item-line-schedule a:before {
  content: url("../img/calendar_month.svg");
  background-size: cover;
}
.sidebar .menu li.menu-item-login a:before {
  content: url("../img/account_circle.svg");
  background-size: cover;
}
.sidebar .widget-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #7F8C91;
  opacity: 0;
  width: 0;
  height: 0;
}
.sidebar .toggle-sidebar-open {
  transition: all 0.25s ease-in-out;
  margin-bottom: 50px;
}
.sidebar .toggle-sidebar-open.arrow-open {
  rotate: 180deg;
}
.sidebar.sidebar-open {
  width: 400px;
  transition: all 0.25s ease-in-out;
}
.sidebar.sidebar-open .menu {
  width: 400px;
}
.sidebar.sidebar-open .widget-title {
  opacity: 1;
  width: auto;
  height: auto;
}
.sidebar.sidebar-open li {
  position: relative;
}
.sidebar.sidebar-open li.current_page_item {
  background: #E3051B;
}
.sidebar.sidebar-open li.current_page_item::before {
  content: "";
  width: 40px;
  height: 100%;
  border-radius: 40px 0 0 40px;
  background: #E3051B;
  display: block;
  position: absolute;
  left: -40px;
}
.sidebar.sidebar-open li .menu-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.sidebar.sidebar-open li span {
  opacity: 1;
  width: auto;
  color: #FFFFFF;
}

.main-container-with-sidebar .site-header .navbar.fixed-top {
  width: calc(100% - 60px);
  margin-left: auto;
}