@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins: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&display=swap");

/*
 CSS Reset
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

ul {
  list-style: none;
}

#root,
#__next {
  isolation: isolate;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  background-color: #050b2d;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

.main_container {
  padding: 100px 20px 40px;
}

.container {
  width: 100%;
  max-width: 1280px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  position: relative;
}

.container_company {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
  margin: 0 auto;
}

.large-text,
.large-text > p,
.large-text ul li {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
}

.justify-content-between {
  justify-content: space-between;
}

.margin-90 {
  margin-top: 90px;
}

h1 {
  font-size: 3rem;
}

/* Page Navigation  */
nav {
  height: 80px;
  /* position: fixed; */
  width: 100%;
  top: 0;
  z-index: 10;
  /* background: #040006; */
}

nav ul {
  padding-left: 0;
}

nav ul.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 0;
}

nav .logo {
  position: absolute;
  left: 20px;
  img {
    width: 160px;
  }
}

nav .menu {
  position: absolute;
  right: 20px;
}

nav li img {
  width: 30px;
  margin-right: 5px;
}

nav li {
  display: flex;
  justify-content: center;
  align-items: center;
}

nav li a {
  font-size: 16px;
  text-decoration: none;
  line-height: 20px;
  position: relative;
  font-weight: 600;
  color: #fff;
  transition: all 0.2s ease-out;
  cursor: pointer;
  text-transform: capitalize;
}

nav li a:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 997px) {
  .nav-desktop {
    display: none !important;
  }
}

/* Mobile Navigation  */
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.mobile-navigation-header {
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 10px;
  z-index: 20;
}

.mobile-navigation-header.scrolled {
  position: fixed;
}

.mobile-navigation-logo {
  position: absolute;
  left: 25px;
  width: 120px;
}

.mobile-navigation-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 25px;
}

.mobile-navigation-close {
  width: 25px;
  z-index: 99;
  cursor: pointer;
  display: none;
}

