﻿/*Custom CSS start for form*/
.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 1;
  align-self: center;
  margin-bottom: 80px;
  padding: 24px;
  gap: 16px;
  width: 100%;
  max-width: 540px;
  height: 525px;
  background: #1c1c1c;
  position: absolute;
    right: 48px;
    top: 8%;
}
.form-heading h2 {
  margin-bottom: 8px;
  font-family: "Lexend";
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 45px;
  text-transform: uppercase;
  color: #ffffff;
}
.form-heading p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}
.form-select {
  width: 100%;
  max-width: 492px;
  display: flex;
  flex-shrink: 1;
}
.form-select .select-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 1;
  width: 100%;
  max-width: 492px;
  height: 40px;
  flex: none;
  order: 1;
  flex-grow: 0;
}
.form-select
  .select-wrapper
  .select-box {
  display: flex;
  width: 100%;
  max-width: 492px;
  height: 36px;
  flex-direction: column;
  flex-shrink: 1;
  position: relative;
}
.form-select
  .select-wrapper
  .select-box
  .options-container {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  border: #019748 1px solid;
  border-top: none;
  color: #666666;
  background: white;
  max-height: 0;
  width: 100%;
  max-width: 100%;
  opacity: 0;
  overflow: hidden;
  order: 1;
  font-size: 14px;
  position: absolute;
  top: 280px;
  z-index: 10;
  height: 96px;
  flex-shrink: 1;  
  overflow-y: scroll;
}
.form-select
  .select-wrapper
  .select-box
  .options-container
  .option {
  padding: 8px 12px;
  cursor: pointer;
}
.form-select
  .select-wrapper
  .select-box
  .options-container
  .option
  label {
  cursor: pointer;
}
.form-select
  .select-wrapper
  .select-box
  .options-container
  .option
  .radio {
  display: none;
}
.form-select
  .select-wrapper
  .select-box
  .options-container
  .option:hover {
  background-color: #019748;
  color: #ffffff;
}
.form-select
  .select-wrapper
  .select-box
  .options-container.active {
  max-height: 240px;
  opacity: 1;
  height: 100px;
  position: absolute;
  top: 37px;
  z-index: 10;
  background: #f4f4f4;
}
.form-select
  .select-wrapper
  .select-box
  .options-container.active
  + .selected::before {
  transform: rotate(220deg);
  background-color: #019748;
}
.form-select
  .select-wrapper
  .select-box
  .options-container.active
  + .selected::after {
  transform: rotate(140deg);
  background-color: #019748;
}
.form-select
  .select-wrapper
  .select-box
  .options-container.active
  + .selected {
  /* color: $green; */
}
.form-select
  .select-wrapper
  .select-box::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 2px;
  right: 22px;
  background-color: #fff;
  top: 15px;
  transform: rotate(140deg);
  transition: 0.4s ease;
  z-index: 99;
}
.form-select
  .select-wrapper
  .select-box::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 2px;
  right: 16px;
  background-color: #fff;
  top: 15px;
  transform: rotate(220deg);
  transition: 0.4s ease;
  z-index: 99;
}
.form-select
  .select-wrapper
  .select-box
  .selected {
  width: 100%;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
  background-color: #019748;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  flex-shrink: 1;
}
.form-select
  .select-wrapper
  .select-box.active
  .selected {
  background-color: #fff;
  color: #019748;
  border: #019748 1px solid;
}
.form-select
  .select-wrapper
  .select-box.active::before {
  background-color: #019748;
  transform: rotate(220deg);
}
.form-select
  .select-wrapper
  .select-box.active::after {
  background-color: #019748;
  transform: rotate(140deg);
}
.form-name {
  width: 100%;
  max-width: 492px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 1;
}
.form-name input {
  width: 100%;
  max-width: 238px;
  height: 40px;
  padding: 8px 12px;
  background: #f4f4f4;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #666666;
  flex-shrink: 1;
}
.form-email {
  width: 100%;
  max-width: 492px;
  display: flex;
  align-items: center;
  flex-shrink: 1;
}
.form-email input {
  width: 100%;
  max-width: 492px;
  height: 40px;
  padding: 8px 12px;
  background: #f4f4f4;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #666666;
  flex-shrink: 1;
}
.form-description {
  width: 100%;
  max-width: 492px;
  flex-shrink: 1;
}
.form-description textarea {
  width: 100%;
  max-width: 492px;
  height: 138px;
  padding: 8px 12px;
  background: #f4f4f4;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #666666;
  flex-shrink: 1;
}
.form-submit {
  width: 100%;
  max-width: 492px;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-shrink: 1;
}
.form-submit input {
  padding: 0px 24px;
  width: 88px;
  height: 48px;
  border: none;
  background: #019748;
  font-family: "Readex Pro";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}
