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

p,
h1 {
  margin: 0;
}

:root {
  --shape-span: #0bbaff;
  --grey-background: #e9ebef;
  --green-font: #73ffd4;
  --blue-font: #0381ff;
  --viewport-contain: calc((100vw * 100%) / 1920px);
}

body {
  margin: 0 auto;
  font-family: "Overpass";
  background: var(--grey-background);
  max-width: 1920px;
  padding: 0 24px;
}

.container {
  display: grid;
  margin: 0 auto;
  max-width: 1920px;
}

.title-container {
  position: absolute;
  top: -40px;
  border-radius: 50px;
  background-color: #232f3c;
  padding-left: 8%;
  padding-right: 8%;
  z-index: 99;
}

.title-container p {
  font-size: 2em;
  font-weight: 200;
  padding: 15px 0;
  color: #fff;
}

.title-container p span {
  color: var(--shape-span);
}

.horizontal-line {
  height: 1px;
  border-bottom: 3px solid #73ffd4;
}

.empty-circle {
  border: 3px solid var(--green-font);
  border-radius: 50%;
}

.shape .glow {
  -webkit-filter: drop-shadow(2px -20px 42px rgba(66, 68, 90, 1));
  filter: drop-shadow(2px -20px 42px rgba(66, 68, 90, 1));
}

/* navigation */
header {
  width: 100%;
  text-align: center;
  background-color: #fff;
  border-radius: 50px;
  position: sticky;
  padding: 20px 0;
  margin-top: 25px !important;
  margin-bottom: 50px !important;
  min-width: 320px;
  z-index: 10000;
  top: 0;
}

@media screen and (min-width: 1024px) {
  header {
    margin-top: 75px !important;
    margin-bottom: 75px !important;

  }
}

.menu-toggle {
  display: none;
}

.menu-toggle-label {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 1em;
  height: 100%;
  display: flex;
  align-items: center;
}

.menu-toggle-label span,
.menu-toggle-label span::before,
.menu-toggle-label span::after {
  display: block;
  background: #000;
  height: 2px;
  width: 2em;
  border-radius: 2px;
  position: relative;
}

.menu-toggle-label span::before,
.menu-toggle-label span::after {
  content: "";
  position: absolute;
}

.menu-toggle-label span::before {
  bottom: 7px;
}

.menu-toggle-label span::after {
  top: 7px;
}

.navigation-container {
  display: flex;
  justify-content: center;
  background: #fff;
  position: absolute;
  text-align: left;
  top: 100%;
  left: 10%;
  right: 10%;
  padding: 15px;
  transform: scale(1, 0);
  transform-origin: top;
  transition: transform 400ms ease-in-out;
  z-index: 999;
}

@media screen and (max-width: 1023px) {
  .navigation-container > ul > li {
  margin: 24px auto;
  text-align: center;
  padding: 8px 0
}
}


.menu-toggle:checked ~ .navigation-container {
  transform: scale(1, 1);
}

.page-tabs {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.navigation-container a {
  color: var(--blue-font);
  text-decoration: none;
  font-size: 1.2rem;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}

.navigation-container p {
  color: #000;
  font-size: 1.2rem;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}

.menu-toggle:checked ~ .navigation-container a {
  opacity: 1;
  transition: opacity 250ms ease-in-out 400ms;
}

.menu-toggle:checked ~ .navigation-container p {
  opacity: 1;
  transition: opacity 250ms ease-in-out 400ms;
}

.social-media {
  display: none;
  grid-template-columns: 100%;
  /* grid-template-columns: repeat(3, 25px); */
  gap: 20px;
  align-self: center;
  justify-self: center;
  justify-content: center;
}

.social-media a:first-of-type,
.social-media a:last-of-type {
  display: none;
}

li .social-media {
  display: grid;
}

.leaderna-logo svg {
  width: 150px;
}

.social-logo svg {
  width: 25px;
}

@media screen and (min-width: 1024px) {
  .menu-toggle-label {
    display: none;
  }
  header {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr) minmax(
        500px,
        5fr
      );
  }

  .leaderna-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
  }

  .navigation-container {
    all: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navigation-container ul {
    display: flex;
    justify-content: flex-end;
  }

  .navigation-container ul .social-media {
    display: none;
  }

  .navigation-container ul li:last-of-type {
    display: none;
  }

  .navigation-container a {
    font-size: 14px;
    line-height: 16.8px;
    opacity: 1;
  }

  .navigation-container p {
    font-size: 14px;
    line-height: 16.8px;
    opacity: 1;
  }

  header .social-media {
    display: grid;
   grid-template-columns: 100%;
    /* grid-template-columns: repeat(3, 20px); */
    gap: 15px;
    align-self: center;
    justify-self: center;
    justify-content: center;
  }

  header .social-media a {
    width: 20px;
  }

  header .social-media > a > svg {
    width: 100%;
  }

  .navigation-container .single-tab {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    text-align: center;
    padding-top: 15px;
    margin-left: 0.8em;
  }

  .social-media {
    grid-template-columns: repeat(1, 20px);
    gap: 10px;
  }
}

@media screen and (min-width: 1148px) {
  header {
    grid-template-columns: minmax(150px, 200px) minmax(90px, 100px) minmax(
        400px,
        4fr
      );
  }

  .social-logo svg {
    width: 25px;
  }

  .navigation-container .single-tab {
    margin-left: 1.8em;
    white-space: nowrap;
  }
}

@media screen and (min-width: 1440px) {
  header {
    grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr) minmax(
        500px,
        5fr
      );
  }
  .navigation-container .single-tab {
    margin-left: 3.5em;
  }
}

@media screen and (min-width: 1600px) {
  .navigation-container .single-tab {
    margin-left: 4.5em;
  }

  header .social-media {
    grid-template-columns: repeat(3, 25px);
    gap: 25px;
  }

  header .social-media a {
    width: 25px;
  }

  header .social-media > a > svg {
    width: 100%;
  }
}

@media screen and (min-width: 1920px) {
  .navigation-container .single-tab {
    padding-right: 20px;
    margin-left: 5em;
  }
}



/* end of navigation */

/* WEB TOOL SECTION */
.web-tool-section {
  min-width: 320px;
  position: relative;
}

.web-tool-section {
  background: #e9ebef;
  position: relative;
}

.main-container {
  display: grid;
  grid-template-columns: minmax(80%, 1fr);
  /* grid-template-columns: minmax(1100px, 1fr) minmax(100px, 1fr); */
  margin-bottom: 100px;
}

.main-image {
  padding: 10px;
  min-width: 300px;
  max-width: 800px;
  margin: 20px auto 0 auto;
}

@media screen and (min-width: 1024px) {
  .main-image {
    padding-left: 50px;
    min-width: 300px;
    max-width: 800px;
    margin: 0 150px 0 10px;
  }

  .main-container {
    display: grid;
    grid-template-columns: minmax(100px, 1fr);
    /* grid-template-columns: minmax(1100px, 1fr) minmax(100px, 1fr); */
    /* margin-bottom: 100px; */
  }
}

@media screen and (min-width: 1440px) {
  .main-container {
    margin-bottom: 200px;
  }
}

@media screen and (min-width: 1800px) {
  .main-container {
    margin-bottom: 50px;
  }
}

.web-tool-texts {
  position: relative;
  padding: 5px;
}

.main-web-tool {
  display: grid;
  grid-template-rows: minmax(auto, 1fr);
  align-self: flex-start;
  justify-self: center;
  margin-top: 64px;
}

.main-web-tool-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.main-web-tool-list li:nth-last-of-type(1) .circle {
  background-color: #73ffd4;
}

.main-web-tool-list li:nth-last-of-type(2) .circle {
  background-color: #53dbe0;
}

.main-web-tool-list li:nth-last-of-type(3) .circle {
  background-color: #2aacf0;
}

.main-web-tool-list li:nth-last-of-type(4) .circle {
  background-color: #0381ff;
}

.main-web-tool-list-element {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.main-web-tool-list-element-text {
  font-size: 1.1em;
}

.main-web-tool-list-element-text p {
  padding-right: 15px;
  text-align: right;
  margin: 0;
}

@media screen and (min-width: 1024px) {
  .main-web-tool {
    display: grid;
    grid-template-rows: minmax(150px, 1fr);
    align-self: flex-start;
    justify-self: center;
    /* margin-top: 200px; */
  }
}

.large-logo {
  padding-right: 40px;
  margin-bottom: 20px;
  justify-self: flex-end;
  width: 90%;
}

.large-logo-text {
  color: var(--blue-font);
  font-size: 2em;
  line-height: 150%;
  font-weight: normal;
  margin: 0;
  margin-bottom: 70px;
  text-align: right;
  padding-right: 30px;
}

@media screen and (min-width: 1024px) {
  .large-logo-text {
    font-size: 2.2em;
    line-height: 77px;
  }

  .large-logo {
    width: 100%;
  }
}

.circle {
  height: 7.5px;
  width: 7.5px;
  background-color: var(--blue-font);
  border-radius: 100%;
  margin-left: 10px;
}

@media screen and (min-width: 450px) {
}

@media screen and (min-width: 672px) {
  .main-web-tool-list-element-text {
    white-space: nowrap;
  }
}

@media screen and (min-width: 1024px) {
  .main-container {
    grid-template-columns: minmax(400px, 1fr) minmax(100px, 1fr);
    /* margin-bottom: 200px; */
  }
}

@media screen and (min-width: 1148px) {
  .main-container {
    grid-template-columns: minmax(500px, 1fr) minmax(100px, 1fr);
    /* margin-bottom: 200px; */
  }

  .large-logo {
    width: 75%;
  }

  .main-web-tool {
    margin-left: 20px;
  }
}

@media screen and (min-width: 1440px) {
  .main-container {
    grid-template-columns: minmax(800px, 1fr) minmax(100px, 1fr);
  }

  .large-logo {
    width: 100%;
  }

  .main-web-tool {
    margin-left: 10vw;
  }
}

@media screen and (min-width: 1600px) {
  .main-container {
    grid-template-columns: minmax(800px, 1fr) minmax(100px, 1fr);
  }
}

@media screen and (min-width: 1920px) {
  .main-container {
    grid-template-columns: minmax(1100px, 1fr) minmax(100px, 1fr);
  }
}

/* END OF WEB TOOL SECTION */

/* STUDY CONDUCT CHALLENGES */

.study-conduct {
  position: relative;
  background: #fff;
  min-width: 320px;
}

.study-conduct-background {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  z-index: 1004;
  background: transparent;
}

.study-conduct-container {
  display: grid;
  grid-template-columns: 100%;
  z-index: 1004;
  width: 100%;
  position: relative;
  padding-bottom: 100px;
  padding-top: 60px;
}

.study-conduct-svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1)
}

