/*--------------------------------------------------------------
# styles
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# CUSTOM STYLES
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: "Mulish", sans-serif;
  color: #0D2451;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}
body::-webkit-scrollbar-track,
body *::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0.5rem rgba(159, 186, 153, 0.3);
  background-color: #E4EDD8;
  border-radius: 0.25rem;
  width: 0.5rem;
  height: 0.5rem;
}
body::-webkit-scrollbar,
body *::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #E4EDD8;
  border-radius: 0.25rem;
}
body::-webkit-scrollbar-thumb,
body *::-webkit-scrollbar-thumb {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44, #9FBA99), color-stop(0.72, #9FBA99), color-stop(0.86, #9FBA99));
}

section {
  position: relative;
}

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

.site-main {
  position: relative;
  min-height: 50vh;
  margin-top: 0px;
  z-index: 1;
}

/*--------------------------------------------------------------
# TEMPS
--------------------------------------------------------------*/
/* events-none */
.events-none {
  user-select: none;
  pointer-events: none;
  touch-action: none;
}

/* events-auto */
.events-auto {
  user-select: auto;
  pointer-events: auto;
  touch-action: auto;
}

/* hidden */
.hidden {
  position: absolute;
  display: none;
  visibility: hidden;
  z-index: -999;
  opacity: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
  top: -9999px;
  left: -9999px;
}

