@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
  --c_primary: #006039;
  --c_heading: #010202;
  --c_text: #010202B2;
  --c_grey: #E9F0FC;
  --c_grey2: #F4EFE6;
  --c_black: #000000;
  --c_white: #ffffff;
  --f_body: "Lato", sans-serif;
  --transition: all 0.3s ease-in-out 0s;
}

* {
  margin: 0;
  outline: none !important;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--c_white);
}

b,
strong {
  font-weight: 700;
}

a,
a:hover {
  color: var(--c_text);
  transition: var(--transition);
}

a,
a:not(.btn_n):hover {
  text-decoration: none;
}

:is(h1, h2, h3, h4, h5, h6) {
  font-weight: 700;
  line-height: 1.2;
  color: var(--c_heading);
  font-family: var(--f_body);
  margin-bottom: 0;
}

:where(h1, h2, h3, h4, h5, h6):not(:last-child) {
  margin-bottom: 15px;
}

h1 {
  font-size: 40px;
}

@media screen and (max-width: 1399.98) {
  h1 {
    font-size: 36px;
  }
}

@media screen and (max-width: 1199.98) {
  h1 {
    font-size: 32px;
  }
}

@media screen and (max-width: 767.98) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-size: 40px;
}

@media screen and (max-width: 1399.98) {
  h2 {
    font-size: 36px;
  }
}

@media screen and (max-width: 1199.98) {
  h2 {
    font-size: 32px;
  }
}

@media screen and (max-width: 767.98) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 30px;
}

@media screen and (max-width: 1399.98) {
  h3 {
    font-size: 28px;
  }
}

@media screen and (max-width: 1199.98) {
  h3 {
    font-size: 25px;
  }
}

@media screen and (max-width: 767.98) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 26px;
}

@media screen and (max-width: 1399.98) {
  h4 {
    font-size: 25px;
  }
}

@media screen and (max-width: 1199.98) {
  h4 {
    font-size: 24px;
  }
}

@media screen and (max-width: 767.98) {
  h4 {
    font-size: 22px;
  }
}

h5 {
  font-size: 22px;
}

@media screen and (max-width: 767.98) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
}

@media screen and (max-width: 767.98) {
  h6 {
    font-size: 18px;
  }
}

body {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--c_text);
  font-family: var(--f_body);
}

p,
li {
  margin: 0;
}

:where(p, ul, ol, li):not(:last-child) {
  margin-bottom: 15px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
}

.ut_spc,
.u_spc {
  padding-top: 80px;
}

.ub_spc,
.u_spc {
  padding-bottom: 80px;
}

.content {
  overflow: clip;
  padding-top: 94px;
  min-height: calc(100vh - 354px);
}

.home .content {
  padding-top: 0;
}

.btnn {
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  min-height: 44px;
  padding: 5px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
  transition: var(--transition);
  letter-spacing: calc(16px * 0.04);
  border: 1px solid transparent;
  text-transform: uppercase;
  position: relative;
  line-height: 1.2;
  text-indent: 0px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

.btn_primary {
  color: var(--c_white);
  background-color: var(--c_primary);
  border-color: var(--c_primary);
}

.btn_primary:is(:hover, :focus) {
  color: var(--c_primary);
  background-color: var(--c_white);
  border-color: var(--c_primary);
}

.btn_white {
  color: var(--c_black);
  background-color: var(--c_white);
  border-color: var(--c_white);
}

.btn_white:is(:hover, :focus) {
  color: var(--c_white);
  background-color: var(--c_black);
  border-color: var(--c_black);
}

label {
  font-size: 16px;
  font-weight: 500;
  color: #010202;
  text-transform: capitalize;
  display: block;
  margin: 0 0 5px;
}

label.error {
  position: absolute;
  top: 100%;
  left: 0;
  color: #ff0000;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2px;
  margin: 2px 0 0;
}

.control_group:not(:last-child) {
  margin-bottom: 15px;
}

input:not([type="checkbox"]),
select,
textarea {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: var(--c_black);
  background-color: transparent;
  border: 1px solid #0102021A;
  letter-spacing: -0.05px;
  outline: none !important;
  border-radius: 50px;
  box-shadow: none;
}

input:not([type="checkbox"]) {
  height: 50px;
  padding: 0 20px 3px;
}

input[type="search"] {
  padding: 0 15px 0 50px;
  background-image: url('../images/search_icon.svg');
  background-position: left 15px center;
  background-repeat: no-repeat;
  background-size: 25px;
}

select {
  height: 50px;
  padding: 0 45px 3px 20px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23010202' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 14px;
  appearance: none;
}

textarea {
  height: 100px;
  padding: 10px 15px;
  border-radius: 15px;
  resize: none;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: var(--c_black);
  opacity: 0.5;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--c_primary);
}

