@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600&display=swap");
body {
  font-family: "Titillium Web", sans-serif;
}

input[type=number] {
  -moz-appearance: textfield;
}

.no-arrows::-webkit-inner-spin-button,
.no-arrows::-webkit-outer-spin-button,
.no-arrows::-moz-number-spin-box {
  display: none;
}

.no-arrows::-moz-focus-inner {
  border: 0;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  background-color: white;
  overflow: visible;
}
.loader .wrapper-preloader {
  width: 150px;
  background-image: url("../preloader.gif");
  height: 150px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 99999;
  background-color: white;
}

a {
  text-decoration: none;
  outline: none;
  color: #282828;
  font-weight: 500;
}

p {
  color: #282828;
  font-weight: 500;
  font-size: 18px;
}

.wrapper-validation {
  min-height: calc(100vh - 360px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper-validation p {
  padding: 0 100px;
  text-align: center;
}
.wrapper-validation p strong {
  color: #00233d;
}

.first_navbar {
  background-color: #eff3f6;
  border-bottom: solid 1px rgba(82, 199, 32, 0.4392156863);
}
.first_navbar .nav-link {
  font-size: 14px;
  color: #00233d;
}
.first_navbar .nav-link i {
  color: #00923c;
  margin-right: 5px;
}
.first_navbar .nav_web {
  padding: 0.5rem;
  transition: 0.2s ease-out;
}
.first_navbar .nav_web i {
  transition: 0.2s ease-out;
}
.first_navbar .nav_web:hover i {
  color: #00233d;
}

.navbar-desktop {
  background-color: #ebf2f7;
  border-bottom: 1px solid #e4e4e4;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.navbar-desktop .wrapper-all {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.navbar-desktop .wrapper-all .wrapper-menu-items {
  display: flex;
  width: 100%;
}
.navbar-desktop .wrapper-all .wrapper-menu-items .navbar-brand img {
  width: 60px;
}
.navbar-desktop .wrapper-all .wrapper-menu-items .wrapper-menu-links {
  justify-content: flex-end;
}
.navbar-desktop .wrapper-all .wrapper-menu-items .nav-item .nav-link {
  font-weight: 500;
  position: relative;
  transition: 0.2s ease-out;
  padding-right: 0.6rem;
  padding-left: 0.6rem;
}
.navbar-desktop .wrapper-all .wrapper-menu-items .nav-item .nav-link i {
  color: #00923c;
}
.navbar-desktop .wrapper-all .wrapper-menu-items .nav-item .nav-link:hover {
  text-decoration: none;
  color: #282828;
  transition: 0.2s ease-out;
}
.navbar-desktop .wrapper-all .wrapper-menu-items .nav-item .nav-link:hover:before {
  left: 1px;
  width: 100%;
  transition: 0.2s ease-out;
}
.navbar-desktop .wrapper-all .wrapper-menu-items .nav-item .nav-link:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 5px;
  width: 0;
  height: 2px;
  background: #00923c;
  transition: 0.2s ease-out;
}
.navbar-desktop .wrapper-all .wrapper-menu-items .login {
  position: unset;
}
.navbar-desktop .wrapper-all .wrapper-menu-items .login .nav-link {
  color: #00923c;
}
.navbar-desktop .wrapper-all .wrapper-menu-items .login .nav-link:hover {
  color: #4ab11e;
}
.navbar-desktop .wrapper-all .wrapper-menu-items .login .nav-link:before {
  background-color: transparent;
}
.navbar-desktop .wrapper-all .wrapper-menu-items .logout {
  position: unset;
}
.navbar-desktop .wrapper-all .wrapper-menu-items .logout .nav-link {
  color: #ed1c24;
}
.navbar-desktop .wrapper-all .wrapper-menu-items .logout .nav-link:after {
  background-color: transparent;
}
.navbar-desktop .wrapper-all .wrapper-menu-items .logout .nav-link:hover {
  color: #ca1920;
}
.navbar-desktop .wrapper-all .wrapper-menu-items .active .nav-link:before {
  width: 100%;
}
.navbar-desktop .wrapper-all .wrapper-languages {
  display: flex;
}
.navbar-desktop .wrapper-all .wrapper-languages .dropbtn {
  background-color: transparent;
  color: #282828;
  font-size: 16px;
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  padding-right: 1rem !important;
}
.navbar-desktop .wrapper-all .wrapper-languages .dropbtn:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #00923c;
  margin: auto;
}
.navbar-desktop .wrapper-all .wrapper-languages .dropdown {
  position: relative;
  display: inline-block;
}
.navbar-desktop .wrapper-all .wrapper-languages .dropdown:hover .dropdown-content {
  display: block;
}
.navbar-desktop .wrapper-all .wrapper-languages .dropdown:hover .dropbtn {
  background-color: transparent;
}
.navbar-desktop .wrapper-all .wrapper-languages .dropdown-content {
  display: none;
  position: absolute;
  background-color: #ebf2f7;
  min-width: 280px;
  width: max-content;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3490196078);
  z-index: 1;
  left: 0;
  padding: 15px 30px 15px 15px;
}
.navbar-desktop .wrapper-all .wrapper-languages .dropdown-content a {
  color: #353535;
  padding-bottom: 10px;
  text-decoration: none;
  display: block;
  transition: 0.2s ease-out;
}
.navbar-desktop .wrapper-all .wrapper-languages .dropdown-content a:last-child {
  padding-bottom: 0;
}
.navbar-desktop .wrapper-all .wrapper-languages .dropdown-content a i {
  color: #00923c;
  margin-right: 5px;
  transition: 0.2s ease-out;
}
.navbar-desktop .wrapper-all .wrapper-languages .dropdown-content a:hover i {
  margin-right: 10px;
}
.navbar-desktop .wrapper-all .wrapper-languages .dropdown-content .active {
  color: #00923c;
}
.navbar-desktop .wrapper-all .wrapper-languages .dropdown-content .active i {
  margin-right: 10px;
}
.navbar-desktop .wrapper-all .wrapper-languages .custom-drop {
  padding-right: 15px;
}
.navbar-desktop .wrapper-all .wrapper-languages .custom-drop .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-desktop .wrapper-all .wrapper-languages .pl-1 {
  padding-right: 1rem;
}
.navbar-desktop .wrapper-all .wrapper-languages .nav-link:hover {
  color: #282828;
}

.navbar-mobile {
  display: none;
}

.section-home {
  padding: 100px 0 200px !important;
  position: relative;
  overflow: hidden;
}
.section-home:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(30, 40, 75, 0.6509803922);
}

.wrapper-call {
  position: fixed;
  right: -150px;
  top: 150px;
  z-index: 9999;
  transition: 0.2s ease-out;
}
.wrapper-call button {
  border: none;
  background-color: #ed1c24;
  padding: 10px 12px;
  font-size: 18px;
  transition: 0.2s ease-out;
  color: white;
  outline: none;
  box-shadow: none;
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
}
.wrapper-call button i {
  color: white;
  font-size: 24px;
  margin-right: 12px;
}
.wrapper-call:hover {
  transition: 0.2s ease-out;
  right: 0;
}
.wrapper-call:hover button {
  transition: 0.2s ease-out;
  background-color: #ca1920;
}
.wrapper-call:focus {
  right: -105px;
}
.wrapper-call .modal-body .wrapper-item {
  text-align: left;
  margin-bottom: 15px;
}
.wrapper-call .modal-body .wrapper-item label {
  margin-left: 0;
  color: #282828;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 4px;
}
.wrapper-call .modal-body .wrapper-item input, .wrapper-call .modal-body .wrapper-item textarea {
  border: 1px solid rgba(82, 199, 32, 0.4392156863);
  border-radius: 0;
  padding: 9px 14px;
  transition: 0.2s ease-out;
  outline: none;
  box-shadow: none;
}
.wrapper-call .modal-body .wrapper-item input:focus, .wrapper-call .modal-body .wrapper-item textarea:focus {
  border-color: #00923c;
}
.wrapper-call .modal-footer .call_btn {
  padding: 7px 16px;
  background-color: #ed1c24;
  color: white;
  transition: 0.2s ease-out;
  border: none;
  outline: none;
  box-shadow: none;
}
.wrapper-call .modal-footer .call_btn:hover {
  background-color: #ca1920;
}

.home-advantage {
  background: white;
}
.home-advantage .site_title {
  margin-bottom: 50px;
  padding-bottom: 5px;
  position: relative;
  color: #00233d;
}
.home-advantage .site_title:after {
  position: absolute;
  content: "";
  width: 70px;
  height: 2px;
  background-color: #00923c;
  left: 0;
  bottom: 0;
}
.home-advantage .advantage-inner {
  padding: 10px 10px 10px 45px;
  border: 1px solid rgba(82, 199, 32, 0.4392156863);
  margin-top: 15px;
  background: white;
  margin-left: 10px;
  transition: 0.3s ease-out;
  position: relative;
}
.home-advantage .advantage-inner .site_subtitle {
  transition: 0.3s ease-out;
  font-size: 24px;
}
.home-advantage .advantage-inner .icon-wrapper {
  border-radius: 50%;
  overflow: hidden;
  background: white;
  position: absolute;
  padding: 10px;
  left: -31px;
  top: calc(50% - 25px);
  transition: 0.3s ease-out;
}
.home-advantage .advantage-inner .icon-wrapper i {
  color: #00923c;
  font-size: 32px;
}
.home-advantage .advantage-inner:hover .site_subtitle {
  color: #00233d;
}
.home-advantage .advantage-inner:hover .icon-wrapper {
  transform: translateX(5px);
}

section {
  padding: 50px 0;
}

.main_title {
  position: relative;
  margin-bottom: 15px;
  color: #00233d;
}
.main_title:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  width: 70px;
  background-color: #52c720;
  height: 2px;
}