.study-conduct-container .title-container {
  top: -40px;
  right: 5%;

}

.study-conduct-container .title-container p {
  font-size: 1.2em;
}

.study-conduct-image {
  display: none;
}

.study-conduct-text {
  justify-self: flex-end;
  margin-top: 0px;
  margin-right: 70px;
  padding: 10px;
}

.study-conduct-text p {
  font-size: 1.7em;
  line-height: 35px;
  margin: 0;
  text-align: right;
}

.study-conduct-text p:nth-of-type(1) {
  font-weight: 100;
}

.study-conduct-text p:nth-of-type(2) {
  color: #0381ff;
  font-size: 2em;
  font-weight: 500;
}

.study-conduct-text p:nth-of-type(3) {
  font-weight: 700;
  font-size: 2em;
}

.study-conduct-big-image {
  width: 100%;
  text-align: center;
  margin: 20px auto;
}

.study-conduct-big-image svg {
  max-width: 90vw;
}

@media screen and (min-width: 767px) {
  .study-conduct-background {
    top: -40px;
  }
}
@media screen and (min-width: 1024px) {
  .study-conduct-background {
    top: -65px;
  }
}
@media screen and (min-width: 1600px) {
  .study-conduct-background {
    top: -100px;
  }
}


/* @media screen and (min-width: 450px) {
  .title-container {
    font-size: 0.7em;
  }
  .study-conduct-background {
    top: -110px;
  }
  .study-conduct-big-image {
    margin: 100px auto 100px auto;
    width: 40%;
  }

  .study-conduct-text p {
    font-size: 1.5em;
    line-height: 65px;
  }

  .study-conduct-text p:nth-of-type(2) {
    font-size: 3.3em;
  }

  .study-conduct-text p:nth-of-type(3) {
    font-size: 2.3em;
  }
  .test {
    font-size: 2rem;
  }
} */

@media screen and (min-width: 767px) {

  .study-conduct-container {
    grid-template-columns: minmax(50px, 275px) minmax(500px, 1fr);
  }

  .study-conduct-container .title-container {
    top: -70px ;
    right: 5%;
    padding: 0 2em;
  }

  .study-conduct-container .title-container p {
    font-size: 1.5em;
  }
  .study-conduct-big-image {
    margin: 150px auto 200px auto;
  }

  .study-conduct-text {
    margin-right: 50px;
  }

  .study-conduct-text p {
    font-size: 2.7em;
    line-height: 125%;
  }

  .study-conduct-text p:nth-of-type(2) {
    font-size: 4em;
  }

  .study-conduct-text p:nth-of-type(3) {
    font-size: 3em;
  }

  .study-conduct-image {
    display: block;
    grid-row-start: 1;
    margin-top: 50px;
    margin-left: 100px;
  }

  .study-conduct-big-image {
    grid-column: span 2;
    width: 100%;
    text-align: center;
    margin: 0px auto;
  }

  .study-conduct-big-image svg {
    max-width: 80%;
    margin-top: -20px;
  }
}

@media screen and (min-width: 1024px) {
  .study-conduct-text p {
    font-size: 3.7em;
  }

  .study-conduct-text p:nth-of-type(2) {
    font-size: 5em;
  }

  .study-conduct-text p:nth-of-type(3) {
    font-size: 4em;
  }

  .study-conduct-big-image {
    margin: -50px auto 50px auto;
    width: 100%;
  }

  .study-conduct-big-image svg {
    max-width: 70%;
    margin-top: -20px;
  }

  .study-conduct-container {
    grid-template-columns: minmax(100px, 375px) minmax(150px, 1fr);
    padding-top: 20px;
  }

  .study-conduct-image {
    display: block;
    margin-top: 100px;
  }
  .study-conduct-text p {
    font-size: 3.5em;
    line-height: 75px;
    text-align: right;
  }

  .study-conduct-text {
    grid-column: span 1;
    justify-self: flex-end;
    margin-top: 100px;
    padding: 10px;
  }

  .study-conduct-text p:nth-of-type(2) {
    font-size: 4.5em;
  }

  .study-conduct-text p:nth-of-type(3) {
    font-size: 4em;
  }

  .study-conduct-container .title-container {
    top: -95px ;
    padding: 0 3rem;
  }
  .study-conduct-container .title-container p {
    font-size: 1.8em;
  }
}