:is(input, select, textarea, .control-group).empty_value {
  border-color: #ff0000;
}

.form_btn {
  margin-top: 40px;
}

.form_btn .btnn {
  width: auto;
  min-width: 185px;
}

.form_btn .btnn.w_100 {
  width: 100%;
}

.conta_iner {
  max-width: 1180px;
  margin-inline: auto;
}

.conta_iner,
.e-con>.e-con-inner {
  width: 90% !important;
}

@media (max-width: 767.98px) {

  .conta_iner,
  .e-con>.e-con-inner {
    width: 100% !important;
    padding-inline: 20px !important;
  }
}

.elementor-element[id] {
  scroll-margin-top: 70px;
}

/* Header */
.site_header {
  top: 0;
  left: 0;
  position: fixed;
  transition: var(--transition);
  background-color: #010506;
  padding: 25px 0;
  z-index: 999;
  width: 100%;
}

.home .site_header:not(.scrolled) {
  background-color: transparent;
}

.site_header.scrolled {
  padding: 15px 0;
  background-color: #010506;
}

.site_header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.site_logo,
.site_logo figure {
  display: inline-flex;
}

.site_logo img {
  height: 57px;
  width: auto;
  transition: var(--transition);
}

.site_logo figcaption {
  font-size: 30px;
  font-weight: 600;
  color: var(--c_white);
  text-transform: uppercase;
  display: inline-flex;
  line-height: 1.2;
}

.site_menu {
  display: inline-flex;
  align-items: center;
  margin: 0 auto 0 0;
  gap: 50px;
}

.site_menu li {
  font-size: 15px;
  font-weight: 400;
  display: inline-flex;
  text-transform: uppercase;
  margin-bottom: 0;
}

.site_menu li a {
  color: #FFFFFFCC;
  display: inline-flex;
}

.site_menu li a:hover {
  color: var(--c_white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site_header nav>.btnn {
  white-space: nowrap;
}

/* Footer */
.site_footer {
  background-color: #010506;
  position: relative;
  z-index: 1;
}

.site_footer::before {
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url('../images/vector_01.svg');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.6;
  z-index: -1;
}

.site_footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 85px 70px;
  gap: 30px;
}

.site_footer .inner .single {
  max-width: 410px;
}

.site_footer .inner .single h2 {
  font-size: 20px;
  font-weight: 400;
  color: var(--c_white);
  text-transform: uppercase;
  line-height: 1.5;
}

.site_footer .inner .single p {
  color: #FFFFFFB2
}

.site_footer .btn_flex {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site_footer .btn_flex .btnn {
  height: 65px;
  min-width: 188px;
  min-height: 65px;
  padding: 10px 16px;
  border-radius: 15px;
  border-width: 2px;
}

.site_footer .btn_flex .btnn:is(:hover, :focus) {
  background-color: var(--c_black);
  border-color: var(--c_primary);
}

.site_footer .btn_flex .btnn img {
  max-height: 100%;
}

.social_links {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 10px;
}

.social_links li {
  margin-bottom: 0;
  display: inline-flex;
}

.social_links li a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--c_white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social_links li a img {
  transition: var(--transition);
  max-height: 100%;
}

.social_links li a:hover {
  background-color: var(--c_primary);
}

.social_links li a:hover img {
  filter: brightness(0) invert(1);
}

.copywrite {
  padding: 25px 0;
  text-align: center;
  border-top: 1px solid #D9D9D91A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.copywrite p {
  font-size: 16px;
  color: #FFFFFFB2;
  line-height: 1.2;
  margin-bottom: 0;
}

.copywrite ul {
  display: inline-flex;
  align-items: center;
  gap: 45px;
}

.copywrite ul li {
  font-size: 16px;
  display: inline-flex;
  margin-bottom: 0;
}

.copywrite ul li a {
  color: #FFFFFFB2;
  display: inline-flex;
}

.copywrite ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer End */


.hero_sc::after {
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #0E402B;
  mix-blend-mode: soft-light;
  pointer-events: none;
  opacity: 0.6;
}

.car_box {
  aspect-ratio: 1 / 1;
}

.car_box::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 16.85%, rgba(0, 0, 0, 0) 66.78%, rgba(0, 0, 0, 0.8) 106.95%) !important;
}