.section-quote .main_title {
  margin-bottom: 25px;
}
.section-quote .wrapper-price-nav {
  border-bottom: 2px solid rgba(82, 199, 32, 0.4392156863);
}
.section-quote .wrapper-price-nav .nav-link {
  border: none;
  font-weight: 500;
  font-size: 20px;
}
.section-quote .wrapper-price-nav .nav-link:hover {
  color: black;
}
.section-quote .wrapper-price-nav .active {
  border-bottom: 2px solid #00923c;
  color: #00233d;
  font-weight: 600;
  background-color: transparent;
}
.section-quote .tab-content {
  padding: 25px 10px;
}
.section-quote .wrapper-standard .wrapper-help {
  padding: 16px;
  background-color: rgba(237, 237, 237, 0.3019607843);
}
.section-quote .wrapper-standard .wrapper-help .second_title {
  font-weight: 200;
}
.section-quote .wrapper-standard .wrapper-container {
  margin-top: 15px;
}
.section-quote .wrapper-standard .wrapper-route {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}
.section-quote .wrapper-standard .wrapper-route h2 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0;
  color: #00233d;
}
.section-quote .wrapper-standard .wrapper-route span {
  width: 20px;
  height: 20px;
  border: solid 2px #00923c;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  position: relative;
  transition: 0.2s ease-out;
  cursor: pointer;
}
.section-quote .wrapper-standard .wrapper-route span i {
  font-size: 10px;
  color: #00923c;
}
.section-quote .wrapper-standard .wrapper-route span .wrapper-info-text {
  position: absolute;
  width: 200px;
  top: 28px;
  left: -12px;
  background-color: #F7F7F7;
  z-index: 9;
  border: 1px solid #BBB;
  padding: 8px;
  color: #282828;
  font-weight: 400;
  display: none;
  opacity: 0;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-standard .wrapper-route span .wrapper-info-text:after {
  content: "";
  position: absolute;
  top: -8px;
  background: #F7F7F7;
  width: 15px;
  z-index: 9;
  height: 15px;
  transform: rotate(45deg);
  left: 10px;
  border-left: 1px solid #BBB;
  border-top: 1px solid #BBB;
}
.section-quote .wrapper-standard .wrapper-route span:hover .wrapper-info-text {
  transition: 0.2s ease-out;
  display: block;
  opacity: 1;
}
.section-quote .wrapper-standard .wrapper-route .line {
  width: 100%;
  height: 1px;
  background-color: #9e9e9e;
}
.section-quote .wrapper-standard .form-group {
  font-weight: 500;
}
.section-quote .wrapper-standard .form-group label {
  font-size: 18px;
  margin-bottom: 5px;
}
.section-quote .wrapper-standard .form-group input {
  padding: 6px 16px;
  border-color: rgba(82, 199, 32, 0.4392156863);
  transition: 0.2s ease-out;
}
.section-quote .wrapper-standard .form-group input:focus {
  border-color: #00923c;
  outline: none;
  box-shadow: none;
}
.section-quote .wrapper-standard .form-group ::placeholder {
  color: #696969;
  font-weight: 500;
  font-size: 17px;
}
.section-quote .wrapper-standard .form-group .wrapper-select {
  position: relative;
  cursor: pointer;
}
.section-quote .wrapper-standard .form-group .wrapper-select:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.section-quote .wrapper-standard .form-group .wrapper-select select {
  cursor: pointer;
  border-color: rgba(82, 199, 32, 0.4392156863);
  transition: 0.2s ease-out;
}
.section-quote .wrapper-standard .form-group .wrapper-select select:focus {
  border-color: #00923c;
  outline: none;
  box-shadow: none;
}
.section-quote .wrapper-standard .form-group .wrapper-input-with-lg-or-sm {
  display: flex;
  border: solid 1px rgba(82, 199, 32, 0.4392156863);
  border-radius: 3px;
  align-items: center;
  padding-right: 10px;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-standard .form-group .wrapper-input-with-lg-or-sm input {
  border: none;
  width: 100%;
}
.section-quote .wrapper-standard .form-group .wrapper-input-with-lg-or-sm:hover {
  background-color: #00923c;
}
.section-quote .wrapper-standard .form-group .wrapper-input-with-lg-or-sm:hover span {
  color: white;
}
.section-quote .wrapper-standard .wrapper-submit {
  margin: 15px 0;
}
.section-quote .wrapper-standard .wrapper-submit input {
  background: #ed1c24;
  color: #FFF;
  padding: 6px 25px;
  border: none;
  box-shadow: none;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-standard .wrapper-submit input:hover {
  background-color: #ca1920;
}
.section-quote .wrapper-standard .wrapper-submit input:focus {
  outline: none;
}
.section-quote .wrapper-standard .for-input-number .wrapper-type-number .wrapper-i-number {
  display: flex;
  border: solid 1px rgba(82, 199, 32, 0.4392156863);
  height: 38px;
  justify-content: space-between;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-standard .for-input-number .wrapper-type-number .wrapper-i-number .minus, .section-quote .wrapper-standard .for-input-number .wrapper-type-number .wrapper-i-number .plus {
  background: white;
  color: rgba(82, 199, 32, 0.4392156863);
  font-size: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-standard .for-input-number .wrapper-type-number .wrapper-i-number .minus:hover, .section-quote .wrapper-standard .for-input-number .wrapper-type-number .wrapper-i-number .plus:hover {
  color: #00923c;
}
.section-quote .wrapper-standard .for-input-number .wrapper-type-number .wrapper-i-number input {
  width: calc(100% - 60px);
  text-align: center;
  height: 100%;
  border: none;
  border-radius: 0;
}
.section-quote .wrapper-standard .for-input-number .wrapper-type-number .wrapper-i-number:hover {
  background-color: #00923c;
}
.section-quote .wrapper-standard .wrapper-radio {
  padding: 10px 0;
}
.section-quote .wrapper-standard .wrapper-radio p {
  margin-bottom: 8px;
}
.section-quote .wrapper-standard .wrapper-radio [type=radio]:checked,
.section-quote .wrapper-standard .wrapper-radio [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.section-quote .wrapper-standard .wrapper-radio [type=radio]:checked + label,
.section-quote .wrapper-standard .wrapper-radio [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-weight: 500;
  line-height: 20px;
  display: inline-block;
  color: #282828;
}
.section-quote .wrapper-standard .wrapper-radio [type=radio]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  background: #fff;
  border: 2px solid #00923c;
}
.section-quote .wrapper-standard .wrapper-radio [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(82, 199, 32, 0.4392156863);
  border-radius: 100%;
  background: #fff;
}
.section-quote .wrapper-standard .wrapper-radio [type=radio]:checked + label:after,
.section-quote .wrapper-standard .wrapper-radio [type=radio]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #00923c;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-quote .wrapper-standard .wrapper-radio [type=radio]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.section-quote .wrapper-standard .wrapper-radio [type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.section-quote .wrapper-standard .wrapper-button button {
  padding: 7px 25px 7px 35px;
  background-color: #ed1c24;
  color: white;
  border: none;
  border-radius: 2px;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-standard .wrapper-button button span {
  position: relative;
  margin-right: 10px;
}
.section-quote .wrapper-standard .wrapper-button button span:before {
  content: "";
  position: absolute;
  right: 0;
  width: 12px;
  height: 1px;
  top: 50%;
  background: white;
  transition: 0.3s ease-out;
  transform: rotate(180deg);
}
.section-quote .wrapper-standard .wrapper-button button span:after {
  transition: 0.3s ease-out;
  content: "";
  position: absolute;
  right: 0;
  width: 12px;
  top: 50%;
  height: 1px;
  background: white;
  transform: rotate(270deg);
}
.section-quote .wrapper-standard .wrapper-button button:hover {
  background-color: #ca1920;
}
.section-quote .wrapper-standard .wrapper-button button:focus {
  outline: none;
}
.section-quote .wrapper-standard .wrapper-checkbox {
  position: relative;
  margin-top: 10px;
}
.section-quote .wrapper-standard .wrapper-checkbox input {
  display: none;
}
.section-quote .wrapper-standard .wrapper-checkbox label {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 18px;
  cursor: pointer;
}
.section-quote .wrapper-standard .wrapper-checkbox label:before,
.section-quote .wrapper-standard .wrapper-checkbox label:after {
  content: "";
  position: absolute;
}
.section-quote .wrapper-standard .wrapper-checkbox label:before {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(82, 199, 32, 0.4392156863);
  top: 1px;
  left: 0;
  border-radius: 3px;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-standard .wrapper-checkbox label:after {
  width: 0;
  height: 0;
  transition: width 0.2s ease-out;
  top: 6px;
  left: 4px;
  transform: rotate(-45deg);
  border-width: 0;
}
.section-quote .wrapper-standard .wrapper-checkbox input:checked + label:after {
  border: 0 solid #00923c;
  border-width: 0 0 3px 3px;
  height: 7px;
  width: 13px;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-standard .dangerous .select-dangerous {
  display: flex;
  justify-content: space-between;
}
.section-quote .wrapper-standard .dangerous .select-dangerous a {
  color: #00923c;
  font-weight: 600;
}
.section-quote .wrapper-standard .dangerous .select-dangerous a:hover {
  text-decoration: underline;
}
.section-quote .wrapper-standard .dangerous .card-body {
  border: none;
  background-color: #fafafa;
  font-size: 15px;
}
.section-quote .wrapper-standard .wrapper-input-k label {
  width: 100%;
  cursor: pointer;
  font-size: 18px;
  margin-bottom: 5px;
}
.section-quote .wrapper-standard .wrapper-input-k input {
  border: 1px solid rgba(82, 199, 32, 0.4392156863);
  padding: 6px 16px;
  box-shadow: none;
  outline: none;
  border-radius: 3px;
}
.section-quote .wrapper-standard .wrapper-input-k input:focus {
  border-color: #00923c;
}
.section-quote .wrapper-standard .wrapper-input-k ::-webkit-calendar-picker-indicator {
  filter: invert(75%) sepia(37%) saturate(5972%) hue-rotate(61deg) brightness(104%) contrast(79%);
}
.section-quote .wrapper-standard .wrapper-input-additional-input {
  display: flex;
  border: solid 1px rgba(82, 199, 32, 0.4392156863);
  border-radius: 3px;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-standard .wrapper-input-additional-input input {
  border: none;
}
.section-quote .wrapper-standard .wrapper-input-additional-input button {
  border: none;
  background-color: #ed1c24;
  outline: none;
  box-shadow: none;
  color: white;
  padding: 0 20px;
  text-transform: uppercase;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-standard .wrapper-input-additional-input button:hover {
  background-color: #ca1920;
}
.section-quote .wrapper-standard .wrapper-input-additional-input:hover {
  border-color: #00923c;
}
.section-quote .wrapper-standard .wrapper-import-information ul li {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}
.section-quote .wrapper-standard .wrapper-import-information ul li a {
  color: #00233d;
  text-decoration: underline;
}
.section-quote .wrapper-oversized .wrapper-online-and-disabled-buttons {
  display: flex;
  flex-direction: column;
}
.section-quote .wrapper-oversized .wrapper-online-and-disabled-buttons .wrapper-button {
  display: flex;
}
.section-quote .wrapper-oversized .wrapper-online-and-disabled-buttons .wrapper-button button {
  border: 1px solid #888;
  width: max-content;
  border-radius: 3px;
  margin-right: 25px;
  background-color: white;
  color: black;
  text-transform: uppercase;
  transition: 0.2s ease-out;
  border-color: rgba(82, 199, 32, 0.4392156863);
}
.section-quote .wrapper-oversized .wrapper-online-and-disabled-buttons .wrapper-button button:hover {
  border-color: #00923c;
  background-color: white;
}
.section-quote .wrapper-oversized .wrapper-online-and-disabled-buttons .wrapper-button button:focus {
  outline: none;
  border: 1px solid #00923c;
  box-shadow: none;
}
.section-quote .wrapper-oversized .wrapper-online-and-disabled-buttons .wrapper-button button:active {
  outline: none;
  border: 1px #00923c;
  box-shadow: none;
}
.section-quote .wrapper-oversized .wrapper-online-and-disabled-buttons .wrapper-button .active {
  border-color: #00923c;
  position: relative;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-oversized .wrapper-online-and-disabled-buttons .wrapper-button .active:after {
  position: absolute;
  content: "";
  background-color: #00923c;
  width: 30px;
  height: 30px;
  right: -15px;
  top: -15px;
  border-radius: 100%;
}
.section-quote .wrapper-oversized .wrapper-online-and-disabled-buttons .wrapper-button .active:before {
  content: "";
  border: 0 solid white;
  border-width: 0 0 3px 3px;
  height: 9px;
  width: 17px;
  transition: width 0.2s;
  top: -7px;
  right: -8px;
  transform: rotate(-45deg);
  z-index: 99;
  position: absolute;
}
.section-quote .wrapper-oversized .wrapper-online-and-disabled-buttons .wrapper-button .active:hover {
  border-color: #00923c;
}
.section-quote .wrapper-oversized .wrapper-route {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}
.section-quote .wrapper-oversized .wrapper-route h2 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0;
}
.section-quote .wrapper-oversized .wrapper-route span {
  width: 20px;
  height: 20px;
  border: solid 2px #00923c;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  position: relative;
  transition: 0.2s ease-out;
  cursor: pointer;
}
.section-quote .wrapper-oversized .wrapper-route span i {
  font-size: 10px;
  color: #00923c;
}
.section-quote .wrapper-oversized .wrapper-route span .wrapper-info-text {
  position: absolute;
  width: 200px;
  top: 28px;
  left: -12px;
  background-color: #F7F7F7;
  z-index: 9;
  border: 1px solid #BBB;
  padding: 8px;
  color: #282828;
  font-weight: 400;
  display: none;
  opacity: 0;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-oversized .wrapper-route span .wrapper-info-text:after {
  content: "";
  position: absolute;
  top: -8px;
  background: #F7F7F7;
  width: 15px;
  z-index: 9;
  height: 15px;
  transform: rotate(45deg);
  left: 10px;
  border-left: 1px solid #BBB;
  border-top: 1px solid #BBB;
}
.section-quote .wrapper-oversized .wrapper-route span:hover .wrapper-info-text {
  transition: 0.2s ease-out;
  display: block;
  opacity: 1;
}
.section-quote .wrapper-oversized .wrapper-route .line {
  width: 100%;
  height: 1px;
  background-color: #9e9e9e;
}
.section-quote .wrapper-oversized .wrapper-with-label {
  margin-bottom: 0;
}
.section-quote .wrapper-oversized .wrapper-with-label label {
  font-size: 18px;
}
.section-quote .wrapper-oversized .wrapper-with-label p {
  font-size: 17px;
}
.section-quote .wrapper-oversized .form-group {
  font-weight: 500;
}
.section-quote .wrapper-oversized .form-group label {
  font-size: 18px;
  margin-bottom: 5px;
}
.section-quote .wrapper-oversized .form-group input {
  padding: 6px 16px;
  border-color: rgba(82, 199, 32, 0.4392156863);
  transition: 0.2s ease-out;
}
.section-quote .wrapper-oversized .form-group input:focus {
  border-color: #00923c;
  outline: none;
  box-shadow: none;
}
.section-quote .wrapper-oversized .form-group textarea {
  padding: 6px 16px;
  border-color: rgba(82, 199, 32, 0.4392156863);
  transition: 0.2s ease-out;
}
.section-quote .wrapper-oversized .form-group textarea:focus {
  border-color: #00923c;
  outline: none;
  box-shadow: none;
}
.section-quote .wrapper-oversized .form-group ::placeholder {
  color: #696969;
  font-weight: 500;
  font-size: 17px;
}
.section-quote .wrapper-oversized .form-group .wrapper-select {
  position: relative;
  cursor: pointer;
}
.section-quote .wrapper-oversized .form-group .wrapper-select:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.section-quote .wrapper-oversized .form-group .wrapper-select select {
  cursor: pointer;
  border-color: rgba(82, 199, 32, 0.4392156863);
  transition: 0.2s ease-out;
}
.section-quote .wrapper-oversized .form-group .wrapper-select select:focus {
  border-color: #00923c;
  outline: none;
  box-shadow: none;
}
.section-quote .wrapper-oversized .form-group .wrapper-input-with-lg-or-sm {
  display: flex;
  border: solid 1px rgba(82, 199, 32, 0.4392156863);
  border-radius: 3px;
  align-items: center;
  padding-right: 10px;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-oversized .form-group .wrapper-input-with-lg-or-sm input {
  border: none;
  width: 100%;
}
.section-quote .wrapper-oversized .form-group .wrapper-input-with-lg-or-sm:hover {
  border-color: rgba(82, 199, 32, 0.4392156863);
}
.section-quote .wrapper-oversized .form-group .textarea-limit {
  text-align: right;
  font-size: 15px;
  margin: 10px 0;
}
.section-quote .wrapper-oversized .form-group .wrapper-file {
  width: 212px;
  position: relative;
  height: 38px;
}
.section-quote .wrapper-oversized .form-group .wrapper-file input {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.section-quote .wrapper-oversized .form-group .wrapper-file button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border: solid 2px #ed1c24;
  color: white;
  width: 100%;
  text-transform: uppercase;
  border-radius: 2px;
  transition: 0.2s ease-out;
  background: #ed1c24;
}
.section-quote .wrapper-oversized .form-group .wrapper-file button:hover {
  background-color: #ca1920;
}
.section-quote .wrapper-oversized .wrapper-bottom-button {
  margin: 25px 0 15px;
}
.section-quote .wrapper-oversized .wrapper-button button {
  padding: 7px 25px 7px 35px;
  background-color: #ed1c24;
  color: white;
  border: none;
  border-radius: 2px;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-oversized .wrapper-button button span {
  position: relative;
  margin-right: 10px;
}
.section-quote .wrapper-oversized .wrapper-button button span:before {
  content: "";
  position: absolute;
  right: 0;
  width: 12px;
  height: 1px;
  top: 50%;
  background: white;
  transition: 0.3s ease-out;
  transform: rotate(180deg);
}
.section-quote .wrapper-oversized .wrapper-button button span:after {
  transition: 0.3s ease-out;
  content: "";
  position: absolute;
  right: 0;
  width: 12px;
  top: 50%;
  height: 1px;
  background: white;
  transform: rotate(270deg);
}
.section-quote .wrapper-oversized .wrapper-button button:hover {
  background-color: #ca1920;
}
.section-quote .wrapper-oversized .wrapper-button button:focus {
  outline: none;
}
.section-quote .wrapper-oversized .wrapper-radio {
  padding: 10px 0;
}
.section-quote .wrapper-oversized .wrapper-radio p {
  margin-bottom: 8px;
}
.section-quote .wrapper-oversized .wrapper-radio [type=radio]:checked,
.section-quote .wrapper-oversized .wrapper-radio [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.section-quote .wrapper-oversized .wrapper-radio [type=radio]:checked + label,
.section-quote .wrapper-oversized .wrapper-radio [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-weight: 500;
  line-height: 20px;
  display: inline-block;
  color: #282828;
}
.section-quote .wrapper-oversized .wrapper-radio [type=radio]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  background: #fff;
  border: 2px solid #00923c;
}
.section-quote .wrapper-oversized .wrapper-radio [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(82, 199, 32, 0.4392156863);
  border-radius: 100%;
  background: #fff;
}
.section-quote .wrapper-oversized .wrapper-radio [type=radio]:checked + label:after,
.section-quote .wrapper-oversized .wrapper-radio [type=radio]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #00923c;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-quote .wrapper-oversized .wrapper-radio [type=radio]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.section-quote .wrapper-oversized .wrapper-radio [type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.section-quote .wrapper-oversized .wrapper-container {
  margin-top: 15px;
}
.section-quote .wrapper-oversized .wrapper-type-number .wrapper-i-number {
  display: flex;
  border: solid 1px rgba(82, 199, 32, 0.4392156863);
  height: 38px;
}
.section-quote .wrapper-oversized .wrapper-type-number .wrapper-i-number .minus, .section-quote .wrapper-oversized .wrapper-type-number .wrapper-i-number .plus {
  background: transparent;
  color: rgba(82, 199, 32, 0.4392156863);
  font-size: 30px;
  cursor: pointer;
  transition: 0.2s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
}
.section-quote .wrapper-oversized .wrapper-type-number .wrapper-i-number .minus:hover, .section-quote .wrapper-oversized .wrapper-type-number .wrapper-i-number .plus:hover {
  color: #00923c;
}
.section-quote .wrapper-oversized .wrapper-type-number .wrapper-i-number input {
  width: calc(100% - 60px);
  text-align: center;
  height: 100%;
  border: none;
}
.section-quote .wrapper-oversized .wrapper-type-number .wrapper-i-number:hover {
  border-color: rgba(82, 199, 32, 0.4392156863);
}
.section-quote .wrapper-oversized .wrapper-checkbox {
  position: relative;
  margin-top: 10px;
}
.section-quote .wrapper-oversized .wrapper-checkbox input {
  display: none;
}
.section-quote .wrapper-oversized .wrapper-checkbox label {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 18px;
  cursor: pointer;
}
.section-quote .wrapper-oversized .wrapper-checkbox label:before,
.section-quote .wrapper-oversized .wrapper-checkbox label:after {
  content: "";
  position: absolute;
}
.section-quote .wrapper-oversized .wrapper-checkbox label:before {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(82, 199, 32, 0.4392156863);
  top: 1px;
  left: 0;
  border-radius: 3px;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-oversized .wrapper-checkbox label:after {
  width: 0;
  height: 0;
  transition: width 0.2s ease-out;
  top: 6px;
  left: 4px;
  transform: rotate(-45deg);
  border-width: 0;
}
.section-quote .wrapper-oversized .wrapper-checkbox input:checked + label:after {
  border: 0 solid #00923c;
  border-width: 0 0 3px 3px;
  height: 7px;
  width: 13px;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-oversized .wrapper-input-additional-input {
  display: flex;
  border: solid 1px rgba(82, 199, 32, 0.4392156863);
  border-radius: 3px;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-oversized .wrapper-input-additional-input input {
  border: none;
}
.section-quote .wrapper-oversized .wrapper-input-additional-input button {
  border: none;
  background-color: #ed1c24;
  outline: none;
  box-shadow: none;
  color: white;
  padding: 0 20px;
  text-transform: uppercase;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-oversized .wrapper-input-additional-input button:hover {
  background-color: #ca1920;
}
.section-quote .wrapper-oversized .wrapper-input-additional-input:hover {
  border-color: #00923c;
}
.section-quote .wrapper-oversized .wrapper-submit {
  margin: 15px 0;
}
.section-quote .wrapper-oversized .wrapper-submit input {
  background: #ed1c24;
  color: #FFF;
  padding: 6px 25px;
  border: none;
  box-shadow: none;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-oversized .wrapper-submit input:hover {
  background-color: #ca1920;
}
.section-quote .wrapper-oversized .wrapper-submit input:focus {
  outline: none;
}
.section-quote .wrapper-oversized .wrapper-import-information ul li {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}
.section-quote .wrapper-oversized .wrapper-import-information ul li a {
  color: #00233d;
  text-decoration: underline;
}
.section-quote .wrapper-oversized .wrapper-help {
  padding: 16px 16px 32px 16px;
  border: solid 1px #BBB;
}
.section-quote .wrapper-oversized .wrapper-help .second_title {
  font-weight: 200;
}
.section-quote .wrapper-oversized .wrapper-help .link {
  background-color: #ed1c24;
  color: white;
  padding: 6px 25px;
  border-radius: 3px;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
}
.section-quote .wrapper-oversized .wrapper-help .link:hover {
  background-color: #ca1920;
}
.section-quote .wrapper-oversized .wrapper-help .link i {
  font-size: 18px;
  margin-left: 5px;
}
.section-quote .wrapper-oversized .wrapper-help .link:focus {
  border: none;
  outline: none;
  box-shadow: none;
}
.section-quote .wrapper-oversized .wrapper-help .link:active {
  border: none;
  outline: none;
  box-shadow: none;
}
.section-quote .wrapper-oversized .wrapper-help .link_href {
  color: #64B2D4;
  transition: 0.2s ease-out;
}
.section-quote .wrapper-oversized .wrapper-help .link_href:hover {
  text-decoration: underline;
  color: #00233d;
}

.wrapper-about {
  padding: 0;
}
.wrapper-about .wrapper-about-first-image {
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  background-size: cover;
  background-position: 50% 25%;
}
.wrapper-about .wrapper-about-first-image h2 {
  font-size: 50px;
  color: white;
}
.wrapper-about .wrapper-about-first-image p {
  font-size: 18px;
  color: white;
  padding-right: 25%;
}
.wrapper-about .wrapper-about-first-image .wrapper-first-link {
  margin: 35px 0 75px;
}
.wrapper-about .wrapper-about-first-image .wrapper-first-link a {
  padding: 10px 30px;
  background-color: #ed1c24;
  color: white;
  box-shadow: none;
  outline: none;
  transition: 0.2s ease-out;
  font-size: 20px;
  border: none;
}
.wrapper-about .wrapper-about-first-image .wrapper-first-link a i {
  margin-left: 5px;
  transition: 0.2s ease-out;
}
.wrapper-about .wrapper-about-first-image .wrapper-first-link a:hover {
  background-color: #ca1920;
}
.wrapper-about .wrapper-about-first-image .wrapper-first-link a:hover i {
  margin-left: 15px;
}
.wrapper-about .wrapper-about-first-image .wrapper-first-link a:focus i {
  margin-left: 5px;
}
.wrapper-about .section-wrapper-li a .wrapper-item {
  background-color: rgba(239, 243, 246, 0);
  background-image: linear-gradient(rgba(239, 243, 246, 0.0392156863), #eff3f6);
  padding: 25px 15px;
  border-radius: 1px;
  cursor: pointer;
  transition: 0.2s ease-out;
  webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.0784313725), 0 1px 10px 0 rgba(0, 0, 0, 0), 0 2px 4px -1px rgba(0, 0, 0, 0);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.0784313725), 0 1px 10px 0 rgba(0, 0, 0, 0), 0 2px 4px -1px rgba(0, 0, 0, 0);
  height: 100%;
}
.wrapper-about .section-wrapper-li a .wrapper-item .wrapper-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00923c;
  border-radius: 100%;
  transition: 0.5s ease-out;
  opacity: 0.6;
}
.wrapper-about .section-wrapper-li a .wrapper-item .wrapper-icon i {
  font-size: 32px;
  color: #e0e0e0;
  transform: rotateY(0);
  transition: 0.5s ease-out;
}
.wrapper-about .section-wrapper-li a .wrapper-item .wrapper-icon-text {
  text-align: center;
}
.wrapper-about .section-wrapper-li a .wrapper-item .wrapper-icon-text h2 {
  font-size: 24px;
  color: #00233d;
  position: relative;
  padding-bottom: 5px;
}
.wrapper-about .section-wrapper-li a .wrapper-item .wrapper-icon-text h2:after {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background-color: #00923c;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
}
.wrapper-about .section-wrapper-li a .wrapper-item .wrapper-icon-text p {
  color: #282828;
  margin-bottom: 0;
}
.wrapper-about .section-wrapper-li a .wrapper-item:hover {
  margin-top: -25px;
  background-color: #eff3f6;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.wrapper-about .section-wrapper-li a .wrapper-item:hover .wrapper-icon {
  background-color: #e0e0e0;
  opacity: 1;
}
.wrapper-about .section-wrapper-li a .wrapper-item:hover .wrapper-icon i {
  color: #00923c;
  transform: rotateY(180deg);
  transition: 0.5s ease-out;
}
.wrapper-about .wrapper-about-first-content {
  padding-top: 180px;
}
.wrapper-about .wrapper-about-first-content h2 {
  font-size: 40px;
  font-weight: 300;
  color: #00233d;
  margin-bottom: 15px;
}
.wrapper-about .wrapper-about-first-content p {
  color: #282828;
}
.wrapper-about .wrapper-about-first-content .owl-stage-outer {
  z-index: 99;
}
.wrapper-about .wrapper-about-first-content .owl-controls {
  position: relative;
}
.wrapper-about .wrapper-about-first-content .wrapper-image {
  position: relative;
}
.wrapper-about .wrapper-about-first-content .wrapper-image .wrapper-play {
  position: absolute;
  padding: 10px 20px;
  background-color: #ed1c24;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: max-content;
  margin: auto;
  height: max-content;
  z-index: 9;
  transition: 0.2s ease-out;
  cursor: pointer;
}
.wrapper-about .wrapper-about-first-content .wrapper-image .wrapper-play i {
  font-size: 15px;
  color: #eaeaea;
}
.wrapper-about .wrapper-about-first-content .wrapper-image:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3411764706);
}
.wrapper-about .wrapper-about-first-content .wrapper-image:hover .wrapper-play {
  background-color: #ca1920;
}
.wrapper-about .wrapper-about-first-content .owl-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -80px;
  right: -80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrapper-about .wrapper-about-first-content .owl-nav .owl-prev span {
  left: 0;
}
.wrapper-about .wrapper-about-first-content .owl-nav .owl-prev span:hover {
  color: #ca1920;
  margin-left: 5px;
}
.wrapper-about .wrapper-about-first-content .owl-nav .owl-prev span:active {
  color: #ed1c24;
  margin-left: 0;
}
.wrapper-about .wrapper-about-first-content .owl-nav .owl-next span {
  right: 0;
}
.wrapper-about .wrapper-about-first-content .owl-nav .owl-next span:hover {
  color: #ca1920;
  margin-right: 5px;
}
.wrapper-about .wrapper-about-first-content .owl-nav .owl-next span:active {
  color: #ed1c24;
  margin-right: 0;
}
.wrapper-about .wrapper-about-first-content .owl-nav button {
  position: relative;
}
.wrapper-about .wrapper-about-first-content .owl-nav button span {
  display: block;
  font-size: 80px;
  margin-top: -75px;
  text-align: center;
  color: #ed1c24;
  transition: 0.2s ease-out;
  position: absolute;
}
.wrapper-about .wrapper-about-first-content a {
  margin-right: 10px;
  padding: 7px 16px;
  background-color: #ed1c24;
  color: white;
  box-shadow: none;
  outline: none;
  transition: 0.2s ease-out;
  font-size: 16px;
  border: none;
}
.wrapper-about .wrapper-about-first-content a i {
  margin-left: 5px;
  transition: 0.2s ease-out;
}
.wrapper-about .wrapper-about-first-content a:hover {
  background-color: #ca1920;
}
.wrapper-about .wrapper-about-first-content a:hover i {
  margin-left: 15px;
}
.wrapper-about .wrapper-about-first-content a:focus i {
  margin-left: 5px;
}
.wrapper-about .wrapper_service_transparent {
  height: 150px;
  background-color: #eff3f6;
}
.wrapper-about .wrapper-same-section {
  background-position: 100% 50%;
  background-size: cover;
  padding: 100px 0;
  margin-bottom: 4px;
  position: relative;
}
.wrapper-about .wrapper-same-section a {
  margin-right: 10px;
  padding: 7px 16px;
  background-color: #ed1c24;
  color: white;
  box-shadow: none;
  outline: none;
  transition: 0.2s ease-out;
  font-size: 16px;
  border: none;
}
.wrapper-about .wrapper-same-section a i {
  margin-left: 5px;
  transition: 0.2s ease-out;
}
.wrapper-about .wrapper-same-section a:hover {
  background-color: #ca1920;
}
.wrapper-about .wrapper-same-section a:hover i {
  margin-left: 15px;
}
.wrapper-about .wrapper-same-section a:focus i {
  margin-left: 5px;
}
.wrapper-about .wrapper-same-section .col-lg-8 {
  z-index: 9;
}
.wrapper-about .wrapper-same-section .wrapper-text {
  padding: 24px 16px;
  background-color: rgba(239, 243, 246, 0.0117647059);
  background-image: linear-gradient(rgba(239, 243, 246, 0.2784313725), #eff3f6);
  transition: 0.2s ease-out;
}
.wrapper-about .wrapper-same-section .wrapper-text h2 {
  font-size: 40px;
  color: #00233d;
  font-weight: 300;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 5px;
  transition: 0.2s ease-out;
}
.wrapper-about .wrapper-same-section .wrapper-text h2:after {
  position: absolute;
  content: "";
  width: 70px;
  background-color: #00923c;
  height: 2px;
  left: 0;
  bottom: 0;
  transition: 0.2s ease-out;
}
.wrapper-about .wrapper-same-section .wrapper-text p {
  font-size: 16px;
  color: #282828;
  margin-bottom: 10px;
}
.wrapper-about .wrapper-same-section .wrapper-text:hover {
  background-color: #eff3f6;
}
.wrapper-about .wrapper-same-section .wrapper-text:hover h2:after {
  width: 100px;
  transition: 0.2s ease-out;
}
.wrapper-about .wrapper-same-section .wrapper-text:hover a {
  background-color: #ca1920;
}
.wrapper-about .wrapper-same-section .wrapper-text:hover a i {
  margin-left: 15px;
}
.wrapper-about .wrapper-same-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3411764706);
}
.wrapper-about .wrapper-news {
  padding: 150px 0 50px;
  background: #eff3f6;
}
.wrapper-about .wrapper-news h2 {
  font-weight: 300;
  font-size: 50px;
  color: #282828;
  margin-bottom: 36px;
}
.wrapper-about .wrapper-news .wrapper-item {
  background-color: #f7f7f7;
  transition: 0.2s ease-out;
  height: 100%;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1019607843);
}
.wrapper-about .wrapper-news .wrapper-item .wrapper-image img {
  width: 100%;
}
.wrapper-about .wrapper-news .wrapper-item .wrapper-text {
  padding: 16px 12px;
}
.wrapper-about .wrapper-news .wrapper-item .wrapper-text h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #282828;
}
.wrapper-about .wrapper-news .wrapper-item .wrapper-text p {
  color: #282828;
  font-size: 16px;
}
.wrapper-about .wrapper-news .wrapper-item:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1215686275), 0 12px 12px rgba(0, 0, 0, 0.1215686275);
}
.wrapper-about .wrapper-news .wrapper-item:hover .wrapper-text h4 {
  color: #00233d;
}
.wrapper-about .wrapper-partner {
  background-color: #ffffff;
  position: relative;
}
.wrapper-about .wrapper-partner .owl-theme {
  position: relative;
}
.wrapper-about .wrapper-partner .owl-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -80px;
  right: -80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrapper-about .wrapper-partner .owl-nav .owl-prev span {
  left: 0;
}
.wrapper-about .wrapper-partner .owl-nav .owl-prev span:hover {
  color: #ca1920;
  margin-left: 5px;
}
.wrapper-about .wrapper-partner .owl-nav .owl-prev span:active {
  color: #ed1c24;
  margin-left: 0;
}
.wrapper-about .wrapper-partner .owl-nav .owl-next span {
  right: 0;
}
.wrapper-about .wrapper-partner .owl-nav .owl-next span:hover {
  color: #ca1920;
  margin-right: 5px;
}
.wrapper-about .wrapper-partner .owl-nav .owl-next span:active {
  color: #ed1c24;
  margin-right: 0;
}
.wrapper-about .wrapper-partner .owl-nav button {
  position: relative;
}
.wrapper-about .wrapper-partner .owl-nav button span {
  display: block;
  font-size: 60px;
  margin-top: -55px;
  text-align: center;
  color: #ed1c24;
  transition: 0.2s ease-out;
  position: absolute;
}
.wrapper-about .wrapper-partner .owl-carousel .owl-stage-outer {
  z-index: 9;
}

.services_template .wrapper-image {
  float: right;
  width: 50%;
}
.services_template p {
  font-size: 16px;
}
.services_template .wrapper-member {
  padding: 15px;
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.1411764706), 0 1px 10px 0 rgba(0, 0, 0, 0.1215686275), 0 2px 4px -1px rgba(0, 0, 0, 0.3019607843);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.1411764706), 0 1px 10px 0 rgba(0, 0, 0, 0.1215686275), 0 2px 4px -1px rgba(0, 0, 0, 0.3019607843);
}
.services_template .wrapper-member .wrapper-image {
  overflow: hidden;
  float: unset;
  width: 100%;
}
.services_template .wrapper-member .wrapper-image img {
  transform: scale(1);
  transition: 0.3s ease-out;
}
.services_template .wrapper-member .wrapper-description {
  position: relative;
}
.services_template .wrapper-member .wrapper-description .wrapper-icons {
  position: absolute;
  top: -38px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}
.services_template .wrapper-member .wrapper-description .wrapper-icons a {
  margin: 0 7px;
  padding: 5px 10px;
  background-color: white;
  transition: 0.2s ease-out;
  border-radius: 2px;
}
.services_template .wrapper-member .wrapper-description .wrapper-icons a i {
  font-size: 20px;
  color: #00923c;
}
.services_template .wrapper-member .wrapper-description .wrapper-icons a:hover {
  margin-top: -8px;
}
.services_template .wrapper-member .wrapper-description .wrapper-text {
  text-align: left;
  margin-top: 20px;
}
.services_template .wrapper-member .wrapper-description .wrapper-text h2 {
  font-size: 20px;
  text-align: left;
}
.services_template .wrapper-member .wrapper-description .wrapper-text h2:after {
  margin: unset;
}
.services_template .wrapper-member:hover .wrapper-image img {
  transition: 0.3s ease-out;
  transform: scale(1.1);
}
.services_template .wrapper-ul-items {
  margin-bottom: 32px;
}
.services_template .wrapper-ul-items li {
  color: #00923c;
  font-size: 18px;
  margin-bottom: 5px;
}
.services_template .wrapper-ul-items li span {
  color: #282828;
}
.services_template .wrapper-comments {
  box-shadow: rgba(0, 0, 0, 0.1098039216) 0 15px 30px 0, rgba(0, 0, 0, 0.0784313725) 0 5px 15px 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1098039216) 0 15px 30px 0, rgba(0, 0, 0, 0.0784313725) 0 5px 15px 0;
  padding: 32px 16px 32px 16px;
  background: #eff3f6;
  margin-bottom: 25px;
}
.services_template .wrapper-comments .wrapper-text .wrapper-name-and-date {
  display: flex;
  align-items: center;
}
.services_template .wrapper-comments .wrapper-text .wrapper-name-and-date h2 {
  font-size: 18px;
  text-align: left;
}
.services_template .wrapper-comments .wrapper-text .wrapper-name-and-date h2:after {
  width: 40px;
  margin: unset;
}
.services_template .wrapper-comments .wrapper-text .wrapper-name-and-date p {
  font-size: 14px;
  color: #848484;
  margin-left: 50px;
}
.services_template .wrapper-comments .wrapper-text .wrapper-name-and-date p i {
  color: #00923c;
  margin-right: 7px;
  font-size: 15px;
}
.services_template .wrapper-comments .wrapper-text p {
  font-size: 15px;
}
.services_template .wrapper-create-comment {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
}
.services_template .wrapper-create-comment label {
  font-size: 16px;
  margin-bottom: 4px;
}
.services_template .wrapper-create-comment textarea {
  width: 100%;
  min-height: 120px;
  border: 1px solid rgba(82, 199, 32, 0.4392156863);
  border-radius: 0;
  transition: 0.2s ease-out;
  box-shadow: none;
  outline: none;
}
.services_template .wrapper-create-comment textarea:focus {
  border-color: #00923c;
}
.services_template .wrapper-create-comment .wrapper-button {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-top: 15px;
}
.services_template .wrapper-create-comment .wrapper-button input {
  padding: 7px 16px;
  background-color: #ed1c24;
  color: white;
  transition: 0.2s ease-out;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 1px;
}
.services_template .wrapper-create-comment .wrapper-button input:hover {
  background-color: #ca1920;
}
.services_template .wrapper-create-comment .wrapper-button a {
  padding: 7px 16px;
  background-color: #ed1c24;
  color: white;
  transition: 0.2s ease-out;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 1px;
}
.services_template .wrapper-create-comment .wrapper-button a:hover {
  background-color: #ca1920;
}

.wrapper-faq h2 {
  color: #00233d;
  text-align: center;
  position: relative;
  margin-bottom: 15px;
}
.wrapper-faq h2:after {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  right: 0;
  width: 70px;
  height: 2px;
  background-color: #00923c;
  margin: auto;
}
.wrapper-faq h6 {
  margin: 0 auto 75px;
  text-align: center;
  font-size: 18px;
}
.wrapper-faq .wrapper-item {
  margin-bottom: 15px;
}
.wrapper-faq .wrapper-item .accordion .card-header {
  padding: 0.25rem 2.5rem 0.25rem 0.25rem;
  margin-bottom: 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.wrapper-faq .wrapper-item .accordion .card-header .close-btn {
  position: relative;
  width: 100%;
  text-align: left;
  box-shadow: none;
  outline: none;
  color: #282828;
  font-size: 20px;
}
.wrapper-faq .wrapper-item .accordion .card-header .close-btn:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 20px;
  transition: 0.2s;
  right: -23px;
  background-color: #00923c;
  top: 0;
  bottom: 0;
  margin: auto;
}
.wrapper-faq .wrapper-item .accordion .card-header .close-btn:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  transition: 0.2s;
  right: -32px;
  top: 0;
  background-color: #00923c;
  bottom: 0;
  margin: auto;
}
.wrapper-faq .wrapper-item .accordion .card-header .open-btn {
  position: relative;
}
.wrapper-faq .wrapper-item .accordion .card-header .open-btn:after {
  height: 0;
  transition: 0.2s;
}
.wrapper-faq .wrapper-item .accordion .card-body p {
  margin: 0;
}

.wrapper-booking .book-title {
  position: relative;
  margin-bottom: 15px;
  color: #00233d;
}
.wrapper-booking .book-title:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  width: 70px;
  background-color: #00923c;
  height: 2px;
}
.wrapper-booking fieldset {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1411764706), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.1215686275);
  padding: 16px 24px;
  background-color: white;
}
.wrapper-booking fieldset legend {
  width: max-content;
  float: unset;
  padding: 0 10px;
  font-size: 16px;
}
.wrapper-booking fieldset .wrapper-button {
  margin-bottom: 16px;
}
.wrapper-booking fieldset .wrapper-button .wrapper-buttons {
  /* The '+' is the adjacent sibling selector.
  It selects what ever element comes right after it,
  as long as it is a sibling. */
}
.wrapper-booking fieldset .wrapper-button .wrapper-buttons input[type=radio] {
  display: none;
}
.wrapper-booking fieldset .wrapper-button .wrapper-buttons label {
  padding: 10px 16px;
  display: inline-block;
  border: 1px solid rgba(82, 199, 32, 0.4392156863);
  cursor: pointer;
  width: 100%;
  color: #282828;
  border-radius: 3px;
}
.wrapper-booking fieldset .wrapper-button .wrapper-buttons .blank-label {
  display: none;
}
.wrapper-booking fieldset .wrapper-button .wrapper-buttons input[type=radio]:checked + label {
  background: #ed1c24;
  color: #fff;
  border-color: #ed1c24;
}
.wrapper-booking fieldset .wrapper-input {
  background-color: white;
}
.wrapper-booking fieldset .wrapper-input label {
  width: 100%;
  cursor: pointer;
  margin-bottom: 8px;
  margin-left: 0;
}
.wrapper-booking fieldset .wrapper-input input {
  border: 1px solid rgba(82, 199, 32, 0.4392156863);
  border-radius: 0;
  padding: 11px 16px;
  box-shadow: none;
  outline: none;
}
.wrapper-booking fieldset .wrapper-input input:focus {
  border-color: #00923c;
}
.wrapper-booking .wrapper-checkbox {
  position: relative;
  margin: 15px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.wrapper-booking .wrapper-checkbox input {
  display: none;
}
.wrapper-booking .wrapper-checkbox label {
  position: relative;
  padding-left: 30px;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease-out;
}
.wrapper-booking .wrapper-checkbox label:before,
.wrapper-booking .wrapper-checkbox label:after {
  content: "";
  position: absolute;
  transition: 0.2s ease-out;
}
.wrapper-booking .wrapper-checkbox label:before {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(82, 199, 32, 0.4392156863);
  top: 1px;
  left: 0;
  border-radius: 3px;
  transition: 0.2s ease-out;
}
.wrapper-booking .wrapper-checkbox label:after {
  width: 0;
  height: 0;
  transition: width 0.2s ease-out;
  top: 6px;
  left: 4px;
  transform: rotate(-45deg);
  border-width: 0;
}
.wrapper-booking .wrapper-checkbox input:checked + label:after {
  border: 0 solid #00923c;
  border-width: 0 0 3px 3px;
  height: 7px;
  width: 13px;
  transition: 0.2s ease-out;
}
.wrapper-booking .wrapper-checkbox .wrapper-info {
  display: none;
  align-items: center;
}
.wrapper-booking .wrapper-checkbox .wrapper-info span {
  width: 20px;
  height: 20px;
  border: solid 2px rgba(82, 199, 32, 0.4392156863);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  transition: 0.2s ease-out;
  cursor: pointer;
}
.wrapper-booking .wrapper-checkbox .wrapper-info span i {
  font-size: 10px;
  color: #00923c;
  margin-left: 6px;
}
.wrapper-booking .wrapper-checkbox .wrapper-info span strong {
  position: absolute;
  width: 100%;
  top: 40px;
  left: 0;
  z-index: 9;
  color: white;
  font-weight: 400;
  display: none;
  opacity: 0;
  transition: 0.2s ease-out;
  padding: 16px;
  background-color: #00923c;
  border-radius: 5px;
}
.wrapper-booking .wrapper-checkbox .wrapper-info span:hover strong {
  transition: 0.2s ease-out;
  display: block;
  opacity: 1;
}
.wrapper-booking .wrapper-checkbox .wrapper-info span:hover:after {
  opacity: 1;
}
.wrapper-booking .wrapper-checkbox .wrapper-info span:after {
  content: "";
  margin-top: 58px;
  background: #00923c;
  width: 15px;
  z-index: 9;
  height: 15px;
  transform: rotate(45deg);
  border-left: 1px solid #00923c;
  border-top: 1px solid #00923c;
  opacity: 0;
  margin-left: -9px;
}
.wrapper-booking .wrapper-checkbox .wrapper-info strong {
  font-weight: 400;
  color: #00923c;
}
.wrapper-booking .wrapper-input {
  background-color: transparent;
  margin: 15px 0;
}
.wrapper-booking .wrapper-input label {
  width: 100%;
  cursor: pointer;
  margin-bottom: 8px;
  margin-left: 0 !important;
}
.wrapper-booking .wrapper-input input {
  border: 1px solid rgba(82, 199, 32, 0.4392156863);
  border-radius: 0;
  padding: 11px 16px;
  box-shadow: none;
  outline: none;
}
.wrapper-booking .wrapper-input input:focus {
  border-color: #00923c;
}
.wrapper-booking .wrapper-input ::-webkit-calendar-picker-indicator {
  filter: invert(75%) sepia(37%) saturate(5972%) hue-rotate(61deg) brightness(104%) contrast(79%);
}
.wrapper-booking .wrapper-input-middle {
  background-color: white;
}
.wrapper-booking .wrapper-input-middle label {
  width: 100%;
  cursor: pointer;
  margin-bottom: 8px;
}
.wrapper-booking .wrapper-input-middle input {
  border: 1px solid #535353;
  border-radius: 0;
  padding: 11px 16px;
  box-shadow: none;
  outline: none;
}
.wrapper-booking .wrapper-input-middle input:focus {
  border-color: #00923c;
}
.wrapper-booking .wrapper-middle {
  margin: 10px 0 20px;
}
.wrapper-booking .wrapper-middle p {
  font-size: 15px;
}
.wrapper-booking .wrapper-middle .wrapper-item {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1411764706), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.1215686275);
  border-top: 1px solid #ededed;
  border-left: 1px solid #ededed;
  padding: 24px;
}
.wrapper-booking .wrapper-middle .wrapper-item .title {
  position: relative;
  padding-left: 52px;
  display: flex;
  align-items: center;
  padding-top: 10px;
  font-size: 16px;
}
.wrapper-booking .wrapper-middle .wrapper-item .title .wrapper-icon {
  background-color: #ededed;
  padding: 9px 7px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 16px;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 0;
}
.wrapper-booking .wrapper-middle .wrapper-item .title .wrapper-icon i {
  color: #00923c;
  font-size: 20px !important;
}
.wrapper-booking .wrapper-middle .wrapper-item p {
  padding-left: 52px;
  padding-top: 5px;
}
.wrapper-booking .wrapper-middle .wrapper-item .wrapper-input {
  padding-right: 52px;
  padding-left: 52px;
  margin-top: 0 !important;
}
.wrapper-booking .wrapper-middle .wrapper-item .wrapper-input label {
  margin-bottom: 0 !important;
}
.wrapper-booking .wrapper-middle .wrapper-item .wrapper-input input, .wrapper-booking .wrapper-middle .wrapper-item .wrapper-input select {
  border: 1px solid rgba(82, 199, 32, 0.4392156863);
  border-radius: 0;
  padding: 11px 7px;
  box-shadow: none;
  outline: none;
  text-align: start !important;
}
.wrapper-booking .wrapper-middle .wrapper-item .wrapper-input input:focus, .wrapper-booking .wrapper-middle .wrapper-item .wrapper-input select:focus {
  border-color: #00923c;
}
.wrapper-booking .wrapper-middle .wrapper-item .wrapper-bottom {
  margin: 24px -24px -24px;
  padding: 16px;
  text-align: center;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: center;
}
.wrapper-booking .wrapper-middle .wrapper-item .wrapper-bottom button {
  padding: 7px 16px 7px 26px;
  width: max-content;
  background-color: #ed1c24;
  color: white;
  border: none;
  border-radius: 2px;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  transition: 0.2s ease-out;
}
.wrapper-booking .wrapper-middle .wrapper-item .wrapper-bottom button span {
  position: relative;
  margin-right: 10px;
}
.wrapper-booking .wrapper-middle .wrapper-item .wrapper-bottom button span:before {
  content: "";
  position: absolute;
  right: 0;
  width: 12px;
  height: 1px;
  top: 50%;
  background: white;
  transition: 0.3s ease-out;
  transform: rotate(180deg);
}
.wrapper-booking .wrapper-middle .wrapper-item .wrapper-bottom button span:after {
  transition: 0.3s ease-out;
  content: "";
  position: absolute;
  right: 0;
  width: 12px;
  top: 50%;
  height: 1px;
  background: white;
  transform: rotate(270deg);
}
.wrapper-booking .wrapper-middle .wrapper-item .wrapper-bottom button:hover {
  background-color: #ca1920;
}
.wrapper-booking .wrapper-middle .wrapper-item .wrapper-bottom button:focus {
  outline: none;
}
.wrapper-booking .wrapper-middle .wrapper-item .wrapper-bottom button:active {
  background-color: #ed1c24;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-input {
  position: relative;
  padding-left: 0;
  padding-right: 0;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-input input {
  background-color: white;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-input .wrapper-search-result {
  position: absolute;
  top: 85px;
  left: 0;
  right: 0;
  height: max-content;
  max-height: 360px;
  overflow-y: auto;
  background-color: white;
  z-index: 9;
  border: solid 1px rgba(82, 199, 32, 0.4392156863);
  display: none;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-input .wrapper-search-result .wrapper-item-content {
  width: 100%;
  padding: 8px 16px;
  color: #00923c;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s ease-out;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-input .wrapper-search-result .wrapper-item-content:hover {
  background-color: #00923c;
  color: white;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-input .wrapper-search-result .active_commodity {
  background-color: #00923c;
  color: white;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-input .wrapper-container-result {
  position: absolute;
  top: 85px;
  left: 0;
  right: 0;
  height: max-content;
  max-height: 360px;
  overflow-y: auto;
  background-color: white;
  z-index: 9;
  border: solid 1px rgba(82, 199, 32, 0.4392156863);
  display: none;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-input .wrapper-container-result .wrapper-item-container {
  width: 100%;
  padding: 8px 16px;
  color: #00923c;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s ease-out;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-input .wrapper-container-result .wrapper-item-container:hover {
  background-color: #00923c;
  color: white;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-input .wrapper-container-result .active_container {
  background-color: #00923c;
  color: white;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-check {
  margin-top: 46px;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-check .wrapper-checkbox {
  margin: 0 0 5px 0 !important;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item b {
  width: 100%;
  height: 1px;
  margin: 25px 0 15px;
  background-color: #d6d6d6;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-type-number .wrapper-i-number {
  display: flex;
  border: solid 1px rgba(82, 199, 32, 0.4392156863);
  transition: 0.2s ease-out;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-type-number .wrapper-i-number .minus, .wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-type-number .wrapper-i-number .plus {
  background: white;
  color: rgba(82, 199, 32, 0.4392156863);
  font-size: 30px;
  cursor: pointer;
  transition: 0.2s ease-out;
  display: flex;
  justify-content: center;
  width: 50px;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-type-number .wrapper-i-number .minus:hover, .wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-type-number .wrapper-i-number .plus:hover {
  color: #00923c;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-type-number .wrapper-i-number input, .wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-type-number .wrapper-i-number select {
  width: calc(100% - 10px);
  text-align: center;
  height: 46px;
  border: none;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-type-number .wrapper-i-number input {
  text-align: center !important;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-type-number .wrapper-i-number:hover {
  background-color: #00923c;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-check-bottom {
  margin-top: 5px;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-bottom-button button {
  padding: 7px 16px 7px 26px;
  width: max-content;
  background-color: #ededed;
  color: #868686;
  border: none;
  border-radius: 2px;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.2s ease-out;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-bottom-button button span {
  position: relative;
  margin-right: 10px;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-bottom-button button span:before {
  content: "";
  position: absolute;
  right: 0;
  width: 12px;
  height: 1px;
  top: 50%;
  background: #868686;
  transition: 0.3s ease-out;
  transform: rotate(180deg);
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-bottom-button button span:after {
  transition: 0.3s ease-out;
  content: "";
  position: absolute;
  right: 0;
  width: 12px;
  top: 50%;
  height: 1px;
  background: #868686;
  transform: rotate(270deg);
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-bottom-button button:hover {
  background-color: #ededed;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-bottom-button button:focus {
  outline: none;
}
.wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-bottom-button button:active {
  background-color: transparent;
}
.wrapper-booking .wrapper-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
}
.wrapper-booking .wrapper-submit input {
  padding: 7px 16px;
  background-color: #ed1c24;
  color: white;
  text-transform: uppercase;
  border: none;
  box-shadow: none;
  outline: none;
  transition: 0.2s ease-out;
}
.wrapper-booking .wrapper-submit input:hover {
  background-color: #ca1920;
}
.wrapper-booking .wrapper-submit input:active {
  background-color: #ed1c24;
}

.wrapper-contact #map {
  height: 500px;
}
.wrapper-contact .wrapper-contact-form {
  padding-left: 25px;
}
.wrapper-contact .wrapper-contact-form h1 {
  text-transform: uppercase;
  font-weight: 200;
  font-size: 32px;
  margin-bottom: 0;
  letter-spacing: 3px;
}
.wrapper-contact .wrapper-contact-form p {
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 48px;
}
.wrapper-contact .wrapper-contact-form .wrapper-item {
  margin-bottom: 16px;
}
.wrapper-contact .wrapper-contact-form .wrapper-item label {
  font-size: 14px;
  color: #8e8e8e;
  text-transform: uppercase;
}
.wrapper-contact .wrapper-contact-form .wrapper-item input {
  font-weight: 600;
  border: none;
  border-bottom: solid 1px #00923c;
  border-radius: 0;
  padding: 10px 0;
  font-size: 15px;
  color: #282828;
  transition: 0.2s ease-out;
  opacity: 1;
}
.wrapper-contact .wrapper-contact-form .wrapper-item input:focus {
  box-shadow: none;
  outline: none;
}
.wrapper-contact .wrapper-contact-form .wrapper-item input:hover {
  opacity: 0.5;
}
.wrapper-contact .wrapper-contact-form .wrapper-item textarea {
  font-weight: 600;
  border: none;
  border-bottom: solid 1px #00923c;
  border-radius: 0;
  padding: 10px 0;
  font-size: 15px;
  color: #282828;
  transition: 0.2s ease-out;
  opacity: 1;
  min-height: 120px;
  resize: none;
}
.wrapper-contact .wrapper-contact-form .wrapper-item textarea:focus {
  box-shadow: none;
  outline: none;
}
.wrapper-contact .wrapper-contact-form .wrapper-item textarea:hover {
  opacity: 0.5;
}
.wrapper-contact .wrapper-contact-form .wrapper-button {
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
  margin-bottom: 100px;
}
.wrapper-contact .wrapper-contact-form .wrapper-button input {
  padding: 7px 16px;
  background-color: #ed1c24;
  color: white;
  transition: 0.2s ease-out;
  border: none;
  outline: none;
  box-shadow: none;
}
.wrapper-contact .wrapper-contact-form .wrapper-button input:hover {
  background-color: #ca1920;
}
.wrapper-contact .wrapper-contact-form .wrapper-button input:focus {
  background-color: #ed1c24;
}
.wrapper-contact a {
  color: #282828;
  transition: 0.2s ease-out;
}
.wrapper-contact a:hover {
  color: #00923c;
}
.wrapper-contact .wrapper-item-contact {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 25px 15px;
  webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.2196078431), 0 1px 10px 0 rgba(0, 0, 0, 0.2196078431), 0 2px 4px -1px rgba(0, 0, 0, 0.2196078431);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.2196078431), 0 1px 10px 0 rgba(0, 0, 0, 0.2196078431), 0 2px 4px -1px rgba(0, 0, 0, 0.2196078431);
  margin: -50px 0 50px;
}
.wrapper-contact .wrapper-item-contact i {
  font-size: 32px;
  margin-bottom: 15px;
  color: #00923c;
}

.wrapper-footer {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  background: #eff3f6;
}
.wrapper-footer .wrapper-image img {
  width: 130px;
}
.wrapper-footer .wrapper-text h2 {
  font-size: 24px;
  color: #00233d;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 5px;
}
.wrapper-footer .wrapper-text h2:after {
  position: absolute;
  content: "";
  background-color: #00923c;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
}
.wrapper-footer .wrapper-text p {
  color: #282828;
  font-size: 16px;
}
.wrapper-footer .wrapper-text a {
  margin-right: 10px;
  padding: 7px 16px;
  background-color: #ed1c24;
  color: white;
  box-shadow: none;
  outline: none;
  transition: 0.2s ease-out;
  font-size: 16px;
  border: none;
}
.wrapper-footer .wrapper-text a i {
  margin-left: 5px;
  transition: 0.2s ease-out;
}
.wrapper-footer .wrapper-text a:hover {
  background-color: #ca1920;
}
.wrapper-footer .wrapper-text a:hover i {
  margin-left: 15px;
}
.wrapper-footer .wrapper-text a:focus i {
  margin-left: 5px;
}
.wrapper-footer .footer-title {
  font-size: 24px;
  color: #00233d;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
}
.wrapper-footer .footer-title:after {
  position: absolute;
  content: "";
  background-color: #00923c;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
}
.wrapper-footer .wrapper-menu ul {
  padding: 0;
}
.wrapper-footer .wrapper-menu ul li {
  list-style: none;
  color: white;
}
.wrapper-footer .wrapper-menu ul li a {
  transition: 0.2s ease-out;
  color: #282828;
}
.wrapper-footer .wrapper-menu ul li i {
  font-size: 16px;
  margin-right: 10px;
  color: #00923c;
  transition: 0.2s ease-out;
}
.wrapper-footer .wrapper-menu ul li:hover i {
  margin-left: 5px;
}
.wrapper-footer:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eff3f6;
  border-top: 1px solid #d6d6d6;
}

.wrapper-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00030e;
}
.wrapper-copyright a {
  color: silver;
  padding: 7px 0;
}
.wrapper-copyright a:hover {
  color: white;
  transition: 0.2s ease-out;
}

.wrapper-partners .wrapper-image img {
  width: 100%;
}

.mobile-footer {
  display: none;
}

.desktop-version {
  display: block;
}

.mobile-version {
  display: none;
  padding: 25px 0;
}

.section-operations {
  padding-top: 0;
  background-color: #ebf2f7;
}
.section-operations .wrapper-first-image {
  padding: 75px 0;
  margin-bottom: 50px;
  position: relative;
}
.section-operations .wrapper-first-image:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(30, 40, 75, 0.4196078431);
}
.section-operations .wrapper-first-image h2 {
  z-index: 9;
  color: white;
  position: relative;
}
.section-operations .wrapper-first-image h2:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -6px;
  width: 70px;
  height: 2px;
  background-color: #00923c;
}
.section-operations .wrapper-first-image .wrapper-first-link {
  margin: 35px 0 0;
  z-index: 9;
}
.section-operations .wrapper-first-image .wrapper-first-link a {
  padding: 10px 30px;
  background-color: #ed1c24;
  color: white;
  box-shadow: none;
  outline: none;
  transition: 0.2s ease-out;
  font-size: 20px;
  border: none;
}
.section-operations .wrapper-first-image .wrapper-first-link a i {
  margin-left: 5px;
  transition: 0.2s ease-out;
}
.section-operations .wrapper-first-image .wrapper-first-link a:hover {
  background-color: #ca1920;
}
.section-operations .wrapper-first-image .wrapper-first-link a:hover i {
  margin-left: 15px;
}
.section-operations .wrapper-first-image .wrapper-first-link a:focus i {
  margin-left: 5px;
}
.section-operations .wrapper-item {
  background-color: white;
  padding: 15px;
  display: flex;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0), 0 1px 10px 0 rgba(0, 0, 0, 0.0509803922), 0 2px 4px -1px rgba(0, 0, 0, 0.1882352941);
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0), 0 1px 10px 0 rgba(0, 0, 0, 0.0509803922), 0 2px 4px -1px rgba(0, 0, 0, 0.1882352941);
  border-radius: 3px;
  margin-bottom: 35px;
}
.section-operations .wrapper-item .wrapper-image {
  min-width: 500px;
}
.section-operations .wrapper-item .wrapper-text {
  margin: 0 15px;
}
.section-operations .wrapper-item .wrapper-text h2 {
  font-size: 24px;
  position: relative;
}
.section-operations .wrapper-item .wrapper-text h2:after {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background-color: #00923c;
  left: 0;
  bottom: -5px;
}
.section-operations .wrapper-item .wrapper-text .text-left {
  margin-top: 25px;
}
.section-operations .wrapper-item .wrapper-text .text-left p {
  font-size: 15px;
  margin-bottom: 4px;
}
.section-operations .wrapper-item .wrapper-text .text-left a {
  margin-right: 10px;
  padding: 7px 16px;
  background-color: #ed1c24;
  color: white;
  box-shadow: none;
  outline: none;
  transition: 0.2s ease-out;
  font-size: 16px;
  border: none;
}
.section-operations .wrapper-item .wrapper-text .text-left a:hover {
  background-color: #ca1920;
}

@media (max-width: 1350px) {
  .section-operations .wrapper-item .wrapper-image {
    min-width: 350px;
  }
  .wrapper-about .wrapper-about-first-content .owl-nav {
    top: unset;
    align-items: unset;
    left: 0;
    right: 0;
    bottom: -10px;
  }
  .wrapper-about .wrapper-partner .owl-nav {
    top: unset;
    align-items: unset;
    left: 0;
    right: 0;
    bottom: -10px;
  }
  .first_navbar .nav-link {
    font-size: 13px;
  }
}
@media (max-width: 1200px) {
  .section-operations .wrapper-item .wrapper-text {
    margin: 15px 0;
  }
  .section-operations .wrapper-item .wrapper-image {
    min-width: 100%;
  }
  .section-operations .wrapper-item {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .wrapper-ul-items li {
    font-size: 16px !important;
  }
  .wrapper-item-contact {
    margin: 0 0 10px !important;
  }
  .wrapper-item-contact i {
    font-size: 24px !important;
  }
  .services_template .wrapper-image {
    float: unset;
    width: 100%;
    margin-bottom: 10px;
  }
  .wrapper-partner {
    padding-bottom: 50px;
  }
  .responsive-row {
    display: flex;
    flex-direction: column-reverse;
  }
  .wrapper-about .section-wrapper-li a .wrapper-item .wrapper-icon {
    width: 60px;
    height: 60px;
  }
  .wrapper-about .section-wrapper-li a .wrapper-item .wrapper-icon i {
    font-size: 24px;
  }
  .wrapper-about .section-wrapper-li a .wrapper-item .wrapper-icon-text h2 {
    font-size: 20px;
  }
  .wrapper-about .section-wrapper-li a .wrapper-item .wrapper-icon-text p {
    font-size: 16px;
  }
  .first_navbar {
    display: none;
  }
  .wrapper-about .wrapper-about-first-image .wrapper-first-link {
    margin: 35px 0 15px;
  }
  .wrapper-about .section-wrapper-li a .wrapper-item:hover {
    margin-top: 0;
  }
  .wrapper-about .wrapper-about-first-content {
    padding-top: 25px;
    padding-bottom: 50px;
  }
  .desktop-version {
    display: none;
  }
  .mobile-version {
    display: block;
  }
  .navbar-desktop {
    display: none;
  }
  .navbar-mobile {
    background: white;
    display: flex;
    padding: 15px 20px;
  }
  .navbar-mobile .navbar-brand img {
    width: 60px;
  }
  .navbar-mobile .navbar-collapse {
    height: 100%;
    justify-content: flex-end;
  }
  .navbar-mobile .navbar-collapse .navbar-nav {
    height: 100%;
  }
  .navbar-mobile .navbar-collapse .navbar-nav .active .nav-link {
    color: #00923c;
  }
  .navbar-mobile .navbar-collapse .navbar-nav .nav-item {
    height: 100%;
    font-size: 16px;
  }
  .navbar-mobile .navbar-collapse .navbar-nav .nav-item .nav-link {
    transition: 0.3s ease-out;
    font-weight: 600;
    padding: 6px 0;
  }
  .navbar-mobile .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
    color: #00233d;
  }
  .navbar-mobile .navbar-collapse .mobile-drop button {
    background-color: transparent;
    border: none;
    outline: none;
    position: relative;
  }
  .navbar-mobile .navbar-collapse .mobile-drop button:before {
    position: absolute;
    content: "";
    right: -20px;
    top: 15px;
    bottom: 0;
    margin: auto;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #00923c;
  }
  .navbar-mobile .navbar-collapse .mobile-drop .dropdown-content {
    display: none;
    flex-direction: column;
  }
  .navbar-mobile .navbar-collapse .mobile-drop .dropdown-content a {
    margin-bottom: 3px;
  }
  .navbar-mobile .navbar-collapse .mobile-drop .dropdown-content a i {
    margin-right: 7px;
    color: #00923c;
  }
  .navbar-mobile .navbar-collapse .mobile-drop .show {
    display: flex !important;
  }
  .wrapper-footer {
    display: none;
  }
  .mobile-footer {
    display: block;
    color: white;
    position: relative;
  }
  .mobile-footer .z-inx {
    z-index: 9;
  }
  .mobile-footer .wrapper-image img {
    width: 120px;
  }
  .mobile-footer .wrapper-text h2 {
    font-size: 24px;
    color: #00233d;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 5px;
  }
  .mobile-footer .wrapper-text h2:after {
    position: absolute;
    content: "";
    background-color: #00923c;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
  }
  .mobile-footer .wrapper-text p {
    font-size: 16px;
    color: #282828;
  }
  .mobile-footer .footer-title {
    font-size: 24px;
    color: #00233d;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
  }
  .mobile-footer .footer-title:after {
    position: absolute;
    content: "";
    background-color: #00923c;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
  }
  .mobile-footer .wrapper-menu ul {
    padding-left: 0;
    margin-bottom: 0;
  }
  .mobile-footer .wrapper-menu ul li {
    list-style: none;
  }
  .mobile-footer .wrapper-menu ul li i {
    font-size: 16px;
    margin-right: 10px;
    color: #00923c;
  }
  .mobile-footer .wrapper-menu ul li a {
    color: #282828;
    margin-left: 5px;
  }
  .section-home {
    padding: 50px 0 !important;
  }
  .section-home h2 {
    font-size: 32px !important;
  }
  .section-home p {
    font-size: 16px !important;
    margin-bottom: 16px !important;
    padding-right: 0 !important;
  }
  .wrapper-about .wrapper-news h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .wrapper-about .wrapper-same-section {
    padding: 100px 0;
  }
  .wrapper-about .wrapper-same-section .wrapper-text {
    padding: 12px 8px;
  }
  .wrapper-about .wrapper-same-section .wrapper-text h2 {
    font-size: 32px;
  }
  .wrapper-about .wrapper-same-section .wrapper-text p {
    font-size: 16px;
  }
  .wrapper-about .wrapper-about-first-content h2 {
    font-size: 32px;
  }
  .wrapper-about .wrapper-about-first-content P {
    font-size: 16px;
  }
  section {
    padding: 25px 0;
  }
  .wrapper-booking fieldset {
    padding: 8px 12px;
  }
  .wrapper-booking fieldset .wrapper-button {
    margin-bottom: 8px;
  }
  .wrapper-booking fieldset .wrapper-button p {
    margin-bottom: 8px;
  }
  .wrapper-booking fieldset .wrapper-button .wrapper-buttons label {
    padding: 6px 16px;
  }
  .wrapper-booking fieldset .wrapper-input input {
    padding: 6px 16px;
  }
  .wrapper-booking .wrapper-input {
    margin: 8px 0;
  }
  .wrapper-booking .wrapper-input input {
    padding: 6px 16px !important;
  }
  .wrapper-booking .wrapper-middle {
    margin: 8px 0 10px;
  }
  .wrapper-booking .wrapper-middle p {
    margin-bottom: 8px;
  }
  .wrapper-booking .wrapper-middle .wrapper-item {
    padding: 12px;
  }
  .wrapper-booking .wrapper-middle .wrapper-item .wrapper-input input {
    padding: 6px 16px !important;
  }
  .wrapper-booking .wrapper-middle .wrapper-item .wrapper-bottom {
    margin: 12px -24px -12px -24px;
  }
  .wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-type-number .wrapper-i-number .minus, .wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-type-number .wrapper-i-number .plus {
    font-size: 25px;
  }
  .wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-type-number .wrapper-i-number input, .wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-type-number .wrapper-i-number select {
    height: 38px;
  }
  .wrapper-faq h2 {
    font-size: 24px;
  }
  .wrapper-faq h6 {
    margin: 0 auto 25px;
    text-align: center;
    font-size: 16px;
  }
  .wrapper-faq .wrapper-item .accordion .card-header .close-btn {
    font-size: 18px;
    padding: 4px;
  }
  .wrapper-faq .wrapper-item .accordion .card-body {
    padding: 8px;
  }
  .wrapper-faq .wrapper-item .accordion .card-body p {
    font-size: 16px;
  }
  .wrapper-contact {
    background: unset !important;
    height: max-content;
  }
  .wrapper-contact .wrapper-contact-form h1 {
    font-size: 24px;
    letter-spacing: 0;
    font-weight: 300;
    text-transform: none;
  }
  .wrapper-contact .wrapper-contact-form p {
    margin-bottom: 24px;
    margin-top: 8px;
  }
  .wrapper-contact .wrapper-button {
    margin: 24px 0 0 !important;
  }
}
@media (max-width: 776px) {
  .home-advantage .site_title {
    margin-bottom: 15px;
    font-size: 24px;
  }
  .wrapper-about .section-wrapper-li a .wrapper-item {
    margin-bottom: 15px;
  }
  .mobile-footer .wrapper-text h2 {
    font-size: 20px;
  }
  .mobile-footer .wrapper-text p {
    font-size: 14px;
  }
  .mobile-footer .footer-title {
    font-size: 20px;
  }
  .wrapper-about .wrapper-about-first-content h2 {
    font-size: 24px;
    font-weight: 500;
  }
  .wrapper-about .wrapper-about-first-content p {
    font-size: 16px;
  }
  .wrapper-about .wrapper-news h2 {
    font-size: 24px;
    margin-bottom: 0;
  }
  .wrapper-about .wrapper-news .wrapper-item .wrapper-text h4 {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .mobile-footer .wrapper-image img {
    width: 100px;
  }
  .section-home {
    padding: 25px 0 !important;
  }
  .section-home h2 {
    font-size: 24px !important;
  }
  .section-home p {
    font-size: 15px !important;
    margin-bottom: 16px !important;
  }
  .wrapper-about .wrapper-same-section {
    padding: 50px 0;
  }
  .wrapper-about .wrapper-same-section .wrapper-text {
    background-color: rgba(255, 255, 255, 0.7098039216);
  }
  .wrapper-about .wrapper-same-section .wrapper-text h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
  }
  .wrapper-booking h2 {
    font-size: 20px;
  }
  .wrapper-booking fieldset .wrapper-button .wrapper-buttons {
    margin-bottom: 8px;
  }
  .wrapper-booking .wrapper-middle .wrapper-bottom-item .wrapper-bottom-button button {
    padding: 7px 4px 7px 17px;
    font-size: 13px;
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