/*Custom CSS End for form*/
#sec2Accord .second-screen {
  width: 100%;
  height: 860px;
  background: #fbfbfb;
}
#sec2Accord .second-screen .container {
  width: 100%;
  max-width: 1360px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
      padding: 0;
}
#sec2Accord .second-screen .container .accordion {
  background: #1d1f22;
  height: 880px;
  width: 100%;
  display: flex;
  flex-direction: row;
}
#sec2Accord .second-screen .container .accordion .column {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width: 33.33%;
  transition: 0.3s ease;
}
#sec2Accord .second-screen .container .accordion .column .text-block {
  padding: 48px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  opacity: 1.7;
}
#sec2Accord .second-screen .container .accordion .column .text-block .title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#sec2Accord .second-screen .container .accordion .column .text-block .title h3 {
  max-width: 260px;
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 35px;
  text-transform: uppercase;
  color: #ffffff;
  transition: 0.3s ease;
}
#sec2Accord .second-screen .container .accordion .column .text-block .title .chevron-down {
  display: none;
}
#sec2Accord .second-screen .container .accordion .column .text-block .subtitle {
  display: none;
}
#sec2Accord .second-screen .container .accordion .column .text-block p {
  display: none;
}
#sec2Accord .second-screen .container .accordion .column.active {
  width: 930px;
}
#sec2Accord .second-screen .container .accordion .column.active .background {
  width: 100%;
  left: 0;
  transition: 0.3s ease;
}
#sec2Accord .second-screen .container .accordion .column.active .text-block .title {
  bottom: 78px;
  max-width: 600px;
  transition: 0.3s ease;
}
#sec2Accord .second-screen .container .accordion .column.active .text-block .subtitle {
  display: block;
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-family: "Inter", sans-serif;
  transition: 0.3s ease;
}
#sec2Accord .second-screen .container .accordion .column.active .text-block p {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #019748;
  font-family: "Inter", sans-serif;
  transition: 0.3s ease;
}
#sec2Accord .second-screen .container .accordion .column.horizontal {
  width: 215px;
}
#sec2Accord .second-screen .container .accordion .column.horizontal .text-block {
  height: 400px;
}
#sec2Accord .second-screen .container .accordion .column.horizontal .text-block .title {
  transform: translateX(-14%) rotate(-90deg);
  position: absolute;
  width: 589px;
  left: -50%;
  height: 35px;
  bottom: 38%;
}
#sec2Accord .second-screen .container .accordion .column1 .background {
  position: absolute;
  left: -224px;
  top: 0px;
}
#sec2Accord .second-screen .container .accordion .column1.active .background {
  height: 888px;
  position: absolute;
  left: 0px;
  object-fit: cover;
}
#sec2Accord .second-screen .container .accordion .column1 .horizontal .background {
  position: absolute;
  left: -243px;
}
#sec2Accord .second-screen .container .accordion .column2 .background {
  position: absolute;
  left: -173px;
}
#sec2Accord .second-screen .container .accordion .column2.active .background {
  height: 888px;
  position: absolute;
  left: 0px;
  object-fit: cover;
}
#sec2Accord .second-screen .container .accordion .column2.horizontal .background {
  position: absolute;
  left: -616px;
}
#sec2Accord .second-screen .container .accordion .column3 .background {
  position: absolute;
  left: -364px;
}
#sec2Accord .second-screen .container .accordion .column3.active .background {
  height: 888px;
  position: absolute;
  left: 0px;
  object-fit: cover;
}

.rtr {
  direction: rtl;
}