.video_sc .elementor-custom-embed-play {
  left: 25px;
  position: absolute;
  top: auto;
  transform: none;
  bottom: 25px;
}

.video_sc .elementor-custom-embed-play svg {
  height: 66px;
  width: 66px;
  opacity: 1;
  filter: none;
}

.elementor-button span.elementor-button-content-wrapper {
  gap: 8px;
}

.elementor-button span.elementor-button-content-wrapper svg {
  width: auto;
  transition: var(--transition);
}

.elementor-button:hover span.elementor-button-content-wrapper svg {
  filter: brightness(0) invert(11%) sepia(99%) saturate(4493%) hue-rotate(161deg) brightness(93%) contrast(101%);
}

.white_btn .elementor-button:not(:hover) span.elementor-button-content-wrapper svg {
  filter: brightness(0);
}

.white_btn .elementor-button:hover span.elementor-button-content-wrapper svg {
  filter: brightness(0) invert(1);
}

.testimonial-content p {
  font-size: 20px;
  color: #010202B2;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-meta {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-meta figure {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-meta figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonial-meta p {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  color: #01020299;
  line-height: 1.2;
  gap: 6px;
}

.testimonial-meta p strong {
  font-size: 22px;
  color: #010202;
}

.invest_modal .modal-dialog {
  max-width: 800px;
}