@media screen and (min-width: 1148px) {
  .study-conduct-big-image {
    margin: 0 auto 250px auto;
  }
  .study-conduct-container .title-container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (min-width: 1440px) {
  .study-conduct-container .title-container {
    top: -95px ;
    padding: 0 6rem;
  }
  .study-conduct-big-image {
    margin: -20 auto 250px auto;
  }
}

@media screen and (min-width: 1600px) {
  .study-conduct-container .title-container {
    top: -130px;
    padding: 0 10rem;
  }
}

/* END OF STUDY CONDUCT CHALLENGES */

/* SECURITY AND COMPLIANCE */

.security-and-compliance-section {
  position: relative;
  background-color: #fff;
  z-index: 1000;
  min-width: 320px;
}

.security-and-compliance-background {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.security-and-compliance-background svg {
  filter: drop-shadow(-3px -48px 33px #d2d2d2);
}

.sac-container {
  display: flex;
  flex-direction: column;
  /* margin-top: 50px; */
  padding: 100px 0;
  z-index: 200;
  position: relative;
}

.sac-title-container {
  width: 100%;
  margin-bottom: 25px;
  padding: 25px 5px 5px 5%;
}

.sac-title-container p {
  font-size: 2.3em;
  line-height: 125%;
  text-align: left;
}

.sac-title-container p:first-of-type {
  font-weight: 100;
  color: #000;
}

.sac-title-container p:last-of-type {
  color: var(--blue-font);
  font-size: 3em;
}

.sac-images-container {
  display: grid;
  grid-template-columns: repeat(1, minmax(150px, 1fr));
  gap: 50px;
  padding: 50px 25px;
}

.sac-image {
  width: 100%;
  text-align: center;
}

.sac-image svg {
  max-height: 150px;
}

.sac-image-text {
  color: var(--blue-font);
  font-size: 1.4em;
  text-align: center;
  padding: 50px 25px 0;
}

.sac-container .title-container {
  top: -20px;
  left: 5%;
}

.sac-container .title-container p {
  font-size: 1.2em;
}

@media screen and (min-width: 767px) {
  .sac-container .title-container p {
    font-size: 1.5em;
  }

  .sac-title-container p {
    font-size: 2.5em;
    text-align: left;
  }

  .sac-title-container p:last-of-type {
    font-size: 4em;
  }

  .sac-images-container {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

}

@media screen and (min-width: 1024px) {
  .sac-container .title-container p {
    font-size: 1.8em;
  }

  .sac-container .title-container {
    top: -35px;
    left: 3%;
  }

  /* .sac-images-container {
    padding: 50px 75px;
  } */

  /* .sac-image-text {
    padding: 50px 67px 0;
  } */

  .sac-title-container p {
    font-size: 3.2em;
  }

  .sac-title-container p:last-of-type {
    font-size: 5em;
  }
}

@media screen and (min-width: 672px) {
  /* .sac-images-container {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 100px;
  }
  .sac-container .title-container {
    padding-left: 2rem;
    padding-right: 2rem;
    top: -30px;
  }

  .sac-container .title-container p {
    font-size: 1.2em;
  } */
}

@media screen and (min-width: 1024px) {
  /* .sac-images-container {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 200px;
  }
  .sac-title-container p {
    font-size: 4.1em;
    line-height: 75px;
    text-align: left;
  }
  .sac-title-container p:last-of-type {
    font-size: 6em;
  }

  .sac-container .title-container {
    padding-left: 2rem;
    padding-right: 2rem;
    top: -40px;
  }

  .sac-container .title-container p {
    font-size: 2em;
  } */
  .sac-images-container {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 30px;
    padding: 50px 100px;
  }
}

@media screen and (min-width: 1148px) {
  .sac-images-container {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 50px;
    padding: 100px 150px;
  }
  /* .sac-container .title-container {
    padding-left: 3rem;
    padding-right: 3rem;
  } */
}

@media screen and (min-width: 1440px) {
  /* .sac-container .title-container {
    padding-left: 6rem;
    padding-right: 6rem;
  } */
}

/* END OF SECURITY AND COMPLIANCE */

/* OUR SOLUTIONS */

.our-solutions-section {
  background-color: #fff;
  position: relative;
  min-width: 320px;
}

.oss-title {
  font-size: 3em;
  /* font-size: 5.5em; */
  font-weight: 200;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.oss-title span {
  color: var(--shape-span);
  font-weight: 500;
}

.oss-images-container {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: 100%;
  grid-template-rows: auto auto;
  top: 0;
  margin-bottom: 0;
}

.image-container {
  position: relative;
  background-color: #fff;
  max-width: 100%;
}

.image-container img {
  width: 100%;
  object-fit: cover;
}
div.image-container.man img {
  max-width: 100%;
  min-height: auto;
}

.second-column {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  height: 100%;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.second-column .image-container img {
  max-inline-size: 100%;
  block-size: auto;
}

.oss-text-container {
  position: relative;
  z-index: 1000;
  padding: 0 0 140px 0;
  text-align: right;
  min-width: 100%;
  height: 100%;
  top: -20px;
  /* padding-top: 75px;
  padding-bottom: 420px; */
  background-color: #0381ff;
}

.first-part,
.second-part {
  color: #fff;
  z-index: 1001;
  text-align: right;
  padding-right: 20px;
}

.first-part {
  font-size: 2rem;
  font-weight: 100;
}

.second-part {
  font-size: 2.5rem;
  font-weight: 500;
}

.text-container-background {
  position: relative;
  left: 0;
  top:-60%;
  z-index: 1001;
  width: 100%;
  height: 50px;
  overflow: hidden;
}


@media screen and (min-width: 767px) {

  .text-container-background {
    /* position: absolute; */
    position: relative;
    left: 0;
    top:-25px ;
    /* top: 250px; */
    z-index: 1001;
    width: 100%;
    height: 50px;
    overflow: hidden;
  }

  .image-container.man {
  padding-top: 8.7%;
  }

  div.image-container.man img {
    /* min-height: 1200px; */
    min-height: 100%;
  }

  .oss-images-container {
    position: relative;
    display: grid;
    grid-template-columns: 40% 60%;
    width: 100%;
    margin-bottom: 0;
  }

  .first-part {
    font-size: 2.8em;
    /* font-size: 4.5rem; */
    font-weight: 100;
  }

  .second-part {
    font-size: 3.2em;
    /* font-size: 5.5rem; */
    font-weight: 500;
  }



}

@media screen and (min-width: 1024px) {
  .oss-text-container {
    grid-template-rows: 20% 20% 50%;
  }

  .text-container-background {
    top:-55px ;
    height: 100px;
  }

  .first-part {
    font-size: 3.5em;
    /* font-size: 4.5rem; */
    font-weight: 100;
  }

  .second-part {
    font-size: 4em;
    /* font-size: 5.5rem; */
    font-weight: 500;
  }

  .oss-title {
    font-size: 4em;
  }

}

@media screen and (min-width: 1440px) {
  .oss-text-container {
    grid-template-rows: 30% 20% 50%;
  }

  .text-container-background {
    top:-55px ;
    height: 100px;
  }

  .first-part {
    font-size: 4em;
    /* font-size: 4.5rem; */
    font-weight: 100;
  }

  .second-part {
    font-size: 4.5em;
    /* font-size: 5.5rem; */
    font-weight: 500;
  }
  .oss-title {
    font-size: 5em;
  }

}

/* MEDIA QUERYS ONLY FOR OUR SOLUTIONS IMAGES PART */

@media screen and (min-width: 385px) {
  /* .oss-images-container {
    margin-bottom: 115px;
  }

  .text-container-background {
    top: 95px;
  }

  .first-part,
  .second-part {
    padding-right: 20px;
  } */
}

@media screen and (min-width: 450px) {
  /* .oss-title {
    font-size: 2.5em;
  }

  .oss-images-container {
    margin-bottom: 155px;
  }

  .text-container-background {
    top: 110px;
  }

  .first-part,
  .second-part {
    margin-right: 30px;
  }

  .first-part {
    font-size: 15px;
  }

  .second-part {
    font-size: 20px;
  } */
}

@media screen and (min-width: 561px) {
  /* .oss-images-container {
    margin-bottom: 145px;
  }

  .text-container-background {
    top: 140px;
  }

  .first-part,
  .second-part {
    padding-right: 50px;
  }

  .first-part {
    padding-top: 10px;
    font-size: 15px;
  }

  .second-part {
    font-size: 30px;
  } */
}

@media screen and (min-width: 672px) {
  /* .oss-title {
    font-size: 3.5em;
  }
  .oss-images-container {
    margin-bottom: 135px;
  }

  .text-container-background {
    top: 165px;
  }

  .first-part,
  .second-part {
    padding-right: 50px;
  }

  .first-part {
    font-size: 20px;
  }

  .second-part {
    font-size: 35px;
  } */
}

@media screen and (min-width: 848px) {
  /* .oss-images-container {
    margin-bottom: 120px;
  }

  .text-container-background {
    top: 215px;
  }

  .first-part,
  .second-part {
    padding-top: 10px;
    padding-right: 100px;
  }

  .first-part {
    font-size: 25px;
  }

  .second-part {
    font-size: 45px;
  } */
}

@media screen and (min-width: 1024px) {
  /* .oss-title {
    font-size: 4.5em;
  }
  .oss-images-container {
    margin-bottom: 110px;
  }

  .text-container-background {
    top: 265px;
  }

  .first-part,
  .second-part {
    padding-top: 10px;
    padding-right: 100px;
  }

  .first-part {
    font-size: 35px;
  }

  .second-part {
    font-size: 50px;
  } */
}

@media screen and (min-width: 1148px) {
  /* .oss-images-container {
    margin-bottom: 100px;
  }

  .text-container-background {
    top: 295px;
  }

  .first-part,
  .second-part {
    padding-top: 10px;
    padding-right: 100px;
  }

  .first-part {
    font-size: 40px;
  }

  .second-part {
    font-size: 60px;
  } */
}

@media screen and (min-width: 1294px) {
  /* .oss-images-container {
    margin-bottom: 90px;
  }

  .text-container-background {
    top: 335px;
  }

  .first-part,
  .second-part {
    padding-top: 10px;
    padding-right: 100px;
  }

  .first-part {
    font-size: 50px;
  }

  .second-part {
    font-size: 70px;
  } */
}

@media screen and (min-width: 1440px) {
  /* .oss-title {
    font-size: 5.5em;
  }
  .oss-images-container {
    margin-bottom: 75px;
  }

  .text-container-background {
    top: 360px;
  }

  .first-part,
  .second-part {
    padding-top: 10px;
    padding-right: 100px;
  }

  .first-part {
    font-size: 50px;
  }

  .second-part {
    font-size: 70px;
  } */
}

@media screen and (min-width: 1600px) {
  /* .oss-images-container {
    margin-bottom: 65px;
  }

  .text-container-background {
    top: 410px;
  }

  .first-part,
  .second-part {
    padding-top: 10px;
    padding-right: 120px;
  }

  .first-part {
    font-size: 60px;
  }

  .second-part {
    font-size: 80px;
  } */
}

@media screen and (min-width: 1760px) {
  /* .oss-images-container {
    margin-bottom: 50px;
  }

  .text-container-background {
    top: 450px;
  } */
}

@media screen and (min-width: 1920px) {
  /* .oss-images-container {
    margin-bottom: 0;
  }

  .text-container-background {
    top: 500px;
  }

  .first-part,
  .second-part {
    padding-top: 10px;
    padding-right: 180px;
  }

  .first-part {
    font-size: 70px;
  }

  .second-part {
    font-size: 90px;
  } */
}

/* END OF MEDIA QUERYS ONLY FOR OUR SOLUTIONS IMAGES PART */

.our-solutions-background {
  position: relative;
  /* margin-top: -275px; */
}

.our-solutions-texts {
  position: relative;
  top: -70px
}

.our-solutions-texts .title-container {
  top: -70px;
  right: 10%;
  z-index: 1005;
}

.our-solutions-texts .title-container p {
  color: var(--shape-span);
  font-size: 1.2em;
}

.our-solutions-texts .title-container p span {
  color: #fff;
  font-weight: 200;
}

.our-solutions-texts-background {
  position: absolute;
  top: -50px;
  width: 100%;
  overflow: hidden;
  z-index: 1002;
}

.our-solutions-text-shape {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1002;
}

.our-solutions-title-container {
  position: relative;
  color: var(--blue-font);
  /* top: -75px; */
  text-align: center;
  margin-bottom: 40px;
  padding: 100px 20px 0 20px ;
  z-index: 1003;
  max-width: 1650px;
  background: transparent;
}

.our-solutions-title-container span {
  font-weight: 700;
}

.our-solutions-title-container > p {
font-size: 1.6em;
line-height: 150%;
  /* font-size: 2.8em;
  line-height: 62px; */
}

.our-solutions-choose-container {
  display: grid;
  grid-template-columns: 1fr;
  justify-self: center;
  align-self: center;
  max-width: 1700px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 8.33%, rgba(236, 236, 236, 0.7) 51.04%, rgba(255, 255, 255, 0) 90.62%);
}

.our-solutions-choose-texts {
  position: relative;
  font-size: 22px;
  z-index: 1003;
  padding-bottom: 75px;
}

.our-solutions-choose-texts p {
  line-height: 150%;
}

.our-solutions-choose-texts > p:first-of-type {
  margin: 0 20px;
  /* margin-left: 50px; */
}

.our-solutions-choose-diff-text {
  color: var(--blue-font);
  line-height: 125%;
  /* line-height: 1.8em; */
  display: flex;
  align-items: center;
  font-size: 1em;
  font-weight: 600;
  margin-top: 50px;
  margin-left: 5px;
  padding: 0px 20px 0px 0px;
}

.our-solutions-choose-diff-text p {
  margin: 0;
}

.straight-line {
  display: block;
  height: 3em;
  border-left: 2px solid var(--shape-span);
  margin-right: 20px;
  margin-left: 20px;
}

.our-solutions-choose-image {
  display: flex;
  max-width: 850px;
  padding: 0 ;
  /* padding: 0 0 50px 50px ; */
  z-index: 1002;
}

.our-solutions-choose-image svg {
  width:100%;
  height: auto;
  margin-top: -100px;

}

.our-solutions-title-container .title-container {
  padding-left: 10%;
  padding-right: 10%;
  /* top: -235px; */
  z-index: 1010;
}

/* .man-shade {
  background: #fff;
  height: 4.7%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
} */

/* @media screen and (min-width: 385px) {

  .our-solutions-texts {
    margin: 64px auto;
  }

  .title-container{
    position:relative!important;
    right: auto!important;
    margin-bottom: 32px;
  }
  .our-solutions-title-container, .title-container {
    top:0px!important;
  }

  .our-solutions-title-container {
    justify-items: right;
    margin: auto 24px;
  }

  .our-solutions-title-container > p {
    font-size: 1.8em!important;
    line-height: 150%!important;
  }

  .our-solutions-background {
    margin-top: 0!important;

  }

  .title-container p {
    font-size: 1.5em!important;
  }

} */

@media screen and (min-width: 767px) {

  .our-solutions-title-container .title-container p {
    font-size: 1.5em;
  }

  .our-solutions-choose-image {
    padding: 0 50px 50px 150px ;
  }
}

@media screen and (min-width: 1024px) {
  .our-solutions-choose-container {
    grid-template-columns: 50% 50%;
    padding-bottom: 100px;
    background: none;
  }

  .our-solutions-choose-texts {
    padding-left: 25px;
    padding-bottom: 0;
  }

  .our-solutions-choose-diff-text {
    padding-bottom: 0;
    margin-left: 0;
  }

  .straight-line {
    display: block;
  }

  .our-solutions-title-container .title-container {
    padding-left: 12em;
    padding-right: 12em;
    top: -130px;
    right: 5%;
  }

  .our-solutions-title-container .title-container p {
    font-size: 1.8em;
  }

  .our-solutions-choose-image {
    padding: 0px 0px 0px 0px ;
    width: 100%;
    position: relative;
  }
  .our-solutions-choose-image svg {
    position: relative;
  top: -10%;
  left:-10%;
  }


  .our-solutions-texts {
    position: relative;
    top: -80px
  }

  .our-solutions-texts-background {
    top: -100px;
  }
}

@media screen and (min-width: 1440px) {
  .our-solutions-title-container .title-container {
    padding-left: 12em;
    padding-right: 12em;
    top: -130px;
    right: 6%;
  }

}


/* END OF OUR SOLUTIONS */

/* what-makes-us-different-info-section */

.what-makes-us-different-info-section {
  position: relative;
  background: #fff;
  background-image: linear-gradient(var(--blue-font), var(--blue-font) 100%);
  background-size: 100% 300px;
  background-repeat: no-repeat;
  background-position: center bottom;
  min-width: 320px;
  padding: 20px 0;
}

.makes-us-different-title {
  font-size: 1.5em;
  text-align: center;
  z-index: 1005;
  position: relative;
  /* top: 90px; */
}

.makes-us-different-title h1 {
  font-weight: 300;
}

.makes-us-different-title span {
  font-weight: 500;
  color: var(--shape-span);
}

.makes-us-different-description-container {
  display: grid;
  grid-template-columns: minmax(150px, 1fr);
  align-items: stretch;
  /* gap: 100px; */
  gap: 50px;
  position: relative;
  z-index: 1004;
  padding: 50px 20px;
  /* background-color: var(--blue-font); */
  background: linear-gradient(180deg, rgba(3, 129, 255, 0) 5%, #0381FF 10%, #0381FF 100%);
}

.makes-us-different-background {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1004;
  display: block;
  padding: 100px 0 0 0;
}

.makes-us-different-description-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
  padding-top: 40px;
  background-color: transparent;
  padding-bottom: 0;
}

.makes-us-different-description-image {
  width: 150px;
  margin: 25px 0;
  display: flex;
  justify-content: center;
}

.makes-us-different-description-image.first {
  margin-bottom: 30px;
}


.makes-us-different-description-text-container {
  font-size: 50px;
  text-align: center;
  line-height: 55px;
}

.makes-us-different-description-text-container p:first-of-type {
  font-size: 1.2em;
  line-height: 150%;
  font-weight: 700;
  color: #232F3C;
  margin-bottom: 15px;
}

.makes-us-different-description-text-container p {
  font-size: 1.2em;
  color: #fff;
  line-height: 150%;
}

.makes-us-different-description-text-container div, .text-border {
  font-size: 1em;
  color: #fff;
  border: 2px solid #73ffd4;
  border-radius: 50px;
  padding: 12px 20px;
  display: inline-block;
}

.text-border {
  font-size: 0.7em;
  padding: 0 20px;
}

/* .makes-us-different-description-text-container div > span {
  font-size: 25px;
  color: #fff;
  padding: 10px 15px;
  border: none;
} */

/* .makes-us-different-description-text-container span {
  font-size: 25px;
  color: #fff;
  border: 2px solid #73ffd4;
  border-radius: 50px;
  padding: 5px 10px;
} */

p.text-pad {
  font-size: 1.5em;
  line-height: 175%;
  margin-bottom: 20px;
  font-weight: 700;
}

.makes-us-different-description-text-container {
  /* font-size: 20px; */
  font-size: 1.3em;
  line-height: 150%;
  margin: 20px 0;
}
.makes-us-different-description-text-container span.smaller {
  font-size: 1.2em;
  font-weight: 100;
}
.makes-us-different-description-text-container span.smaller-text {
  font-size: 0.8em;
}

.makes-us-different-description-text-container span.spanBorder {
  border: 2px solid #73ffd4;
  border-radius: 50px;
  padding: 3px 8px;
  font-size: 0.8em;
}

/* .makes-us-different-description-text-container span {
  font-size: 15px;
} */



/* @media screen and (min-width: 767px) {
  .makes-us-different-title {
    font-size: 30px;
    top: 0px;
  }

  .makes-us-different-description-container {
    grid-template-columns: minmax(150px, 1fr);
    padding-top: 60px;
    background-color: var(--blue-font);
  }
  .makes-us-different-description-text-container {
    font-size: 20px;
  }
  .makes-us-different-description-text-container span.smaller {
    font-size: 20px;
  }
  .makes-us-different-description-text-container span.smaller-text {
    font-size: 15px;
  }
  .makes-us-different-description-text-container span {
    font-size: 15px;
  }
} */
@media screen and (min-width: 446px){

  .makes-us-different-description-container {
  background: linear-gradient(180deg, rgba(3, 129, 255, 0) 5%, #0381FF 15%, #0381FF 100%);
}

.makes-us-different-background {
  padding: 100px 0 0 0;
}
}

@media screen and (min-width: 534px){

  .makes-us-different-description-container {
  background: linear-gradient(180deg, rgba(3, 129, 255, 0) 10%, #0381FF 15%, #0381FF 100%);
}

.makes-us-different-background {
  padding: 50px 0 0 0;
}
}

@media screen and (min-width: 767px){

  .makes-us-different-title {
  font-size: 2em;
}

.makes-us-different-background {
  padding: 30px 0 0 0;
}

}



@media screen and (min-width: 1024px) {

  .makes-us-different-description-image {
    width: 150px;
    height: 150px;
  }

  .makes-us-different-description-text-container p:first-of-type {
    font-size: 1em;
  }

  .makes-us-different-title {
    font-size: 3em;
    top: 15px;
  }
  .makes-us-different-background {
    display: block;
    top: 0px;

  }

  .makes-us-different-description-text-container p {
    font-size: 1.5em;
  }

 p.text-pad {
    font-size: 2em;
    line-height: 175%;
    margin-bottom: 20px;
  }

  .makes-us-different-description-text-container span.smaller {
    /* font-size: 1.5em; */
    font-weight: 200;
  }
  .makes-us-different-description-text-container span.smaller-text {
    font-size: 0.7em;
  }
  /* .makes-us-different-description-text-container span {
    font-size: 0.7em;
  } */
  .makes-us-different-description-container {
    grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr);
    gap: 100px;
    background: linear-gradient(180deg, rgba(3, 129, 255, 0) 25%, #0381FF 35%, #0381FF 100%);
    padding-bottom: 150px;
  }

  .makes-us-different-description-tile {
    background-color: transparent;
    padding-bottom: 0;
  }

  .makes-us-different-description-text-container {
    /* font-size: 20px; */
    font-size: 1.5em;
  }

}


@media screen and (min-width: 1600px) {
  .makes-us-different-description-container {
    padding-top: 100px;
    background-color: transparent;
  }
  .makes-us-different-title {
    top: 70px;
  }

}

@media screen and (min-width: 1920px) {
  .makes-us-different-description-container {
    padding-top: 170px;
    padding-bottom: 180px;
  }

  .makes-us-different-description-container {
    grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr);
    gap: 100px;
    background: linear-gradient(180deg, rgba(3, 129, 255, 0) 45%, #0381FF 65%, #0381FF 100%);
    padding-bottom: 250px;
  }

}

/* END OF what-makes-us-different-info-section */

/* WHAT MAKES US DIFFERENT */

.makes-us-different-section {
  position: relative;
  min-width: 320px;
  background-color: #fff;
}

.makes-us-different-tiles-container {
  display: grid;
  grid-template-columns: minmax(280px, 1fr);
  z-index: 1004;
  width: 100%;
  position: relative;
  padding-top: 100px;
}

.makes-us-different-tiles-background {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  z-index: 1004;
  background: transparent;
}

.makes-us-different-tile {
  /* display: flex;
  flex-direction: column; */
  display: grid;
grid-template-columns: 1fr;
  align-items: stretch;
  justify-items: center;
  z-index: 10;
  padding-left: 20px;
  padding-right: 20px;
  background: #fff;
  color: var(--blue-font);
  padding-bottom: 75px;
}

div.makes-us-different-tile:nth-of-type(3) div.makes-us-different-tile-image {
  /* width: 300px; */
  width: 250px;
}

.makes-us-different-tile .straight-line {
  display: none;
}

.makes-us-different-tile:nth-child(2n + 1)  {
  display: grid;
  grid-template-columns: 1fr;
}
.makes-us-different-tile:nth-child(2n + 1) > .makes-us-different-tile-image {
  grid-area: 1;
}

/* .makes-us-different-tile:nth-child(2n + 1) p {
  text-align: right;
} */

.makes-us-different-tile-image {
  display: block;
  min-width: 150px;
  margin-bottom: 40px;
}

.makes-us-different-tile-texts {
  font-size: 1em;
  line-height: 150%;
  padding: 0;
}

.makes-us-different-tile-texts span {
  font-weight: 600;
}

.makes-us-different-tile-texts ul {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.makes-us-different-tile-texts li::marker {
  content: "> ";
}

.makes-us-different-tile .horizontal-line {
  display: block;
  width: 300px;
  margin-top: 20px;
}

.makes-us-different-tiles-container .title-container {
  top: -40px;
  left: 3%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.makes-us-different-tiles-container .title-container p {
  font-size: 1.2em;
}

@media screen and (min-width: 767px) {

  .makes-us-different-tile {
    /* display: flex;
    flex-direction: column; */
    display: grid;
  grid-template-columns: 0.3fr 0.1fr 1fr;
    align-items: center;
    justify-items: start;
    z-index: 10;
    background: #fff;
    color: var(--blue-font);
    padding: 0 25px 50px 25px;
  }
  .makes-us-different-tile .horizontal-line {
    display: none;
  }
  .makes-us-different-tile .straight-line {
    display: initial;
    margin:0 auto;
  }

  .makes-us-different-tile:nth-child(2n + 1)  {
    display: inherit;
    align-items: center;
    justify-items: end;
    grid-template-columns:1fr 0.1fr 0.3fr;
    text-align: right;
  }
  .makes-us-different-tile:nth-child(2n + 1) > .makes-us-different-tile-image {
    grid-area: initial;
  }
  .makes-us-different-tile-image {
    margin: 20px auto;
  }

  .makes-us-different-tiles-container .title-container {
    top: -70px ;
    left: 5%;
    padding: 0 2em;
  }
  .makes-us-different-tiles-container .title-container p {
  font-size: 1.5em;
  }

  .makes-us-different-tiles-background {
    top: -40px;
  }

}

@media screen and (min-width: 1024px) {
  .makes-us-different-tile {
  grid-template-columns: 0.2fr 0.1fr 1fr;
  }
  .makes-us-different-tile:nth-child(2n + 1)  {
    grid-template-columns: 1fr 0.1fr 0.2fr;
  }

  .makes-us-different-tiles-container .title-container {
    top: -95px ;
    left: 5%;
    padding: 0 5em;
  }
  .makes-us-different-tiles-container .title-container p {
  font-size: 1.8em;
  }

  .makes-us-different-tiles-background {
    top: -65px;
  }

  .makes-us-different-tiles-container {
    margin: 0 20px;
  }

  .makes-us-different-tile-texts {
    font-size: 1.2em;
}
}

@media screen and (min-width: 1440px) {
  .makes-us-different-tile {
    padding: 0 50px 50px 50px;
  }
  .makes-us-different-tiles-container {
    max-width: 1500px;
    margin: 0 auto;
  }
  .makes-us-different-tiles-container .title-container {
    top: -95px ;
    left: 0%;
    padding: 0 10em;
  }
  div.makes-us-different-tile:nth-of-type(3) div.makes-us-different-tile-image {
    width: 350px;
  }
}
@media screen and (min-width: 1600px) {

.makes-us-different-tiles-background {
  top: -100px;
}

.makes-us-different-tiles-container .title-container {
  top: -130px;
}
}
/* END OF WHAT MAKES US DIFFERENT */

/* MAPS FOR RESEARCH */

.maps-for-research-section {
  position: relative;
  background-color: #fff;
  padding-bottom: 100px;
  padding-top: 100px;
  padding: 100px 0px;
  min-width: 320px;
}

.maps-for-research-background {
  position: relative;
}

.maps-for-research-line {
  height: 1px;
  background: transparent;
  -webkit-box-shadow: 0 15px 15px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0px 15px 15px rgba(0, 0, 0, 1);
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 1);
}

.maps-for-research-section .title-container {
  position: relative;
  top: -10px;
  /* left: 50%;
  transform: translate(-50%, 0); */
  margin: 0 40px;
  text-align: center;
  padding: 0 2em ;
  max-width: 500px;
}

.maps-for-research-section .title-container p {
  font-size: 19.2px;
}

.maps-for-research-youtube {
  display: grid;
  grid-template-columns: minmax(150px, 1fr);
  justify-self: center;
  gap: 50px;
  padding: 20px;
}

.maps-for-research-youtube-predefined {
  max-width: 500px;
  display: flex;
  align-items: center;
  flex-direction: column;
  line-height: 40px;
  align-self: stretch;
}

div.maps-for-research-youtube-predefined:nth-of-type(2)
  .maps-for-research-youtube-title {
  padding-bottom: 50px;
  white-space: nowrap;
}

div.maps-for-research-youtube-predefined:nth-of-type(2)
  .maps-for-research-youtube-click {
  padding-top: 30px;
}

.maps-for-research-youtube-predefined > ul {
  font-size: 25px;
}

.maps-for-research-youtube-predefined ul p {
  margin: 0;
}

.maps-for-research-youtube-predefined > p {
  font-size: 1em;
  line-height: 150%;
  max-width: 350px;
  text-align: center;
}

.maps-for-research-youtube-predefined .horizontal-line {
  min-width: 200px;
}

.maps-for-research-youtube-title {
  text-align: center;
  color: var(--blue-font);
  font-size: 2em;
  line-height: 125%;
  padding-top: 30px;
}

.maps-for-research-youtube-title p {
  margin: 0;
}

.maps-for-research-youtube-title p:first-of-type {
  font-weight: 600;
}

.maps-for-research-youtube-predefined ul {
  list-style-position: inside;
  padding: 0;
}

.maps-for-research-youtube-predefined li::marker {
  content: "> ";
}

.maps-for-research-frame {
  border: 3px solid #73ffd4;
  border-radius: 25px;
  color: var(--blue-font);
  font-size: 1em;
  line-height: 125%;
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.maps-for-research-youtube-click a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #73ffd4;
  font-size: 20px;
}
.maps-for-research-youtube-click a p {
  white-space: nowrap;
}

#maps-for-research-youtube-click_2 {
  min-width: 65px;
  padding: 0px 20px 0px 0px ;

}
.maps-for-research-title {
  font-weight: 200;
  text-align: center;
  margin-top: 70px;
  font-size: 1.8em;
  line-height: 125%;
  padding: 0 20px;
}

.maps-for-research-title p:nth-of-type(2) {
  color: var(--blue-font);
  font-weight: 500;
}

.maps-for-research-zoom {
  display: inline-block;

  position: absolute;
}

.maps-for-research-zoom-out {
  display: inline-block;
  position: absolute;
  top: 320px;
  right: 0px;
}

.maps-for-research-zoom-background {
  display: flex;
  flex-direction: column;
}

.maps-for-research-zoom-background p {
  margin: 0;
  display: inline-block;
  line-height: 30px;
  color: var(--blue-font);
  font-size: 16px;
}

.maps-for-research-zoom-background > p:first-of-type {
  color: var(--blue-font);
  font-weight: 600;
  font-size: 60px;
  margin-bottom: 0;
}

.maps-for-research-zoom-background svg {
  margin-top: -50px;
  max-width: 900px;
}

.maps-for-research-bottomtext-container {
  display: flex;
  flex-direction: column;
  margin-top: -180px;
  padding-left: 160px;
}

.maps-for-research-zoom-uppertext {
  margin-top: 0;
  padding-left: 160px;
}

#maps-for-research-zoom-in_2,
#maps-for-research-zoom-out_2 {
  width: 150px;
}

.maps-for-research-image {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.maps-for-research-image img {
  max-width: 300px;
  block-size: auto;
  object-fit: contain;
}

.maps-for-research-image-container {
  position: relative;
  right: 0;
}

div.maps-for-research-zoom:nth-of-type(1) {
  top: 40px;
  left: 160px;
  padding-left: 5px;
}

.maps-for-research-zoom-mobile {
  display: grid;
  grid-template-columns: 100%;
  /* grid-template-columns: minmax(150px, 1fr); */
  justify-self: center;
}

.maps-for-research-zoom-background-mobile {
  justify-self: center;
  padding-bottom: 20px;
  text-align: center;
}

.maps-for-research-zoom-uppertext-mobile {
  color: var(--blue-font);
  font-weight: 500;
  font-size: 25px;
}

.maps-for-research-bottomtext-container-mobile {
  color: var(--blue-font);
  font-size: 1em;
  line-height: 30px;
}

.maps-for-research-zoom
  div.maps-for-research-bottomtext-container:nth-of-type(1) {
  line-height: 10px;
  padding-left: 0;
  margin-left: 170px;
}

.maps-for-research-bottomtext-container p {
  font-size: 18px;
  line-height: 35px;
}

#maps-for-research-zoom-in_2,
#maps-for-research-zoom-out_2 {
  width: 600px;
}

.maps-for-research-zoom .maps-for-research-zoom-uppertext:nth-of-type(1) {
  padding-left: 0px;
  text-align: right;
}

.maps-for-research-zoom-out .maps-for-research-zoom-background {
  margin-top: -15px;
}

.maps-for-research-zoom .maps-for-research-zoom-background {
  margin-top: 50px;
}

.maps-for-research-zoom,
.maps-for-research-zoom-out {
  display: none;
}

.maps-for-research-youtube-predefined > ul {
  font-size: 1em;
}

div.maps-for-research-youtube-predefined:nth-of-type(2)
  .maps-for-research-youtube-title {
  white-space: normal;
}

@media screen and (min-width: 450px) {
  .maps-for-research-title {
    font-size: 1.8em;
    line-height: 40px;
  }


  div.maps-for-research-youtube-predefined:nth-of-type(2)
    .maps-for-research-youtube-title {
    padding-bottom: 50px;
    white-space: nowrap;
  }

  /* .maps-for-research-section .title-container {
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 0.6rem;
  } */

  .maps-for-research-image img {
    max-width: 350px;
  }

  div.maps-for-research-zoom:nth-of-type(1) {
    top: 175px;
    left: 90px;
  }
  .maps-for-research-zoom-out {
    top: 240px;
    right: 40px;
  }
  .maps-for-research-youtube {
    grid-template-columns: minmax(100px, 1fr);
    gap: 50px;
  }

  .maps-for-research-frame {
    font-size: 20px;
    padding: 8px 12px;
    margin-bottom: 20px;
  }

  .maps-for-research-youtube-predefined .horizontal-line {
    min-width: 300px;
  }
}

/* .maps-for-research-bottomtext-container-mobile {
  color: var(--blue-font);
  font-size: 1em;
  line-height: 30px;
}*/

@media screen and (min-width: 767px) {
  .maps-for-research-section .title-container p {
    font-size: 24px;
  }

  .maps-for-research-title {
    font-size: 30px;
    line-height: 40px;
  }

  .maps-for-research-image img {
    max-width: 550px;
  }

  #maps-for-research-zoom-in_2,
  #maps-for-research-zoom-out_2 {
    width: 200px;
  }

  .maps-for-research-zoom,
  .maps-for-research-zoom-out {
    display: none;
  }

  .maps-for-research-zoom-mobile {
    grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr);
  }


  .maps-for-research-section .title-container {
    padding-left: 4rem;
    padding-right: 4rem;
    font-size: 0.8rem;
  }

  .maps-for-research-youtube-click a {
    font-size: 20px;
  }

  div.maps-for-research-zoom:nth-of-type(1) {
    top: 50px;
    left: 140px;
  }
  .maps-for-research-zoom-out {
    top: 160px;
    right: 0px;
  }

  .maps-for-research-bottomtext-container {
    padding-left: 70px;
    margin-top: -180px;
  }

  .maps-for-research-zoom-uppertext {
    padding-left: 65px;
  }
  .maps-for-research-zoom-background > p:first-of-type {
    margin-bottom: 50px;
  }

  .maps-for-research-bottomtext-container p {
    font-size: 16px;
    line-height: 20px;
  }
  .maps-for-research-youtube-title {
    font-size: 2em;
    line-height: 125%;
    padding-top: 30px;
  }

  .maps-for-research-frame {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 580px){

.maps-for-research-section .title-container {
  position: relative;
  margin: 0 auto;
}
}

@media screen and (min-width: 950px) {

  .maps-for-research-youtube {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }


}


@media screen and (min-width: 1024px) {
  .maps-for-research-image-container {
    right: 0px;
  }

  .maps-for-research-youtube-predefined > ul {
    font-size: 1.2em;
  }

  .maps-for-research-youtube-predefined > p {
    font-size: 1.2em;
  }

  div.maps-for-research-zoom:nth-of-type(1) {
    top: 120px;
    left: 220px;
  }

  .maps-for-research-zoom
    div.maps-for-research-bottomtext-container:nth-of-type(1) {
    padding-left: 0;
    margin-left: 0px;
  }

  .maps-for-research-title {
    font-size: 40px;
    line-height: 125%;
  }
  .maps-for-research-youtube {
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    gap: 200px;
  }

  .maps-for-research-image img {
    max-width: 600px;
  }

  #maps-for-research-zoom-in_2,
  #maps-for-research-zoom-out_2 {
    width: 300px;
  }

  div.maps-for-research-zoom:nth-of-type(1) {
    top: 140px;
    left: 110px;
  }

  .maps-for-research-zoom-out {
    top: 210px;
    right: 20px;
  }

  .maps-for-research-bottomtext-container {
    padding-left: 100px;
    margin-top: -40px;
  }

  .maps-for-research-zoom-uppertext {
    padding-left: 65px;
  }
  .maps-for-research-zoom-background > p:first-of-type {
    margin-bottom: 10px;
  }

  .maps-for-research-bottomtext-container p {
    font-size: 16px;
    line-height: 25px;
  }
  .maps-for-research-zoom,
  .maps-for-research-zoom-out {
    display: none;
  }

  .maps-for-research-youtube {
    grid-template-columns: minmax(100px, 1fr) minmax(100px, 1fr);
    gap: 100px;
    align-items: stretch;
    margin-top: 20px;
  }
  .maps-for-research-youtube-title {
    font-size: 2em;
    line-height: 150%;
    padding-top: 30px;
  }

  .maps-for-research-frame {
    font-size: 1.2em;
    padding: 10px;
    margin-bottom: 20px;
  }

  .maps-for-research-section .title-container p {
    font-size: 28.8px;
  }

}

@media screen and (min-width: 1200px) {
  .maps-for-research-zoom-mobile {
    display: none;
  }

  .maps-for-research-zoom,
  .maps-for-research-zoom-out {
    display: flex;
  }

  .maps-for-research-image-container {
    right: 70px;
  }

  div.maps-for-research-zoom:nth-of-type(1) {
    top: 20px;
    left: 210px;
  }
  /* .maps-for-research-zoom .maps-for-research-zoom-uppertext:nth-of-type(1) {
    padding-left: 0px;
  } */

  .maps-for-research-zoom
    div.maps-for-research-bottomtext-container:nth-of-type(1) {
    padding-left: 0;
    margin-left: 10px;
  }

  .maps-for-research-image img {
    max-width: 700px;
  }

  #maps-for-research-zoom-in_2,
  #maps-for-research-zoom-out_2 {
    width: 300px;
  }


  .maps-for-research-zoom .maps-for-research-zoom-background {
    margin-top: 50px;
  }

  .maps-for-research-zoom-out {
    top: 250px;
    right: 70px;
  }

  .maps-for-research-zoom-out .maps-for-research-zoom-background {
    margin-top: -70px;
  }

  .maps-for-research-bottomtext-container {
    padding-left: 70px;
    margin-top: -55px;
  }

  .maps-for-research-zoom-uppertext {
    padding-left: 20px;
    padding-bottom: 20px;
  }

  .maps-for-research-zoom-out .maps-for-research-zoom-uppertext {
    padding-left: 0px;
    padding-bottom: 20px;
  }

  .maps-for-research-zoom-background > p:first-of-type {
    margin-bottom: 0;
    margin-left: -20px;
  }

  .maps-for-research-youtube {
    grid-template-columns: minmax(100px, 1fr) minmax(100px, 1fr);
    gap: 100px;
  }
  .maps-for-research-youtube-title {
    font-size: 40px;
    line-height: 50px;
    padding-top: 30px;
  }

  .maps-for-research-frame {
    font-size: 20px;
    padding: 10px;
    margin-bottom: 20px;
  }

  .maps-for-research-youtube-predefined > ul {
    font-size: 20px;
  }

  .maps-for-research-youtube-predefined > p {
    font-size: 20px;
  }
}
@media screen and (min-width: 1300px){
  #maps-for-research-zoom-in_2,
  #maps-for-research-zoom-out_2 {
    width: 350px;
  }
  div.maps-for-research-zoom:nth-of-type(1) {
    top: 10px;
    left: 150px;
  }
  .maps-for-research-zoom
  div.maps-for-research-bottomtext-container:nth-of-type(1) {
  padding-left: 0;
  margin-left: 60px;
}

.maps-for-research-bottomtext-container {
  padding-left: 70px;
}
.maps-for-research-zoom-out {
  top: 250px;
  right: 70px;
}

}

@media screen and (min-width: 1440px) {
  .maps-for-research-youtube {
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    gap: 200px;
  }

  .maps-for-research-frame {
    border: 3px solid #73ffd4;
    border-radius: 25px;
    color: var(--blue-font);
    font-size: 25px;
    padding: 10px;
    margin-bottom: 20px;
  }

  .maps-for-research-youtube-title {
    text-align: center;
    color: var(--blue-font);
    font-size: 60px;
    line-height: 60px;
    padding-top: 30px;
  }

  .maps-for-research-zoom
    div.maps-for-research-bottomtext-container:nth-of-type(1) {
    margin-left: 110px;
  }

  .maps-for-research-zoom .maps-for-research-zoom-uppertext:nth-of-type(1) {
    padding: 0 0 10px 70px;
    text-align: left;
  }

  .maps-for-research-bottomtext-container p {
    font-size: 18px;
  }
  .maps-for-research-title {
    font-size: 50px;
  }

  .maps-for-research-image img {
    max-width: 900px;
  }

  #maps-for-research-zoom-in_2,
  #maps-for-research-zoom-out_2 {
    width: 440px;
  }

  .maps-for-research-zoom .maps-for-research-zoom-background {
    margin-top: 50px;
  }

  .maps-for-research-zoom-out .maps-for-research-zoom-background {
    margin-top: -15px;
  }

  .maps-for-research-youtube-title {
    font-size: 50px;
  }

  div.maps-for-research-zoom:nth-of-type(1) {
    top: 50px;
    left: 90px;
  }
  .maps-for-research-zoom-out {
    top: 250px;
    right: -20px;
  }

  .maps-for-research-bottomtext-container {
    padding-left: 105px;
    margin-top: -100px;
  }

  .maps-for-research-zoom-uppertext {
    padding-left: 70px;
    padding-bottom: 0;
  }

  .maps-for-research-zoom-background > p:first-of-type {
    margin-bottom: 0;
    margin-left: 50px;
  }
  .maps-for-research-zoom-out .maps-for-research-zoom-uppertext {
    padding-bottom: 10px;
  }
}

@media screen and (min-width: 1600px) {
  .maps-for-research-zoom
    div.maps-for-research-bottomtext-container:nth-of-type(1) {
    margin-left: 150px;
  }
  .maps-for-research-zoom .maps-for-research-zoom-uppertext:nth-of-type(1) {
    padding-left: 150px;
  }

  .maps-for-research-image img {
    max-width: 1000px;
  }

  .maps-for-research-title {
    font-size: 50px;
  }

  .maps-for-research-zoom-background > p:first-of-type {
    font-size: 50px;
  }

  .maps-for-research-youtube-title {
    font-size: 40px;
  }

  #maps-for-research-zoom-in_2,
  #maps-for-research-zoom-out_2 {
    width: 550px;
  }

  div.maps-for-research-zoom:nth-of-type(1) {
    top: 50px;
    left: 100px;
  }
  .maps-for-research-zoom-out {
    top: 230px;
    right: -15px;
  }

  .maps-for-research-bottomtext-container {
    padding-left: 160px;
    margin-top: -150px;
  }

  .maps-for-research-zoom-uppertext {
    padding-left: 160px;
  }
  .maps-for-research-youtube {
    gap: 300px;
  }
}