@media (max-width: 1200px) {
  #sec2Accord .second-screen {
    height: auto;
  }
  #sec2Accord .second-screen .container {
    width: auto;
    max-width: 1200px;
  }
}
@media (max-width: 992px) {
  #sec2Accord .second-screen .container {
    width: auto;
    max-width: 992px;
  }
}
@media (max-width: 768px) {
  #sec2Accord .second-screen .container {
    width: auto;
    max-width: 768px;
  }
  #sec2Accord .second-screen .container .accordion {
    height: auto;
    flex-direction: column;
  }
  #sec2Accord .second-screen .container .accordion .column {
    width: 100%;
    height: 140px;
  }
  #sec2Accord .second-screen .container .accordion .column .background {
    width: 100%;
    left: 0;
    top: -90px;
  }
  #sec2Accord .second-screen .container .accordion .column .text-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
  }
  #sec2Accord .second-screen .container .accordion .column .text-block .title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  #sec2Accord .second-screen .container .accordion .column .text-block .title h3 {
    max-width: max-content;
  }
  #sec2Accord .second-screen
    .container
    .accordion
    .column
    .text-block
    .title
    .chevron-down {
    display: block;
  }
  #sec2Accord .second-screen .container .accordion .column.active {
    height: 255px;
    width: 100%;
  }
  #sec2Accord .second-screen .container .accordion .column.active .text-block {
    flex-direction: column;
    align-items: flex-start;
    max-width: 768px;
    width: 100%;
  }
  #sec2Accord .second-screen .container .accordion .column.active .text-block .title {
    max-width: 100%;
  }
  #sec2Accord .second-screen
    .container
    .accordion
    .column.active
    .text-block
    .title
    .chevron-down {
    transform: rotate(180deg);
  }
  #sec2Accord .second-screen .container .accordion .column.horizontal {
    width: 100%;
  }
  #sec2Accord .second-screen .container .accordion .column.horizontal .background {
    left: 0;
    top: -80px;
  }
  #sec2Accord .second-screen .container .accordion .column.horizontal .text-block {
    height: 140px;
    padding: 24px;
  }
  #sec2Accord .second-screen .container .accordion .column.horizontal .text-block .title {
    transform: none;
    left: 0;
    padding: inherit;
  }
  #sec2Accord .second-screen
    .container
    .accordion
    .column.horizontal
    .text-block
    .chevron-down {
    display: none;
  }
}
@media (max-width: 576px) {
  #sec2Accord .second-screen .container {
    width: auto;
    max-width: 576px;
  }
  #sec2Accord .second-screen .container .accordion .column {
    height: 140px;
  }
  #sec2Accord .second-screen .container .accordion .column.active {
    height: 255px;
  }
  #sec2Accord .second-screen .container .accordion .column.active .text-block {
    flex-direction: column;
    align-items: flex-start;
    max-width: 576px;
    width: 100%;
  }
  #sec2Accord .second-screen .container .accordion .column.active .text-block .title h5 {
    font-size: 12px;
    line-height: 15px;
    margin-top: 7px;
  }
  #sec2Accord .second-screen .container .accordion .column.active .text-block .title p {
    font-size: 12px;
    line-height: 15px;
    margin-top: 7px;
  }
  #sec2Accord .second-screen .container .accordion .column .text-block {
    padding: 24px;
  }
  #sec2Accord .second-screen .container .accordion .column .text-block .title h3 {
    font-size: 18px;
    line-height: 22px;
  }
  #sec2Accord .second-screen .container .accordion .column.horizontal {
    width: 100%;
  }
  #sec2Accord .second-screen .container .accordion .column.horizontal .background {
    left: 0;
    top: -65px;
  }
}
@media (max-width: 375px) {
  #sec2Accord .second-screen .container {
    width: auto;
    max-width: 375px;
  }
  #sec2Accord .second-screen .container .accordion .column .background {
    top: -40px;
  }
  #sec2Accord .second-screen .container .accordion .column.active .text-block {
    width: 100%;
    max-width: 375px;
  }
}
.third-screen {
  width: 100%;
  height: 100%;
  max-height: 100%;
  background-size: cover;
}
.third-screen .container {
  width: 100%;
  height: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
}
.third-screen .container .img-block {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.third-screen .container .img-block figure img {
  width: 100%;
}
.third-screen .container .img-block #error-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1d1f22;
}
.third-screen .container .img-block #error-img img {
  width: 80px;
  height: 80px;
  margin-bottom: 40px;
}
.third-screen .container .img-block #error-img h2 {
  max-width: 285px;
  height: 20px;
  font-family: "Lexend";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}
