
header {
  height: 96px;
  font-family: "sans serif";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  color: #ffffff;
  padding: 0;

  background-color: white;
}

@media screen and (max-width: 1200px) {
  header {

  }
}
@media screen and (max-width: 550px) {
  header {
    height: 80px;

  }
}
@media screen and (max-width: 380px) {
  header {
    height: 70px;
  }
}

.gradient-button {
  align-items: center;
  background: linear-gradient(130deg, #2fc3cd 0%, #51aae0 100%);
  border-radius: 44px;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  outline: none;
  padding: 0 30px;
  transition: background 0.3s ease;
}


@media screen and (max-width: 1200px) {
  .gradient-button-header {
    font-size: 16px;
    font-weight: 600;
    height: 40px;
    padding: 0 20px;
    border-radius: 24px;
  }
}

@media screen and (max-width: 600px) {
  .gradient-button {
    font-size: 16px;
    font-weight: 600;
    height: 44px;
    border-radius: 24px;
  }
}


@media screen and (max-width: 374px) {
  .gradient-button {
    font-size: 14px;
    font-weight: 600;
    height: 38px;
    border-radius: 20px;
  }
}

a.gradient-button {
    display: inline-flex;
    text-decoration: none;
}

a.gradient-button:active,
a.gradient-button:hover {
    color: white;
}

.gradient-button:hover {
  background: linear-gradient(-130deg, #2fc3cd 0%, #51aae0 100%);
}

.nav-header {
  align-items: center;
  background-color: #18191f;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #f7f7f7;
  display: flex;
  flex-direction: row;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  height: 96px;
  justify-content: space-between;
  left: 0;
  padding: 0 32px;
  position: fixed;
  top: 0;
  width: 100%;
}

@media screen and (max-width: 550px) {
  .nav-header {
    height: 80px;
  }
}
@media screen and (max-width: 380px) {
  .nav-header {
    height: 70px;
  }
}

.nav-header .nav-links {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.nav-header .nav-links .gradient-button {
  margin-left: 24px;
}
@media screen and (max-width: 1100px) {
  .nav-header .nav-links .gradient-button {
    margin-left: 15px;
  }
}

.nav-header .nav-links .nav-link {
  color: #f7f7f7;
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
  text-decoration: none;
  padding: 8px 12px 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-header .nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background-color: #33bcd2;
  transition: all 0.3s ease;
  opacity: 0;
}

.nav-header .nav-links .nav-link-active {
  color: #f7f7f7;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-header .nav-links .nav-link-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background-color: #33bcd2;
  transition: all 0.3s ease;
}

.nav-header .nav-links .nav-link:hover::after {
  opacity: 1;

}

.nav-header .logo {
  width: 122px;
  height: 68px;
}

@media screen and (max-width: 1300px) {
  .nav-header {
    padding: 0 20px;
  }

  .nav-header .nav-links .nav-link {
    font-size: 14px;
    padding: 6px 10px;
  }
}

@media screen and (max-width: 1200px) {
  .nav-header .logo {
    width: 110px;
    height: 58px;
  }
  .nav-header {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1023px) {
  .nav-header .nav-links {
    display: none;
  }
}

.burger-button {
  display: none;
  width: 56px;
  height: 56px;
  background: transparent;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .burger-button {
    display: flex;
  }
}
@media screen and (max-width: 550px) {
  .first-block {
    padding-left: 0;
    padding-right: 0;
  }
  .burger-button {
    width: 46px;
    height: 46px;
  }
}

.mobile-menu {
  display: none;
  width: 100%;
  position: fixed;
  top: 96px;
  height: 487px;
  left: 0;
  z-index: 1000;
  background: rgb(24, 25, 31);
}

@media screen and (max-width: 550px) {
  .mobile-menu {
    top: 80px;
    height: 396px;
  }
}
@media screen and (max-width: 380px) {
  .mobile-menu {
    top: 70px;
  }
}

.mobile-menu-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  align-items: center;
}

.mobile-logo {
  width: 158px;
  height: 87px;
  margin-bottom: 20px;
}
@media screen and (max-width: 550px) {
  .mobile-logo {
    width: 110px;
    height: 58px;
    margin-bottom: 15px;
  }
}

.mobile-menu .nav-link{
  color: #fff;
}

.close-button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-width: 1px;
  border-style: solid;
  border-color: #2fc3cd;
  margin-top: 40px;
  margin-bottom: 20px;
}
.close-icon {
  width: 23px;
  height: 23px;
}
@media screen and (max-width: 550px) {
  .close-button {
    width: 44px;
    height: 44px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .close-icon {
    width: 17px;
    height: 17px;
  }
}



.raleway-500 {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.raleway-600 {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.raleway-700 {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.raleway-800 {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.strip1-content {
  max-width: 600px;
}

.strip1-description {
  font-size: 26px;
  line-height: 30px;
  text-align: center;
}

.gradient-text {
  background: linear-gradient(130deg, #2fc3cd 0%, #51aae0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.strip1-title {
  font-size: 36px;
  line-height: 42px;
  text-align: center;
}

@media screen and (max-width: 700px) {
  .strip1-content {
    max-width: 600px;
  }

  .strip1-description {
    font-size: 24px;
    line-height: 28px;
    text-align: center;
  }

  .strip1-title {
    font-size: 28px;
    line-height: 32px;
    text-align: center;
  }
}
@media screen and (max-width: 550px) {
  .br-desktop {
    display: none;
  }
}

@media screen and (max-width: 550px) {
  .strip1-content {
    text-align: left;
  }

  .strip1-description {
    text-align: left;
  }

  .strip1-title {
    text-align: left;
  }
}

.strip2-content {
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 30px;
}

.strip2-content div:first-child {
  font-size: 16px;
  line-height: 18px;
  margin: 22px 0;
}

.strip2-content ul {
  list-style-type: none;
  padding-left: 0;
}

.strip2-content ul li {
  color: #f7f7f7;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.strip2-content ul li:before {
  content: "●";
  color: #43b3b8;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

.strip2-description {
  font-size: 28px;
  line-height: 32px;
}

.strip2-title {
  font-size: 16px;
}

@media screen and (max-width: 700px) {
  .strip2-content {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 15px;
  }

  .strip2-content div:first-child {
    font-size: 14px;
    line-height: 16px;
    margin: 14px 0 10px;
  }

  .strip2-content ul li {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 12px;
    padding-left: 22px;
  }

  .strip2-description {
    font-size: 18px;
    line-height: 21px;
  }

  .strip2-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 550px) {
  .strip2-description {
    font-size: 17px;
    line-height: 19px;
  }
}
@media screen and (max-width: 380px) {
  .strip2-description {
    font-size: 16px;
    line-height: 18px;
  }
  .strip2-content div:first-child {
    margin: 10px 0 10px;
  }
}



.strip3-button {
  margin-top: 40px;
}

.strip3-content {
  font-size: 16px;
  line-height: 18px;
  margin-top: 24px;
}

.strip3-description {
  font-size: 28px;
  line-height: 32px;
}

.strip3-title {
  font-size: 16px;
  margin-top: 5px;
}

@media screen and (max-width: 700px) {
  .strip3-content {
    font-size: 14px;
    line-height: 16px;
    margin-top: 24px;
  }

  .strip3-description {
    font-size: 18px;
    line-height: 21px;
  }
}


.strip4-button {
  margin-top: 40px;
}

.strip4-content {
  font-size: 16px;
  line-height: 18px;
  margin-top: 24px;
}

.strip4-description {
  font-size: 28px;
  line-height: 32px;
}

.strip4-title {
  font-size: 16px;
  margin-top: 5px;
}

@media screen and (max-width: 700px) {
  .strip4-content {
    font-size: 14px;
    line-height: 16px;
    margin-top: 24px;
  }

  .strip4-description {
    font-size: 18px;
    line-height: 21px;
  }
}


.strip5-button {
  margin-top: 40px;
}

.strip5-content {
  font-size: 16px;
  line-height: 18px;
  margin-top: 24px;
}

.strip5-description {
  font-size: 28px;
  line-height: 32px;
}

@media screen and (max-width: 700px) {
  .strip5-content {
    font-size: 14px;
    line-height: 16px;
    margin-top: 24px;
  }

  .strip5-description {
    font-size: 18px;
    line-height: 21px;
  }
  .strip5-button {
    font-size: 14px;
  }
}


.strip6-title {
  color: #18191f;
  font-size: 16px;
  margin-top: 5px;
}

.strip6-button {
  margin-top: 40px;
}

.strip6-content {
  color: #18191f;
  font-size: 16px;
  line-height: 18px;
  margin-top: 24px;
}

.strip6-description {
  color: #18191f;
  font-size: 28px;
  line-height: 32px;
}

.strip6-title {
  color: #18191f;
  font-size: 16px;
  margin-top: 5px;
}

@media screen and (max-width: 700px) {
  .strip6-content {
    font-size: 14px;
    line-height: 16px;
    margin-top: 24px;
  }

  .strip6-description {
    font-size: 18px;
    line-height: 21px;
  }
}


.testimonials {
  background-color: #f7f7f7;
  padding: 0 20px 64px;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .testimonials {
    padding: 0 15px 24px;
  }
}

@media screen and (max-width: 600px) {
  .testimonials {
    padding: 0 14px 58px;
  }
}

.testimonials .certifications {
  border-radius: 24px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.testimonials .certifications .certificate {
  align-items: center;
  background-color: #fff;
  border-radius: 4px;
  display: flex;
  height: 184px;
  justify-content: center;
  max-height: 184px;
  padding: 4px;
  width: 100%;
}

.testimonials .certifications .certificate img {
  height: auto;
  width: 75%;
}

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

.testimonials .certifications-title {
  color: #18191f;
  font-family: "Raleway", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 42px;
  padding-bottom: 32px;
  padding-top: 140px;
  text-align: center;
}

.testimonials .clients-title {
  color: #18191f;
  font-family: "Raleway", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 42px;
  padding-bottom: 32px;
  padding-top: 64px;
  text-align: center;
}

@media (max-width: 700px) {
  .testimonials .certifications-title {
    font-size: 26px;
    line-height: 30px;
    padding-top: 90px;
  }
  .testimonials .clients-title {
    font-size: 26px;
    line-height: 30px;
    padding-top: 24px;
  }
}

@media (max-width: 374px) {
  .testimonials .certifications-title {
    font-size: 22px;
    line-height: 26px;
    padding-top: 70px;
  }
  .testimonials .clients-title {
    font-size: 22px;
    line-height: 26px;
    padding-top: 22px;
  }
}

.testimonials .clients {
  border-radius: 24px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(6, 1fr);
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .testimonials .clients {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 900px) {
  .testimonials .clients {
    grid-template-columns: repeat(4, 1fr);
  }
}





.testimonials .clients .client {
  align-items: center;
  background-color: #fff;
  border-radius: 4px;
  display: flex;
  height: 100%;
  justify-content: center;
  max-height: 184px;
  overflow: hidden;
  padding: 4px;
  width: 100%;
}

.testimonials .clients .client img {
  height: auto;
  width: 90%;
}

.testimonials .read-stories-button-contaiener {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 48px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .testimonials .clients {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .testimonials .clients .client:nth-child(n+17) {
    display: none;
  }
}

/* ________________ Footer _____________*/
.site-footer {
  color: #020d45;
  background-color: #18191f;
  display: flex;
  flex-direction: row-reverse;
  padding: 0;
  width: 100%;
  margin-top: -30px;
}
.footer-container {
  background-color: #f7f7f7;
}
footer {
  position: relative;
}

.footer {
  background-color: #18191f;
  color: #f7f7f7;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  max-width: 1246px;
  width: 100%;
  margin: 0 auto;
  padding: 98px 20px 48px 20px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 38px 24px;
  }
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 38px 14px;
  }
}

.footer .cta-line-1 {
  font-size: 40px;
  line-height: 42px;
  padding-bottom: 45px;
  font-weight: 700;
}

.footer .cta-line-2 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 500;
  padding-bottom: 48px;
}

@media screen and (max-width: 1024px) {
  .footer .cta-line-1 {
    font-size: 34px;
    line-height: 36px;
    padding-bottom: 24px;
  }
  .footer .cta-line-2 {
    font-size: 18px;
    line-height: 20px;
    padding-bottom: 24px;
  }
}

@media screen and (max-width: 768px) {
  .footer .cta-line-1 {
    font-size: 28px;
    line-height: 34px;
    padding-bottom: 24px;
  }
  .footer .cta-line-2 {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 500px) {
  .footer .cta-line-1 {
    font-size: 30px;
    text-align: center;
  }
  .footer .cta-line-2 {
    text-align: center;
  }
}

.footer .info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  border-bottom: 1px solid #fff;
}

.footer .info .menu {
  width: 24%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 10px 8px 0;
}
@media screen and (max-width: 1024px) {
  .footer .info {
    flex-wrap: wrap;
  }
  .footer .info .menu {
    width: 49%;
    padding: 0 10px 8px 0;
  }
}
@media screen and (max-width: 500px) {
  .footer .info .menu {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 8px 0;
    text-align: center;
  }
  .footer .info {
    flex-direction: column;
    justify-content: center;
  }
}

.footer .info .menu a {
  color: #f7f7f7;
  margin-bottom: 16px;
  text-decoration: none;
  font-size: 14px;
}




.footer .last-section-copyright {
  margin-bottom: 22px;
}

.footer .last-section-menu {
  display: flex;
}

.footer .last-section-menu a{
  margin-right: 32px;
  font-size: 14px;
}

.footer .social-links-text {
  margin-right: 34px;
}

@media screen and (max-width: 1024px) {
  .footer .last-section-menu a{
    margin-right: 15px;
  }
  .footer .social-links-text {
    margin-right: 15px;
  }
}


@media screen and (max-width: 600px) {
  .footer .menu a {
    margin-right: 10px;
    margin-top: 6px;
    font-size: 14px;
    line-height: 16px;
  }
}

.footer .social-links {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-right: 16px;
}

@media screen and (max-width: 600px) {
  .footer .social-links {
    margin-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .footer .social-links {
    justify-content: center;
  }
  .footer .social-links-text {
    text-align: center;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .footer .last-section-copyright {
    width: 100%;
  }
}

.footer .social-links a {
  margin-right: 10px;
}

.footer .social-links img {
  height: 27px;
  width: 27px;
  min-width: 27px;
}
@media screen and (max-width: 600px) {
  .footer .social-links img {
    height: 44px;
    width: 44px;
    min-width: 44px;
  }
  .footer .social-links a {
    margin-right: 16px;
  }
}

.footer .social-links-text p{
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
}

.footer .last-section {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 36px;
}

@media screen and (max-width: 850px) {
  .footer .last-section {
    flex-wrap: wrap;
  }
  .footer .social-links {
    width: 100%;
    margin-bottom: 20px;
  }
}

.footer .last-section div a {
  color: #f7f7f7;
  text-decoration: none;
}

.footer .last-section .em-purple_heart {
  margin: 0 4px;
}

.footer .info .menu a.title-link {
  font-weight: bold;
  font-size: 18px!important;
  margin-bottom: 32px!important;
}

.footer .last-section-copyright-text {
  font-size: 12px;
  color: #fff;
}

.footer .social-info-wrap {
  display: flex;
  align-items: center;
}
.footer .social-info-wrap.social-info-wrap-last {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #fff;
}
.footer .social-info-wrap img{
  margin-right: 16px;
}
.footer .social-info-wrap p{
  font-size: 14px;
}
.footer .social-info-wrap a{
  color: #fff;
}
@media screen and (max-width: 500px) {
  .footer .last-section {
    width: 100%;
  }
  .footer .social-info-wrap {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 25px;
  }
  .footer .social-info-wrap p{
    text-align: center;
  }
  .footer .social-info-wrap img{
    margin-right: 0;
    margin-bottom: 40px;
  }
  .footer .footer-button {
    margin: 0 auto;
    display: flex;
    width: fit-content;
  }

  .footer .last-section-copyright-text {
    text-align: center;
  }
}


.footer .footer-mobile {
  display: none;
}

@media screen and (max-width: 500px) {

  .footer .footer-desktop {
    display: none;
  }
  .footer .footer-mobile {
    display: flex;
  }
}