@media screen and (min-width: 1885px) {
  .maps-for-research-zoom
    div.maps-for-research-bottomtext-container:nth-of-type(1) {
    padding-left: 0;
    margin-left: 170px;
  }
  .maps-for-research-zoom .maps-for-research-zoom-uppertext:nth-of-type(1) {
    padding-left: 170px;
  }

  #maps-for-research-zoom-in_2,
  #maps-for-research-zoom-out_2 {
    width: 600px;
  }

  .maps-for-research-image img {
    max-width: 1200px;
  }

  div.maps-for-research-zoom:nth-of-type(1) {
    top: 50px;
    left: 120px;
  }
  .maps-for-research-zoom-out {
    top: 260px;
    right: 0px;
  }
}

/* END OF MAPS FOR RESEARCH */

/* SUBSCRIPTION */

.subscription-section {
  position: relative;
  /* display: flex;
  flex-direction: column; */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 5% 75%;
  background-color: #fff;
  min-width: 320px;
}

.subscription-title {
  font-size: 1.7em;
  font-weight: 200;
  text-align: left;
  /* white-space: nowrap; */
  margin-left: 20px;
  position: relative;
  align-self: end;
}

.subscription-title p {
  margin: 0;
}

.subscription-title span {
  color: var(--shape-span);
  font-weight: 500;
}

