html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Ruda, sans-serif;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  margin: 0;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 48px;
}

p {
  color: #114B5F;
  font-size: 24px;
}

a {
  cursor: pointer;
  text-decoration: none;
  text-decoration-color: #1C2541;
}
a:visited {
  color: #1C2541;
}
a:active {
  color: #1C2541;
}

button {
  outline: none;
}

.reveal {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.initial {
  position: relative;
  left: 0;
  top: -35px;
}

.header {
  width: 100vw;
  display: flex;
  z-index: 2;
  transition: all 0.2s ease;
  position: fixed;
  top: 0;
}
.header .headerLeftContainer {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  background-color: #0DA1BC;
  border-bottom-right-radius: 15px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 2;
  transition: all 0.2s ease;
}
.header .headerLeftContainer .headerLogo {
  cursor: pointer;
  transition: all 0.2s ease;
  height: 140px;
}
@media (min-width: 1200px) {
  .header .headerLeftContainer {
    width: 50%;
  }
}
@media (max-width: 900px) {
  .header .headerLeftContainer .headerLogo {
    height: 100px;
  }
}
.header .headerRightContainer {
  height: 100px;
  width: 100%;
  background-color: #F9F9F9;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 2;
  transition: all 0.2s ease;
}
.header .headerRightContainer .hamburger {
  display: none;
  z-index: 5;
  margin-right: 15px;
}
.header .headerRightContainer .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #A2DA5A;
}
@media (max-width: 900px) {
  .header .headerRightContainer {
    height: 70px;
  }
}
.header .headerRightContainer .headerMenu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  position: relative;
  z-index: 4;
}
@media (max-width: 599px) {
  .header .headerRightContainer .headerMenu {
    flex-flow: row-reverse;
    justify-content: end;
  }
  .header .headerRightContainer .headerMenu .menuList.active {
    right: 0;
  }
  .header .headerRightContainer .headerMenu li {
    margin: 10px 0;
  }
  .header .headerRightContainer .headerMenu .hamburger {
    display: block;
    cursor: pointer;
  }
  .header .headerRightContainer .headerMenu .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .header .headerRightContainer .headerMenu .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header .headerRightContainer .headerMenu .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
.header .headerRightContainer .headerMenu .menuList {
  display: flex;
  row-gap: 30px;
  width: 100%;
  height: 100%;
}
.header .headerRightContainer .headerMenu .menuList .navItem {
  padding: 20px;
  position: relative;
  width: 100%;
  z-index: 2;
  transition: 0.3s;
}
@media (max-width: 599px) {
  .header .headerRightContainer .headerMenu .menuList .navItem {
    padding: 5px;
  }
}
.header .headerRightContainer .headerMenu .menuList .navItem:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #A2DA5A;
  left: 0;
  opacity: 0;
  transition: 0.3s;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.header .headerRightContainer .headerMenu .menuList .isActive {
  color: #F9F9F9;
}
@media (max-width: 599px) {
  .header .headerRightContainer .headerMenu .menuList .isActive {
    color: #0DA1BC;
  }
}
.header .headerRightContainer .headerMenu .menuList .nav-item:not(.isActive):hover:before {
  opacity: 1;
  bottom: 0;
}
.header .headerRightContainer .headerMenu .menuList .nav-item:not(.isActive):hover {
  color: #F9F9F9;
}
.header .headerRightContainer .headerMenu .menuList .navIndicator {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  height: 110px;
  background-color: #A2DA5A;
  z-index: 1;
  border-radius: 0 0 8px 8px;
  transition: 0.3s;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 900px) {
  .header .headerRightContainer .headerMenu .menuList .navIndicator {
    height: 80px;
  }
}
@media (max-width: 599px) {
  .header .headerRightContainer .headerMenu .menuList .navIndicator {
    display: none;
  }
}
@media (max-width: 599px) {
  .header .headerRightContainer .headerMenu .menuList {
    padding: 40px 0 40px;
    margin-top: -10px;
    margin: 0;
    position: fixed;
    right: -200%;
    top: 0;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
    transition: 0.5s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    height: auto;
  }
}
.header .headerRightContainer .headerMenu .socialMediaIcons {
  display: flex;
}
.header .headerRightContainer .headerMenu .socialMediaIcons .socialIcon i {
  color: #0DA1BC;
  padding: 10px;
  font-size: 24px;
}

.fixedHeader {
  z-index: 5;
  transition: all 0.2s ease;
}
.fixedHeader .headerRightContainer {
  height: 60px;
}
@media (max-width: 900px) {
  .fixedHeader .headerRightContainer {
    height: 50px;
  }
}
.fixedHeader .headerRightContainer .headerMenu .menuList .navIndicator {
  height: 70px;
}
.fixedHeader .headerLeftContainer .headerLogo {
  height: 85px;
}
@media (max-width: 900px) {
  .fixedHeader .headerLeftContainer .headerLogo {
    height: 70px;
  }
}

.firstSection {
  transition: all 0.3s ease;
  background-color: #F9F9F9;
  height: 100%;
  margin-top: -50px;
  align-items: center;
  display: flex;
  width: 100%;
  position: relative;
  z-index: -1;
  padding-top: 100px;
}
.firstSection .textContainer {
  width: 40%;
}
.firstSection .textContainer h1 {
  text-align: center;
  color: #656565;
}
.firstSection .textContainer span {
  color: #0DA1BC;
}
@media (max-width: 900px) {
  .firstSection .textContainer {
    margin: 80px 0 40px;
    width: 100%;
  }
}
.firstSection .imageContainer {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  width: 100%;
}
.firstSection .imageContainer img {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 599px) {
  .firstSection {
    flex-direction: column;
  }
}
@media (min-width: 600px) and (max-width: 899px) {
  .firstSection {
    flex-direction: column;
  }
}

.waves {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.waves img {
  max-width: 100%;
}
.waves .greenWave {
  right: 0;
  position: absolute;
  z-index: 3;
  bottom: 0;
}
.waves .blueWave {
  right: 30px;
  position: absolute;
  z-index: 2;
  bottom: -10px;
}

.bottomWaves {
  transform: scale(-1, -1);
  top: -50px;
  right: 0;
  height: 0;
}
@media (max-width: 900px) {
  .bottomWaves .greenWave {
    left: 40px;
  }
  .bottomWaves .blueWave {
    right: 0;
  }
}

.secondSection {
  position: relative;
  margin-top: -5px;
}
@media (max-width: 599px) {
  .secondSection {
    display: flex;
    flex-direction: column;
  }
  .secondSection .waves .blueWave {
    top: -350px;
  }
}
@media (min-width: 600px) and (max-width: 899px) {
  .secondSection {
    display: flex;
    flex-direction: column;
  }
  .secondSection .waves .blueWave {
    top: -350px;
  }
}
.secondSection .blocks {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 280px;
  background-color: #A2DA5A;
  display: flex;
  flex-direction: column;
}
@media (max-width: 599px) {
  .secondSection .blocks {
    height: 350px;
  }
}
@media (min-width: 900px) {
  .secondSection .blocks {
    flex-direction: row;
    align-items: center;
    padding: 10px 0 10px;
    height: 100%;
  }
}
.secondSection .blocks .leftBlock {
  width: 30%;
  display: flex;
  flex-direction: column;
  padding: 30px 30px 0 50px;
  align-items: flex-end;
  height: 100%;
}
.secondSection .blocks .leftBlock .leftBlockContent {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 599px) {
  .secondSection .blocks .leftBlock .leftBlockContent {
    margin: 5px auto 5px;
  }
}
.secondSection .blocks .leftBlock h2 {
  color: #F9F9F9;
}
@media (max-width: 599px) {
  .secondSection .blocks .leftBlock {
    width: 100%;
    padding: 0;
  }
  .secondSection .blocks .leftBlock .leftBlockContent {
    width: 80%;
  }
  .secondSection .blocks .leftBlock h2 {
    text-align: left;
  }
  .secondSection .blocks .leftBlock p {
    text-align: left;
  }
}
@media (min-width: 600px) {
  .secondSection .blocks .leftBlock {
    width: 50%;
    padding: 30px 10px 0 30px;
  }
  .secondSection .blocks .leftBlock .aboutParagraph {
    margin: 24px 0 0;
  }
}
@media (min-width: 600px) and (max-width: 899px) {
  .secondSection .blocks .leftBlock {
    width: 30%;
  }
}
.secondSection .blocks .rightBlock {
  width: 100%;
}
.secondSection .blocks .rightBlock .smartPhoneImage {
  position: absolute;
  top: -230px;
  right: 0;
  width: 830px;
  opacity: 0;
}
@media (max-width: 599px) {
  .secondSection .blocks .rightBlock .smartPhoneImage {
    position: unset;
    top: unset;
    margin-top: -100px;
    max-width: 90%;
  }
}
@media (min-width: 900px) {
  .secondSection .blocks .rightBlock .smartPhoneImage {
    width: 620px;
  }
}
@media (min-width: 600px) and (max-width: 899px) {
  .secondSection .blocks .rightBlock .smartPhoneImage {
    width: 580px;
    top: -80px;
  }
}
.secondSection .blocks .rightBlock .smartPhoneImage.active {
  opacity: 1;
}

.thirdSection {
  background-color: #114B5F;
  height: 680px;
  position: relative;
  padding-bottom: 30px;
}
.thirdSection .textBlock {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-bottom: 30px;
}
.thirdSection .textBlock h1 {
  font-weight: normal;
  width: 60%;
  text-align: end;
  color: white;
  padding-top: 130px;
  padding-right: 20px;
}
@media (max-width: 599px) {
  .thirdSection .textBlock {
    justify-content: center;
  }
  .thirdSection .textBlock h1 {
    font-size: 46px;
    width: 80%;
    padding-right: 0;
  }
}
@media (min-width: 900px) {
  .thirdSection .textBlock h1 {
    width: 50%;
  }
}
@media (min-width: 600px) and (max-width: 899px) {
  .thirdSection .textBlock {
    padding-top: 40px;
  }
}
@media (max-width: 900px) {
  .thirdSection {
    height: 100%;
    justify-content: center;
  }
}
.thirdSection .sliderContainer {
  position: relative;
}
.thirdSection .sliderContainer .controls {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 0;
  background: transparent;
  width: 100%;
  top: 40%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}
.thirdSection .sliderContainer .controls li {
  outline: none;
}
.thirdSection .sliderContainer .controls:hover {
  color: rgba(255, 255, 255, 0.2);
}
.thirdSection .sliderContainer .controls i {
  padding: 0 5px 0;
}
.thirdSection .sliderContainer .controls:focus {
  outline: none;
}
.thirdSection .sliderContainer .controls li:hover {
  cursor: pointer;
}
.thirdSection .sliderContainer .cards {
  display: flex;
  width: 100%;
  column-gap: 15px;
  justify-content: center;
}
@media (min-width: 1200px) {
  .thirdSection .sliderContainer .cards {
    margin-top: 60px;
  }
}
.thirdSection .sliderContainer .cards .card {
  max-width: 330px;
  height: 230px;
  background-color: rgba(13, 161, 188, 0.53);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thirdSection .sliderContainer .cards .card .innerCard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.thirdSection .sliderContainer .cards .card .innerCard .cardIcon {
  width: 80px;
  margin-bottom: 15px;
}
.thirdSection .sliderContainer .cards .card .innerCard h1 {
  text-align: center;
  color: white;
  font-size: 22px;
  font-weight: normal;
}
@media (max-width: 599px) {
  .thirdSection .sliderContainer .cards .card .innerCard {
    width: 70%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .thirdSection .sliderContainer .cards .card {
    max-width: 280px;
  }
  .thirdSection .sliderContainer .cards .card .innerCard .cardIcon {
    width: 60px;
  }
  .thirdSection .sliderContainer .cards .card .innerCard h1 {
    font-size: 18px;
  }
}
@media (max-width: 900px) {
  .thirdSection .sliderContainer .cards .card {
    max-width: unset;
    width: 90%;
  }
}
@media (max-width: 900px) {
  .thirdSection .sliderContainer .cards {
    width: 90%;
    align-items: center;
    column-gap: unset;
  }
}

.fourthSection {
  background-color: #F9F9F9;
  height: auto;
  position: relative;
  padding-bottom: 100px;
}
.fourthSection h1 {
  color: #F9F9F9;
}
.fourthSection .sectionContainer {
  margin-top: 30px;
  position: relative;
}
.fourthSection .sectionContainer .content {
  position: relative;
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  column-gap: 20px;
}
@media (min-width: 900px) and (max-width: 1199px) {
  .fourthSection .sectionContainer .content {
    padding-top: 60px;
  }
}
.fourthSection .sectionContainer .content .block {
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
  height: 100%;
  width: 100%;
}
@media (max-width: 900px) {
  .fourthSection .sectionContainer .content .block p {
    margin: 0;
  }
}
.fourthSection .sectionContainer .content .rightBlock {
  align-items: center;
  margin-top: -50px;
  width: auto;
}
.fourthSection .sectionContainer .content .rightBlock img {
  max-width: 500px;
}
@media (max-width: 900px) {
  .fourthSection .sectionContainer .content .rightBlock img {
    max-width: 90%;
  }
}
.fourthSection .sectionContainer .content .rightBlock p {
  width: 80%;
}
@media (max-width: 900px) {
  .fourthSection .sectionContainer .content .rightBlock {
    margin-top: 40px;
  }
  .fourthSection .sectionContainer .content .rightBlock p {
    width: 80%;
  }
}
.fourthSection .sectionContainer .content .floatingWhale {
  position: absolute;
  background-image: url("./assets/whale-opacity.png");
  background-size: cover;
  width: 400px;
  height: 270px;
}
@media (max-width: 900px) {
  .fourthSection .sectionContainer .content .floatingWhale {
    position: absolute;
    width: 180px;
    height: 122px;
    top: 30px;
    right: 10px;
    margin-top: -290px;
    left: unset;
  }
}
.fourthSection .sectionContainer .content .leftBlock {
  width: auto;
  padding-left: 50px;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
}
.fourthSection .sectionContainer .content .leftBlock img {
  width: 250px;
}
@media (max-width: 900px) {
  .fourthSection .sectionContainer .content .leftBlock {
    width: auto;
    padding-top: 40px;
    padding-left: 20px;
    flex-flow: column-reverse;
  }
}
@media (min-width: 600px) and (max-width: 899px) {
  .fourthSection .sectionContainer .content .leftBlock {
    padding-top: 30px;
  }
}
@media (max-width: 900px) {
  .fourthSection .sectionContainer .content {
    flex-direction: column;
  }
}
.fourthSection .sectionTitleContainer {
  position: relative;
  background-image: url("./assets/cases-image.png");
  background-size: cover;
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
  box-shadow: 0px 4px 4px rgba(61, 61, 61, 0.25);
  background-position: center;
  opacity: 0;
}
.fourthSection .sectionTitleContainer h1 {
  margin-left: 50px;
  color: #F9F9F9;
}
@media (max-width: 599px) {
  .fourthSection .sectionTitleContainer {
    background-position: right;
  }
}
.fourthSection .sectionTitleContainer.active {
  opacity: 1;
}
.fourthSection .caseInfoContainer {
  margin-top: 30px;
  position: relative;
  z-index: 4;
  margin-left: 50px;
}
.fourthSection .caseInfoContainer p {
  color: #F9F9F9;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .fourthSection .caseInfoContainer p {
    padding-top: 100px;
    width: 100%;
    color: #114B5F;
  }
}
@media (max-width: 900px) {
  .fourthSection .caseInfoContainer {
    margin-left: 20px;
  }
  .fourthSection .caseInfoContainer h1 {
    width: 90%;
    font-size: 42px;
  }
}
@media (max-width: 400px) {
  .fourthSection .caseInfoContainer h1 {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .fourthSection .caseInfoContainer {
    width: 50%;
  }
}
.fourthSection .fourthSectionWaves .greenWave {
  width: 100%;
  top: -50px;
  z-index: 2;
  right: 0;
}
.fourthSection .fourthSectionWaves .blueWave {
  width: 100%;
  top: -40px;
  right: 0;
  z-index: 3;
}
.fourthSection .fourthSectionWaves img {
  width: 100%;
  height: 350px;
}
@media (max-width: 900px) {
  .fourthSection .fourthSectionWaves img {
    height: 200px;
  }
  .fourthSection .fourthSectionWaves .greenWave {
    top: -40px;
  }
}

.backToTopButton {
  background: transparent;
  color: #F9F9F9;
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 35px;
  z-index: 5;
  visibility: hidden;
}
.backToTopButton .iconRoundContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(13, 161, 188, 0.53);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.backToTopButton .iconRoundContainer i {
  padding: 5px;
  margin-bottom: 3px;
}

.followMeSection {
  background: #114B5F;
}
.followMeSection .fakeBorder {
  height: 6px;
  background-color: #A2DA5A;
}
.followMeSection .content {
  width: 100%;
  padding: 30px 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F9F9F9;
}
.followMeSection .content i {
  color: #F9F9F9 !important;
  font-size: 64px;
}
.followMeSection .content .followMeLabels {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
}
.followMeSection .content .followMeLabels .followTitle {
  font-weight: bold;
}
.followMeSection .content .followMeLabels .followIgAdress {
  font-size: 18px;
}
.followMeSection .content .followMeLabels p {
  margin: 0;
  color: #F9F9F9;
}

.footer {
  display: flex;
  align-items: center;
  background-color: #0DA1BC;
  color: #F9F9F9;
  flex-direction: column;
  width: 100%;
}
.footer .blocks {
  margin: 40px 0 40px;
  display: flex;
  width: 100%;
  justify-content: space-around;
}
@media (max-width: 599px) {
  .footer .blocks {
    margin-bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer .blocks .rightBlock {
    margin-top: 15px;
  }
}
.footer .blocks .leftBlockContent {
  margin-top: 20px;
  line-height: 40px;
}
.footer .blocks .leftBlockContent .infoLine {
  display: flex;
  align-items: center;
}
.footer .blocks .leftBlockContent .infoLine .icon {
  padding-right: 15px;
}
.footer .blocks .leftBlockContent .infoLine .icon a {
  color: inherit;
}
.footer .blocks .leftBlockContent .infoLine .icon .fa-whatsapp {
  padding-right: 10px;
}
.footer .blocks .leftBlockContent .infoLine span {
  font-size: 24px;
}
.footer .blocks img {
  height: 200px;
}
.footer .copyright {
  width: 100%;
  height: 60px;
  background-color: #114B5F;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .copyright h1 {
  font-weight: normal;
  font-size: 16px;
  text-align: center;
}

#tns1-mw {
  margin: 0 35px 0;
}

/*# sourceMappingURL=styles.css.map */