.third-screen .container .img-block #error-img p {
  max-width: 269px;
  height: 44px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #ffffff;
}
.third-screen .container .img-block #error-img p span {
  color: #019748;
}
.third-screen .container > .text-block {
  width: 50%;
  padding: 0 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: start;
}
.third-screen .container > .text-block .text-block-part {
  margin-bottom: 10%;
}
.third-screen .container > .text-block .text-block-part:last-child {
  margin-bottom: 0;
}
.third-screen .container > .text-block .text-block-part > h1 {
  margin-bottom: 12px;
  max-width: 270px;
  font-family: "Lexend";
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 35px;
  text-transform: uppercase;
  color: #000000;
}
.third-screen .container > .text-block .text-block-part > p {
  max-width: 270px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.third-screen .container .third-screen-rtl {
  direction: rtl;
}

@media (max-width: 1200px) {
  .third-screen .container {
    max-width: 1200px;
  }
}
@media (max-width: 992px) {
  .third-screen .container {
    max-width: 992px;
  }
}
@media (max-width: 768px) {
  .third-screen .container {
    max-width: 768px;
  }
}
@media (max-width: 576px) {
  .third-screen {
    height: auto;
    max-height: max-content;
    background: #fbfbfb;
  }
  .third-screen .container {
    max-width: 576px;
    height: auto;
    padding: 0;
    flex-wrap: wrap;
  }
  .third-screen .container .img-block {
    width: 100%;
    height: 100%;
    min-height: 494px;
  }
  .third-screen .container .img-block figure img {
    width: 100%;
  }
  .third-screen .container .img-block #error-img {
    height: 494px;
  }
  .third-screen .container > .text-block {
    width: 100%;
    height: 100%;
    min-height: 494px;
    padding: 0 24px;
  }
  .third-screen .container > .text-block .text-block-part {
    margin-bottom: 10%;
  }
  .third-screen .container > .text-block .text-block-part:last-child {
    margin-bottom: 0;
  }
  .third-screen .container > .text-block .text-block-part > h1 {
    font-size: 18px;
    line-height: 22px;
  }
  .third-screen .container > .text-block .text-block-part > p {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (max-width: 375px) {
  .third-screen .container {
    max-width: 375px;
    height: auto;
  }
}


.error{
	border: 2px solid red !important;
}
.lodingSpinner {
    margin: 50px 0 50px;
}
/* -- Spinner Animation -- */
.lodingSpinner{
    margin: 50px 0 50px;
}
.lodingSpinner h4{
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #595959;
}
.popup_spin {
    position: relative;
    width: 96px;
    height: 96px;
    background: rgba(1, 151, 71, 0.2);
    display: inline-block;
    border-radius: 50%;
    border: 1px solid rgba(1, 151, 71, 0.5);
}
.popup_spin::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    transform: translate(-50%, -50%);
    border-radius: inherit;
    background: var(
    --primary-color);
    animation: shadows 1.4s linear infinite;
    -webkit-animation: shadows 1.4s linear infinite;
    -moz-animation: shadows 1.4s linear infinite;
}
@keyframes shadows {
    0% {
        box-shadow: 0 0 0 0 rgba(1, 151, 71, 0.3), 0 0 0 30px rgba(1, 131, 71, 0.2);
    }
    100% {
        box-shadow: 0 0 0 31.5px rgba(1, 151, 72, 0.5), 0 0 0 31.5px rgba(1, 131, 72, 0.5);
    }
}

.loaderHide{
	display:none;
}

 @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cnfDiv {
            display: none;
            position: fixed;
            bottom: 0;
             color: #fff;
    font-size: 20px;
            left: 0;
            width: 100%;
            background-color: #019748;
            padding: 15px;
            box-shadow: 0px -5px 15px rgba(0, 0, 0, 0.1);
             text-align: center;

        }
        
        .cnfDiv p {
    color: #fff;
    text-align:center;

}