.subscription-container {
  position: relative;
  padding-top: 0px;
  min-width: 100%;
  background: #0381ff;
}

.subscription-container-background {
  width: 100%;
  position: relative;
  min-width: 320px;
  left: 0;
  top: -20px;
}

.subscription-kind-container {
  position: relative;
  display: flex;
  flex-direction: column;
  /* margin-top: 50px; */
  z-index: 2;
  padding: 0 20px 40px 20px;
  align-items: center;
}

.subscirption-cloud {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
}

.subscirption-cloud p:last-of-type {
  font-weight: 500;
}

.subscirption-cloud p {
  font-weight: 200;
}

.subscirption-cloud p:first-of-type {
  padding-top: 30px;
}

.subscirption-cloud-image {
  max-width: 175px;
  min-width: 50px;
}

.subscirption-cloud-image svg {
  width: 100%;
}

.subscription-cloud-text {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 35px;
}

.subscription-enterprise {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  font-weight: 300;
}

.subscription-enterprise p:last-of-type {
  font-weight: 200;
  padding-top: 30px;

  font-size: 16px;
  line-height: 25px;
}

.subscription-enterprise-image {
  max-width: 150px;
  min-width: 50px;
}

.subscription-enterprise-image svg {
  width: 100%;
}

.subscirption-cloud-image, .subscription-enterprise-image {

  margin-bottom: 50px;
}

