/* CSS Variables - Exact colors from React version */
:root {
  /* Navy blue primary */
  --primary: #000000;
  --primary-foreground: #ffffff;

  /* Gold accent */
  --secondary: #fa9106;
  --secondary-foreground: #0a1e3d;

  /* Backgrounds */
  --background: #ffffff;
  --foreground: #1a1f2e;

  /* Muted colors */
  --muted: #f5f5f7;
  --muted-foreground: #6b7280;

  /* Borders */
  --border: #e5e7eb;

  /* Fonts */
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

img {
  max-width: 100%;
  display: block;
}

.main-btn {
  width: 100%;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
  transition: all ease .3s;
}

.main-btn:hover {
  background-color: #d37a05;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.swiper {
  max-width: 100%;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  background-image: url('../images/hero-main1.png');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-text {
  max-width: 39rem;
}

.hero-section h1 {
  font-size: 2.5rem;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-section h1 {
    font-size: 2.75rem;
  }
}

.hero-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 0.9rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Value Props Grid */
.value-props {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .value-props {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-prop {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkmark {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.value-title {
  color: var(--primary-foreground);
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.value-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
}

/* CTA Button */
.cta-button {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
  margin: 20px 0;
}

.cta-button:hover {
  background-color: #d37a05;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Trust Section */
.trust-section {
  padding: 5rem 0;
  background-color: rgba(245, 245, 247, 0.3);
}

.section-title {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: white;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.2s;
}

.feature-card:hover {
  border-color: rgba(10, 30, 61, 0.5);
}

.icon-wrapper {
  width: 3rem;
  height: 3rem;
  background-color: rgba(10, 30, 61, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--muted-foreground);
}

.feature-card-highlight {
  background-color: rgba(212, 175, 55, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.badge {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.highlight-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background-color: #eee;
  color: var(--primary-foreground);
}

.cta-section h2,
.cta-section p {
  color: #000;
}

.cta-content {
  text-align: center;
}

.cta-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s;
}

.modal.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: var(--muted);
  margin: 2rem auto;
  padding: 2rem;
  width: 90%;
  max-width: 48rem;
  border-radius: 0.5rem;
  position: relative;
  animation: slideDown 0.3s;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--muted-foreground);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  transition: all 0.2s;
}

.modal-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--foreground);
}

/* Quiz Styles */
.quiz-header {
  margin-bottom: 2rem;
}

.back-button {
  background: var(--secondary);
  border: none;
  color: #000;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
  margin-top: 20px;
}

.back-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.progress-container {
  margin-bottom: 2rem;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.progress-label {
  color: var(--muted-foreground);
  font-weight: 500;
}

.progress-percent {
  color: var(--primary);
  font-weight: 500;
}

.progress-bar {
  width: 100%;
  height: 0.5rem;
  background-color: #e5e7eb;
  border-radius: 0.25rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.quiz-card {
  background-color: white;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
}

.quiz-question {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .quiz-question {
    font-size: 1.875rem;
  }
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option {
  width: 100%;
  text-align: left;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  background-color: white;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
}

.quiz-option:hover {
  border-color: rgba(10, 30, 61, 0.5);
  background-color: rgba(245, 245, 247, 0.5);
}

.quiz-option.selected {
  border-color: var(--primary);
  background-color: rgba(10, 30, 61, 0.05);
  box-shadow: 0 2px 8px rgba(10, 30, 61, 0.1);
}

.radio-circle {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--muted-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quiz-option.selected .radio-circle {
  border-color: var(--primary);
  background-color: var(--primary);
}

.radio-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: white;
  border-radius: 50%;
  display: none;
}

.quiz-option.selected .radio-dot {
  display: block;
}

.option-text {
  font-weight: 500;
}

/* Form Styles */
.form-container {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
}

.form-title {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  transition: all 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 30, 61, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  cursor: pointer;
}

.submit-button {
  width: 100%;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
}

.submit-button:hover {
  background-color: #c29d2f;
}

.submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.success-message {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  color: #10b981;
  margin: 0 auto 1.5rem;
}

.success-title {
  font-size: 2rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.success-text {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/*  diagram  */

/*.diagram {*/
/*  padding: 5rem 0;*/
/*}*/

.diagram-content {
  display: flex;
  justify-content: center;
}

.diagram-content img {
  max-width: 800px;
  width: 90%;
}

/*  slider block */

.slider-block {
  padding: 5rem 0;
}

.slider-content {
  display: flex;
  justify-content: center;
}

.slider-content-wrap {
  width: 100%;
  max-width: 600px;
}

.slider-content-wrap {
  background: url(../images/bg-slide.png) 0 0 / cover no-repeat rgba(0, 0, 0, 0.85);
  position: relative;
}

.news__top {
  background: #fff;
  height: 50px;
  margin: -1px;
}

.news__body {
  /* background: url(../images/bg-slide.png) 0 0 / cover no-repeat #00275b; */
  display: flex;
  flex-direction: column;
  min-height: 480px;
  text-align: center;
  /* position: relative; */
}

.news__logo {
  max-width: 140px;
  margin: 0 auto;
  transform: translate(0, -60px);
}

.news__logo img {
  width: 100%;
}



.swiper-pagination-bullet {
  background: var(--secondary) !important;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
}

.swiper-pagination-bullet-active {
  background: #fff !important;
  width: 12px !important;
  height: 12px !important;
}


h3.news__title {
  color: #fff;
  margin-top: -40px;
  font-size: 22px;
  margin: 0 20px 30px;
  text-transform: uppercase;
}

.news__sub-title,
.counter-value,
.counter-value1 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  margin: 0 15px 20px;
}

.news__button {
  margin-bottom: 60px;
  font-size: 18px !important;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  padding: 12px 20px !important;
  background: var(--secondary);
  border-radius: 5px;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 95px;
  position: absolute;
  bottom: 0;
  right: 50%;
  z-index: 1;
  transform: translate(50%, -50%);
  transition: all ease .3s;
  cursor: pointer;
}

.news__button:hover {
  background: #d37a05;
}

.form-section {
  background: #000;
  padding: 5rem 0;
}

.form-section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.form-section-content h2 {
  color: #fff;
  font-size: 2.25rem;
  text-align: center;
}

.form-section-content p {
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.form-section form,
.bottom-form form {
  width: 100%;
  max-width: 500px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}


.form-section form #div_f,
.form-section form #div_f label, 
.bottom-form form #div_f,
.bottom-form form #div_f label {
  display: flex;
  flex-direction: column;
}

.form-section form #div_f,
.bottom-form form #div_f {
  gap: 15px;
}

.form-section form #div_f input,
.bottom-form form #div_f input {
  width: 100%;
  border-radius: 8px;
  padding: 15px 20px;
  transition: all ease .3s;
  border: 1px solid #ccc;
  font-size: 16px;
}

.form-section form #div_f button,
.bottom-form form #div_f button {
  font-size: 20px !important;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  padding: 12px 30px !important;
  background: var(--secondary);
  border-radius: 5px;
  transition: all ease .3s;
  cursor: pointer;
  border: none;
}

.form-section form #div_f button:hover,
.bottom-form form #div_f button:hover {
  background: #d37a05;
}

.form-section form #div_f input.error,
.bottom-form form #div_f input.error {
  border: 2px solid red;
}

.video-block video {
  width: 100%;
}

/* process */

.process {
  padding: 5rem 0;
}

.process-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  overflow: hidden;
}

.process-content .swiper-wrapper {
  max-width: 100% !important;
}

.process-content-slider .swiper-slide {
  max-width: 516px !important;
  -webkit-box-shadow: 0px 0px 12px 0px #000000; 
  box-shadow: 0px 0px 12px 0px #000000;
  height: auto;
}

.swiper-slide-item,
.process-slide-wrap {
  height: 100%;
}



.process-content h2 {
  font-size: 2.25rem;
}

.process-content-slider {
  max-width: 100%;
  padding: 20px;
}

.process-slide-content {
  width: 100%;
  height: 100%;
  max-width: 516px;
  display: flex;
  flex-direction: column;
}

.process-slide-item-top {
  width: 100%;
  height: 346px;
}

.swiper-slide:nth-child(1) .process-slide-item-top {
  background: url("../images/process-slide1.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}
.swiper-slide:nth-child(2) .process-slide-item-top {
  background: url("../images/process-slide2.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}
.swiper-slide:nth-child(3) .process-slide-item-top {
  background: url("../images/process-slide3.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}
.swiper-slide:nth-child(4) .process-slide-item-top {
  background: url("../images/process-slide4.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

.process-slide-item-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  gap: 20px;
  flex: 1;
}

.process-slide-item-bottom-text h4{
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.process-slide-item-bottom-btn button {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
  transition: all ease .3s;
}

.process-slide-item-bottom-btn button:hover {
  background-color: #d37a05;
}

/*  advantages  */

.advantages {
  padding: 5rem 0;
  background-color: #000;
}

.advantages-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  overflow: hidden;
}

.advantages-content h2 {
  font-size: 2.25rem;
  color: #fff;
}
.advantages-content-slider .swiper-slide {
  max-width: 516px !important;
  height: auto;
}

.advantages-content-slider-item {
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  position: relative;
  padding: 20px;
}

.advantages-content-slider-item img {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 58px;
  max-height: 58px;
}

.advantages-content-slider-item h4 {
  font-size: 1.5rem;
}

.advantages-content-slider-item p {
  max-width: 400px;
  margin-top: 20px;
  position: relative;
  z-index: 3;
}

.advantages-content-slider-item p span {
  color: #fff;
  font-weight: 700;
}

.sub-text {
  margin-top: 20px;
  display: inline-block;
  max-width: 370px;
  font-size: .75rem;
  color: #fff;
}

/*  help  */

.help {
  padding: 5rem 0;
  background-color: #eee;
}

.help-content-items {
  background-color: #000;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.help-content-items-img {
  width: 100%;
  max-width: 97px;
  height: 97px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.help-content-items-img .icon {
  width: 65px;
  height: 65px;
}

.help-content-items-img .arrows {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: rotate 15s infinite linear;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
    animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1);
  }
  100% {
    transform: rotate(360deg);
  }
}

.help-content-items-text h4 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
}

.help-content-items-text p {
  color: #fff;
}

.help-content-items-btn {
  width: 100%;
  max-width: 350px;
}

.help-content-items-btn button {
  width: 100%;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
  transition: all ease .3s;
}




/*  found  */

.found {
  padding: 5rem 0;
}

.found-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.found-content-left,
.found-content-right {
  width: 100%;
}

.found-content-left {
  max-width: 511px;
}

.found-content-right {
  max-width: 566px;
}

.found-content-left h2 {
  font-size: 2.25rem;
}

.found-content-left-subitem {
  max-width: 412px;
  margin-top: 30px;
}

.found-content-left-btn {
  margin-bottom: 30px;
}

.found-content-right {
  padding: 25px;
  background-color: var(--secondary);
}

.found-content-right img {
  width: 100%;
}

.found-content-right h2 {
  margin-top: 20px;
  font-size: 2rem;
}

.found-content-right p {
  margin-top: 20px;
}

/*  world  */

.world {
  padding: 5rem 0;
  background: url("../images/earth-img.svg") no-repeat, #fff;
  background-position: center bottom;
  background-size: contain;
}

.world-content {
  display: flex;
  justify-content: center;
}

.world-content h2 {
  font-size: 2.25rem;
  text-align: center;
}

.world-slider {
  overflow: hidden;
  margin-top: 200px;
}

.world-slider .swiper {
  pointer-events: none;
}

.world-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.world-slider1 {
  margin-bottom: 30px;
}

.world-slider1,
.world-slider2 {
  height: auto;
}

.world-slider .swiper-slide {
  width: auto !important;
  height: 36px;
}


.world-slider .swiper-slide img{
  max-width: fit-content;
  height: auto;
}

/*  how-we-work  */

.how-we-work {
  padding: 5rem 0;
  background-color: #000;
}

.how-we-work-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.how-we-work-content h2 {
  font-size: 2.25rem;
  color: #fff;
  text-align: center;
}

.how-we-work-content-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.how-we-work-content-item {
  display: flex;
  flex-direction: column;
}

.how-we-work-content-item-bottom {
  background-color: var(--secondary);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  gap: 20px;
  flex: 1;
}

.how-we-work-content-item-bottom h4 {
  font-size: 1.5rem;
}

/*  procedure  */

.procedure {
  padding: 5rem 0;
}

.procedure-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.procedure-content h2 {
  text-align: center;
  font-size: 2.25rem;
}

.procedure-content-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.procedure-content-item-icon {
  max-width: 62px;
}

.procedure-content-item h4 {
  font-size: 1.5rem;
  margin-top: 20px;
}

.procedure-content-item p {
  margin-top: 20px;
}

.procedure-content-item .main-btn {
  max-width: 300px;
  margin-top: 30px;
}

.procedure-content-attention {
  align-self: flex-start;
  max-width: 800px;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #000;
  background-color: var(--secondary);
  box-shadow: 0px 0px 22px 0px rgba(250, 145, 6, 0.38);
  display: flex;
  gap: 20px;
}

.team {
  padding: 5rem 0;
  background-color: #000;
}

.team-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  overflow: hidden;
}

.team-content h2 {
  font-size: 2.25rem;
  color: #fff;
  text-align: center;
}

.team-content-slider .swiper-wrapper {
    max-width: 100% !important;
}

.team-content-slider-img {
  max-height: 388px;
  max-width: 388px;
}

.team-content-slider .swiper-slide {
  max-width: 388px;
  height: auto;
}

.team-content-slider-img img {
  width: 100%;
}

.team-content-slider-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-content-slider-bottom {
  background-color: #eee;
  padding: 15px;
  display:flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  gap: 15px;
  flex: 1;
}

.team-content-slider-bottom h4 {
  font-size: 1.5rem;
}

/*  reviews  */

.reviews {
  padding: 5rem 0;
  background-color: #eee;
}

.reviews-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.reviews-content h2 {
  font-size: 2.25rem;
  text-align: center;
}

.reviews-content-slider1 {
  padding: 20px 0;
}

.reviews-content-slider1 .swiper-slide{
  max-width: 300px;
  height: auto;
}

.reviews-content-slide-wrap {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 22px 0px rgba(250, 145, 6, 0.38);
}

.reviews-content h4 {
  font-size: 1.5rem;
  align-self: flex-start;
  margin: 20px 0;
  max-width: 400px;
}

.reviews-content-slider2 {
  padding: 20px;
}

.reviews-content-slider2 .swiper-slide {
  max-width: 460px;
  height: auto;
}

.slider2-wrap {
  box-shadow: 0px 0px 22px 0px rgba(250, 145, 6, 0.38);
  width: 100%;
  height: 100%;
  padding: 25px;
}

.slider2-wrap-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.slider2-wrap-top-left {
  max-width: 92px;
  height: 92px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--secondary);
}

.slider2-wrap-top-right-icon {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.slider2-wrap-top-right-icon img {
  max-width: 15px;
}

.slider2-wrap-top-right-icon span {
  font-size: 0.75rem;
}

.slider2-wrap p {
  margin-top: 20px;
}

/*  people  */

.people {
  padding: 5rem 0;
  background-color: #000;
}

.people-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.people-content h2 {
  font-size: 2.25rem;
  color: #fff;
  text-align: center;
}

.people-content img {
  max-width: 114px;
}

.people-content .main-btn {
  max-width: 400px;
}

/*  media  */

.media {
  padding: 5rem 0;
  background-color: #eee;
}

.media-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.media-content h2 {
  font-size: 2.25rem;
  text-align: center;
}

.media-content-items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.media-content-item {
  width: 49%;
}

/*  faq-content  */
.faq {
  padding: 5rem 0;
  background-color: #000;
}

.faq-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-content h2 {
  font-size: 2.25rem;
  text-align: center;
  color: #fff;
}

.faq-content-items {
  margin-top: 30px;
  width: 100%;
  max-width: 1160px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.faq-content-item {
  background-color: #fff;
  padding: 20px;
  cursor: pointer;
  transition: all ease .3s;
}

.faq-content-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-content-item-top h4 {
  font-size: 1.25rem;
}

.faq-content-item-top-icon {
  width: 100%;
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f4f4f4;
  background-image: url("../images/orange-plus.svg");
  background-repeat: no-repeat;
  background-position: center;
  transition: all ease .3s;
}

.faq-content-item:hover .faq-content-item-top-icon {
  background-color: var(--secondary);
  background-image: url("../images/white-plus.svg");
}

.faq-content-item.active .faq-content-item-top-icon{
  transform: rotateZ(45deg);
}


.faq-content-item-bottom {
  transition: all ease .3s;
  height: 0;
  overflow: hidden;
}
.faq-content-item.active .faq-content-item-bottom {
  height: auto;
  margin-top: 20px;
}

/*  official */

.official {
  padding: 5rem 0;
  background-color: #eee;
}

.official-content-items {
  width: 100%;
  display: flex;
  gap: 10px;
}

.official-content-items-left,
.official-content-items-right {
  width: 100%;
}

.official-content-items-left {
  max-width: 843px;
}

.official-content-items-right {
  max-width: 342px;
  border-radius: 12px;
  overflow: hidden;
}

.official-content-items-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000;
  gap: 20px;
}

.official-content-items-left h2 {
  font-size: 3rem;
  text-align: center;
  color: #fff;
}

.official-content-items-left h4 {
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
}

.official-content-items-left h4 span,
.official-content-items-left p {
  color: var(--secondary);
}

/*  bottom-form  */

.bottom-form {
  padding: 5rem 0;
  background-color: #000;
}

/*  footer */

.footer {
  padding: 5rem 0;
  background-color: #eee;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-content-left img {
  max-width: 180px;
}

.footer-content-middle-bottom-item,
.footer-content-middle-top,
.footer-content-right-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-content-middle-bottom-item img,
.footer-content-middle-top img,
.footer-content-right-top img {
  width: 100%;
  max-width: 25px;
}

.footer-content-middle {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-content-middle-bottom {
  display: flex;
  gap: 20px;
}

.footer-content-right-top span{
  color: var(--secondary);
  margin-bottom: 10px;
}

.footer-content-middle-links {
  display: flex;
  gap: 15px;
}

.footer-content-middle-links a {
  color: #000;
}

/*  more details */
.wrap-btn {
  width: 100%;
  display: flex;
  justify-content: center;
}

.read-more {
  cursor: pointer;
  width: 100%;
  max-width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: blink linear 2s infinite;
}

.read-more img {
  transform: rotateZ(90deg);
  transition: all ease .3s;
}

.read-more span {
  color: #000;
  font-weight: 700;
  transition: all ease .3s;
}

.read-more-wrap {
  width: 100%;
}

.more-details {
  display: none;
}

.read-more-wrap.active .more-details {
  display: block;
  margin-top: 20px;
}

.read-more-wrap.active .read-more img {
  transform: rotateZ(270deg);
}

.hide {
  display: none;
}

#valid-msg {
  color: #10b981;
}

#error-msg {
  color: red;
}

@keyframes blink {
  0% {
    box-shadow: none;
  }

  50% {
    box-shadow: 0px 0px 18px 5px rgba(255,255,255,0.75);
    -webkit-box-shadow: 0px 0px 18px 5px rgba(255,255,255,0.75);
    -moz-box-shadow: 0px 0px 18px 5px rgba(255,255,255,0.75);
  }

  100% {
    box-shadow: none;
  }
}

@media screen and (max-width: 1280px) {
  .hero-content {
    flex-direction: column;
  }

  .video-block {
    width: 80%;
    max-width: 800px;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .media-content-items {
    justify-content: center;
  }
}

@media screen and (max-width: 992px) {
  .how-we-work-content-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .official-content-items {
    flex-direction: column;
    align-items: center;
  }

  .official-content-items-left {
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .help-content-items {
    flex-direction: column;
    align-items: center;
  }

  .procedure-content-items {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .world-slider {
    margin-top: 120px;
  }
}

@media screen and (max-width: 480px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .how-we-work-content-items {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .sub-text,
  .advantages-content-slider-item p span {
    max-width: 220px;
  }

  .official-content-items-left h2 {
    font-size: 1.7rem;
  }

  .footer-content-middle-bottom,
  .footer-content-middle-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-content-middle-top {
    justify-content: center;
  }
  
  .diagram .container {
    width: 100%;
  }

  .diagram-content img {
    width: 100%;
  }

  .video-block {
    width: 100%;
  }

  .how-we-work-content-item-bottom h4,
  .how-we-work-content-item-bottom p {
    text-align: center;
  }
}