/* guides */

/*
Colors
- Primary Palette:
  - Turquoise (#40C4FF): Represents Maldives waters, vibrant and inviting. (blue)
  - Coral Pink (#FF6F61): Feminine, warm, and tied to influencer energy. (red)
  - White (#FFFFFF): Clean, open, and luxurious. (white)
- Secondary Palette:
  - Soft Sand (#F5E8C7): Neutral, beach-inspired warmth. (sand)
  - Deep Ocean (#1A3C5A): Sophisticated contrast for text or accents. (dark blue)

Typography
- Primary Font: Playfair Display (Serif)
  - Use: Headlines, titles.
  - Why: Elegant and luxurious, evoking high-end travel.
- Secondary Font: Montserrat (Sans-Serif)
  - Use: Body text, buttons, navigation.
  - Why: Modern, clean, and highly readable.
- Sizes:
  - H1: 36px (Playfair Display, Bold).
  - H2: 24px (Playfair Display, Regular).
  - Body: 16px (Montserrat, Regular).
  - Buttons/Links: 14px (Montserrat, Medium).
*/

/* general */

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Montserrat", sans-serif;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  text-align: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  background-color: #40C4FF;
  border: 0;
  border-radius: 24px;
  box-shadow: none;
  outline: 0;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.btn:hover {
  color: #fff;
  background-color: #1A3C5A;
}

.follow-me-btn {
  display: inline-block;
  padding: .5rem 2rem;
  padding-top: .65rem;
  padding-bottom: .55rem;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #FD1D1D, #FCAF45);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  -webkit-transition: color .2s ease-out;
  -moz-transition: color .2s ease-out;
  -o-transition: color .2s ease-out;
  transition: color .2s ease-out;
}

.follow-me-btn:hover {
  color: #fff;
}

.follow-me-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #1A3C5A, #5C2D91, #962366, #B31217, #F56040);
  border-radius: 40px;
  opacity: 0;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  -o-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
  z-index: 1;
}

.follow-me-btn:hover::after {
  opacity: 1;
}

.follow-me-btn span {
  position: relative;
  z-index: 2;
}

.follow-me-btn i {
  margin-right: .6rem;
  font-weight: 700;
}