.subscription-enterprise-text {
  margin: 0;
  color: #fff;
  font-size: 30px;
  text-align: center;
  line-height: 150%;
  max-width: 750px;
}

@media screen and (min-width: 672px) {
  .subscription-section {
    grid-template-rows: auto 5% 85%;
  }

  .subscription-title {
    font-size: 2.2em;
    margin:0 auto;
    text-align: center;
  }

  .subscription-container {
    padding-top: 0px;
  }

  .subscription-kind-container {
    padding: 0 50px 0px 50px;
  }

  .subscription-enterprise-image {
    max-width: 175px;
    min-width: 50px;
  }

  .subscirption-cloud-image {
    max-width: 200px;
    min-width: 50px;
  }

  .subscription-enterprise-text {
    font-size: 40px;
  }

  .subscription-cloud-text {
    font-size: 40px;
    line-height: 40px;
  }

  .subscription-enterprise p:last-of-type {
    font-size: 18px;
    line-height: 30px;
    font-weight: 200;
    padding-top: 30px;
  }

  .subscription-enterprise p:nth-of-type(1) {
    padding-top: 30px;
    line-height: 50px;
  }

  .subscription-enterprise p:nth-of-type(2) {
    font-weight: 300;
    line-height: 50px;
  }

  .subscription-enterprise p:nth-of-type(3) {
    font-weight: 300;
    line-height: 50px;
  }

  .subscription-container-background {
  align-self: start;
    top: -50px;
    height: 150px;
  }
}