.hamburger {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 5px;
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.mobile-navigation-menu {
  position: fixed; /* Make the menu fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #333;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 90;
}

.mobile-navigation-menu.open {
  transform: translateY(0);
}

.mobile-navigation-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.mobile-navigation-list li {
  margin: 1.5rem 0;
}

.mobile-navigation-list a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

@media (min-width: 997px) {
  .mobile-navigation-header {
    display: none;
  }
}

/* Page Content Header  */
.content_header {
  padding: 75px 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.content_header h1 {
  text-transform: capitalize;
  font-size: 2rem;
}

.content_header p {
  text-align: center;
}

/**** Media Queries *****/

@media (max-width: 767px) {
  .content_header {
    padding: 50px 20px;
    margin-top: 0;
  }
  .content_header h1 {
    font-size: 24px;
  }
  .content_header p {
    font-size: 14px;
  }
}

/* Page Hero  */

.page-hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
  min-height: 80vh;
}

.page-hero h1 {
  font-size: 50px;
  font-weight: 700;
  text-align: center;
}

.page-hero span {
  color: #5ed4ff;
  text-decoration: underline;
}

.page-hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.page-hero-text p {
  font-size: 20px;
  line-height: 1.5;
}

.hero_btn,
.btn-send {
  padding: 20px 60px;
  line-height: 30px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background: #a84fdb;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.hero_btn:hover,
.btn-send:hover {
  transform: scale(1.1);
  background: #81509e;
}

/**** Media Queries ****/

@media (min-width: 768px) and (max-width: 1199px) {
  .page-hero h1 {
    font-size: 40px;
  }
  .page-hero-text p {
    font-size: 18px;
  }

  .hero_btn,
  .btn-send {
    padding: 15px 40px;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .page-hero h1 {
    font-size: 30px;
  }
  .page-hero-text {
    text-align: justify;
    align-items: center;
  }
  .page-hero-text p {
    font-size: 16px;
  }
  .hero_btn,
  .btn-send {
    padding: 15px 30px;
    font-size: 20px;
  }
}

/* PageContentHero  */

.pageContentHero {
  height: 350px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
  background: #4054c2 url(../../assets/images/contentBck.png) no-repeat center center;
  background-size: cover;
}

.contentHeroImage {
  position: absolute;
  right: 15%;
  bottom: 0;
  height: 380px;
}

.pageContentHero p {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  max-width: 550px;
}

/* Page Welcome  */
.page-welcome {
  background: url(../../assets/images/welcome_image.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  background-attachment: fixed;
  align-items: center;
  position: relative;
  padding: 150px 0;
}

.page-welcome p {
  color: #fff;
  font-size: 18px;
  margin-right: 10%;
  max-width: 600px;
}

/**** Media Queries ****/

@media (min-width: 768px) and (max-width: 1199px) {
  .page-welcome {
    padding: 100px 0;
  }
  .page-welcome p {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .page-welcome {
    padding: 60px 0;
  }
  .page-welcome p {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 0;
    max-width: 600px;
    text-align: center;
  }
  .contentHeroImage {
    display: none;
  }
  .pageContentHero {
    height: auto;
    padding: 50px 0;
  }
}

/* Home Cards  */

.home-cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #4a4a57;
  padding: 50px 0px;
  border-radius: 15px;
  color: #fff;
}

.home-card {
  flex: 1;
  text-align: center;
  padding: 10px;
  position: relative;
}

.home-card:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.home-card h3 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  color: #54c0f7;
}

.home-card p {
  font-size: 14px;
  margin: 5px 0 0 0;
}

/**** Media Queries ****/

@media (min-width: 768px) and (max-width: 1199px) {
  .home-cards {
    width: 90%;
    padding: 90px 20px;
    gap: 5px;
  }
  .home-card {
    width: calc(25% - 12px);
  }
  .home-card p {
    font-size: 14px;
    letter-spacing: -0.5px;
  }
}

@media (max-width: 767px) {
  .home-cards {
    display: block;
    padding: 60px 20px;
    width: 90%;
  }
  .home-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 50px;
  }
  .home-card:not(:first-child) {
    border-left: none;
  }
  .home-card:last-child {
    margin-bottom: 0;
  }
}

/* Content Cards  */

.content_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 50px 60px 0;
  justify-content: center;
}
.content_card {
  background: #5a5e72;
  border-radius: 12px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.card_image {
  width: 70px;
  height: 70px;
}

.card_title {
  font-size: 24px;
  font-weight: 700;
  color: #5ed4ff;
}

.card_text {
  font-size: 16px;
  line-height: 22px;
}

/***** Media Queries *****/

@media (min-width: 768px) and (max-width: 1199px) {
  .content_cards {
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 16px), 1fr));
    padding: 40px 20px;
  }
}

@media (max-width: 767px) {
  .content_cards {
    padding: 30px 20px;
    grid-template-columns: auto;
  }
  .content_card {
    padding: 40px 20px;
  }
  .card_title {
    font-size: 20px;
  }
  .card_text {
    font-size: 14px;
  }
}

/* About Cards */
.aboutCards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 50px 0 0;
}

.aboutCard {
  border-radius: 12px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  text-align: center;
  background: #5a5e72;
}

.aboutCardTitle {
  font-size: 24px;
  font-weight: 700;
}
.aboutCardText {
  font-size: 16px;
  width: fit-content;
  line-height: 22px;
}

/* Media Queries */

/* @media (min-width: 1200px) and (max-width: 1439px) {
  .aboutCards {
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 10px), 1fr));
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .aboutCards {
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 10px), 1fr));
  }
}

@media (max-width: 767px) {
  .aboutCards {
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 10px), 1fr));
  }
} */

