* {
  user-select: none;
}

:root {
  --primary-color: #545c64;
  --secondary-color: #0098ca;
  --accent-color: #0098ca;
  --text-dark: #000;
  --text-light: #fff;
  --background-light: #f8f9fa;
  --bg-header: #fff;
  --bg-card:  #a6d8e8;
  --bg-intro: #3c444f;
  --bg-footer: #3c444f;
  --br-grey: #f8f9fa;
}

@font-face {
  font-family: HelveticaNeue;
  src: url(../fonts/HelveticaNeue-Medium.otf);
}

body {
  font-family: HelveticaNeue, sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--background-light);
}

section {
  background: var(--background-light);
  color: var(--text-dark);
  scroll-margin-top: 56px;
  padding: 6rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}

section h2 {
  font-weight: 700;
  color: var(--secondary-color);
  position: relative;
  margin-bottom: 3rem;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--bg-footer) 20%, var(--secondary-color) 90%);
}


.row>* {
  padding-right: calc(var(--bs-gutter-x)* 1);
  padding-left: calc(var(--bs-gutter-x)* 1);
}


.card {
  background: var(--bg-card);
  color: var(--text-dark);
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
  overflow: hidden;

  animation: pulse 3s infinite;
  transition: background-color 0.5s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 #fff;
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 15px #fff;
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 #fff;
  }
}

.card:hover,
.card:active {
  background: var(--accent-color);
  color: var(--text-dark);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgb(0, 0, 0) !important;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}


img.rounded-circle {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border: 4px solid var(--bg-header);
}


.btn {
  font-size: 14px;
  background: var(--secondary-color);
  color: var(--text-light);
  border: 1px solid var(--text-light);
  font-weight: 400;
  padding: 15px 30px;
  text-shadow: none;
}

.btn:hover,
.btn:active {
  background: var(--primary-color) !important;
  color: var(--text-dark);
  border: 1px solid var(--text-light);

  transform: translateY(5px);
  transition: all 0.5s ease;
}

@media (min-width: 1024px) {
  .btn {
    font-size: 18px;
  }
}

a {
  text-decoration: none;
}



/*================ mobole first ================*/

/* --- #header --- */
.navbar {
  background-color: var(--bg-header) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 400;
  margin: 0 10px 0 0;
}

.nav-link:focus,
.nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.navbar-toggler {
  color: #fff;
  background-color: var(--accent-color);
}

.logo {
  width: 270px;
}




/* --- #home --- */
#home {
  background-image: url(../images/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 88px 0 0;
  text-shadow: 1px 1px 2px #fff, 0 0 1em #fff, 0 0 0.6em #fff;
}

@media (min-width: 992px) {
  #home {
    background-position: left;
  }
}

#home .container {
  margin: 0px auto 100px;
  text-align: right;
}

#home .container h1 {
  font-size: calc(1.475rem + 2.5vw);
  font-weight: 900;
  color: var(--text-dark) !important;
}

#home .container .sub-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark) !important;
}

.display-3,
.sub-title {
  animation: fadeInBounce 2s ease-out;
  color: #fff;
}

@keyframes fadeInBounce {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  50% {
    opacity: 1;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* --- #about --- */
#about.about-section {
  position: relative;
  overflow: hidden;
}

#about.about-section {
  background: var(--text-light);
  color: var(--text-dark);
}



/* --- #about + #advantages--- */
.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.feature-item:hover {
  opacity: 1;
  transform: translateX(10px);
}

.img-fluid {
  animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}


/* ---  #advantages--- */
#advantages .list-unstyled li b {
  color: var(--bg-footer) !important;
}

#advantages {
  background: var(--text-light) !important;
}


/* --- #methodology --- */
#methodology {
  background: var(--br-grey);
}

#methodology h5 {
  margin-top: 10px;
  font-size: calc(0.3rem + 1vw);
  color: var(--secondary-color);
}

@media (max-width: 767px) {
  #methodology h5 {
    font-size: 1.2rem;
  }
}

@media (min-width: 1920px) {
  #methodology h5 {
    font-size: 1.3rem;
  }
}

#methodology .card-body {
  padding: 1.5rem;
}

#methodology .card {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#methodology .card img {
  width: 60px;
  height: 60px;
}

#methodology .card .btn {
  padding: 15px 20px;
  font-size: 14px;
}

#methodology .card p {
  font-size: 16px;
}

@media screen and (((min-width: 768px) and (max-width: 1024px))) {
  #methodology .card p {
    font-size: 12px;
  }

  #methodology .card .btn {
    font-size: 11px;
  }
}

#methodology .card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

#methodology .card:hover h5 {
  color: var(--text-light);
}

#methodology .card:hover .btn {
  background: var(--bg-intro);
  color: var(--text-light);
}



@media (max-width: 767px) {
  #methodology .card p {
    font-size: 18px;
  }
}




/* --- #team --- */
#team .container .row {
  padding: 10px 0 0;
}

#team .container h5 {
  color: var(--accent-color);
}

#team .container .row p {
  color: var(--text-darkt) !important;
}

#team .col-md-4 {
  cursor: pointer;
  transition: all 0.5s ease-out;
  animation-name: attentionAnimation;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
}

#team .col-md-4:active,
#team .col-md-4:hover {
  transform: scale(0.9);
}

@keyframes attentionAnimation {
  0% {
    left: 0
  }

  1% {
    left: -0.188rem
  }

  2% {
    left: 0.313rem
  }

  3% {
    left: -0.5rem
  }

  4% {
    left: 0.5rem
  }

  5% {
    left: -0.313rem
  }

  6% {
    left: 0.188rem
  }

  7% {
    left: 0
  }
}


/* --- #faq / accordion --- */
#faq {
  background-color: var(--text-light);
}

.accordion-button:not(.collapsed) {
  color: var(--text-light);
  font-weight: 400;
  background-color: var(--primary-color);
  box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-body {
  background: var(--br-grey);
}

/* --- #testimonials --- */
#testimonials .container .row {
  padding: 10px 0 0;
}

#testimonials .card {
  color: var(--text-dark);
}

#testimonials .card:hover,
#testimonials .card:active {
  background: var(--accent-color);
}

#testimonials .rounded-circle {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 2px solid var(--accent-color);
  margin: 0 auto;
  text-align: center;
}

.blockquote-footer {
  font-weight: 700;
  color: var(--accent-color);
}
.blockquote p {
  text-align: center;
  margin: 0 auto 20px;
  max-width: 700px;
}

#testimonials .card:hover .blockquote-footer,
#testimonials .card:active .blockquote-footer {
  color: var(--text-dark);
}

#testimonials .carousel-item .d-block {
  margin: 0 auto;
  max-width: 700px;
}

.carousel-indicators {
  margin-bottom: -1rem;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--primary-color);
  height: 5px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: none;
}



/* --- #contact --- */
#contact {
  background: #8cc2cb;
  color: var(--text-dark);
}

#contact .btn {
  border: 2px solid var(--text-light);
  background: var(--secondary-color);
  color: var(--text-light);
}

.link-checkbox {
  color: #000;
}

.mb-3 label {
  font-size: 12px;
}
.mb-3 label a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- #adress  + footer  --- */
.bg-success {
  background-color: var(--bg-footer) !important;
}
#adress .list-unstyled {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.map {
  margin: 20px 0;
}

/* --- #footer  --- */
footer p {
  margin: 0 auto;
}

/* --- Pages  --- */

#thank .contact-information {
  height: calc(100vh - 88px - 58px) !important;
}

#thank .contact-information .container {
  height: 100%;
}

#thank .contact-information .container .section-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/*=============================================*/