@media screen and (min-width: 1024px) {
  .subscription-section {
    grid-template-rows: auto 10% 65%;
  }

.subscription-container-background {
    top: -100px;
    height: 250px;
  }
  .subscription-kind-container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .subscription-title {
    font-size: 40px;
  }

  .subscription-container {
    padding-top: 0px;
  }

  .subscription-enterprise, .subscirption-cloud {
    width: 50%;
  }

  .subscription-enterprise-image {
    max-width: 175px;
    min-width: 50px;
  }

  .subscirption-cloud-image {
    max-width: 200px;
    min-width: 50px;
  }

  .subscription-enterprise-text {
    font-size: 45px;
  }

  .subscription-cloud-text {
    font-size: 40px;
    line-height: 40px;
  }

  .subscription-enterprise p:last-of-type {
    font-size: 18px;
    line-height: 30px;
    font-weight: 200;
    padding-top: 30px;
  }

  .subscription-enterprise p:nth-of-type(1) {
    padding-top: 30px;
    line-height: 50px;
  }

  .subscription-enterprise p:nth-of-type(2) {
    font-weight: 300;
    line-height: 50px;
  }

  .subscription-enterprise p:nth-of-type(3) {
    font-weight: 300;
    line-height: 50px;
  }
}



@media screen and (min-width: 1440px) {
  .subscription-enterprise-image {
    max-width: 250px;
    min-width: 100px;
  }

  .subscirption-cloud-image {
    max-width: 350px;
    min-width: 100px;
  }

  .subscription-title {
    font-size: 55px;
  }

  .subscription-enterprise-text {
    font-size: 50px;
  }

  .subscription-cloud-text {
    font-size: 50px;
    line-height: 50px;
  }

  .subscription-enterprise p:last-of-type {
    font-size: 20px;
    line-height: 35px;
    font-weight: 200;
    padding-top: 30px;
  }

  .subscription-enterprise p:nth-of-type(1) {
    padding-top: 30px;
    line-height: 50px;
  }

  .subscription-enterprise p:nth-of-type(2) {
    font-weight: 300;
    line-height: 50px;
  }

  .subscription-enterprise p:nth-of-type(3) {
    font-weight: 300;
    line-height: 50px;
  }

  .subscription-container-background {
    top: -150px;
    height: 250px;
  }
}

@media screen and (min-width: 1600px) {
  .subscription-title {
    font-size: 65px;
  }

  .subscription-cloud-text {
    font-size: 60px;
    line-height: 60px;
  }

  .subscription-enterprise-text {
    font-size: 60px;
  }

  .subscription-enterprise p:last-of-type {
    font-size: 25px;
    line-height: 40px;
    font-weight: 200;
    padding-top: 30px;
  }

  .subscription-enterprise p:nth-of-type(1) {
    padding-top: 30px;
    line-height: 60px;
  }

  .subscription-enterprise p:nth-of-type(2) {
    font-weight: 300;
    line-height: 60px;
  }

  .subscription-enterprise p:nth-of-type(3) {
    font-weight: 300;
    line-height: 60px;
  }
}

@media screen and (min-width: 1920px) {
  .subscription-title {
    font-size: 75px;
  }
}

/* END OF SUBSCRIPTION */

/* CONTACT */

.contact-section {
  position: relative;
  color: #fff;
  background: var(--blue-font);
  min-width: 320px;
  top:-2px;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.contact-content {
  position: relative;
  z-index: 2;
}

.contact-title {
  font-weight: 500;
  text-transform: capitalize;
  margin-top: 3vw;
  margin-bottom: 0;

  font-size: 1.5em;
  margin-left: 20px;
}

.contact-text {
  width: 100%;
  text-align: center;
  font-weight: 200;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #232f3c;

  padding-bottom: 100px;
  padding-top: 60px;

  font-size: 18px;
}

.contact-text p {
  margin: 0;
}

.contact-text p:nth-of-type(2) {
  color: var(--green-font);
  font-weight: 500;

  font-size: 25px;
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #232f3c;
  padding-top: 5%;
  padding-bottom: 100px;
  padding-left: 10px;
  padding-right: 10px;

  font-size: 22px;
  flex-direction: column;
}

.contact-icons .twitter , .contact-icons .youtube {
  display: none;
}

.contact-info-image {
  position: relative;
  max-width: 150px;
  margin: 0 75px;
  margin-bottom: 40px;
}

.contact-info-image .empty-circle {
  position: absolute;
  right: -10%;
  top: -25%;
  width: 44%;
  height: 44%;
}

.contact-info-image img {
  max-inline-size: 100%;
  block-size: auto;
  object-fit: cover;
}

.contact-info-name {
  padding-top: 20px;
  margin-right: 0px;
  margin-bottom: 50px;
}

.contact-info-name p {
  margin: 0;
}

.contact-info-name .email {
  font-weight: 200;
}

.contact-info-name .email a {
  text-decoration: none;
  color: var(--green-font);
}

.contact-info-phone-number {
  margin-right: 0px;
  margin-bottom: 40px;
}

.contact-info-phone-number a {
  text-decoration: none;
  color: #fff;
}

.contact-info-phone-number span {
  font-weight: 200;
  color: var(--green-font);
}

.contact-bottom-background {
  position: absolute;
  display: none;
  right: 0;
  bottom: 0;
  padding-left: 30%;
  width: 100%;
  background: #232f3c;
  z-index: 10;
}

.contact-icons {
  display: grid;
  grid-template-columns: 100%;
  /* grid-template-columns: repeat(3, 40px); */
  gap: 25px;
  width: 100%;
  justify-items: center;
  max-width: 400px;
}

.icon {
  display:flex;
  align-items: center;
  justify-content: center;
  width: 40px;
}
.icon a {
  width: 100%;

}


.contact-bottom-background-1920plus {
  padding-left: 0%;
  width: 100%;
  background: #232f3c;
  z-index: 10;
  position: relative;
}

.contact-bottom-background-1920plus svg {
  display: none;
}

.copyright-text-container {
  width: 80%;
  margin:0 auto;
  height: 60px;
}

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

@media screen and (min-width: 678px) {
  .contact-bottom-background-1920plus svg {
    display: block;
  }

  .contact-bottom-background-1920plus {
    padding-left: 0%;
    width: 100%;
    background: #232f3c;
    z-index: 10;
    position: relative;
  }

  .copyright-text-container {
    position: absolute;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
  }
}

@media screen and (min-width: 950px) {
  .contact-bottom-background-1920plus svg {
    display: block;
  }

  .contact-bottom-background-1920plus {
    padding-left: 30%;
    width: 100%;
    background: #232f3c;
    z-index: 10;
    position: relative;
  }

  .copyright-text-container {
    position: absolute;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-18%, -50%);
    width: max-content;
  }
}