/* other */
.bg-center {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.full-vh {
  min-height: 100vh;
  min-height: 100dvh;
}

.color-primary {
  color: #64B053;
}

.color-accent {
  color: #508F41;
}

a {
  color: #64B053;
  transition: 0.25s;
}
a:hover {
  color: #508F41;
}

a[disabled], a:disabled, button[disabled], button:disabled, input[type=button][disabled], input[type=button]:disabled, input[type=submit][disabled], input[type=submit]:disabled, span[disabled], span:disabled {
  opacity: 0.3;
  color: inherit;
  background-color: inherit;
  border-color: inherit;
  pointer-events: none;
  touch-action: none;
}
a.btn, button.btn, input[type=button].btn, input[type=submit].btn, span.btn {
  padding: 1rem 2rem;
  font-family: "Mulish", sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  min-width: 120px;
  text-align: center;
  border-radius: 1rem;
  transition: 0.25s;
  opacity: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color: #64B053;
  background: linear-gradient(55deg, #64B053 41.37%, #9BCA58 85.27%);
  color: #FFFFFF;
  border: 1px solid transparent;
  outline: none;
  outline: 0 !important;
  cursor: pointer;
  position: relative;
  /* new buttons */
  /* add-icon */
}
a.btn:hover, a.btn:focus, button.btn:hover, button.btn:focus, input[type=button].btn:hover, input[type=button].btn:focus, input[type=submit].btn:hover, input[type=submit].btn:focus, span.btn:hover, span.btn:focus {
  background-color: #508F41;
  opacity: 0.75;
  color: #FFFFFF;
}
a.btn.btn--green, button.btn.btn--green, input[type=button].btn.btn--green, input[type=submit].btn.btn--green, span.btn.btn--green {
  background: #64B053;
  color: #fff;
}
a.btn.btn--green:hover, button.btn.btn--green:hover, input[type=button].btn.btn--green:hover, input[type=submit].btn.btn--green:hover, span.btn.btn--green:hover {
  background: #508F41;
}
a.btn.btn--transparent, button.btn.btn--transparent, input[type=button].btn.btn--transparent, input[type=submit].btn.btn--transparent, span.btn.btn--transparent {
  background: transparent;
  color: #64B053;
  border: 2px solid #64B053;
  padding: 1rem 2rem;
}
a.btn.btn--transparent:hover, button.btn.btn--transparent:hover, input[type=button].btn.btn--transparent:hover, input[type=submit].btn.btn--transparent:hover, span.btn.btn--transparent:hover {
  background: rgba(100, 176, 83, 0.1);
}
a.btn.btn--white, button.btn.btn--white, input[type=button].btn.btn--white, input[type=submit].btn.btn--white, span.btn.btn--white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 1rem 2rem;
}
a.btn.btn--white:hover, button.btn.btn--white:hover, input[type=button].btn.btn--white:hover, input[type=submit].btn.btn--white:hover, span.btn.btn--white:hover {
  background: rgba(255, 255, 255, 0.1);
}
a.btn.btn--new-type-one, button.btn.btn--new-type-one, input[type=button].btn.btn--new-type-one, input[type=submit].btn.btn--new-type-one, span.btn.btn--new-type-one {
  color: #252525;
  background: transparent;
  border-color: #64B053;
}
a.btn.btn--new-type-two, button.btn.btn--new-type-two, input[type=button].btn.btn--new-type-two, input[type=submit].btn.btn--new-type-two, span.btn.btn--new-type-two {
  color: #FFFFFF;
  background: transparent;
  border-color: #64B053;
}
a.btn.add-icon, button.btn.add-icon, input[type=button].btn.add-icon, input[type=submit].btn.add-icon, span.btn.add-icon {
  padding-right: 4rem;
}
a.btn.add-icon .icon-inner, button.btn.add-icon .icon-inner, input[type=button].btn.add-icon .icon-inner, input[type=submit].btn.add-icon .icon-inner, span.btn.add-icon .icon-inner {
  position: absolute;
  top: 0px;
  right: 0px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 15px;
  transform: translate(0px, 0px);
  transition: 0.25s;
  background: linear-gradient(55deg, #64B053 41.37%, #9BCA58 85.27%);
}
a.btn.add-icon .icon-inner .btn-icon, button.btn.add-icon .icon-inner .btn-icon, input[type=button].btn.add-icon .icon-inner .btn-icon, input[type=submit].btn.add-icon .icon-inner .btn-icon, span.btn.add-icon .icon-inner .btn-icon {
  max-width: 100%;
  max-height: 100%;
}
a.btn.add-icon:hover, button.btn.add-icon:hover, input[type=button].btn.add-icon:hover, input[type=submit].btn.add-icon:hover, span.btn.add-icon:hover {
  opacity: 1;
}
a.btn.add-icon:hover .icon-inner, button.btn.add-icon:hover .icon-inner, input[type=button].btn.add-icon:hover .icon-inner, input[type=submit].btn.add-icon:hover .icon-inner, span.btn.add-icon:hover .icon-inner {
  transform: translate(4px, 0px);
}

/* new arrow btn */
.side-arrow-btn {
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  border-radius: 50%;
  padding: 1rem !important;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background-color: #64B053;
  background: linear-gradient(90deg, #0B2650 0%, #00173A 100%);
  opacity: 1;
  transition: 0.25s;
}
.side-arrow-btn svg, .side-arrow-btn img {
  transition: 0.25s;
  transform: translate(0px, 0px);
}
.side-arrow-btn:hover {
  opacity: 0.75;
}
.side-arrow-btn:hover svg, .side-arrow-btn:hover img {
  transform: translate(4px, -4px);
}

.slider-arrow-btn {
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  padding: 1rem !important;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF !important;
  opacity: 1;
  transition: 0.25s;
  border: 1px solid #64B053;
  color: #64B053 !important;
  cursor: pointer;
}
.slider-arrow-btn svg, .slider-arrow-btn img {
  transition: 0.25s;
  transform: translate(0px, 0px);
}
.slider-arrow-btn.type-prev:hover svg, .slider-arrow-btn.type-prev:hover img {
  transform: translate(-4px, 0px);
}
.slider-arrow-btn.type-next:hover svg, .slider-arrow-btn.type-next:hover img {
  transform: translate(4px, 0px);
}
[type=button], [type=submit], button {
  padding: 0px;
}
[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
  color: unset;
  background-color: unset;
}

form {
  font-family: "Mulish", sans-serif;
}
form input.wpcf7-not-valid, form textarea.wpcf7-not-valid, form select.wpcf7-not-valid {
  border: 1px solid #ff0000;
}
form input, form textarea {
  font-family: "Mulish", sans-serif;
  width: 100%;
  height: auto;
  border-radius: 1.25rem !important;
  border: 1px solid #ECECEC;
  color: #0D2451;
  padding: 1rem 1.25rem !important;
  line-height: 1.2;
  font-size: 1rem !important;
  font-weight: 400;
  margin-bottom: 0.25rem !important;
  background-color: #FFFFFF;
  position: relative;
  resize: none;
  outline: unset;
  outline-offset: 0px;
  outline-width: 0px;
  transition: 0.25s;
}
form input:not([type=button]), form input:not([type=submit]), form textarea:not([type=button]), form textarea:not([type=submit]) {
  border: 1px solid #FFFFFF !important;
}
form input::-webkit-input-placeholder, form input::-moz-placeholder, form input::-ms-input-placeholder, form input::placeholder, form textarea::-webkit-input-placeholder, form textarea::-moz-placeholder, form textarea::-ms-input-placeholder, form textarea::placeholder {
  color: #676767;
  font-weight: 400;
  font-size: 0.875rem;
}
form input:focus, form input:focus-visible, form input:focus-within, form textarea:focus, form textarea:focus-visible, form textarea:focus-within {
  outline: none;
}

.g-recaptcha .grecaptcha-badge {
  right: -100vw !important;
}

/* new-form-inner */
.new-form-inner .form-field {
  margin-bottom: 1rem;
}
.new-form-inner .form-field input.wpcf7-phonetext {
  padding-left: 92px !important;
}
.new-form-inner .form-field .intl-tel-input * {
  color: #0D2451;
}
.new-form-inner .form-field input.input-name, .new-form-inner .form-field input.input-email, .new-form-inner .form-field textarea {
  background-position: top 1.125rem left 1rem;
  background-size: auto 1rem;
  background-repeat: no-repeat;
}
.new-form-inner .form-field input.input-name:placeholder-shown, .new-form-inner .form-field input.input-email:placeholder-shown, .new-form-inner .form-field textarea:placeholder-shown {
  padding-left: 2.5rem !important;
}
.new-form-inner .form-field input.input-name:placeholder-shown {
  background-image: url(../images/icon-person.svg);
}
.new-form-inner .form-field input.input-email:placeholder-shown {
  background-image: url(../images/icon-mail.svg);
}
.new-form-inner .form-field textarea:placeholder-shown {
  background-image: url(../images/icon-message.svg);
}
.new-form-inner .form-label {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .new-form-inner .form-label {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1200px) {
  .new-form-inner .form-label {
    font-size: 1.125rem;
  }
}
.new-form-inner .form-label span {
  color: #CF1409;
}
.new-form-inner .form-footer {
  text-align: right;
}
.new-form-inner .form-footer input[type=submit] {
  width: auto !important;
  border-color: #64B053 !important;
  min-width: 210px;
}
.new-form-inner .form-footer > p {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 0px;
  overflow: visible;
}

h1 {
  font-size: 2.5rem;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1400px) {
  h1 {
    font-size: 4rem;
  }
}

h2 {
  font-size: 2rem;
  font-weight: 300;
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  h2 {
    font-size: 2.75rem;
  }
}
@media only screen and (min-width: 1400px) {
  h2 {
    font-size: 3.375rem;
  }
}

h3 {
  font-size: 1.75rem;
  font-weight: 300;
}
@media only screen and (min-width: 768px) {
  h3 {
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  h3 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  h3 {
    font-size: 2.25rem;
  }
}

h4, .mini-entry-title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 768px) {
  h4, .mini-entry-title {
    font-size: 1.375rem;
  }
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

.custom-heading-title {
  color: #0D2451;
  position: relative;
}
.custom-heading-title.style-white {
  color: #FFFFFF;
}

ul.menu {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

ul {
  padding-left: 0px;
  margin: 0.75rem 0px;
}
ul li {
  padding-left: 0px;
  margin-bottom: 0px;
}

p {
  margin-top: 0px;
  margin-bottom: 0.5rem;
}

.text-upper {
  text-transform: uppercase;
  font-family: "Mulish", sans-serif;
}

.text-size-large {
  font-size: 1.5rem;
}

/* FONTS */
/*--------------------------------------------------------------
## HEADER
--------------------------------------------------------------*/
.site-header {
  position: fixed;
  display: block;
  z-index: 9991;
  top: 0px;
  left: 0px;
  width: 100vw !important;
  max-width: none !important;
  padding: 0px !important;
  margin: 0px !important;
  height: auto;
  overflow: visible;
  font-family: "Mulish", sans-serif;
  line-height: 1;
  font-weight: 400;
  transition: 0.25s;
  background-color: #080E3B;
  color: #252525;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0);
  /* site-navigation */
  /* sub-menu */
  /* header-side-wrapper */
  /* btn-mob-nav */
  /* mobile-site-navigation  */
}
.site-header a:not(.btn) {
  color: #252525;
}
.site-header .header-container {
  z-index: 999;
  position: relative;
  padding: 0.75rem 0.75rem;
  transition: 0.5s;
  width: 100%;
  margin: 0px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0px 0.75rem;
}
@media only screen and (min-width: 1024px) {
  .site-header .header-container {
    padding: 1rem 0.75rem;
    gap: 0px 1rem;
  }
}
@media only screen and (min-width: 1200px) {
  .site-header .header-container {
    padding: 1.25rem 0.75rem;
    gap: 0px 1.25rem;
  }
}
@media only screen and (min-width: 1400px) {
  .site-header .header-container {
    padding: 1.5rem 0.75rem;
    gap: 0px 1.5rem;
    max-width: 1680px;
  }
}
.site-header .site-branding {
  position: relative;
  z-index: 99;
  min-width: 120px;
}
.site-header .site-branding .custom-logo-link {
  z-index: 999;
  width: auto;
  max-width: 100%;
}
.site-header .site-branding .custom-logo-link .custom-logo {
  max-width: 180px;
  max-height: 28px;
  width: 100%;
  height: auto;
  transition: 0.25s;
}
@media only screen and (min-width: 1400px) {
  .site-header .site-branding .custom-logo-link .custom-logo {
    max-width: 250px;
    max-height: 36px;
  }
}
.site-header .site-navigation {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  display: none;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  transition: 0.15s;
  width: auto;
  background-color: #FFFFFF;
  border-radius: 1rem;
  padding: 0rem 0.75rem;
  margin: 0px auto;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .site-header .site-navigation {
    display: flex;
    visibility: visible;
  }
}
@media only screen and (min-width: 1200px) {
  .site-header .site-navigation {
    padding: 0rem 1rem;
  }
}
@media only screen and (min-width: 1400px) {
  .site-header .site-navigation {
    padding: 0rem 1.5rem;
  }
}
.site-header .site-navigation ul.menu li:hover .submenu-wrapper {
  display: block;
}
.site-header .site-navigation .menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 100%;
  gap: 0.125rem;
}
@media only screen and (min-width: 1200px) {
  .site-header .site-navigation .menu {
    gap: 0.25rem;
  }
}
@media only screen and (min-width: 1400px) {
  .site-header .site-navigation .menu {
    gap: 0.5rem;
  }
}
.site-header .site-navigation .menu .menu-item {
  margin: 0rem;
  padding: 0.75rem 0.25rem;
  line-height: 1;
  display: block;
  transition: 0.5s;
  position: unset;
}
@media only screen and (min-width: 1200px) {
  .site-header .site-navigation .menu .menu-item {
    padding: 1rem 0.5rem;
  }
}
.site-header .site-navigation .menu .menu-item a {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  opacity: 1;
  transition: 0.5s;
  color: #252525;
  padding: 0px;
  display: inline-block;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  .site-header .site-navigation .menu .menu-item a {
    font-size: 0.875rem;
  }
}
.site-header .site-navigation .menu .menu-item a:hover {
  color: #508F41;
}
.site-header .site-navigation .menu-item.menu-item-has-children, .site-header .mobile-site-navigation .menu-item.menu-item-has-children {
  /* click-open */
}
.site-header .site-navigation .menu-item.menu-item-has-children > a, .site-header .mobile-site-navigation .menu-item.menu-item-has-children > a {
  display: inline-block;
  position: relative;
  padding-right: 1rem;
}
.site-header .site-navigation .menu-item.menu-item-has-children > a .sub-menu-toggle, .site-header .mobile-site-navigation .menu-item.menu-item-has-children > a .sub-menu-toggle {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1;
  transform: translateY(-43%) rotate(90deg);
  width: 1rem;
  height: 1rem;
  text-align: center;
  position: absolute;
  top: 50%;
  right: -0.25rem;
}
@media only screen and (min-width: 1200px) {
  .site-header .site-navigation .menu-item.menu-item-has-children > a .sub-menu-toggle, .site-header .mobile-site-navigation .menu-item.menu-item-has-children > a .sub-menu-toggle {
    font-size: 1.25rem;
  }
}
.site-header .site-navigation .menu-item.menu-item-has-children::after, .site-header .mobile-site-navigation .menu-item.menu-item-has-children::after {
  display: none;
  visibility: hidden;
}
.site-header .site-navigation .menu-item.menu-item-has-children .submenu-wrapper, .site-header .mobile-site-navigation .menu-item.menu-item-has-children .submenu-wrapper {
  position: absolute;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  z-index: 5;
  display: none;
  top: 100%;
  left: 50%;
  width: 100%;
  height: 380px;
  max-height: calc(100vh - 160px);
  transform: translateX(-50%);
  overflow: hidden;
  margin: 0px;
  border-radius: 1rem;
  padding: 2rem 1rem 1rem;
}
.site-header .site-navigation .menu-item.menu-item-has-children .submenu-wrapper::after, .site-header .mobile-site-navigation .menu-item.menu-item-has-children .submenu-wrapper::after {
  content: " ";
  position: absolute;
  z-index: -1;
  display: block;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
  background-color: #fff;
  background-image: url(../images/bg-item-light.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 1rem;
  top: auto;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: calc(100% - 1rem);
}
.site-header .site-navigation .menu-item.menu-item-has-children .sub-menu, .site-header .mobile-site-navigation .menu-item.menu-item-has-children .sub-menu {
  background: unset;
  position: relative;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-height: 100%;
  z-index: 5;
  overflow: hidden auto;
  padding: 0px 0.5rem;
  margin: 0px;
}
.site-header .site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item, .site-header .mobile-site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item {
  padding: 0px;
  margin: 0px;
  border-bottom: 1px solid #E4EDD8;
  width: calc(50% - 0.75rem);
}
@media only screen and (min-width: 1200px) {
  .site-header .site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item, .site-header .mobile-site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item {
    width: calc(33.33% - 0.75rem);
  }
}
.site-header .site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item > a, .site-header .mobile-site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0.75rem 0.5rem 0.75rem;
  gap: 0.5rem;
}
.site-header .site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item > a .menu-item-img-wrapper, .site-header .mobile-site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item > a .menu-item-img-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  width: 120px;
  height: 80px;
  margin-bottom: 0.5rem;
}
.site-header .site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item > a .menu-item-img-wrapper img, .site-header .mobile-site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item > a .menu-item-img-wrapper img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.site-header .site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item > a .menu-item-wrapper, .site-header .mobile-site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item > a .menu-item-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
}
.site-header .site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item > a .menu-item-wrapper .menu-item-title, .site-header .mobile-site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item > a .menu-item-wrapper .menu-item-title {
  font-size: 0.875rem;
  font-weight: 600;
}
.site-header .site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item > a .menu-item-wrapper .menu-item-description, .site-header .mobile-site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item > a .menu-item-wrapper .menu-item-description {
  font-size: 0.75rem;
  font-weight: 400;
}
.site-header .site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item > a:hover, .site-header .mobile-site-navigation .menu-item.menu-item-has-children .sub-menu > .menu-item > a:hover {
  color: #0D2451;
  background-color: rgba(100, 176, 83, 0.1);
}
.site-header .site-navigation .menu-item.menu-item-has-children.click-open > a:focus-within .sub-menu, .site-header .mobile-site-navigation .menu-item.menu-item-has-children.click-open > a:focus-within .sub-menu {
  display: none;
}
.site-header .site-navigation .menu-item.menu-item-has-children.click-open .sub-menu, .site-header .mobile-site-navigation .menu-item.menu-item-has-children.click-open .sub-menu {
  display: none;
}
.site-header .header-side-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.site-header .header-side-wrapper .switcher-part, .site-header .header-side-wrapper .phones-part, .site-header .header-side-wrapper .button-part {
  display: none;
  visibility: hidden;
}
@media only screen and (min-width: 1024px) {
  .site-header .header-side-wrapper {
    gap: 0.5rem;
    margin-left: 0px;
  }
  .site-header .header-side-wrapper .switcher-part, .site-header .header-side-wrapper .phones-part, .site-header .header-side-wrapper .button-part {
    display: block;
    visibility: visible;
  }
}
@media only screen and (min-width: 1200px) {
  .site-header .header-side-wrapper {
    gap: 0.75rem;
  }
}
.site-header .dropdown-list.custom-lang-dropdown, .site-header .dropdown-list.header-contacts-list {
  background-color: #FFFFFF;
  border-radius: 1rem;
  padding: 0.5rem;
  min-height: 2.5rem;
}
@media only screen and (min-width: 1200px) {
  .site-header .dropdown-list.custom-lang-dropdown, .site-header .dropdown-list.header-contacts-list {
    padding: 0.75rem;
    min-height: 3rem;
  }
}
.site-header .dropdown-list.custom-lang-dropdown .list-item, .site-header .dropdown-list.header-contacts-list .list-item {
  text-transform: uppercase;
}
.site-header .dropdown-list.custom-lang-dropdown .list-item.current, .site-header .dropdown-list.header-contacts-list .list-item.current {
  font-weight: 700;
}
.site-header .button-part .btn.header__btn {
  font-size: 0.75rem;
  padding: 0.75rem 1rem;
}
@media only screen and (min-width: 1200px) {
  .site-header .button-part .btn.header__btn {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
  }
}
.site-header .search-part .search__btn {
  padding: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-block;
  transition: 0.25s;
  opacity: 1;
  border-radius: 0.75rem;
  background-color: #252525;
}
.site-header .search-part .search__btn svg {
  fill: #FFFFFF;
}
.site-header .search-part .search__btn:hover {
  background-color: #508F41;
}
@media only screen and (min-width: 1200px) {
  .site-header .search-part .search__btn {
    width: 3rem;
    height: 3rem;
    padding: 1rem;
    border-radius: 1rem;
  }
}
.site-header .mob-nav-btn-wrapper {
  display: block;
  visibility: visible;
  margin-left: 0px;
}
@media only screen and (min-width: 1024px) {
  .site-header .mob-nav-btn-wrapper {
    display: none;
    visibility: hidden;
  }
}
.site-header .btn-mob-nav {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  visibility: visible;
  top: 0px;
  left: 0px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1;
  margin: 1px;
}
.site-header .btn-mob-nav span {
  z-index: 5;
  display: block;
}
.site-header .btn-mob-nav span::before, .site-header .btn-mob-nav span::after {
  content: " ";
  position: absolute;
  z-index: -1;
  display: block;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  z-index: 5;
}
.site-header .btn-mob-nav > span, .site-header .btn-mob-nav > span::before, .site-header .btn-mob-nav > span::after {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  left: 0px;
}
.site-header .btn-mob-nav > span::before {
  top: 7px;
}
.site-header .btn-mob-nav > span::after {
  top: 21px;
}
@media only screen and (min-width: 1024px) {
  .site-header .btn-mob-nav {
    display: none;
    visibility: hidden;
  }
}
.site-header .mobile-navigation-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  visibility: visible;
  justify-content: flex-start;
  position: fixed;
  top: 56px;
  left: 0px;
  width: 100vw;
  height: calc(100vh - 56px);
  height: calc(100dvh - 56px);
  z-index: 998;
  padding: 1.5rem 0.75rem;
  background-color: #FFFFFF;
  transform: translateX(-100vw);
  transition: 0.5s;
}
@media only screen and (min-width: 1024px) {
  .site-header .mobile-navigation-wrapper {
    display: none;
    visibility: hidden;
  }
}
.site-header .mobile-navigation-wrapper .mobile-site-navigation, .site-header .mobile-navigation-wrapper .mobile-site-navigation-widgets {
  width: 100%;
  max-width: 480px;
  margin: 1.25rem auto;
}
.site-header .mobile-navigation-wrapper .mobile-site-navigation {
  max-height: calc(100% - 186px);
  overflow: hidden auto;
}
.site-header .mobile-navigation-wrapper .mobile-navigation {
  width: 100%;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.site-header .mobile-navigation-wrapper .menu {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin: 0px auto;
}
.site-header .mobile-navigation-wrapper .menu .menu-item {
  width: 100%;
  text-align: left;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #EBEBEB;
}
.site-header .mobile-navigation-wrapper .menu .menu-item a {
  width: max-content;
  width: fit-content;
  margin: 0px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.75rem 1.5rem;
}
.site-header .mobile-navigation-wrapper .menu .menu-item .sub-menu {
  position: relative;
  top: auto;
}
.site-header .mobile-navigation-wrapper .menu .menu-item .sub-menu > .menu-item {
  border-bottom: 1px solid #EBEBEB;
}

/* transparent header */
.new-page-transp-header .site-header {
  background-color: transparent;
}

/* fix header */
.scrolled .site-header {
  background-color: #080E3B;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
}
.scrolled .site-header .header-container {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  .scrolled .site-header .header-container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
@media only screen and (min-width: 1400px) {
  .scrolled .site-header .header-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

/* open-navbar */
body.open-navbar {
  overflow: hidden !important;
}
body.open-navbar .site-header .mobile-navigation-wrapper {
  transform: translateX(0vw);
}
body.open-navbar .site-header .btn-mob-nav span {
  max-width: 0px;
}
body.open-navbar .site-header .btn-mob-nav span::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 14px;
}
body.open-navbar .site-header .btn-mob-nav span::after {
  top: 14px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*--------------------------------------------------------------
## FOOTER
--------------------------------------------------------------*/
.site-footer {
  font-family: "Mulish", sans-serif;
  padding: 3.75rem 0px 2rem;
  background: #040C3D;
  color: #FFFFFF;
  width: 100%;
  max-width: none !important;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
}
.site-footer a:not(.btn) {
  color: #FFFFFF;
}
.site-footer::before {
  content: " ";
  position: absolute;
  z-index: -1;
  display: block;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
  height: 100%;
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto;
  opacity: 0.75;
  z-index: 1;
}
.site-footer .footer-container {
  position: relative;
  z-index: 10;
}
@media only screen and (min-width: 1400px) {
  .site-footer .footer-container {
    max-width: 1680px;
  }
}
.site-footer .footer-container.bottom-part {
  padding-top: 1.5rem;
}
.site-footer .footer-container.bottom-part::before {
  content: " ";
  position: absolute;
  z-index: -1;
  display: block;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  width: calc(100% - 1.5rem);
  height: 1px;
  background-color: #597D69;
  z-index: 1;
  border-radius: 2px;
  top: 0px;
  left: 0.75rem;
}
.site-footer .footer-container.bottom-part > .row {
  flex-direction: column-reverse;
  gap: 0.75rem;
}
@media only screen and (min-width: 1024px) {
  .site-footer .footer-container.bottom-part > .row {
    flex-direction: row;
  }
}
.site-footer .ft-sub-column {
  margin-bottom: 1.5rem;
}
.site-footer .widget {
  margin-bottom: 1.5rem;
}
.site-footer .widget .widget-title {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  position: relative;
  cursor: pointer;
}
.site-footer .widget .widget-title::after {
  content: " ";
  position: absolute;
  z-index: -1;
  display: block;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  bottom: 0px;
  left: 0px;
  width: 45px;
  height: 4px;
  background: linear-gradient(55deg, #64B053 41.37%, #9BCA58 85.27%);
  border-radius: 8px;
}
.site-footer .menu .menu-item {
  padding: 0px;
  margin: 0px 0px 0.25rem;
}
@media only screen and (min-width: 768px) {
  .site-footer .menu .menu-item {
    margin: 0px 0px 0.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  .site-footer .menu .menu-item {
    margin: 0px 0px 0.75rem;
  }
}
.site-footer .menu a {
  font-weight: 400;
  color: #FFFFFF;
  cursor: pointer;
}
.site-footer .menu a:hover {
  color: #64B053;
}
.site-footer .ft-widget {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.site-footer .ft-widget .icon-part {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #64B053;
}
.site-footer .ft-widget .icon-part .icon {
  max-width: 1.25rem;
  max-height: 1.25rem;
  color: #FFFFFF;
}
.site-footer .ft-widget .icon-part .icon path {
  fill: #FFFFFF;
}
.site-footer .ft-widget .info-part, .site-footer .ft-widget .contacts-list {
  flex: 1;
}
.site-footer .ft-widget .contacts-list .list-item {
  margin-bottom: 0.5rem;
}
.site-footer .ft-widget .contacts-list .list-item a.link-part {
  color: #FFFFFF;
}
.site-footer .ft-widget .fix-break a {
  display: block;
}
.site-footer .social-list {
  margin: 1.5rem 0px;
}
.site-footer .social-list .list-item .item-icon {
  filter: invert(1);
}
.site-footer .ft-column {
  margin-bottom: 1.25rem;
}
.site-footer .ft-column.ft-column-1 {
  margin-bottom: 2.5rem;
}
.site-footer .ft-column.ft-column-1 a {
  text-decoration: underline;
}
.site-footer .ft-column.ft-column-1 a:hover {
  color: #64B053;
}
.site-footer .ft-column.ft-column-1 .logo-part {
  margin-bottom: 1.5rem;
}
.site-footer .ft-column.ft-column-1 .logo-part a:hover {
  opacity: 0.75;
}
.site-footer .ft-column.ft-column-1 .logo-part img, .site-footer .ft-column.ft-column-1 .logo-part svg {
  max-width: 250px;
  max-height: 36px;
}
.site-footer .ft-column.ft-column-1 .widget_text {
  margin-bottom: 1.5rem;
}
.site-footer .copy-part {
  font-weight: 600;
}
.site-footer .poly-part .menu {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 0.25rem;
}
@media only screen and (min-width: 768px) {
  .site-footer .poly-part .menu {
    gap: 0.25rem 1rem;
  }
}
@media only screen and (min-width: 1024px) {
  .site-footer .poly-part .menu {
    flex-direction: row;
    gap: 0.75rem 1.5rem;
    justify-content: flex-end;
    align-items: center;
  }
}
@media only screen and (min-width: 1200px) {
  .site-footer .poly-part .menu {
    gap: 0.75rem 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .site-footer .poly-part .menu {
    gap: 0.75rem 3rem;
  }
}
.site-footer .poly-part .menu .menu-item {
  margin-bottom: 0px;
}
.site-footer .poly-part .menu .menu-item a {
  font-weight: 600;
}

@media only screen and (max-width: 1023px) {
  #bingc-phone-button.bingc-show {
    bottom: 10% !important;
  }
}

/*--------------------------------------------------------------
## HOME PAGE
--------------------------------------------------------------*/
.home {
  font-family: "Mulish", sans-serif;
}
.page-template-page-new-template {
  background-color: #FBFBFB;
}

.lates-news-parent-wrapper {
  background-size: auto 90%;
  background-position: left -15% center !important;
}

/* about us */
.about-us-parent-wrapper {
  background-size: auto 90%;
}

.rounded-image img {
  border-radius: 2rem;
}

.custom-image-label {
  padding: 1.25rem;
  background: linear-gradient(90deg, #0B2650 0%, #00173A 100%);
  color: #FFFFFF;
  border-radius: 2rem;
  overflow: hidden;
  max-width: 320px;
  font-family: "Mulish", sans-serif;
  line-height: 1.35;
  font-weight: 500;
  gap: 0.75rem;
}
@media only screen and (min-width: 1400px) {
  .custom-image-label {
    padding: 1.5rem;
  }
}
.custom-image-label .elementor-widget-image {
  line-height: 1;
}
.custom-image-label .elementor-widget-heading {
  flex: 1;
}
.custom-image-label .elementor-heading-title {
  line-height: 1.35;
}
.custom-image-label.type-second .elementor-widget-image {
  width: 3.5rem;
  min-width: 3.5rem;
  height: auto;
}
.custom-image-label.type-second .elementor-widget-heading {
  opacity: 0.85;
}

/* new-section-contact-us */
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# GENERAL
--------------------------------------------------------------*/
body {
  font-family: "Mulish", sans-serif;
  background-color: #FFFFFF;
}

.page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main {
  max-width: 100% !important;
  padding-right: 0px !important;
  padding-left: 0px !important;
}

.main-wrapper {
  padding-top: 64px;
  min-height: 50vh;
  min-height: 50dvh;
}
@media only screen and (min-width: 1024px) {
  .main-wrapper {
    padding-top: 72px;
  }
}
@media only screen and (min-width: 1200px) {
  .main-wrapper {
    padding-top: 88px;
  }
}
@media only screen and (min-width: 1400px) {
  .main-wrapper {
    padding-top: 96px;
  }
}

.elementor-widget-text-editor .elementor-widget-container > *:last-child {
  margin-bottom: 0px;
}

.new-page-remove-toppad .main-wrapper {
  padding-top: 0px;
}

/*--------------------------------------------------------------
# PAGES
--------------------------------------------------------------*/
/* social list */
.social-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  transition: 0.25s;
  margin-bottom: 0px;
  width: 100%;
  gap: 0.875rem;
}
.social-list .list-item {
  margin: 0px;
  line-height: 1;
  opacity: 1;
  transition: 0.25s;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
}
.social-list .list-item .item-icon {
  width: auto;
  height: auto;
  max-width: 24px;
  max-height: 24px;
  color: #000000;
  transition: 0.25s;
  opacity: 1;
}
.social-list .list-item:hover .item-icon {
  filter: invert(71%) sepia(6%) saturate(3695%) hue-rotate(64deg) brightness(87%) contrast(82%);
  color: #64B053;
}
/* contacts list */
.contacts-list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 0px;
}
.contacts-list .list-item {
  margin: 0px 0px 0.5rem;
  line-height: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.contacts-list .list-item .link-part {
  font-size: 0.875rem;
  line-height: 1.35;
  opacity: 1;
  transition: 0.25s;
  color: #0D2451;
}
.contacts-list .list-item .link-part:hover {
  color: #080E3B;
}

/* list-new-style */
ul.list-new-style {
  list-style: none;
}
ul.list-new-style li {
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  position: relative;
}
ul.list-new-style li::marker {
  content: "";
  display: none;
}
ul.list-new-style li::before {
  content: " ";
  position: absolute;
  z-index: -1;
  display: block;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background-image: url("../images/icon-new-check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  width: 1.25rem;
  height: 1.25rem;
  top: 4px;
  left: 0px;
}

/* new-counter-card */
.dark-large-section {
  background-color: #080E3B;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 1.5rem 0.75rem;
  color: #FFFFFF;
}
@media only screen and (min-width: 768px) {
  .dark-large-section {
    padding: 2rem 1.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .dark-large-section {
    padding: 2rem 6rem;
  }
}

.new-counter-card {
  gap: 0px;
  padding: 0px !important;
}
.new-counter-card .elementor-icon-wrapper {
  text-align: center !important;
  margin-bottom: 0.25rem;
}
@media only screen and (min-width: 768px) {
  .new-counter-card .elementor-icon-wrapper {
    text-align: left !important;
    margin-bottom: 0.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  .new-counter-card .elementor-icon-wrapper {
    margin-bottom: 0.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  .new-counter-card .elementor-icon-wrapper {
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 1400px) {
  .new-counter-card .elementor-icon-wrapper {
    margin-bottom: 1.25rem;
  }
}
.new-counter-card .elementor-counter .elementor-counter-number-wrapper {
  font-size: 2rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  justify-content: center;
  margin-bottom: 0.25rem;
}
@media only screen and (min-width: 768px) {
  .new-counter-card .elementor-counter .elementor-counter-number-wrapper {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  .new-counter-card .elementor-counter .elementor-counter-number-wrapper {
    margin-bottom: 0.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  .new-counter-card .elementor-counter .elementor-counter-number-wrapper {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 1400px) {
  .new-counter-card .elementor-counter .elementor-counter-number-wrapper {
    font-size: 3rem;
    margin-bottom: 1.25rem;
  }
}
.new-counter-card .elementor-counter .elementor-counter-number-suffix {
  flex-grow: unset;
}
.new-counter-card .elementor-counter .elementor-counter-title {
  justify-content: center;
  font-size: 1.125rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 1.1;
}
@media only screen and (min-width: 768px) {
  .new-counter-card .elementor-counter .elementor-counter-title {
    justify-content: flex-start;
  }
}
.new-counter-card .elementor-counter .elementor-counter-number-prefix:empty {
  display: none;
  visibility: hidden;
}
.new-counter-card .elementor-widget-heading > .elementor-widget-container {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .new-counter-card .elementor-widget-heading > .elementor-widget-container {
    text-align: left;
  }
}

/* new-info-card-wrapper */
.new-info-card-wrapper {
  background-color: #FFFFFF;
  border-radius: 2rem;
  overflow: hidden;
  padding: 0.75rem 1.5rem;
  box-shadow: 7px 7px 25px 7px rgba(215, 215, 215, 0.12);
  gap: 0.5rem;
  position: relative;
  align-items: stretch;
}
.new-info-card-wrapper * {
  color: #173060;
}
@media only screen and (min-width: 768px) {
  .new-info-card-wrapper {
    gap: 1rem;
    padding: 1rem 1.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .new-info-card-wrapper {
    gap: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .new-info-card-wrapper {
    gap: 4rem;
    padding: 0rem 2rem;
  }
}

.inside-info-card {
  padding: 0.25rem 0px;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row !important;
  gap: 0.5rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .inside-info-card {
    gap: 0.75rem;
    padding: 1rem 0px;
  }
}
@media only screen and (min-width: 1024px) {
  .inside-info-card {
    gap: 1rem;
    padding: 2rem 0px;
  }
}
@media only screen and (min-width: 1400px) {
  .inside-info-card {
    gap: 1.75rem;
    padding: 3.5rem 0px;
  }
}
.inside-info-card::after {
  content: " ";
  position: absolute;
  z-index: -1;
  display: block;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  display: none;
  z-index: 1;
  width: 1px;
  height: calc(100% - 2.5rem);
  position: absolute;
  top: 1.25rem;
  right: -1rem;
  background-color: #EFEFEF;
}
@media only screen and (min-width: 1024px) {
  .inside-info-card::after {
    display: block;
  }
}
@media only screen and (min-width: 1400px) {
  .inside-info-card::after {
    right: -2rem;
  }
}
.inside-info-card:last-child::after {
  display: none;
}
.inside-info-card .elementor-widget-icon {
  width: 3.5rem;
  min-width: 3.5rem;
  line-height: 1;
}
.inside-info-card .elementor-widget-icon * {
  line-height: 1;
}
.inside-info-card .elementor-heading-title {
  line-height: 1.25;
}
.inside-info-card .elementor-widget-heading {
  flex: 1;
}
.inside-info-card .elementor-widget-heading .elementor-heading-title {
  line-height: 1.35;
  font-size: 0.875rem;
  font-weight: 500;
}

/*contact-item-ib */
.contact-item-ib {
  padding: 0px;
}
.contact-item-ib .elementor-widget-heading {
  flex: 1;
}
.contact-item-ib a:hover {
  color: #508F41;
}

.new-section-contact-us .dark-large-section {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .new-section-contact-us .dark-large-section {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .new-section-contact-us .dark-large-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
}

/*--------------------------------------------------------------
## Widgets
--------------------------------------------------------------*/
.dropdown-list {
  position: relative;
  display: inline-block;
}
.dropdown-list .list-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #0D2451;
  font-weight: 400;
  white-space: nowrap;
  background-color: transparent;
  transition: 0.25s;
}
.dropdown-list .list-item.current {
  padding: 0.3125rem 1.25rem 0.3125rem 0.5rem;
}
@media only screen and (min-width: 1200px) {
  .dropdown-list .list-item {
    padding: 0.5rem 0.5rem;
    font-size: 0.875rem;
  }
}
.dropdown-list .dropdown-toggle {
  font-weight: 600;
  font-size: 1.125rem;
  transform: translateY(-48%) rotate(90deg);
  line-height: 0.75rem;
  width: 1rem;
  height: 1rem;
  text-align: center;
  position: absolute;
  top: 45%;
  right: 0px;
}
@media only screen and (min-width: 1200px) {
  .dropdown-list .dropdown-toggle {
    font-size: 1.25rem;
    transform: translateY(-43%) rotate(90deg);
  }
}
.dropdown-list .dropdown-toggle::after {
  display: none;
}
.dropdown-list .dropdown-menu {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  border-radius: 0.375rem;
  z-index: 5;
  background: #FFFFFF;
  top: calc(100% - 1px);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  padding: 0.375rem 0px;
  width: 100%;
  min-width: unset;
  text-align: center;
}
.dropdown-list .dropdown-menu .list-item:hover {
  background-color: rgba(100, 176, 83, 0.1);
}
.dropdown-list:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

/* widget-custom-card */
.widget-custom-card {
  border-radius: 1.5rem;
  background: #F5F9FF;
  box-shadow: 7px 7px 25px 7px rgba(215, 215, 215, 0.12);
  padding: 0.75rem 0.75rem 2rem;
  width: 100%;
  height: 100%;
}
.widget-custom-card .custom-card__inner {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .widget-custom-card .custom-card__inner {
    gap: 0.75rem;
  }
}
.widget-custom-card .custom-card__image-wrapper {
  width: 100%;
  line-height: 1;
  overflow: hidden;
  border-radius: 1.5rem;
}
.widget-custom-card .custom-card__image-wrapper .custom-card__image {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.widget-custom-card .custom-card__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.75rem;
  padding: 0px;
}
@media only screen and (min-width: 768px) {
  .widget-custom-card .custom-card__body {
    padding: 0px 0.75rem;
  }
}
.widget-custom-card .custom-card__body .custom-card__title {
  font-size: 1.5rem;
  margin-bottom: 0px;
}
@media only screen and (min-width: 768px) {
  .widget-custom-card .custom-card__body .custom-card__title {
    font-size: 1.875rem;
  }
}
.widget-custom-card .custom-card__footer {
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0px;
}
@media only screen and (min-width: 768px) {
  .widget-custom-card .custom-card__footer {
    padding: 0px 0.75rem;
  }
}
.widget-custom-card .custom-card__footer .custom-card__extra-icon {
  max-height: 4rem;
  max-width: 4rem;
  line-height: 1;
}

/* widget-custom-latest-news */
.widget-custom-latest-news, .widget-custom-latest-researches {
  padding: 0px !important;
}

.custom-latest-news__header-col, .custom-latest-researches__header-col {
  margin-bottom: 1.5rem;
}
.custom-latest-news__header-col .col-inner, .custom-latest-researches__header-col .col-inner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.75rem;
  padding: 0rem 0.75rem 1.5rem;
}
@media only screen and (min-width: 768px) {
  .custom-latest-news__header-col .col-inner, .custom-latest-researches__header-col .col-inner {
    gap: 2rem;
    padding: 2rem 0.75rem;
  }
}
.custom-latest-news__title, .custom-latest-researches__title {
  margin-bottom: 0px;
}
.custom-latest-news__description, .custom-latest-researches__description {
  font-size: 1.25rem;
  width: 100%;
  max-width: 100%;
}
@media only screen and (min-width: 1024px) {
  .custom-latest-news__description, .custom-latest-researches__description {
    width: 80%;
  }
}

.custom-latest-news__slider .swiper-wrapper, .custom-latest-researches__slider .swiper-wrapper {
  align-items: stretch;
}
.custom-latest-news__slider .swiper-wrapper .swiper-slide, .custom-latest-researches__slider .swiper-wrapper .swiper-slide {
  height: auto;
}

.custom-news-card, .custom-research-card {
  overflow: hidden;
  border-radius: 2rem;
  background-color: #080E3B;
  background: linear-gradient(90deg, #0B2650 0%, #00173A 100%);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  height: 100%;
}
.custom-news-card__image-wrap, .custom-research-card__image-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 1;
  border-radius: 2rem;
}
.custom-news-card__image, .custom-research-card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
}
.custom-news-card__badge, .custom-research-card__badge {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 120px;
  position: absolute;
}
.custom-news-card__arrow-btn, .custom-research-card__arrow-btn {
  position: absolute;
  z-index: 5;
  top: 1.25rem;
  right: 1.25rem;
}
.custom-news-card__arrow-btn svg *, .custom-research-card__arrow-btn svg * {
  stroke: #64B053;
}
.custom-news-card__body, .custom-research-card__body {
  padding: 1.25rem;
  color: #FFFFFF;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 1rem;
  flex: 1;
}
.custom-news-card__date, .custom-research-card__date {
  font-size: 0.75rem;
}
.custom-news-card__title, .custom-research-card__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0px;
}
.custom-news-card__excerpt, .custom-research-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.25;
  opacity: 0.85;
}
.custom-news-card__footer, .custom-research-card__footer {
  margin-top: auto;
  padding-top: 1.5rem;
}
.custom-news-card:hover .custom-news-card__arrow-btn svg, .custom-news-card:hover .custom-news-card__arrow-btn img, .custom-news-card:hover .custom-research-card__arrow-btn svg, .custom-news-card:hover .custom-research-card__arrow-btn img, .custom-research-card:hover .custom-news-card__arrow-btn svg, .custom-research-card:hover .custom-news-card__arrow-btn img, .custom-research-card:hover .custom-research-card__arrow-btn svg, .custom-research-card:hover .custom-research-card__arrow-btn img {
  transform: translate(4px, -4px);
}

.custom-carousel-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  width: min-content;
  width: fit-content;
}
.custom-carousel-nav .custom-carousel-pagination {
  min-width: 3rem;
  text-align: center;
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
}
.custom-carousel-nav .custom-carousel-pagination .swiper-pagination-current {
  font-weight: 700;
}

/* research */
.custom-latest-researches__header {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .custom-latest-researches__header {
    margin-bottom: 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .custom-latest-researches__header {
    margin-bottom: 3rem;
  }
}
.custom-latest-researches__header-right {
  text-align: right;
}
.custom-latest-researches__bottom-nav {
  width: 100% !important;
  margin-top: 2.5rem;
}
.custom-latest-researches__bottom-nav .custom-carousel-pagination {
  width: fit-content;
  width: min-content;
}

.custom-research-card__image {
  aspect-ratio: 1/1;
  object-position: top center;
}

/* widget-custom-label-card */
.custom-label-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  border-radius: 2rem;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 7px 7px 25px 7px rgba(215, 215, 215, 0.12);
  position: relative;
  width: min-content;
  width: fit-content;
}
.custom-label-card__accent {
  position: absolute;
  width: 1rem;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: #B0E3B3;
}
.custom-label-card__inner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 1rem 0.75rem 2rem;
}
@media only screen and (min-width: 768px) {
  .custom-label-card__inner {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem 1.5rem 2.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .custom-label-card__inner {
    gap: 2rem;
    padding: 1.75rem 3rem 1.75rem 2.25rem;
  }
}
.custom-label-card__icon-wrap {
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  text-align: center;
}
.custom-label-card__content:has(.custom-label-card__description) .custom-label-card__title {
  margin-bottom: 0.5rem;
}
.custom-label-card__title {
  font-size: 1rem;
  line-height: 1.25;
  font-family: "Mulish", sans-serif;
  color: #173060;
  margin-bottom: 0px;
}
@media only screen and (min-width: 768px) {
  .custom-label-card__title {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1024px) {
  .custom-label-card__title {
    font-size: 1.25rem;
  }
}
.custom-label-card__description {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
}
@media only screen and (min-width: 768px) {
  .custom-label-card__description {
    font-size: 1rem;
  }
}

/* widget-contact-us-banner */
.widget-contact-us-banner {
  border-radius: 2rem;
  background: rgba(110, 168, 255, 0.08);
  padding: 1.5rem;
  margin: 1.25rem 0px;
  background-image: url(../images/bg-favicon.png);
  background-repeat: no-repeat;
  background-position: left 74% center;
  background-size: 110px auto;
}
@media only screen and (min-width: 1400px) {
  .widget-contact-us-banner {
    padding: 2.25rem;
    background-position: left 70% center;
  }
}

.contact-us-banner__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
@media only screen and (min-width: 1400px) {
  .contact-us-banner__inner {
    gap: 2rem;
  }
}
.contact-us-banner__icon-badge {
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
}
.contact-us-banner__content {
  margin-right: auto;
}
.contact-us-banner__title {
  font-family: "Mulish", sans-serif;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* widget-dark-icon-card */
.widget-dark-icon-card {
  height: 100%;
}

.dark-icon-card {
  padding: 1rem;
  background: linear-gradient(90deg, #0B2650 0%, #00173A 100%);
  color: #FFFFFF;
  border-radius: 2rem;
  overflow: hidden;
  max-width: 480px;
  line-height: 1.25;
  font-weight: 500;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
@media only screen and (min-width: 1400px) {
  .dark-icon-card {
    padding: 1.5rem;
  }
}
.dark-icon-card__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}
@media only screen and (min-width: 1400px) {
  .dark-icon-card__inner {
    gap: 1.25rem;
  }
}
.dark-icon-card__icon-wrap {
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
}
.dark-icon-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.dark-icon-card__title {
  font-weight: 500;
  margin-bottom: 0px;
}
.dark-icon-card__description {
  font-size: 0.875rem;
  font-weight: 500;
}
.dark-icon-card__arrow-wrap {
  width: 100%;
  text-align: right;
  line-height: 1;
  margin-top: auto;
}
.dark-icon-card__arrow-wrap svg {
  width: 1rem;
  transition: 0.25s;
  transform: translate(0px, 0px);
}
.dark-icon-card__arrow-wrap svg * {
  stroke: #64B053 !important;
}
.dark-icon-card:hover {
  color: #FFFFFF;
}
.dark-icon-card:hover .dark-icon-card__arrow-wrap svg {
  transform: translate(4px, 0px);
}

/* clients-carousel */
.clients-carousel__item {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: 0.75rem;
  height: 100%;
}
.clients-carousel .swiper-wrapper {
  align-items: stretch;
}
.clients-carousel .swiper-wrapper .swiper-slide {
  height: auto;
}

/*--------------------------------------------------------------
## SINGLE POST
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## OTHER PAGES
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## News
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Conference
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## AgriHoldings
--------------------------------------------------------------*/