.invest_modal .modal-content {
  padding: 35px 40px 40px;
  background: linear-gradient(0deg, #FFFFFF -14.94%, #DFFFF2 137.31%);
  border-radius: 35px;
}

.invest_modal .modal-header {
  padding: 0 0 20px;
  border-bottom: 1px solid #0109071F;
  margin-bottom: 20px;
}

.invest_modal .modal-title {
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0;
}

.invest_modal .btn-close {
  width: 25px;
  height: 25px;
  display: inline-flex;
  background-color: transparent !important;
  border: none !important;
  opacity: 1;
  padding: 0 !important;
  margin: 0 !important;
}

.invest_modal .modal-body {
  padding: 0;
}

.invest_modal .form .btnn {
  width: auto;
  min-width: 190px;
  padding: 5px 30px;
  height: 50px !important;
}

.invest_modal .form br {
  display: none;
}

.invest_modal .form label {
  color: #010202;
}

.checkbox_label .wpcf7-list-item {
  margin: 0;
}

.checkbox_label label input {
  width: 18px;
  height: 18px;
  accent-color: var(--c_primary);
}

.checkbox_label label {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0;
  color: #6C7278 !important;
  text-transform: none;
  gap: 8px;
}

.invest_modal span.wpcf7-not-valid-tip {
  font-size: 14px;
  line-height: 1.2;
  margin-top: 3px;
}

.invest_modal .row+p {
  margin-bottom: 0;
  margin-top: 30px;
}

.invest_modal .country-select .selected-flag .arrow {
  display: none;
}

.invest_modal .country-select.inside input,
.invest_modal .country-select.inside input[type=text] {
  padding-left: 50px !important;
  padding-right: 45px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23010202' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 14px;
  appearance: none;
}

.invest_modal .country-select.inside .selected-flag {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 5px;
}

.invest_modal .country-select .flag {
  transform: scale(1.2);
}

.invest_modal .country-list li.country {
  padding: 7px 15px;
  outline: 0;
  margin: 0;
  font-size: 14px;
  color: #000;
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.invest_modal .country-list li.country .flag {
  margin: 0;
}

.car_box.e-con>.e-con-inner {
  width: 100% !important;
  padding: 0 !important;
}


/* Responsiveness */
@media screen and (max-width: 1399.98px) {
  body {
    font-size: 16px;
  }

  .site_header {
    padding: 15px 0;
  }

  .site_footer::before {
    opacity: 1;
  }

  .site_footer .inner {
    padding-block: 65px 55px;
  }

  .site_footer .inner .single h2 {
    font-size: 18px;
  }

  .site_footer .btn_flex .btnn {
    height: 60px;
    min-width: 175px;
    min-height: 60px;
    padding: 10px 15px;
    border-radius: 10px;
  }

  .content {
    overflow: clip;
    padding-top: 74px;
    min-height: calc(100vh - 313px);
  }

  .invest_modal .modal-content {
    padding: 25px 30px 30px;
    border-radius: 25px;
  }

  .invest_modal .modal-dialog {
    max-width: 700px;
  }

  label {
    font-size: 15px;
  }

  input:not([type="checkbox"]),
  select {
    height: 45px;
  }

  input:not([type="checkbox"]),
  select,
  textarea {
    font-size: 15px;
  }

  .testimonial-content p {
    font-size: 18px;
  }

  .testimonial-meta p strong {
    font-size: 20px;
  }

  .testimonial-meta {
    margin-top: 20px;
    gap: 12px;
  }

  .testimonial-meta figure {
    width: 65px;
    height: 65px;
    min-width: 65px;
  }
}

@media screen and (max-width: 1199.98px) {
  .testimonial-content p {
    font-size: 17px;
  }
}

@media screen and (max-width: 991.98px) {
  .site_header.active {
    background-color: #010506 !important;
  }

  .site_header nav {
    flex-wrap: wrap;
    gap: 15px;
  }

  .site_header .site_logo {
    order: 1;
  }

  .site_header .site_hamburgur {
    order: 2;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--c_white);
    color: var(--c_primary);
    border-radius: 50%;
    margin-left: auto;
    font-size: 18px;
  }

  .site_header nav>.btnn {
    order: 3;
  }

  .site_menu {
    order: 4;
    width: 100%;
    flex-wrap: wrap;
    padding: 10px 0 0;
    display: none;
  }

  .site_menu li {
    width: 100%;
  }

  .site_menu li a {
    padding: 8px 0;
    width: 100%;
  }

  .social_links li a {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .site_footer .btn_flex .btnn {
    height: 55px;
    min-width: 160px;
    min-height: 55px;
  }

  .site_footer .inner .single:first-child {
    max-width: 250px;
  }

  .copywrite ul {
    gap: 25px;
  }

  .copywrite ul li,
  .site_footer .inner .single p,
  .copywrite p {
    font-size: 14px;
  }

  .site_footer .inner {
    padding-block: 60px 50px;
  }

  .content {
    overflow: clip;
    min-height: calc(100vh - 309px);
  }
}

@media screen and (max-width: 767.98px) {
  body {
    font-size: 14px;
  }

  .btnn {
    font-size: 14px;
    min-height: 40px;
    padding: 5px 20px;
    letter-spacing: calc(14px * 0.04);
  }

  .site_logo figcaption {
    font-size: 25px;
  }

  .site_header nav>.btnn {
    white-space: nowrap;
    letter-spacing: 0;
    padding: 0 15px;
    min-height: 35px;
  }

  .site_header .site_hamburgur {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .site_header nav {
    gap: 10px;
  }

  .site_footer .inner {
    padding-block: 50px;
    flex-wrap: wrap;
    gap: 35px;
  }

  .copywrite {
    flex-direction: column-reverse;
  }

  .copywrite ul {
    gap: 20px;
  }

  .copywrite ul li,
  .copywrite p {
    font-size: 13px;
  }

  .site_footer .inner .single:first-child {
    max-width: 100%;
  }

  .site_footer .inner .single {
    text-align: center;
    max-width: 100%;
    width: 100%;
  }

  .site_footer .btn_flex {
    gap: 10px;
    width: 100%;
  }

  .social_links {
    margin-bottom: 15px;
    justify-content: center;
  }

  .social_links li a {
    width: 36px;
    height: 36px;
    padding: 9px;
  }

  .site_footer .btn_flex .btnn {
    height: 60px;
    min-width: 1px;
    min-height: 1px;
    padding: 10px 18px;
    width: 100%;
  }

  .invest_modal .modal-content {
    padding: 25px 20px 25px;
    border-radius: 15px;
  }

  label {
    font-size: 14px;
    margin-bottom: 3px;
  }

  input:not([type="checkbox"]),
  select {
    height: 42px;
  }

  input:not([type="checkbox"]) {
    padding: 0 16px 3px;
  }

  select {
    padding: 0 40px 3px 16px;
    background-position: right 15px center;
    background-size: 12px;
  }

  .control_group:not(:last-child) {
    margin-bottom: 12px;
  }

  .invest_modal .modal-title {
    font-size: 22px;
  }

  .testimonial-content p {
    font-size: 16px;
    line-height: 1.5;
  }

  .testimonial-meta p strong {
    font-size: 18px;
  }

  .testimonial-meta figure {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .testimonial-meta p {
    gap: 4px;
  }

  .content {
    padding-top: 65px;
    min-height: calc(100vh - 436px);
  }
}

@media screen and (min-width: 992px) {
  .site_hamburgur {
    display: none;
  }
}