@media screen and (min-width: 450px) {
  .contact-info {
    font-size: 22px;
    flex-direction: column;
  }
  .contact-title {
    font-size: 2em;
    margin-left: 20px;
  }

  .contact-info-phone-number {
    margin-right: 0px;
    margin-bottom: 40px;
  }

  .contact-info-name {
    margin-right: 0px;
  }

  .contact-info-image {
    max-width: 150px;
    margin: 0 75px;
    margin-bottom: 40px;
  }

  .contact-text {
    font-size: 18px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-text p:nth-of-type(2) {
    font-size: 25px;
  }

}

@media screen and (min-width: 672px) {
  .contact-info {
    font-size: 22px;
    justify-content: center;
  }
  .contact-title {
    font-size: 3em;
    margin-left: 40px;
  }

  .contact-info-phone-number {
    margin-right: 0px;
    margin-bottom: 40px;
  }

  .contact-info-name {
    margin-right: 0px;
  }

  .contact-info-image {
    max-width: 150px;
    margin: 0 75px;
    margin-bottom: 40px;
  }

  .contact-text {
    font-size: 25px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-text p:nth-of-type(2) {
    font-size: 35px;
  }
}

@media screen and (min-width: 1024px) {
  .contact-info {
    font-size: 22px;
    flex-direction: row;
  }
  .contact-title {
    font-size: 4em;
    margin-left: 80px;
  }

  .contact-info-phone-number {
    margin-right: 50px;
    margin-bottom: 0px;
  }

  .contact-info-name {
    margin-right: 50px;
  }

  .contact-info-image {
    max-width: 150px;
    margin: 0 75px;
  }

  .contact-text {
    font-size: 35px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-text p:nth-of-type(2) {
    font-size: 45px;
  }

  .contact-icons {
    grid-template-columns: repeat(3, 25px);
    gap: 20px;
    width: auto;
    justify-content: center;
    padding-bottom: 10px;
  }




}

@media screen and (min-width: 1148px) {
  .contact-title {
    margin-left: 100px;
  }
}

@media screen and (min-width: 1440px) {

  .contact-info {
    font-size: 27px;
  }
  .contact-title {
    font-size: 4.5em;
    margin-left: 120px;
  }

  .contact-info-phone-number {
    margin-right: 100px;
  }

  .contact-info-name {
    margin-right: 100px;
  }

  .contact-info-image {
    max-width: unset;
    min-width: 50px;
  }

  .contact-text {
    font-size: 35px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-text p:nth-of-type(2) {
    font-size: 45px;
  }

  .contact-icons {
    grid-template-columns: repeat(3, 30px);
    gap: 25px;
  }
}

@media screen and (min-width: 1600px) {
  .contact-text {
    font-size: 45px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-text p:nth-of-type(2) {
    font-size: 55px;
  }

  .contact-info {
    font-size: 35px;
  }

  .contact-title {
    margin-left: 150px;
  }

  .contact-info-phone-number {
    margin-right: 100px;
  }

  .contact-info-name {
    margin-right: 100px;
  }

  .contact-info-image {
    min-width: 200px;
  }

  .contact-icons {
    grid-template-columns: repeat(3, 35px);
    gap: 40px;
  }
}

@media screen and (min-width: 1920px) {
  .contact-title {
    margin-left: 200px;
  }

  .contact-info-phone-number {
    margin-right: 250px;
  }

  .contact-info-name {
    padding-top: 20px;
    margin-right: 170px;
    margin-bottom: 50px;
  }
}

/* END OF CONTACT */

/* VIDEO SECTION */

.video-info-section {
  position: relative;
  background: #e9ebef;
  background-image: linear-gradient(var(--blue-font), var(--blue-font) 100%);
  background-size: 100% 300px;
  background-repeat: no-repeat;
  background-position: center bottom;
  min-width: 320px;
  padding: 0 0 20px 0;
}

.video-title {
  font-size: 36px;
  text-align: center;
  z-index: 1005;
  position: relative;
  margin: 0 auto;
  top: -25px;
}

.video-title h1 {
  font-size: 36px;
  font-weight: 300;
}

.video-title span {
  font-weight: 500;
  color: var(--shape-span);
}

.video-description-container {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1004;
  padding: 65px 20px;
  /* background-color: var(--blue-font); */
  background: linear-gradient(180deg, rgba(3, 129, 255, 0) 0%, #0381FF 12%, #0381FF 100%);
}

.video-description-container video {
  width: 100%;
}

.video-background {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1004;
  display: block;
  padding: 150px 0 0 0;
}

.video-description-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
  padding-top: 40px;
  background-color: transparent;
  padding-bottom: 0;
}

.video-description-image {
  width: 150px;
  margin: 25px 0;
  display: flex;
  justify-content: center;
}

.video-description-image.first {
  margin-bottom: 30px;
}


.video-description-text-container {
  font-size: 50px;
  text-align: center;
  line-height: 55px;
}

.video-description-text-container p:first-of-type {
  font-size: 1.2em;
  line-height: 150%;
  font-weight: 700;
  color: #232F3C;
  margin-bottom: 15px;
}

.video-description-text-container p {
  font-size: 1.2em;
  color: #fff;
  line-height: 150%;
}

.video-description-text-container div, .text-border {
  font-size: 1em;
  color: #fff;
  border: 2px solid #73ffd4;
  border-radius: 50px;
  padding: 12px 20px;
  display: inline-block;
}

.video-description-text-container {
  /* font-size: 20px; */
  font-size: 1.3em;
  line-height: 150%;
  margin: 20px 0;
}
.video-description-text-container span.smaller {
  font-size: 1.2em;
  font-weight: 100;
}
.video-description-text-container span.smaller-text {
  font-size: 0.8em;
}

.video-description-text-container span.spanBorder {
  border: 2px solid #73ffd4;
  border-radius: 50px;
  padding: 3px 8px;
  font-size: 0.8em;
}

@media screen and (min-width: 373px) {
  .video-background {
    padding: 100px 0 0 0;
  }
}

@media screen and (min-width: 416px) {
  .video-background {
    padding: 100px 0 0 0;
  }
}

@media screen and (min-width: 442px) {
  .video-background {
    padding: 40px 0 0 0;
  }
}

@media screen and (min-width: 446px){

  .video-description-container {
  background: linear-gradient(180deg, rgba(3, 129, 255, 0) 5%, #0381FF 15%, #0381FF 100%);
}
}

@media screen and (min-width: 495px) {
  .video-background {
    padding: 40px 0 0 0;
  }
}

@media screen and (min-width: 534px){
.video-background {
  padding: 30px 0 0 0;
}
}

@media screen and (min-width: 480px) {
  .video-title {
    top: -35px;
  }
}

@media screen and (min-width: 672px) {
  .video-description-container video {
    width: 80%;
  }
  .video-description-container {
    padding: 100px 0 80px 0;
  }
}

@media screen and (min-width: 767px){
.video-background {
  padding: 50px 0 0px 0;
}
.video-title h1 {
  font-size: 48px;
}
}



@media screen and (min-width: 1024px) {

  .video-description-container video {
    width: 70%;
  }

  .video-description-image {
    width: 150px;
    height: 150px;
  }

  .video-description-text-container p:first-of-type {
    font-size: 1em;
  }

  .video-title {
    font-size: 72px;
    top: -55px;
  }
  .video-title h1 {
    font-size: 72px;
  }
  .video-background {
    display: block;
    top: 0px;

  }

  .video-description-text-container p {
    font-size: 1.5em;
  }

 p.text-pad {
    font-size: 2em;
    line-height: 175%;
    margin-bottom: 20px;
  }

  .video-description-text-container span.smaller {
    /* font-size: 1.5em; */
    font-weight: 200;
  }
  .video-description-text-container span.smaller-text {
    font-size: 0.7em;
  }
  .video-description-container {
    background: linear-gradient(180deg, rgba(3, 129, 255, 0) 5%, #0381FF 28%, #0381FF 100%);
    padding: 100px 0 150px 0;
  }

  .video-description-tile {
    background-color: transparent;
    padding-bottom: 0;
  }

  .video-description-text-container {
    /* font-size: 20px; */
    font-size: 1.5em;
  }

}

@media screen and (min-width: 1373px) {
  .video-description-container {
    padding: 160px 0 190px 0;
  }
}

@media screen and (min-width: 1440px) {
  .video-title {
  width: 60%;
  top: -50px;
  }
  .video-description-container {
    padding: 160px 0 160px 0;
  }
}
 
@media screen and (min-width: 1600px) {
  .video-description-container {
    padding: 175px 0 200px 0;
  }
}

@media screen and (min-width: 1750px) {
  .video-description-container {
    /* padding: 30px 0 230px 0; */
  }
}

@media screen and (min-width: 1825px) {
  .video-description-container {
    padding: 175px 0 190px 0;
  }
}

@media screen and (min-width: 1850px) {
  .video-title {
    top: 0px;
  }

}

@media screen and (min-width: 1920px) {
  .video-description-container {
    background: linear-gradient(180deg, rgba(3, 129, 255, 0) 10%, #0381FF 25%, #0381FF 100%);
    padding: 190px 0 200px 0;
  }

}

.video-tiles-container {
  display: grid;
  grid-template-columns: minmax(280px, 1fr);
  z-index: 1004;
  width: 100%;
  position: relative;
  padding-top: 100px;
}

.video-tiles-background {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  z-index: 1004;
  background: transparent;
}

.video-tile {
  /* display: flex;
  flex-direction: column; */
  display: grid;
grid-template-columns: 1fr;
  align-items: stretch;
  justify-items: center;
  z-index: 10;
  padding-left: 20px;
  padding-right: 20px;
  background: #fff;
  color: var(--blue-font);
  padding-bottom: 75px;
}

div.video-tile:nth-of-type(3) div.video-tile-image {
  /* width: 300px; */
  width: 250px;
}

.video-tile .straight-line {
  display: none;
}

.video-tile:nth-child(2n + 1)  {
  display: grid;
  grid-template-columns: 1fr;
}
.video-tile:nth-child(2n + 1) > .video-tile-image {
  grid-area: 1;
}

/* .makes-us-different-tile:nth-child(2n + 1) p {
  text-align: right;
} */

.video-tile-image {
  display: block;
  min-width: 150px;
  margin-bottom: 40px;
}

.video-tile-texts {
  font-size: 1em;
  line-height: 150%;
  padding: 0;
}

.video-tile-texts span {
  font-weight: 600;
}

.video-tile-texts ul {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.video-tile-texts li::marker {
  content: "> ";
}

.video-tile .horizontal-line {
  display: block;
  width: 300px;
  margin-top: 20px;
}

.video-tiles-container .title-container {
  top: -40px;
  left: 3%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.video-tiles-container .title-container p {
  font-size: 1.2em;
}

@media screen and (min-width: 767px) {

  .video-tile {
    /* display: flex;
    flex-direction: column; */
    display: grid;
  grid-template-columns: 0.3fr 0.1fr 1fr;
    align-items: center;
    justify-items: start;
    z-index: 10;
    background: #fff;
    color: var(--blue-font);
    padding: 0 25px 50px 25px;
  }
  .video-tile .horizontal-line {
    display: none;
  }
  .video-tile .straight-line {
    display: initial;
    margin:0 auto;
  }

  .video-tile:nth-child(2n + 1)  {
    display: inherit;
    align-items: center;
    justify-items: end;
    grid-template-columns:1fr 0.1fr 0.3fr;
    text-align: right;
  }
  .video-tile:nth-child(2n + 1) > .video-tile-image {
    grid-area: initial;
  }
  .video-tile-image {
    margin: 20px auto;
  }

  .video-tiles-container .title-container {
    top: -70px ;
    left: 5%;
    padding: 0 2em;
  }
  .video-tiles-container .title-container p {
  font-size: 1.5em;
  }

  .video-tiles-background {
    top: -40px;
  }

}

@media screen and (min-width: 1024px) {
  .video-tile {
  grid-template-columns: 0.2fr 0.1fr 1fr;
  }
  .video-tile:nth-child(2n + 1)  {
    grid-template-columns: 1fr 0.1fr 0.2fr;
  }

  .video-tiles-container .title-container {
    top: -95px ;
    left: 5%;
    padding: 0 5em;
  }
  .video-tiles-container .title-container p {
  font-size: 1.8em;
  }

  .video-tiles-background {
    top: -65px;
  }

  .video-tiles-container {
    margin: 0 20px;
  }

  .video-tile-texts {
    font-size: 1.2em;
}
}

@media screen and (min-width: 1440px) {
  .video-tile {
    padding: 0 50px 50px 50px;
  }
  .video-tiles-container {
    max-width: 1500px;
    margin: 0 auto;
  }
  .video-tiles-container .title-container {
    top: -95px ;
    left: 0%;
    padding: 0 10em;
  }
  div.video-tile:nth-of-type(3) div.video-tile-image {
    width: 350px;
  }
}
@media screen and (min-width: 1600px) {

.video-tiles-background {
  top: -100px;
}

.video-tiles-container .title-container {
  top: -130px;
}
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999999;
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
  align-items: center;
}

/* Modal Content */
.modal-content {
  margin: auto;
  width: 50%;
}

.modal-content video {
  width: 100%;
}

/* The Close Button */
.close {
  font-size: 28px;
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color:rgba(20, 21, 26, 0.9);
  border-radius: 50%;
  font-size: 25px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close svg {
  width: 28px;
}

.close:hover,
.close:focus {
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 1650px) {
  .modal-content {
    width: 70%;
  }
}

@media screen and (max-width: 1200px) {
  .modal-content {
    width: 85%;
  }
}

@media screen and (max-width: 650px) {
  .modal-content {
    width: 95%;
  }
}