.mt-2rem {
  margin-top: 2rem !important;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .d-none-for-lg {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .d-none-for-mobile {
    display: none !important;
  }

  .flex-direction-column-reverse-for-mobile {
    flex-direction: column-reverse !important;
  }
}

/* navigation */

.navbar {
  box-shadow: none;
  background-color: transparent;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar.navbar-shrink {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  box-shadow: none;
  background-color: rgba(250, 244, 227, .97);
}

.navbar .navbar-brand {
  color: #40C4FF;
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  letter-spacing: 1px;
  font-weight: 900;
}

.navbar .navbar-brand span {
  color: #1A3C5A;
  font-size: 1.6rem;
}

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: #1A3C5A;
  font-weight: 500;
  font-size: 15px;
  padding: 0;
  margin: 0 1.75rem;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-nav .nav-item:first-child .nav-link {
  margin-left: 0;
}

.navbar .navbar-nav .nav-item:last-child .nav-link {
  margin-right: 0;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link:active,
.navbar .navbar-nav .nav-item .nav-link.active {
  color: #1A3C5A !important;
}

.navbar .navbar-nav .nav-item .nav-link:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: transparent;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-nav .nav-item .nav-link:hover:before {
  width: 100%;
  background-color: #1A3C5A;
}

.navbar.navbar-shrink .navbar-nav .nav-item .nav-link:hover:before {
  background-color: #000;
}

.navbar .navbar-nav .nav-item .nav-link-cta {
  padding: .5rem 2rem;
  padding-top: .65rem;
  padding-bottom: .55rem;
  margin-right: 0;
  color: #fff;
  text-transform: none;
  font-size: 15px;
  font-weight: 500;
  background-color: #40C4FF;
  border-radius: 40px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-nav .nav-item .nav-link-cta:before {
  display: none;
}

.navbar .navbar-nav .nav-item .nav-link-cta:hover {
  color: #fff !important;
  background-color: #1A3C5A;
}

.navbar .navbar-nav .nav-item:first-child .nav-link-cta i {
  margin-right: .75rem;
}

@media (max-width: 991px) {
  .navbar {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    margin: .6666rem 0;
  }
}

/* cover */

.cover-section {
  position: relative;
  height: auto;
  padding-top: 170px;
  padding-bottom: 0;
  background: url('../images/cover5.jpg');
  background-image: none;
  background-size: 100%;
  background-position-x: 100%;
  background-position-y: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.cover-section h1 {
  width: 100%;
  margin-bottom: 0;
  color: #1a3c5a;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
}

.cover-section h1 span {
  color: #ffd700;
  font-size: 4rem;
  font-weight: 600;
}

.cover-section h4 {
  margin-bottom: .25rem;
  color: #1a3c5a;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.cover-section h4 i {
  margin-left: .5rem;
  opacity: 0;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.cover-section .booking-div > div:first-child:hover h4 i,
.cover-section .booking-div > div:nth-child(2):hover h4 i {
  opacity: 1;
}

.cover-section p {
  width: 100%;
  margin-top: 2.25rem;
  color: #1a3c5a;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  font-style: normal;
}

.cover-section button {
  width: 46px;
  height: 46px;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background-color: #40C4FF;
  border: 0;
  border-radius: 24px;
  box-shadow: none;
  outline: 0;
  transform: scale(1.15);
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.cover-section button:hover {
  color: #fff;
  background-color: #1A3C5A;
}

.cover-section .booking-div {
  position: relative;
  display: flex;
  align-items: center;
  width: 120%;
  margin-top: 3.75rem;
  padding: 0;
  background-color: #F5E8C7;
  border: 0;
  border-radius: 24px;
  border-top-right-radius: 48px;
  border-bottom-right-radius: 48px;
  box-shadow: 0px 0px 10px lightgrey;
  box-shadow: none;
  z-index: 1;
}

.cover-section .booking-div > div {
  display: flex;
  align-items: center;
  flex: 1 1 calc(50% - 47px);
  width: calc(50% - 47px);
  max-width: calc(50% - 47px);
  min-width: calc(50% - 47px);
}

.cover-section .booking-div > div > i {
  flex: 1 1 30%;
  width: 30%;
  max-width: 30%;
  min-width: 30%;
  color: #1A3C5A;
  font-size: 2.125rem;
}

.cover-section .booking-div > div:first-child > i {
  flex: 1 1 26%;
  width: 26%;
  max-width: 26%;
  min-width: 26%;
}

.cover-section .booking-div > div > div {
  display: flex;
  flex-direction: column;
  flex: 1 1 70%;
  width: 70%;
  max-width: 70%;
  min-width: 70%;
}

.cover-section .booking-div > div:first-child > div {
  flex: 1 1 74%;
  width: 74%;
  max-width: 74%;
  min-width: 74%;
}

.cover-section .booking-div > div:first-child {
  padding: 20px 24px;
  cursor: pointer;
}

.cover-section .booking-div > div:nth-child(2) {
  padding: 20px 24px;
  border-left: 1px solid #fff;
  cursor: pointer;
}

.cover-section .booking-div > div:last-child {
  flex-direction: column;
  height: 100%;
  flex: 1 1 94px;
  width: 94px;
  max-width: 94px;
  min-width: 94px;
}

.cover-section .booking-div p {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  color: #1a3c5a;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-style: normal;
  font-weight: 500;
}

.cover-section .icons-stars {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
}

.cover-section .icons-stars i {
  color: #ffd700;
  font-size: 1.6rem;
}

.cover-section .video-container {
  position: absolute;
  top: -3rem;
  top: 3rem;
  top: 8rem;
  left: calc(50% - 65px);
  height: calc(100% + 8rem);
  height: calc(100% + 1.5rem);
  height: 90%;
}

.cover-section video {
  position: relative;
  object-fit: cover;
  height: 100%;
  width: 100%;
  margin-top: -64px;
  border: 3px solid #eee;
  border: 0;
  border-radius: 40px;
  border-radius: 24px;
}

.cover-section video.margin-top {
  margin-top: 1rem;
}

.video-button {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: calc(100% - 4rem);
  height: 3rem;
  padding: 10px;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #ffd700;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.video-button:hover {
  background-color: #E6C200;
}

.video-button i {
  margin-right: .75rem;
}

.cover-section .background-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 1118px;
  height: 810px;
  background-image: url("../images/cover1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  pointer-events: none;
}

.cover-section .background-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 789px;
  height: 1048px;
  background-image: url("../images/cover2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  pointer-events: none;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .cover-section p {
    width: 90%;
  }

  .cover-section video {
    margin-top: 2rem;
  }

  .cover-section video.margin-top {
    margin-top: -64px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cover-section video {
    margin-top: 0;
  }

  .cover-section .background-1 {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .cover-section {
    height: auto;
    padding-top: 132px;
    padding-bottom: 3rem;
  }

  .cover-section h1 {
    font-size: 2.25rem;
  }

  .cover-section h4 i {
    opacity: 1;
  }

  .cover-section p {
    margin-top: 2.5rem;
  }

  .cover-section button {
    width: 100%;
    transform: scale(1);
  }

  .cover-section button span {
    margin-left: .6rem;
    font-size: 15px;
    font-weight: 500;
  }

  .cover-section .videos-mobile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: .5rem;
  }

  .cover-section video {
    flex: 1 1 calc(50% - .75rem);
    width: calc(50% - .75rem);
    max-width: calc(50% - .75rem);
    min-width: calc(50% - .75rem);
    margin-top: 40px;
  }

  .cover-section .videos-mobile > video:last-child {
    margin-top: -20px;
  }

  .cover-section .booking-div {
    flex-direction: column;
    width: 100%;
    margin-top: 2.5rem;
    background-color: transparent;
    border-radius: 0;
  }

  .cover-section .booking-div > div,
  .cover-section .booking-div > div:last-child {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .cover-section .booking-div > div:first-child,
  .cover-section .booking-div > div:nth-child(2) {
    background-color: #F5E8C7;
  }

  .cover-section .booking-div > div:first-child {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }

  .cover-section .booking-div > div:nth-child(2) {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .cover-section .booking-div > div:last-child {
    padding: 20px 0 0;
  }

  .cover-section .booking-div > div:first-child > i,
  .cover-section .booking-div > div > i {
    flex: 1 1 22%;
    width: 22%;
    max-width: 22%;
    min-width: 22%;
  }

  .cover-section .booking-div > div:first-child > div,
  .cover-section .booking-div > div > div {
    flex: 1 1 78%;
    width: 78%;
    max-width: 78%;
    min-width: 78%;
  }

  .cover-section .booking-div > div:nth-child(2) {
    border-left: 0;
    border-top: 1px solid #fff;
  }

  .cover-section .background-1,
  .cover-section .background-2 {
    width: 100%;
  }
}

/* resorts */

.resorts-section {
  position: relative;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background-color: transparent;
}

.resorts-section h2 {
  color: #1a3c5a;
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.resorts-section button {
  display: inline-block;
  width: 48px;
  width: 46px;
  height: 48px;
  height: 46px;
  text-align: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background-color: #ffd700;
  background-color: #40C4FF;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.resorts-section button:hover {
  color: #000;
  color: #fff;
  background-color: #E6C200;
  background-color: #1A3C5A;
}

.resorts-section button:last-child {
  margin-left: .6rem;
}

.resorts-section .horizontal-line {
  position: relative;
  height: 4px;
  width: 100%;
  background-color: #eee;
  border-radius: 10px;
}

.resorts-section .horizontal-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 4px;
  border-radius: 10px;
  background-color: #e8c97c;
}

.individual-resort {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
  width: 100%;
  background-size: 105%;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 24px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.individual-resort:hover {
  background-size: 110%;
}

.individual-resort.margin-top {
  margin-top: 48px;
}

.individual-resort h3 {
  position: absolute;
  top: calc(50% - 24px);
  margin-bottom: 0;
  padding: 8px 16px 9px;
  text-align: center;
  color: #1a3c5a;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  background-color: rgba(255,255,255,0.75);
  border-radius: 8px;
}

.resorts-section .background-1 {
  position: absolute;
  top: 30rem;
  left: 0;
  width: 487px;
  height: 782px;
  background-image: url("../images/resorts_background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  pointer-events: none;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .individual-resort {
    height: 290px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .individual-resort {
    height: 330px;
  }

  .resorts-section button:last-child {
    margin-left: .4rem;
  }
}

@media (max-width: 991px) {
  .resorts-section {
    padding-top: 1.5rem;
  }

  .resorts-section h2 {
    font-size: 2rem;
  }

  .individual-resort {
    height: 195px;
  }

  .individual-resort.margin-top {
    margin-top: 24px;
  }

  .individual-resort h3 {
    top: calc(50% - 19px);
    padding: 8px 16px 8px;
    font-size: 18px;
  }

  .resorts-section .background-1 {
    top: 20rem;
    width: 100%;
  }
}

/* episodes */

.episodes-section {
  padding-top: 1.5rem;
  padding-bottom: 4.5rem;
  background-color: transparent;
}

.episodes-section h2 {
  color: #1a3c5a;
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.episodes-section h3 {
  position: absolute;
  top: calc(50% - 3rem);
  width: calc(100% - 3rem);
  margin-bottom: 0;
  text-align: center;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 34px;
  font-weight: 400;
  text-transform: uppercase;
  font-style: italic;
}

.episodes-section h3.top {
  top: 50%;
}

.episodes-section h3 span {
  font-family: "Montserrat", serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75rem;
  text-transform: none;
}

.episodes-section button {
  display: inline-block;
  width: 48px;
  width: 46px;
  height: 48px;
  height: 46px;
  text-align: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background-color: #ffd700;
  background-color: #40C4FF;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.episodes-section button:hover {
  color: #000;
  color: #fff;
  background-color: #E6C200;
  background-color: #1A3C5A;
}

.episodes-section button:last-child {
  margin-left: .6rem;
}

.episodes-section .horizontal-line {
  position: relative;
  height: 4px;
  width: 100%;
  background-color: #eee;
  border-radius: 10px;
}

.episodes-section .horizontal-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 4px;
  border-radius: 10px;
  background-color: #e8c97c;
}

.episodes-section .video-container {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  cursor: pointer;
}

.episodes-section video {
  position: relative;
  object-fit: cover;
  height: auto;
  width: 100%;
  border-radius: 24px;
}

.episodes-section video.margin-top {
  margin-top: 48px;
}

.episodes-section .likes {
  position: absolute;
  top: 1rem;
  right: 48px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.episodes-section .likes.top {
  top: calc(1rem + 48px);
}

.episodes-section .likes i {
  margin-right: .6rem;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .episodes-section button:last-child {
    margin-left: .3rem;
  }
}

@media (max-width: 991px) {
  .episodes-section {
    padding-top: 0;
    padding-bottom: 3rem;
  }

  .episodes-section h2 {
    font-size: 2rem;
  }

  .episodes-section h3 {
    width: calc(100% - 1.5rem);
    font-size: 26px;
  }

  .episodes-section h3.top {
    top: calc(50% - 1.5rem);
  }

  .episodes-section h3 span {
    display: none;
  }

  .episodes-section video.margin-top {
    margin-top: 24px;
  }

  .episodes-section .likes {
    right: 32px;
  }

  .episodes-section .likes.top {
    top: calc(1rem + 24px);
  }
}

/* about section */

.about-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background-color: rgba(250, 244, 227, 1);
}

.about-section h2 {
  color: #1a3c5a;
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.about-section p {
  margin-top: 1.5rem;
  padding-left: 6rem;
  padding-right: 3rem;
  color: #1a3c5a;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  font-style: normal;
}

.about-section p:nth-child(2) {
  margin-top: 2.25rem;
}

.about-section p:last-child {
  margin-top: 2.25rem;
  margin-bottom: 0;
}

.about-section img {
  width: 100%;
  height: auto;
  border-radius: 36px;
  border-top-left-radius: 72px;
  border-bottom-right-radius: 72px;
}

.about-section p a {
  display: inline-block;
  padding: .5rem 2rem;
  padding-top: .65rem;
  padding-bottom: .55rem;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #FD1D1D, #FCAF45);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  -webkit-transition: color .2s ease-out;
  -moz-transition: color .2s ease-out;
  -o-transition: color .2s ease-out;
  transition: color .2s ease-out;
}

.about-section p a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #1A3C5A, #5C2D91, #962366, #B31217, #F56040);
  border-radius: 40px;
  opacity: 0;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  -o-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
  z-index: 1;
}

.about-section p a:hover::after {
  opacity: 1;
}

.about-section p a span {
  position: relative;
  z-index: 2;
}

.about-section p a i {
  margin-right: .6rem;
  font-weight: 700;
}

.about-section .followers-div {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  flex-direction: column;
  top: calc(50% - 50px);
  right: -49px;
  width: 150px;
  height: 150px;
  padding: 1rem;
  color: #fff;
  background-color: rgba(64, 196, 255, .9);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.about-section .followers-div:hover {
  background-color: rgba(64, 196, 255, 1);
}

.about-section .followers-div > div:first-child {
  margin-top: -.25rem;
  margin-bottom: .25rem;
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.about-section .followers-div > div:last-child {
  margin-top: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.about-section .account-div {
  position: absolute;
  bottom: 1.5rem;
  left: calc(50% - 40px);
  width: 80px;
  padding: 4px 0;
  color: #1a3c5a;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  background-color: rgba(250, 244, 227, .75);
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.about-section .account-div:hover {
  background-color: rgba(250, 244, 227, 1);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .about-section h2 {
    padding-left: 1.5rem;
  }

  .about-section p {
    padding-right: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-section h2 {
    padding-left: 2rem;
  }

  .about-section p {
    padding-left: 4.5rem;
    padding-right: 0;
  }

  .about-section img {
    width: calc(100% + 16px);
  }

  .about-section .followers-div {
    right: -65px;
    z-index: 1;
  }
}

@media (max-width: 991px) {
  .about-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .about-section h2 {
    margin-top: 32px !important;
    font-size: 2rem;
  }

  .about-section p {
    padding-left: 0;
    padding-right: 0;
  }

  .about-section p:last-child {
    margin-top: 1.75rem;
  }

  .about-section p a {
    width: 100%;
    padding-bottom: .6rem;
    text-align: center;
  }

  .about-section .account-div {
    left: 2.25rem;
  }

  .about-section .followers-div {
    top: auto;
    bottom: -60px;
    right: 12px;
  }
}

/* experiences section */

.experiences-section {
  padding-top: 4.5rem;
}

.experiences-section .background-1 {
  position: absolute;
  top: 20rem;
  top: 0;
  left: auto;
  right: 0;
  width: 487px;
  height: 782px;
  background-image: url("../images/experiences_background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 991px) {
  .experiences-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* footer */

footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: rgba(250, 244, 227, 1);
}

footer p {
  margin-bottom: 0;
  color: #1A3C5A;
  font-size: 15px;
  font-weight: 500;
}

footer p a {
  position: relative;
  margin-bottom: 0;
  color: #1A3C5A;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

footer p a:hover {
  color: #1A3C5A;
  text-decoration: none;
}

footer p a:before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: transparent;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

footer p a:hover:before {
  width: 100%;
  background-color: #1A3C5A;
}

@media (max-width: 991px) {
  footer {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  footer p,
  footer p a {
    font-size: 14px;
  }
}
