@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,600;1,700;1,800&display=swap");

/*
    font-family: 'Montserrat', sans-serif;

    font-family: 'Open Sans', sans-serif;
*/

body,
.btn,
.primary-menu-item a {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
}

h2,
h3,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 30px;
}

h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 30px;
}

.iconbox-heading h4 {
  font-size: 17px;
  margin-bottom: 0;
  font-weight: 700;
}

.site-header-brand img {
  max-height: 100px;
}

/* .site-header-brand{height:125px} */

.iconbox-heading.box-color {
  color: #ffffff;
  font-size: 24px !important;
  font-weight: 900;
}

h4.font_size {
  color: #ffffff;
  font-size: 24px !important;
  font-weight: 900;
}

.social-item span:hover {
  color: #fff !important;
}

.primary-menu-item a:hover {
  color: #fff !important;
}

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

@media (min-width: 992px) {
  .site-header-brand img {
    max-height: 90px;
  }
}

@media (max-width: 767px) {
  h2.section-title {
    font-size: 30px !important;
    letter-spacing: -1px;
  }

  .col-inner.box_margin {
    margin-bottom: 40px;
  }

  .site-header-brand img {
    max-height: 70px;
  }
}

/*.site-header-logo,.site-header-logo-invert{
    max-height:32px;
}*/

#languageSelector a {
  font-size: 150%;
}

.iconbox-content p {
  margin: 0 0 10px;
  letter-spacing: 0;
  line-height: 25px;
}

.site-bg-video {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  object-fit: cover;
  z-index: -1;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#home {
  /* background: linear-gradient(135deg, #0b2a49, #143d63); */
  color: #f1f5f9;
  padding: 60px 20px;

  display: flex;
  align-items: center;
  margin-top: 60px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.rows-column {
  flex: 1;
}

.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-header h1 {
  font-size: 4.8rem;
  /* increased from 3.2rem */
  margin-bottom: 12px;
}

.subtitle {
  font-size: 2rem;
  /* increased from 1.25rem */
  color: #a0aec0;
}

.about-content {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-text {
  flex: 1 1 400px;
  max-width: 500px;
  font-size: 1.6rem;
  /* increased from 1.15rem */
  line-height: 1.8;
  color: #e2e8f0;
}

.about-text p+p {
  margin-top: 28px;
  /* more space between paragraphs */
}

.btn-primary {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 1.25rem;
  /* bigger button text */
  color: #fff;
  /* background-color: #fff; */
  border: 1px solid #fff;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #fff;
  outline: none;
  color: #000;
}

.about-info {
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  /* more gap between info blocks */
  color: #cbd5e1;
}

.info-block {
  display: flex;
  gap: 28px;
  /* bigger gap for breathing space */
  align-items: flex-start;
}

.icon {
  font-size: 48px;
  /* bigger icons */
  color: #fff;
  flex-shrink: 0;
  margin-top: 5px;
}

.info-block h3 {
  font-size: 2rem;
  /* bigger headings */
  margin-bottom: 12px;
  color: #fff;
}

.info-block strong {
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
  color: #fff;
  font-size: 1.2rem;
}

.info-block p {
  font-size: 16px;
  /* bigger paragraph text */
  color: #fff;
  line-height: 1.7;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-text,
  .about-info {
    max-width: 100%;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-25px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(25px);
  }

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

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-slide-left {
  animation: slideInLeft 1s ease forwards;
}

.animate-slide-right {
  animation: slideInRight 1s ease forwards;
}


.second-rows-column {
  display: flex;
  flex-direction: column;
}

.col-adap {
  width: 70%;
}

.hero-container {
  display: flex;
}

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

.sigin-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bordered-input {
  border: 2px solid #fff;
  -webkit-border-radius: 0;
  border-radius: 0;
  padding: 15px;
  background-color: transparent;
}

.bordered-input::placeholder {
  color: #fff;
}

.sigin-btn {
  margin: 10px 40px 0px 40px;
}

@media (max-width: 768px) {
  .about-info .info-block {
    flex-direction: column;
    /* stack icon above text */
    align-items: flex-start;
    text-align: left;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
  }

  .about-info .icon {
    margin-bottom: 15px;
    /* spacing below icon */
  }

  .col-adap {
    width: 100%;
  }
}