@media screen and (max-width: 525px) {
  .aboutCards {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .aboutCard {
    padding: 50px 20px;
  }
  .aboutCardTitle {
    font-size: 20px;
  }
  .aboutCardText {
    font-size: 14px;
  }
}

/* QuoteSection  */

.quote-section {
  position: relative;
  background: #4054c2;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 80px 20px;
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 15px;
  background-image: url(../../assets/images/quote_background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.quote-section::after {
  content: url(../../assets/images/cloud.png);
  position: absolute;
  top: -50px;
  right: -50px;
}

.quote_text {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.quote-section-description {
  max-width: 60%;
  text-align: left;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}

/**** Media Queries ****/

@media (min-width: 768px) and (max-width: 1199px) {
  .quote-section {
    padding: 120px 0;
  }
  .quote-section-description {
    max-width: 400px;
    font-size: 1.25rem;
    line-height: 1.25;
  }
  .quote_text {
    margin-left: 20px;
  }
  .quote_text h2 {
    font-size: 30px;
  }
  .quote_text h2:before {
    left: -15px;
  }
}

@media (max-width: 767px) {
  .quote-section {
    margin: 100px auto 20px;
  }
  .quote-section > .container {
    flex-direction: column;
  }
  .quote_text h2:before {
    left: -12px;
    width: 180px;
    top: -35px;
  }
  .quote-section-description {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.5;
  }
  .quote-section::after {
    top: -120px;
    right: -10px;
  }
}

/* Mobile Section  */

.mobile-section {
  padding: 100px 0px;
  position: relative;
  margin: 0 auto;
}

.mobile-section .container {
  gap: 40px;
}

.phone_image {
  width: 520px;
  position: absolute;
  right: 0;
  top: 0;
}

.mobile-section h2 {
  font-size: 30px;
  font-weight: 600;
}

.mobile-section h3 {
  font-size: 22px;
  font-weight: 500;
}

.mobile-section h4 {
  color: #d386ff;
  font-size: 20px;
}
.mobile-section p {
  font-size: 18px;
  line-height: 1.5;
}

.mobile-section__text {
  max-width: 85%;
}

.tablet_image {
  margin: 0 auto;
  position: relative;
}
/**** Media Queries ****/

@media (min-width: 768px) and (max-width: 1199px) {
  .mobile-section {
    padding: 100px 0;
  }
  .mobile-section__text {
    max-width: 500px;
  }
}

@media (max-width: 767px) {
  .mobile-section > .container {
    flex-direction: column;
  }
  .phone_image {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  .mobile-section h2 {
    font-size: 26px;
  }
  .mobile-section h3 {
    font-size: 16px;
  }
  .mobile-section__text {
    max-width: 100%;
  }
}

/* Articles Section  */
.articles-section {
  padding: 70px 0;
}

.articles-section h2,
.articles-section h3,
.articles-section p {
  text-align: left;
}

.articles-section h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #fff;
}
.articles-section p {
  font-size: 14px;
  color: #fff;
}

.article-card {
  background: #484b5b;
  border-radius: 12px;
  height: 430px;
  max-width: 300px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.article-card img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(365px, 1fr));
  justify-items: center;
  gap: 3rem;
  margin-top: 3rem;
}

.articles-grid a {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .articles-section {
    padding: 60px 0;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .article-card img {
    width: 345px;
    min-width: auto;
  }
  .articles-section h3 {
    font-size: 17px;
  }
  .articles-section p {
    font-size: 14px;
  }
}

/* Page Contant  */
.header_contact {
  background-color: #3f3f3f;
  padding: 20px 0;
  margin-top: 60px;
  text-align: center;
}

.contact_backgound {
  padding: 100px 0px;
  position: relative;
}

.form_container {
  z-index: 9;
}

label {
  display: block;
}

textarea,
input {
  padding: 15px 25px;
  margin: 20px auto;
  background: #5a5e72;
  color: #fff;
  border: none;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  border: 2px solid #fff;
}

::placeholder {
  color: #b5b5b5;
  opacity: 1; /* Firefox */
}

.headset_image {
  position: absolute;
  right: 10%;
  top: -50px;
}

.btn-send {
  width: 100%;
  max-width: 300px;
  margin: 20px auto 0;
}

.recaptcha {
  margin-top: 30px;
}

/****** Media Queries ******/

@media (min-width: 1200px) and (max-width: 1439px) {
  .headset_image {
    right: 0;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .contact_backgound {
    padding: 50px 0;
  }
  .headset_image {
    right: 0;
    width: 50%;
    top: 50px;
  }
}

@media (max-width: 767px) {
  .contact_backgound {
    padding: 50px 0;
  }
  .headset_image {
    display: flex;
    position: relative;
    justify-content: center;
    margin-top: 40px;
    right: 0;
    top: 0;
    max-width: 100%;
  }
}
/* Page Content  */
.main_content {
  padding: 100px 0;
  width: 100%;
}

/**** Media Queries *****/

@media (max-width: 767px) {
  .main_content {
    padding: 50px 0;
  }
}

/* Page News  */
.articles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.articles_card {
  display: flex;
  gap: 30px;
  max-width: 900px;
}
.articles_card_link {
  text-decoration: none;
  color: inherit;
}
.articles_card_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.articles_card_title {
  font-size: 20px;
  margin-bottom: 20px;
}
.articles_card_description {
  font-size: 15px;
  color: #b7b7b7;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.articles_card > .img-frame {
  max-width: 150px;
  min-width: 150px;
  width: 150px;
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.articles_card_image {
  min-width: 150px;
  min-height: 150px;
  object-fit: cover;
}

/***** Media Queries *****/

@media (max-width: 767px) {
  .articles_card {
    gap: 15px;
  }
  .articles_card > .img-frame {
    max-width: 100px;
    min-width: 100px;
    width: 100px;
    height: 100px;
  }
  .articles_card_title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

/* Single Article  */
.single_article {
  padding: 0px 20px 100px;
  max-width: 800px;
  margin: 0 auto;
}

.single_article img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 40px;
  display: block;
}

.single_article > h2,
.single_article_title {
  margin-top: 50px;
  font-size: 24px;
  font-weight: 700;
}

.single_article > h3 {
  margin-top: 30px;
  font-size: 21px;
  font-weight: 600;
}

.single_article > h4 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
}

.single_article a {
  color: inherit;
}

/***** Media queries ****/

@media (max-width: 767px) {
  .single_article {
    text-align: center;
  }
}

/* Footer  */
.footer {
  background: #010526;

  padding: 60px 0;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .footer_item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.footer .footer_item > img {
  margin-bottom: 10px;
  width: 150px;
  height: auto;
}

.footer .footer_item h4 {
  color: #797979;
  font-size: 20px;
  position: relative;
  text-align: left;
  padding-bottom: 10px;
  width: max-content;
}

.footer .footer_item h4::before {
  content: "";
  width: 50px;
  height: 2px;
  background: #797979;
  display: block;
  position: absolute;
  left: 0;
  top: 35px;
}

.footer .footer_item ul {
  padding-left: 0;
  margin: 0;
}

.footer .footer_item ul li {
  text-align: left;
  margin-bottom: 15px;
}

.footer .footer_item a {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}

.footer .footer_item .link-item {
  display: flex;
}

.footer .footer_item .link-item span {
  min-width: 100px;
  display: inline-block;
  text-align: left;
}

/**** Media Queries ****/

@media (min-width: 768px) and (max-width: 1199px) {
  .footer .footer_item a,
  .footer .footer_item span {
    font-size: 14px;
  }
  .footer .footer_item h4 {
    font-size: 16px;
    font-weight: 600;
  }
}

@media (max-width: 767px) {
  .footer .container {
    flex-direction: column;
  }
  .footer .footer_item .link-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer .footer_item {
    align-items: center;
    text-align: center;
  }
  .footer .footer_item .link-item span {
    text-align: center;
  }
  .footer .footer_item ul li {
    text-align: center;
  }
  .footer .footer_item h4::before {
    left: calc(50% - 25px);
  }
}

/**** Media Queries ****/

@media (min-width: 768px) and (max-width: 1199px) {
  .large-text,
  .large-text > p,
  .large-text ul li {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .margin-90 {
    margin-top: 50px;
  }
  .large-text,
  .large-text > p,
  .large-text ul li {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  .hero_btn,
  .btn-send {
    padding: 15px 30px;
    font-size: 20px;
    width: 100%;
    max-width: 300px;
  }

  .mobile-section {
    padding: 70px 0;
  }
}
