* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@font-face {
  font-family: HK Grotesk;
  src: url("fonts/hk-grotesk/HKGrotesk-Bold.otf"), url("fonts/hk-grotesk/HKGrotesk-Light.otf"), url("fonts/hk-grotesk/HKGrotesk-Medium.otf"), url("fonts/hk-grotesk/HKGrotesk-Regular.otf");
}

/* ------------------HOME------------------ */
:root {
  --secondary-color: #536390;
  --font-color: #5A7184;
  --bg-color: #fff;
  --heading-color: #183B56;
}

[data-theme="dark"] {
  --secondary-color: #818cab;
  --font-color: #e1e1ff;
  --bg-color: #161625;
  --heading-color: #818cab;
}

@media (min-width: 768px) and (max-width: 991px) {
  header .logo {
    width: 150px;
  }
}

@media (max-width: 320px) {
  header .logo {
    width: 130px;
  }
}

header .navbar {
  background-color: #ffffff;
}

header .navbar .navbar-toggler {
  background: transparent;
  border: none;
  color: #000;
  font-size: 24px;
  padding: 0;
}

header .navbar .navbar-toggler:focus {
  text-decoration: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

header .navbar .navbar-toggler:hover {
  background: transparent;
  border: none;
  color: #183b56;
}

header .navbar.bg-custom {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

header .navbar-nav .nav-item .nav-link {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #183B56;
  text-transform: capitalize;
}

@media (min-width: 768px) and (max-width: 991px) {
  header .navbar-nav .nav-item .nav-link {
    font-size: 12px;
  }
}



.container{
    margin: 0 auto;
}


.container .gallery a img {
  float: left;
  width: 20%;
  height: auto;
  border: 2px solid #fff;
  -webkit-transition: -webkit-transform .15s ease;
  -moz-transition: -moz-transform .15s ease;
  -o-transition: -o-transform .15s ease;
  -ms-transition: -ms-transform .15s ease;
  transition: transform .15s ease;
  position: relative;
}

.container .gallery a:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 5;
}

.clear {
  clear: both;
  float: none;
  width: 100%;
}



header .navbar-nav .nav-item .nav-link:hover {
  color: #00B8D9;
}

header .navbar-nav .nav-item .active {
  color: #00b8d9;
}

header .navbar-nav .nav-item::after {
  display: block;
  content: "";
  border-bottom: 3px solid #00B8D9;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
}

header .navbar-nav .nav-item:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

header .button .btn {
  border-radius: 8px;
  background-color: #ffffff;
  border: 2px solid #00b8d9;
  font-family: "Open Sans", sans-serif;
  width: 90px;
  height: 48px;
  color: #00b8d9;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
}

@media (max-width: 1440px) {
  header .button .btn {
    width: 130px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  header .button .btn {
    width: 105px;
    height: 35px;
    font-size: 11px;
  }
}

@media (max-width: 320px) {
  header .button .btn {
    width: 100px;
    height: 30px;
    font-size: 11px;
  }
}

header .button .btn:hover {
  color: #18181a;
  background-color: #ffffff;
}

.gallery {
  padding-top: 94px;
}

.gallery .theam-button {
  position: fixed;
  right: 0;
  top: 50%;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 15px 0 0 15px;
  background-color: #5a7184;
  color: #ffffff;
  z-index: 1;
}

.gallery .theam-button:hover {
  background-color: #ffffff;
  color: #5a7184;
}

.gallery .title {
  font-family: "HK Grotesk", serif;
  color: #183B56;
  font-size: 56px;
  font-weight: 700;
}

.gallery .title::after {
  content: "";
  position: absolute;
  width: 314px;
  height: 11px;
  background-color: #00B8D9;
  top: 58px;
  left: 31%;
  z-index: -1;
}

@media (max-width: 1440px) {
  .gallery .title::after {
    left: 25%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .gallery .title::after {
    left: 22%;
  }
}

@media (max-width: 768px) {
  .gallery .title::after {
    width: 278px;
    top: 50px;
    left: 24%;
  }
}

@media (min-width: 320px) and (max-width: 430px) {
  .gallery .title::after {
    top: 106px;
    left: 13%;
    width: 280px;
  }
}

@media (max-width: 320px) {
  .gallery .title::after {
    width: 190px;
    top: 33px;
    height: 6px;
    left: 38%;
  }
}

@media (max-width: 768px) {
  .gallery .title {
    font-size: 48px;
  }
}

@media (max-width: 320px) {
  .gallery .title {
    font-size: 32px;
  }
}

.gallery .text {
  font-family: "Open Sans", sans-serif;
  color: #5A7184;
  font-size: 20px;
  font-weight: 400;
  padding: 32px 0 65px 0;
}

@media (max-width: 768px) {
  .gallery .text {
    font-size: 18px;
  }
}

@media (max-width: 320px) {
  .gallery .text {
    font-size: 16px;
  }
}

@media (min-width: 320px) and (max-width: 430px) {
  .gallery .big-screen {
    display: none;
  }
}

.gallery .big-screen .image {
  width: 254px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .gallery .big-screen .image {
    width: 215px;
  }
}

@media (max-width: 768px) {
  .gallery .big-screen .image {
    width: 154px;
  }
}

.gallery .big-screen .image img {
  width: 100%;
  border-radius: 6px;
  height: 254px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: 199px;
  margin-left: 45px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .gallery .big-screen .image img {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .gallery .big-screen .image img {
    height: 154px;
    margin-top: 70px;
    margin-left: 0;
  }
}

.gallery .big-screen .image-1 .img-1 {
  width: 444px;
  height: 317px;
  margin-right: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .gallery .big-screen .image-1 .img-1 {
    width: 300px;
    height: 315px;
    margin-right: 15px;
  }
}

@media (max-width: 768px) {
  .gallery .big-screen .image-1 .img-1 {
    height: 0;
  }
}

.gallery .big-screen .image-1 .img-1 img {
  border-radius: 6px;
  width: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .gallery .big-screen .image-1 .img-1 img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.gallery .big-screen .image-1 .img-2 {
  width: 207px;
  margin-left: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .gallery .big-screen .image-1 .img-2 {
    width: 300px;
    height: 212px;
  }
}

.gallery .big-screen .image-1 .img-2 img {
  width: 100%;
  height: 212px;
  border-radius: 6px;
  margin-top: 65px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .gallery .big-screen .image-1 .img-2 img {
    height: 100%;
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  .gallery .big-screen .image-1 .img-2 img {
    height: 100px;
    margin-top: 39px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .gallery .big-screen .image-2 {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .gallery .big-screen .image-2 {
    margin-top: 30px;
  }
}

.gallery .big-screen .image-2 .img-1 {
  width: 207px;
  margin-right: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .gallery .big-screen .image-2 .img-1 {
    width: 300px;
    height: 212px;
  }
}

.gallery .big-screen .image-2 .img-1 img {
  width: 100%;
  height: 212px;
  border-radius: 6px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .gallery .big-screen .image-2 .img-1 img {
    height: 100%;
  }
}

@media (max-width: 768px) {
  .gallery .big-screen .image-2 .img-1 img {
    height: 100px;
  }
}

.gallery .big-screen .image-2 .img-2 {
  width: 444px;
  height: 317px;
  margin-left: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .gallery .big-screen .image-2 .img-2 {
    width: 300px;
    height: 315px;
    margin-right: 15px;
  }
}

@media (max-width: 768px) {
  .gallery .big-screen .image-2 .img-2 {
    height: 282px;
  }
}

.gallery .big-screen .image-2 .img-2 img {
  border-radius: 6px;
  height: 317px;
  width: 444px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .gallery .big-screen .image-2 .img-2 img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .gallery .big-screen .image-2 .img-2 img {
    height: 220px;
  }
}

.gallery .big-screen .image-3 {
  width: 323px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .gallery .big-screen .image-3 {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .gallery .big-screen .image-3 {
    margin-top: -40px;
    width: 165px;
  }
}

.gallery .big-screen .image-3 img {
  width: 100%;
  border-radius: 6px;
  height: 326px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .gallery .big-screen .image-3 img {
    height: 170px;
  }
}

.gallery .small-screen {
  display: none;
}

@media (max-width: 1440) {
  .gallery .small-screen {
    display: none;
  }
}

@media (max-width: 768px) {
  .gallery .small-screen {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 430px) {
  .gallery .small-screen {
    display: block;
  }
}

.gallery .small-screen .carousel-item img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
}

.introduction {
  padding-top: 80px;
  padding-bottom: 112px;
}

.introduction .wedding {
  margin-bottom: 112px;
}

.introduction .wedding .intro {
  padding-right: 51px;
}

@media (min-width: 320px) and (max-width: 430px) {
  .introduction .wedding .intro {
    padding-right: 0;
  }
}

.introduction .wedding .intro .text {
  font-family: "Open Sans", sans-serif;
  color: #36B37E;
  font-size: 14px;
  background-color: rgba(54, 179, 126, 0.1);
  border-radius: 25px;
  width: 131px;
  height: 32px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 768px) {
  .introduction .wedding .intro .text {
    font-size: 18px;
    width: 160px;
  }
}

@media (min-width: 320px) and (max-width: 430px) {
  .introduction .wedding .intro .text {
    width: 150px;
    height: 35px;
    margin: 0 auto;
  }
}

.introduction .wedding .intro .title {
  font-family: "HK Grotesk", serif;
  color: #183B56;
  font-size: 36px;
  padding-top: 16px;
  max-width: 600px;
  text-align: left;
}

@media (max-width: 768px) {
  .introduction .wedding .intro .title {
    max-width: none;
    text-align: center;
  }
}

@media (max-width: 320px) {
  .introduction .wedding .intro .title {
    font-size: 28px;
    text-align: center;
  }
}

.introduction .wedding .text-1 {
  font-family: "Open Sans", sans-serif;
  color: #5A7184;
  font-size: 18px;
  max-width: 660px;
  margin: 0;
  padding: 50px 0 0 51px;
}

@media (min-width: 320px) and (max-width: 430px) {
  .introduction .wedding .text-1 {
    font-size: 16px;
    padding-left: 0;
    text-align: center;
    padding: 40px;
  }
}

.introduction .boder-top {
  background-color: #dee2e6;
  height: 1px;
}

.banner .title {
  font-family: "HK Grotesk", serif;
  color: #183B56;
  font-size: 40px;
}

@media (max-width: 768px) {
  .banner .title {
    font-size: 36px;
  }
}

@media (max-width: 320px) {
  .banner .title {
    font-size: 28px;
  }
}

.banner .button {
  padding-top: 42px;
}

@media (max-width: 320px) {
  .banner .button {
    width: 100%;
  }
}

.banner .button .link {
  padding: 12px;
}

@media (max-width: 425px) {
  .banner .button .link {
    width: 100%;
  }
}

.banner .button .link .btn {
  border-radius: 25px;
  border: 2px solid #848d95;
  color: #848d95;
  font-size: 16px;
  font-weight: 700;
  width: 151px;
  height: 48px;
}

@media (max-width: 425px) {
  .banner .button .link .btn {
    width: 100%;
  }
}

.banner .button .link .btn:hover {
  color: #00b8d9;
  border: 2px solid #a8a5a5;
}

.banner .button .link .btn:focus {
  border: 2px solid #00b8d9;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #00b8d9;
}

.banner .wi-300 {
  width: 100%;
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .banner .wi-300 {
    width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .banner .wi-300 {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner .wi-300 {
    width: 100%;
  }
}

@media (min-width: 767px) and (max-width: 319px) {
  .banner .image-gallary {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 430px) {
  .banner .image-gallary {
    display: none;
  }
}

.banner .image-gallary .picture {
  row-gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner .image-gallary .picture {
    padding-top: 15px;
  }
}

.banner .image-gallary .picture .image-1 {
  -webkit-column-gap: 15px;
  column-gap: 15px;
}

.banner .image-gallary .picture .image-1 .img-1 img {
  height: 190px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.banner .image-gallary .picture .image-1 .img-2 img {
  border-radius: 8px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.banner .image-gallary .picture .image-2 {
  -webkit-column-gap: 15px;
  column-gap: 15px;
}

.banner .image-gallary .picture .image-2 .img-1 img {
  height: 390px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.banner .image-gallary .picture .image-2 .img-2 img {
  border-radius: 8px;
  height: 390px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.banner .image-gallary .picture .image-3 {
  height: 100%;
}

.banner .image-gallary .picture .image-3 img {
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.banner .image-gallary .picture .image-4 {
  -webkit-column-gap: 15px;
  column-gap: 15px;
}

.banner .image-gallary .picture .image-4 .img-1 {
  height: 100%;
}

.banner .image-gallary .picture .image-4 .img-1 img {
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.banner .image-gallary .picture .image-4 .img-2 {
  height: 100%;
}

.banner .image-gallary .picture .image-4 .img-2 img {
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.banner .image-gallary .picture-2 {
  -webkit-column-gap: 15px;
  column-gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner .image-gallary .picture-2 {
    padding-top: 15px;
  }
}

.banner .image-gallary .picture-2 .image-5 {
  row-gap: 15px;
}

.banner .image-gallary .picture-2 .image-5 .img-1 {
  height: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner .image-gallary .picture-2 .image-5 .img-1 {
    height: 100%;
  }
}

.banner .image-gallary .picture-2 .image-5 .img-1 img {
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner .image-gallary .picture-2 .image-5 .img-2 {
  height: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner .image-gallary .picture-2 .image-5 .img-2 {
    height: 100%;
  }
}

.banner .image-gallary .picture-2 .image-5 .img-2 img {
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner .image-gallary .picture-2 .image-6 {
  row-gap: 15px;
}

.banner .image-gallary .picture-2 .image-6 .img-1 {
  height: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner .image-gallary .picture-2 .image-6 .img-1 {
    height: 100%;
  }
}

.banner .image-gallary .picture-2 .image-6 .img-1 img {
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner .image-gallary .picture-2 .image-6 .img-2 {
  height: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner .image-gallary .picture-2 .image-6 .img-2 {
    height: 100%;
  }
}

.banner .image-gallary .picture-2 .image-6 .img-2 img {
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner .mobile-view {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .banner .mobile-view {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .banner .mobile-view {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner .mobile-view {
    display: none;
  }
}

@media (max-width: 767px) {
  .banner .mobile-view {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 430px) {
  .banner .mobile-view {
    display: block;
  }
}

.banner .mobile-view .carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
}

.featured {
  padding-top: 100px;
}

.featured .text {
  font-family: "Open Sans", sans-serif;
  color: #36b37e;
  font-size: 14px;
  background-color: rgba(54, 179, 126, 0.1);
  border-radius: 25px;
  width: 102px;
  height: 32px;
  font-weight: 600;
}

.featured .title {
  font-family: "HK Grotesk", serif;
  color: #183B56;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .featured .title {
    font-size: 36px;
  }
}

@media (max-width: 320px) {
  .featured .title {
    font-size: 28px;
  }
}

.featured .text-1 {
  font-family: "Open Sans", sans-serif;
  color: #5A7184;
  font-size: 18px;
  max-width: 880px;
  margin-bottom: 52px;
}

@media (max-width: 320px) {
  .featured .text-1 {
    font-size: 16px;
  }
}

.featured .box {
  padding-top: 30px;
}

.featured .box .card {
  border-radius: 16px;
  border: 1px solid #E5EAF4;
  height: 100%;
}

.featured .box .card .image {
  width: 64px;
  height: 64px;
  margin: 48px 0 0 40px;
}

.featured .box .card .card-body {
  padding: 34px 40px 42px 40px;
}

.featured .box .card .card-body .card-title {
  font-family: "HK Grotesk", serif;
  color: #183B56;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

@media (max-width: 320px) {
  .featured .box .card .card-body .card-title {
    font-size: 20px;
  }
}

.featured .box .card .card-body .card-text {
  font-family: "Open Sans", sans-serif;
  color: #5A7184;
  font-size: 18px;
}

@media (max-width: 320px) {
  .featured .box .card .card-body .card-text {
    font-size: 16px;
  }
}

.follower {
  padding-top: 190px;
}

.follower .gallery {
  position: relative;
}

@media (max-width: 768px) {
  .follower .gallery {
    margin-bottom: 56px;
  }
}

.follower .gallery .image-1 {
  width: 457px;
}

@media (max-width: 768px) {
  .follower .gallery .image-1 {
    width: 537px;
  }
}

@media (max-width: 320px) {
  .follower .gallery .image-1 {
    width: 260PX;
  }
}

.follower .gallery .image-1 img {
  border-radius: 8px;
  height: 560px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 768px) {
  .follower .gallery .image-1 img {
    height: 560px;
  }
}

@media (max-width: 320px) {
  .follower .gallery .image-1 img {
    height: 272px;
  }
}

.follower .gallery .image-2 {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 340px;
  border-radius: 8px;
  border: 10px solid #ffffff;
}

@media (max-width: 768px) {
  .follower .gallery .image-2 {
    top: 365px;
    left: 0;
    width: 240px;
  }
}

@media (max-width: 320px) {
  .follower .gallery .image-2 {
    width: 165px;
    top: 140px;
  }
}

.follower .gallery .image-2 img {
  height: 380px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 768px) {
  .follower .gallery .image-2 img {
    height: 300px;
  }
}

@media (max-width: 320px) {
  .follower .gallery .image-2 img {
    height: 184px;
  }
}

.follower .contain {
  margin-top: 50px;
}

@media (max-width: 320px) {
  .follower .contain {
    margin-top: 50px;
  }
}

.follower .contain .text {
  font-family: "Open Sans", sans-serif;
  color: #36b37e;
  font-size: 14px;
  background-color: rgba(54, 179, 126, 0.1);
  border-radius: 25px;
  width: 160px;
  height: 30px;
  font-weight: 600;
}

.follower .contain .title {
  font-family: "HK Grotesk", serif;
  color: #183B56;
  font-size: 36px;
  font-weight: 700;
}

@media (max-width: 320px) {
  .follower .contain .title {
    font-size: 28px;
  }
}

.follower .number-of-steps {
  padding-top: 52px;
}

.follower .number-of-steps .steps {
  padding-top: 32px;
}

.follower .number-of-steps .steps .icon {
  margin-right: 24px;
  border: 1px solid rgba(21, 101, 216, 0.18);
  border-radius: 50%;
  padding: 6px;
  height: 90px;
}

@media (max-width: 320px) {
  .follower .number-of-steps .steps .icon {
    margin-right: 10px;
  }
}

.follower .number-of-steps .steps .icon .circle {
  width: 36px;
  height: 36px;
  -webkit-box-shadow: 0 10px 15px 0 rgba(21, 37, 71, 0.15);
  box-shadow: 0 10px 15px 0 rgba(21, 37, 71, 0.15);
  background: #00b8d9;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  color: white;
}

@media (max-width: 320px) {
  .follower .number-of-steps .steps .icon .circle {
    width: 27px;
    height: 27px;
  }
}

.follower .number-of-steps .steps .describe .title-1 {
  font-family: "HK Grotesk", serif;
  color: #183B56;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 9px;
}

@media (max-width: 320px) {
  .follower .number-of-steps .steps .describe .title-1 {
    font-size: 16px;
  }
}

.follower .number-of-steps .steps .describe .text-1 {
  font-family: "Open Sans", sans-serif;
  color: #5A7184;
  font-size: 18px;
  max-width: 500px;
}

@media (max-width: 320px) {
  .follower .number-of-steps .steps .describe .text-1 {
    font-size: 14px;
  }
}

.feedback {
  padding-top: 192px;
}

@media (max-width: 320px) {
  .feedback {
    padding-top: 56px;
  }
}

@media (max-width: 320px) {
  .feedback .yellow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-self: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.feedback .yellow .circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: goldenrod;
  font-size: 28px;
  padding: 10px 0 0 30px;
  color: white;
}

@media (max-width: 320px) {
  .feedback .yellow .circle {
    width: 70px;
    height: 70px;
    font-size: 25px;
    padding: 5px 0 0 13px;
  }
}

.feedback .yellow .title {
  font-family: "HK Grotesk", serif;
  color: #183B56;
  font-size: 48px;
  max-width: 460px;
  margin-top: -60px;
  padding-left: 50px;
}

@media (max-width: 320px) {
  .feedback .yellow .title {
    font-size: 26px;
    margin-top: -20px;
    padding-left: 0;
  }
}

.feedback .carousel-item {
  padding: 64px 0 138px 0;
}

.feedback .carousel-item .detail {
  padding: 0 47px;
  border-right: solid 1px #ebf0f4;
}

@media (max-width: 320px) {
  .feedback .carousel-item .detail {
    padding: 0;
    border: none;
  }
}

.feedback .carousel-item .detail .contain .title-1 {
  font-family: "HK Grotesk", serif;
  font-size: 24px;
  color: #183B56;
  font-weight: 400;
  margin-bottom: 18px;
}

@media (max-width: 320px) {
  .feedback .carousel-item .detail .contain .title-1 {
    font-size: 18px;
  }
}

.feedback .carousel-item .detail .contain .text-1 {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #5A7184;
  max-width: 500px;
}

@media (max-width: 320px) {
  .feedback .carousel-item .detail .contain .text-1 {
    font-size: 14px;
  }
}

.feedback .carousel-item .detail .profile {
  padding-top: 36px;
}

@media (max-width: 320px) {
  .feedback .carousel-item .detail .profile {
    padding: 16px;
  }
}

.feedback .carousel-item .detail .profile .image {
  width: 56px;
  margin-right: 20px;
}

@media (max-width: 320px) {
  .feedback .carousel-item .detail .profile .image {
    width: 48px;
    margin-right: 10px;
  }
}

.feedback .carousel-item .detail .profile .image img {
  border-radius: 50%;
}

@media (max-width: 320px) {
  .feedback .carousel-item .detail .profile .intro {
    padding-top: 12px;
  }
}

.feedback .carousel-item .detail .profile .intro .name {
  font-family: "HK Grotesk", serif;
  color: #183B56;
  font-size: 18px;
}

@media (max-width: 320px) {
  .feedback .carousel-item .detail .profile .intro .name {
    font-size: 16px;
  }
}

.feedback .carousel-item .detail .profile .intro .about {
  font-family: "Open Sans", sans-serif;
  color: #5A7184;
  font-size: 16px;
}

@media (max-width: 320px) {
  .feedback .carousel-item .detail .profile .intro .about {
    font-size: 14px;
  }
}

.home-page {
  background-color: #0d2436;
}

.home-page .booking .contain .title {
  font-family: "HK Grotesk", serif;
  color: #ffffff;
  font-size: 48px;
}

@media (max-width: 768px) {
  .home-page .booking .contain .title {
    font-size: 40px;
  }
}

@media (max-width: 320px) {
  .home-page .booking .contain .title {
    font-size: 28px;
    text-align: center;
  }
}

.home-page .booking .button {
  margin-bottom: 99px;
}

@media (max-width: 320px) {
  .home-page .booking .button {
    margin-bottom: 62px;
  }
}

.home-page .booking .button .book-button .book-button {
  background-color: #ffffff;
  border: 0;
  border-radius: 25px;
  width: 243px;
  height: 56px;
  font-family: "Open Sans", sans-serif;
  color: #183B56;
  font-size: 18px;
  text-align: center;
}

@media (max-width: 320px) {
  .home-page .booking .button .book-button .book-button {
    font-size: 18px;
    width: 190px;
    height: 45px;
  }
}

.home-page .booking .button .book-button .book-button:hover {
  background-color: #bcc1c5;
}

.home-page .booking .button .book-button .learn-button {
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 25px;
  width: 182px;
  height: 56px;
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
}

@media (max-width: 320px) {
  .home-page .booking .button .book-button .learn-button {
    font-size: 18px;
    width: 160px;
    height: 45px;
  }
}

.home-page .booking .button .book-button .learn-button:hover {
  color: #bcc1c5;
}

.home-page .boder-top {
  background-color: #dee2e6;
  height: 1px;
}

.home-page .intro .title {
  font-family: "HK Grotesk", serif;
  font-size: 25px;
  font-weight: 400;
  color: #ffffff;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .home-page .intro .title {
    font-size: 16px;
  }
}

.home-page .intro .text {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  max-width: 370px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .home-page .intro .text {
    font-size: 12px;
  }
}

.home-page .intro .button .social-button {
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 25px;
  color: #ffffff;
  background-color: #5a7184;
  -webkit-animation: float 2s ease-in-out infinite;
  animation: float 2s ease-in-out infinite;
}

.home-page .intro .button .social-button:nth-of-type(1) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.home-page .intro .button .social-button:nth-of-type(2) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.home-page .intro .button .social-button:nth-of-type(3) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.home-page .intro .button .social-button:nth-of-type(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.home-page .intro .button .social-button:nth-of-type(5) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.home-page .intro .button .social-button:hover {
  background-color: #ffffff;
  color: #5a7184;
}

.home-page .intro .links .list-items {
  list-style-type: none;
  padding: 0;
}

.home-page .intro .links .list-items .list-link a {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .home-page .intro .links .list-items .list-link a {
    font-size: 12px;
  }
}

.home-page .intro .links .list-items .list-link a:hover {
  color: #5a7184;
}

.home-page .intro .contact .details i {
  color: #5a7184;
}

.home-page .intro .contact .details i:hover {
  color: #ffffff;
}

.home-page .intro .contact .details .call p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  max-width: 277px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .home-page .intro .contact .details .call p {
    font-size: 12px;
  }
}

.home-page .copyright .text {
  font-family: "HK Grotesk", serif;
  font-size: 16px;
  color: #5a7184;
  font-weight: 400;
}

@media (max-width: 320px) {
  .home-page .copyright .text {
    font-size: 16px;
  }
}

.home-page .copyright .text span {
  color: #1565d8;
}

/* ------------------ABOUT------------------ */
.back-img {
  background-image: url("images/img-1.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 700px;
  -webkit-clip-path: ellipse(150% 120% at 50% -25%);
  clip-path: ellipse(150% 120% at 50% -25%);
}

.back-img header .navbar {
  background: transparent;
}

.back-img header .navbar .navbar-toggler {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 14px;
  padding: 0;
}

.back-img header .navbar .navbar-toggler:focus {
  text-decoration: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.back-img header .navbar .navbar-toggler:hover {
  background: transparent;
  border: none;
  color: #ffffff;
}

.back-img header .navbar-nav .nav-item .nav-link {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  text-transform: capitalize;
}

@media (min-width: 768px) and (max-width: 991px) {
  .back-img header .navbar-nav .nav-item .nav-link {
    font-size: 12px;
  }
}

.back-img header .navbar-nav .nav-item .nav-link:hover {
  color: #00b8d9;
}

.back-img header .navbar-nav .nav-item .active {
  color: #00b8d9;
}

.back-img header .navbar-nav .nav-item::after {
  display: block;
  content: "";
  border-bottom: 3px solid #00b8d9;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
}

.back-img header .navbar-nav .nav-item:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.back-img header .button .btn {
  border-radius: 8px;
  background-color: transparent;
  border: 2px solid #ffffff;
  font-family: "Open Sans", sans-serif;
  width: 131px;
  height: 48px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
}

@media (min-width: 768px) and (max-width: 991px) {
  .back-img header .button .btn {
    width: 130px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .back-img header .button .btn {
    width: 105px;
    height: 35px;
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .back-img header .button .btn {
    width: 100px;
    height: 30px;
    font-size: 12px;
  }
}

.back-img header .button .btn:hover {
  color: #18181a;
  background-color: #ffffff;
}

.back-img header .contain {
  padding: 96px 0 110px 0;
}

.back-img header .contain h3 {
  font-family: "HK Grotesk", serif;
  color: #ffffff;
  font-size: 56px;
}

.back-img header .contain p {
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  max-width: 880px;
}

.back-img header .contain .button .read-button {
  background-color: #ffffff;
  color: #183B56;
  width: 170px;
  height: 48px;
  border-radius: 75px;
  border: none;
}

.about {
  padding-top: 64px;
}

.about .contain .text {
  font-family: "Open Sans", sans-serif;
  color: #00b8d9;
  font-size: 14px;
  letter-spacing: 2px;
}

.about .contain .title {
  font-family: "HK Grotesk", serif;
  color: #183B56;
  font-size: 32px;
  max-width: 400px;
}

.about .about-detail .text {
  font-family: "Open Sans", sans-serif;
  color: #5a7184;
  font-size: 16px;
  font-weight: 600;
  max-width: 560px;
}

.photos {
  padding-top: 140px;
}

.photos .about-gallery-top .image {
  width: 380px;
  height: 460px;
  margin-left: 70px;
}

.photos .about-gallery-top .image:nth-of-type(2) {
  width: 360px;
  height: 240px;
  margin-left: 25px;
  margin-right: 25px;
  margin-bottom: 25px;
  margin-top: 120px;
}

.photos .about-gallery-top .image:nth-of-type(3) {
  width: 440px;
  height: 320px;
  position: absolute;
  right: 410px;
  margin-right: -145px;
  margin-bottom: 25px;
  margin-top: 40px;
}

.photos .about-gallery-top .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.photos .about-gallery-bottom .image {
  width: 440px;
  height: 320px;
  margin-left: -150px;
}

.photos .about-gallery-bottom .image:nth-of-type(2) {
  width: 186px;
  height: 240px;
  margin-left: 25px;
  margin-right: 25px;
}

.photos .about-gallery-bottom .image:nth-of-type(3) {
  width: 523px;
  height: 420px;
  position: absolute;
  margin-left: 524px;
  margin-top: -94px;
}

.photos .about-gallery-bottom .image:nth-of-type(4) {
  width: 120px;
  height: 142px;
  margin-top: -80px;
  margin-left: 549px;
}

.photos .about-gallery-bottom .image:nth-of-type(4) img {
  -o-object-fit: unset;
  object-fit: unset;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.photos .about-gallery-bottom .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.our-values {
  padding: 200px 0 122px 0;
}

.our-values .title {
  font-family: "HK Grotesk", serif;
  font-size: 32px;
  color: #183B56;
}

.our-values .text {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: #5A7184;
  font-weight: 600;
}

.our-values .box {
  padding-top: 30px;
}

.our-values .box .card {
  border: none;
  padding: 16px;
}

.our-values .box .card .icon i {
  font-size: 55px;
  border: 1px solid #89b6f6;
  padding: 10px;
  border-radius: 15px;
  margin: 20px 30px;
  color: #00b8d9;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .our-values .box .card .icon i {
    font-size: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .our-values .box .card .icon i {
    font-size: 40px;
  }
}

@media (max-width: 320px) {
  .our-values .box .card .icon i {
    font-size: 30px;
  }
}

.our-values .box .card .card-body {
  margin: 0 20px;
}

.our-values .box .card .card-body .card-title {
  font-family: "HK Grotesk", serif;
  color: #183B56;
  font-size: 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .our-values .box .card .card-body .card-title {
    font-size: 22px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .our-values .box .card .card-body .card-title {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .our-values .box .card .card-body .card-title {
    font-size: 24px;
  }
}

.our-values .box .card .card-body .card-text {
  font-family: "Open Sans", sans-serif;
  color: #5A7184;
  font-size: 16px;
  font-weight: 600;
  max-width: 410px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .our-values .box .card .card-body .card-text {
    font-size: 17px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .our-values .box .card .card-body .card-text {
    font-size: 11px;
  }
}

@media (max-width: 320px) {
  .our-values .box .card .card-body .card-text {
    font-size: 16px;
  }
}

.our-team {
  padding: 200px 0 165px 0;
}

.our-team .text {
  font-family: "Open Sans", sans-serif;
  color: #00b8d9;
  font-weight: 600;
  font-size: 14px;
}

.our-team .title {
  font-family: "HK Grotesk", serif;
  color: #183B56;
  font-size: 32px;
  max-width: 370px;
}

.our-team .text-1 {
  font-family: "Open Sans", sans-serif;
  color: #5a7184;
  font-weight: 600;
  font-size: 18px;
  max-width: 470px;
}

.our-team .button .meet-button {
  border: 3px solid #00b8d9;
  background-color: transparent;
  color: #00b8d9;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  width: 194px;
  height: 48px;
  border-radius: 75px;
}

.our-team .button .meet-button:focus {
  border: 3px solid #00b8d9;
  outline: none;
}

.our-team .button .meet-button i {
  font-size: 16px;
  font-weight: 600;
}

.our-team .button .meet-button:hover {
  background-color: #00b8d9;
  color: #ffffff;
}

.our-team .team-top .image {
  width: 96px;
  height: 96px;
  z-index: 1;
  margin-top: 70px;
}

.our-team .team-top .image:nth-of-type(2) {
  width: 64px;
  height: 64px;
  position: absolute;
  margin-left: 170px;
  margin-top: 165px;
}

.our-team .team-top .image:nth-of-type(3) {
  width: 160px;
  height: 180px;
  margin-top: -60px;
  position: absolute;
  right: 290px;
  margin-right: 100px;
  z-index: 1;
}

.our-team .team-top .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  -webkit-box-shadow: 0 20px 50px 0 rgba(15, 24, 44, 0.25);
  box-shadow: 0 20px 50px 0 rgba(15, 24, 44, 0.25);
}

.our-team .team-top .gray-circle {
  width: 24px;
  height: 24px;
  border-radius: 100px;
  background-color: #e5eaf4;
  position: absolute;
  margin-top: 155px;
  margin-left: -10px;
}

.our-team .team-top .blue-circle {
  width: 32px;
  height: 32px;
  border-radius: 100px;
  background-color: #1565d8;
  position: absolute;
  right: 290px;
  margin-right: 85px;
  margin-top: 100px;
}

.our-team .team-bottom .image {
  width: 120px;
  height: 120px;
  z-index: 1;
  margin-top: 118px;
  margin-left: 90px;
}

.our-team .team-bottom .image:nth-of-type(2) {
  width: 96px;
  height: 96px;
  position: absolute;
  margin-left: 160px;
  margin-top: -152px;
  z-index: -1;
}

.our-team .team-bottom .image:nth-of-type(2) img {
  -o-object-fit: unset;
  object-fit: unset;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.our-team .team-bottom .image:nth-of-type(3) {
  width: 86px;
  height: 102px;
  margin-top: -60px;
  position: absolute;
  margin-top: -210px;
  margin-left: 400px;
}

.our-team .team-bottom .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  -webkit-box-shadow: 0 20px 50px 0 rgba(15, 24, 44, 0.25);
  box-shadow: 0 20px 50px 0 rgba(15, 24, 44, 0.25);
}

.about-page .boder-top {
  width: 70%;
  background-color: #e5eaf4;
  height: 1px;
}

.about-page .intro .title {
  font-family: "HK Grotesk", serif;
  font-size: 25px;
  font-weight: 400;
  color: #00b8d9;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-page .intro .title {
    font-size: 16px;
  }
}

.about-page .intro .text {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5A7184;
  max-width: 370px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-page .intro .text {
    font-size: 12px;
  }
}

.about-page .intro .button a .social-button {
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 25px;
  color: #00b8d9;
  background-color: #ebf0f4;
  -webkit-animation: float 2s ease-in-out infinite;
  animation: float 2s ease-in-out infinite;
}

.about-page .intro .button a .social-button:nth-of-type(1) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.about-page .intro .button a .social-button:nth-of-type(2) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.about-page .intro .button a .social-button:nth-of-type(3) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.about-page .intro .button a .social-button:nth-of-type(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.about-page .intro .button a .social-button:nth-of-type(5) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.about-page .intro .button a .social-button:hover {
  background-color: #dee2e6;
  color: #0d2436;
}

.about-page .intro .links .list-items {
  list-style-type: none;
  padding: 0;
}

.about-page .intro .links .list-items .list-link a {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5A7184;
  text-decoration: none;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-page .intro .links .list-items .list-link a {
    font-size: 12px;
  }
}

.about-page .intro .links .list-items .list-link a:hover {
  color: #0d2436;
  text-decoration: underline;
}

.about-page .intro .contact .details i {
  color: #00b8d9;
}

.about-page .intro .contact .details i:hover {
  color: #0d2436;
}

.about-page .intro .contact .details .call p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5A7184;
  max-width: 277px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-page .intro .contact .details .call p {
    font-size: 12px;
  }
}

.about-page .copyright .text {
  font-family: "HK Grotesk", serif;
  font-size: 16px;
  color: #5a7184;
  font-weight: 400;
}

@media (max-width: 320px) {
  .about-page .copyright .text {
    font-size: 16px;
  }
}

.about-page .copyright .text span {
  color: #00b8d9;
}

/* ------------------CONTACT------------------ */
.back-img-1 {
  background-image: url("images/img-11.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 700px;
  -webkit-clip-path: ellipse(150% 120% at 50% -25%);
  clip-path: ellipse(150% 120% at 50% -25%);
}

.back-img-1 header .navbar {
  background: transparent;
}

.back-img-1 header .navbar .navbar-toggler {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 14px;
  padding: 0;
}

.back-img-1 header .navbar .navbar-toggler:focus {
  text-decoration: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.back-img-1 header .navbar .navbar-toggler:hover {
  background: transparent;
  border: none;
  color: #ffffff;
}

.back-img-1 header .navbar-nav .nav-item .nav-link {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  text-transform: capitalize;
}

@media (min-width: 768px) and (max-width: 991px) {
  .back-img-1 header .navbar-nav .nav-item .nav-link {
    font-size: 12px;
  }
}

.back-img-1 header .navbar-nav .nav-item .nav-link:hover {
  color: #00b8d9;
}

.back-img-1 header .navbar-nav .nav-item .active {
  color: #00b8d9;
}

.back-img-1 header .navbar-nav .nav-item::after {
  display: block;
  content: "";
  border-bottom: 3px solid #00b8d9;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
}

.back-img-1 header .navbar-nav .nav-item:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.back-img-1 header .button .btn {
  border-radius: 8px;
  background-color: transparent;
  border: 2px solid #ffffff;
  font-family: "Open Sans", sans-serif;
  width: 131px;
  height: 48px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
}

@media (min-width: 768px) and (max-width: 991px) {
  .back-img-1 header .button .btn {
    width: 130px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .back-img-1 header .button .btn {
    width: 105px;
    height: 35px;
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .back-img-1 header .button .btn {
    width: 100px;
    height: 30px;
    font-size: 12px;
  }
}

.back-img-1 header .button .btn:hover {
  color: #18181a;
  background-color: #ffffff;
}

.back-img-1 header .contain {
  padding: 96px 0 110px 0;
}

.back-img-1 header .contain h3 {
  font-family: "HK Grotesk", serif;
  color: #ffffff;
  font-size: 56px;
}

.back-img-1 header .contain p {
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  max-width: 880px;
}

.back-img-1 header .contain .button .read-button {
  background-color: #ffffff;
  color: #183B56;
  width: 170px;
  height: 48px;
  border-radius: 75px;
  border: none;
}

.contact-form {
  margin-top: -350px;
  position: relative;
}

.contact-form .contain {
  background: #ffffff;
  -webkit-box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  margin-top: 56px;
}

.contact-form .contain form {
  padding: 64px;
}

.contact-form .contain form .form-row .form-detail {
  padding: 0 20px 0 0;
  margin-bottom: 16px;
}

.contact-form .contain form .form-row .form-detail label {
  display: inline-block;
  color: #5A7184;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-form .contain form .form-row .form-detail .form-control {
  padding: 12px;
  border: 1px solid #e5eaf4;
  border-radius: 8px;
}

.contact-form .contain form .form-row .form-detail .form-control::-webkit-input-placeholder {
  font-family: "Open Sans", sans-serif;
  color: #bec7cf;
  font-size: 16px;
  font-weight: 400;
}

.contact-form .contain form .form-row .form-detail .form-control:-ms-input-placeholder {
  font-family: "Open Sans", sans-serif;
  color: #bec7cf;
  font-size: 16px;
  font-weight: 400;
}

.contact-form .contain form .form-row .form-detail .form-control::-ms-input-placeholder {
  font-family: "Open Sans", sans-serif;
  color: #bec7cf;
  font-size: 16px;
  font-weight: 400;
}

.contact-form .contain form .form-row .form-detail .form-control::placeholder {
  font-family: "Open Sans", sans-serif;
  color: #bec7cf;
  font-size: 16px;
  font-weight: 400;
}

.contact-form .contain form .form-row .form-detail .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #00b8d9;
}

.contact-form .contain form .form-detail .list {
  border: 1px solid #e5eaf4;
  padding: 12px;
  border-radius: 8px;
  border-radius: 8px;
  font-family: "Open Sans", sans-serif;
  color: #bec7cf;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.contact-form .contain form .form-detail .list:focus {
  outline: 0;
  border: 1px solid #00b8d9;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.contact-form .contain form .form-detail {
  padding: 0 20px 0 0;
  margin-bottom: 16px;
}

.contact-form .contain form .form-detail .message {
  color: #5A7184;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-form .contain form .form-detail textarea {
  padding: 20px;
  resize: none;
}

.contact-form .contain form .form-detail textarea::-webkit-input-placeholder {
  font-family: "Open Sans", sans-serif;
  color: #bec7cf;
  font-size: 16px;
  font-weight: 400;
}

.contact-form .contain form .form-detail textarea:-ms-input-placeholder {
  font-family: "Open Sans", sans-serif;
  color: #bec7cf;
  font-size: 16px;
  font-weight: 400;
}

.contact-form .contain form .form-detail textarea::-ms-input-placeholder {
  font-family: "Open Sans", sans-serif;
  color: #bec7cf;
  font-size: 16px;
  font-weight: 400;
}

.contact-form .contain form .form-detail textarea::placeholder {
  font-family: "Open Sans", sans-serif;
  color: #bec7cf;
  font-size: 16px;
  font-weight: 400;
}

.contact-form .contain form .form-detail textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  border: 1px solid #00b8d9;
}

.contact-form .contain form .form-detail textarea .form-control {
  padding: 20px 0;
}

.contact-form .contain form .form-detail .text {
  font-family: "Open Sans", sans-serif;
  color: #5A7184;
  font-size: 16px;
  font-weight: 600;
}

.contact-form .contain form .contact-button {
  background-color: #00b8d9;
  color: #ffffff;
  border: none;
  width: 150px;
  height: 50px;
  border-radius: 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.information {
  padding-top: 164px;
  padding-bottom: 175px;
}

.information .info .icon {
  background-color: #e4edfb;
  border-radius: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  color: #00b8d9;
  font-size: 36px;
  margin-bottom: 20px;
}

.information .title {
  font-family: "HK Grotesk", serif;
  color: #183B56;
  font-size: 20px;
}

.information .text {
  font-family: "Open Sans", sans-serif;
  color: #5A7184;
  font-size: 16px;
  font-weight: 600;
  max-width: 350px;
}

.information .mail {
  font-family: "Open Sans", sans-serif;
  color: #00b8d9;
  font-weight: 600;
  text-decoration: none;
}

.information .mail:hover {
  text-decoration: underline;
}

.information .number {
  font-family: "Open Sans", sans-serif;
  color: #00b8d9;
  font-weight: 600;
}

.information .support-button {
  border: 2px solid #00b8d9;
  background-color: transparent;
  color: #00b8d9;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  width: 166px;
  height: 40px;
  border-radius: 10px;
}

.information .support-button:focus {
  border: 3px solid #00b8d9;
  outline: none;
}

.information .support-button i {
  font-size: 16px;
  font-weight: 600;
}

.information .support-button:hover {
  background-color: #00b8d9;
  color: #ffffff;
}

.contact-page {
  padding-top: 33px;
}

.contact-page .intro .title {
  font-family: "HK Grotesk", serif;
  font-size: 25px;
  font-weight: 400;
  color: #00b8d9;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .contact-page .intro .title {
    font-size: 16px;
  }
}

.contact-page .intro .text {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5A7184;
  max-width: 370px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .contact-page .intro .text {
    font-size: 12px;
  }
}

.contact-page .intro .button a .social-button {
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 25px;
  color: #00b8d9;
  background-color: #ebf0f4;
  -webkit-animation: float 2s ease-in-out infinite;
  animation: float 2s ease-in-out infinite;
}

.contact-page .intro .button a .social-button:nth-of-type(1) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.contact-page .intro .button a .social-button:nth-of-type(2) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.contact-page .intro .button a .social-button:nth-of-type(3) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.contact-page .intro .button a .social-button:nth-of-type(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.contact-page .intro .button a .social-button:nth-of-type(5) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.contact-page .intro .button a .social-button:hover {
  background-color: #dee2e6;
  color: #0d2436;
}

.contact-page .intro .links .list-items {
  list-style-type: none;
  padding: 0;
}

.contact-page .intro .links .list-items .list-link a {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5A7184;
  text-decoration: none;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .contact-page .intro .links .list-items .list-link a {
    font-size: 12px;
  }
}

.contact-page .intro .links .list-items .list-link a:hover {
  color: #0d2436;
  text-decoration: underline;
}

.contact-page .intro .contact .details i {
  color: #00b8d9;
}

.contact-page .intro .contact .details i:hover {
  color: #0d2436;
}

.contact-page .intro .contact .details .call p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5A7184;
  max-width: 277px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .contact-page .intro .contact .details .call p {
    font-size: 12px;
  }
}

.contact-page .copyright .text {
  font-family: "HK Grotesk", serif;
  font-size: 16px;
  color: #5a7184;
  font-weight: 400;
}

@media (max-width: 320px) {
  .contact-page .copyright .text {
    font-size: 16px;
  }
}

.contact-page .copyright .text span {
  color: #00b8d9;
}

/* ------------------PHOTOGRAPHY------------------ */
.myPhotos {
  padding-top: 94px;
}

.myPhotos .title {
  font-family: "HK Grotesk", serif;
  color: #183B56;
  font-size: 56px;
  font-weight: 700;
  /* &::after{
            content: "";
            position: absolute;
            width: 340px;
            height: 11px;
            background-color: #00B8D9;
            top: 58px;
            left: 35%;
            z-index: -1;
            @media (max-width:1440px){
                left: 25%;
            }
            @media (min-width:992px) and (max-width:1199px){
                left: 22%;
            }
            @media (max-width:768px){
                width: 278px;
                top: 50px;
                left: 24%;
            }
            @media (min-width:320px) and (max-width:430px){
                top: 106px;
                left: 13%;
                width: 280px;
            }
            @media (max-width:320px){
                width: 190px;
                top: 33px;
                height: 6px;
                left: 38%;
            }

        } */
}

.myPhotos .title span {
  color: #00b8d9;
}

@media (max-width: 768px) {
  .myPhotos .title {
    font-size: 48px;
  }
}

@media (max-width: 320px) {
  .myPhotos .title {
    font-size: 32px;
  }
}

.myPhotos .text {
  font-family: "Open Sans", sans-serif;
  color: #5A7184;
  font-size: 20px;
  font-weight: 400;
  padding: 32px 0 65px 0;
}

@media (max-width: 768px) {
  .myPhotos .text {
    font-size: 18px;
  }
}

@media (max-width: 320px) {
  .myPhotos .text {
    font-size: 16px;
  }
}

@media (min-width: 320px) and (max-width: 430px) {
  .myPhotos .big-screen {
    display: none;
  }
}

.myPhotos .big-screen .image {
  width: 254px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .myPhotos .big-screen .image {
    width: 215px;
  }
}

@media (max-width: 768px) {
  .myPhotos .big-screen .image {
    width: 154px;
  }
}

.myPhotos .big-screen .image img {
  width: 100%;
  border-radius: 6px;
  height: 254px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: 199px;
  margin-left: 45px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .myPhotos .big-screen .image img {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .myPhotos .big-screen .image img {
    height: 154px;
    margin-top: 70px;
    margin-left: 0;
  }
}

.myPhotos .big-screen .image-1 .img-1 {
  width: 444px;
  height: 317px;
  margin-right: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .myPhotos .big-screen .image-1 .img-1 {
    width: 300px;
    height: 315px;
    margin-right: 15px;
  }
}

@media (max-width: 768px) {
  .myPhotos .big-screen .image-1 .img-1 {
    height: 0;
  }
}

.myPhotos .big-screen .image-1 .img-1 img {
  border-radius: 6px;
  width: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .myPhotos .big-screen .image-1 .img-1 img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.myPhotos .big-screen .image-1 .img-2 {
  width: 207px;
  margin-left: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .myPhotos .big-screen .image-1 .img-2 {
    width: 300px;
    height: 212px;
  }
}

.myPhotos .big-screen .image-1 .img-2 img {
  width: 100%;
  height: 212px;
  border-radius: 6px;
  margin-top: 65px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .myPhotos .big-screen .image-1 .img-2 img {
    height: 100%;
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  .myPhotos .big-screen .image-1 .img-2 img {
    height: 100px;
    margin-top: 39px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .myPhotos .big-screen .image-2 {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .myPhotos .big-screen .image-2 {
    margin-top: 30px;
  }
}

.myPhotos .big-screen .image-2 .img-1 {
  width: 207px;
  margin-right: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .myPhotos .big-screen .image-2 .img-1 {
    width: 300px;
    height: 212px;
  }
}

.myPhotos .big-screen .image-2 .img-1 img {
  width: 100%;
  height: 212px;
  border-radius: 6px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .myPhotos .big-screen .image-2 .img-1 img {
    height: 100%;
  }
}

@media (max-width: 768px) {
  .myPhotos .big-screen .image-2 .img-1 img {
    height: 100px;
  }
}

.myPhotos .big-screen .image-2 .img-2 {
  width: 444px;
  height: 317px;
  margin-left: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .myPhotos .big-screen .image-2 .img-2 {
    width: 300px;
    height: 315px;
    margin-right: 15px;
  }
}

@media (max-width: 768px) {
  .myPhotos .big-screen .image-2 .img-2 {
    height: 282px;
  }
}

.myPhotos .big-screen .image-2 .img-2 img {
  border-radius: 6px;
  height: 317px;
  width: 444px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .myPhotos .big-screen .image-2 .img-2 img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .myPhotos .big-screen .image-2 .img-2 img {
    height: 220px;
  }
}

.myPhotos .big-screen .image-3 {
  width: 323px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .myPhotos .big-screen .image-3 {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .myPhotos .big-screen .image-3 {
    margin-top: -40px;
    width: 165px;
  }
}

.myPhotos .big-screen .image-3 img {
  width: 100%;
  border-radius: 6px;
  height: 326px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .myPhotos .big-screen .image-3 img {
    height: 170px;
  }
}

.myPhotos .small-screen {
  display: none;
}

@media (max-width: 1440) {
  .myPhotos .small-screen {
    display: none;
  }
}

@media (max-width: 768px) {
  .myPhotos .small-screen {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 430px) {
  .myPhotos .small-screen {
    display: block;
  }
}

.myPhotos .small-screen .carousel-item img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
}

.phototgraphyBanner {
  padding-top: 80px;
}

.phototgraphyBanner .title {
  font-family: "HK Grotesk", serif;
  color: #183B56;
  font-size: 40px;
}

@media (max-width: 768px) {
  .phototgraphyBanner .title {
    font-size: 36px;
  }
}

@media (max-width: 320px) {
  .phototgraphyBanner .title {
    font-size: 28px;
  }
}

.phototgraphyBanner .button {
  padding-top: 42px;
}

@media (max-width: 320px) {
  .phototgraphyBanner .button {
    width: 100%;
  }
}

.phototgraphyBanner .button .link {
  padding: 12px;
}

@media (max-width: 425px) {
  .phototgraphyBanner .button .link {
    width: 100%;
  }
}

.phototgraphyBanner .button .link .btn {
  border-radius: 25px;
  border: 2px solid #848d95;
  color: #848d95;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  height: 100%;
}

@media (max-width: 425px) {
  .phototgraphyBanner .button .link .btn {
    width: 100%;
  }
}

.phototgraphyBanner .button .link .btn:hover {
  color: #00b8d9;
  border: 2px solid #a8a5a5;
}

.phototgraphyBanner .button .link .btn:focus {
  border: 2px solid #00b8d9;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #00b8d9;
}

.phototgraphyBanner .wi-300 {
  width: 100%;
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .phototgraphyBanner .wi-300 {
    width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .phototgraphyBanner .wi-300 {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .phototgraphyBanner .wi-300 {
    width: 100%;
  }
}

@media (min-width: 767px) and (max-width: 319px) {
  .phototgraphyBanner .image-gallary {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 430px) {
  .phototgraphyBanner .image-gallary {
    display: none;
  }
}

.phototgraphyBanner .image-gallary .picture {
  row-gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .phototgraphyBanner .image-gallary .picture {
    padding-top: 15px;
  }
}

.phototgraphyBanner .image-gallary .picture .image-1 {
  -webkit-column-gap: 15px;
  column-gap: 15px;
}

.phototgraphyBanner .image-gallary .picture .image-1 .img-1 img {
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.phototgraphyBanner .image-gallary .picture .image-1 .img-2 img {
  border-radius: 8px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.phototgraphyBanner .image-gallary .picture .image-2 {
  -webkit-column-gap: 15px;
  column-gap: 15px;
}

.phototgraphyBanner .image-gallary .picture .image-2 .img-1 img {
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.phototgraphyBanner .image-gallary .picture .image-2 .img-2 img {
  border-radius: 8px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.phototgraphyBanner .image-gallary .picture .image-3 {
  height: 100%;
}

.phototgraphyBanner .image-gallary .picture .image-3 img {
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.phototgraphyBanner .image-gallary .picture .image-4 {
  -webkit-column-gap: 15px;
  column-gap: 15px;
}

.phototgraphyBanner .image-gallary .picture .image-4 .img-1 {
  height: 100%;
}

.phototgraphyBanner .image-gallary .picture .image-4 .img-1 img {
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.phototgraphyBanner .image-gallary .picture .image-4 .img-2 {
  height: 100%;
}

.phototgraphyBanner .image-gallary .picture .image-4 .img-2 img {
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.phototgraphyBanner .image-gallary .picture-2 {
  -webkit-column-gap: 15px;
  column-gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .phototgraphyBanner .image-gallary .picture-2 {
    padding-top: 15px;
  }
}

.phototgraphyBanner .image-gallary .picture-2 .image-5 {
  row-gap: 15px;
}

.phototgraphyBanner .image-gallary .picture-2 .image-5 .img-1 {
  height: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .phototgraphyBanner .image-gallary .picture-2 .image-5 .img-1 {
    height: 100%;
  }
}

.phototgraphyBanner .image-gallary .picture-2 .image-5 .img-1 img {
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.phototgraphyBanner .image-gallary .picture-2 .image-5 .img-2 {
  height: 190px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .phototgraphyBanner .image-gallary .picture-2 .image-5 .img-2 {
    height: 100%;
  }
}

.phototgraphyBanner .image-gallary .picture-2 .image-5 .img-2 img {
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.phototgraphyBanner .image-gallary .picture-2 .image-6 {
  row-gap: 15px;
}

.phototgraphyBanner .image-gallary .picture-2 .image-6 .img-1 {
  height: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .phototgraphyBanner .image-gallary .picture-2 .image-6 .img-1 {
    height: 100%;
  }
}

.phototgraphyBanner .image-gallary .picture-2 .image-6 .img-1 img {
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.phototgraphyBanner .image-gallary .picture-2 .image-6 .img-2 {
  height: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .phototgraphyBanner .image-gallary .picture-2 .image-6 .img-2 {
    height: 100%;
  }
}

.phototgraphyBanner .image-gallary .picture-2 .image-6 .img-2 img {
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.phototgraphyBanner .mobile-view {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .phototgraphyBanner .mobile-view {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .phototgraphyBanner .mobile-view {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .phototgraphyBanner .mobile-view {
    display: none;
  }
}

@media (max-width: 767px) {
  .phototgraphyBanner .mobile-view {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 430px) {
  .phototgraphyBanner .mobile-view {
    display: block;
  }
}

.phototgraphyBanner .mobile-view .carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
}

.contain {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.contain .item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #cb422a;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 300px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.photography-page {
  padding-top: 33px;
}

.photography-page .intro .title {
  font-family: "HK Grotesk", serif;
  font-size: 25px;
  font-weight: 400;
  color: #00b8d9;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .photography-page .intro .title {
    font-size: 16px;
  }
}

.photography-page .intro .text {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5A7184;
  max-width: 370px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .photography-page .intro .text {
    font-size: 12px;
  }
}

.photography-page .intro .button a .social-button {
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 25px;
  color: #00b8d9;
  background-color: #ebf0f4;
  -webkit-animation: float 2s ease-in-out infinite;
  animation: float 2s ease-in-out infinite;
}

.photography-page .intro .button a .social-button:nth-of-type(1) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.photography-page .intro .button a .social-button:nth-of-type(2) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.photography-page .intro .button a .social-button:nth-of-type(3) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.photography-page .intro .button a .social-button:nth-of-type(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.photography-page .intro .button a .social-button:nth-of-type(5) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.photography-page .intro .button a .social-button:hover {
  background-color: #dee2e6;
  color: #0d2436;
}

.photography-page .intro .links .list-items {
  list-style-type: none;
  padding: 0;
}

.photography-page .intro .links .list-items .list-link a {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5A7184;
  text-decoration: none;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .photography-page .intro .links .list-items .list-link a {
    font-size: 12px;
  }
}

.photography-page .intro .links .list-items .list-link a:hover {
  color: #0d2436;
  text-decoration: underline;
}

.photography-page .intro .contact .details i {
  color: #00b8d9;
}

.photography-page .intro .contact .details i:hover {
  color: #0d2436;
}

.photography-page .intro .contact .details .call p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5A7184;
  max-width: 277px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .photography-page .intro .contact .details .call p {
    font-size: 12px;
  }
}

.photography-page .copyright .text {
  font-family: "HK Grotesk", serif;
  font-size: 16px;
  color: #5a7184;
  font-weight: 400;
}

@media (max-width: 320px) {
  .photography-page .copyright .text {
    font-size: 16px;
  }
}

.photography-page .copyright .text span {
  color: #00b8d9;
}

/*# sourceMappingURL=main.css.map */


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ======================== */
.icons {
  display: flex;
  column-gap: 10px;
}

.icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 25px;
  color: #000;
  border-radius: 50%;
  outline: 2px solid #fff;
  transition-property:
    outline-offset, outline-color,
    background-color;
  transition-duration: .25s;
}

.icon:hover {
  outline-offset: 4px;
}

.icon:hover i {
  animation: shake .25s;
}

.icon--instagram:hover {
  color: #fff;
  background-image: radial-gradient(circle at 30% 107%,
      #fdf497 0%, #fdf497 5%,
      #fd5949 45%, #d6249f 60%,
      #285AEB 90%);
  outline-color: #a02d76;
}

.icon--youtube:hover {
  color: #fff;
  background-color: #FF0000;
  outline-color: #FF0000;
}

.icon--facebook:hover {
  color: #fff;
  background-color: #4267B2;
  outline-color: #4267B2;
}

.icon--whatsapp:hover {
  color: #fff;
  background-color: #25D366;
  outline-color: #25D366;
}

.icon--map:hover {
  color: #fff;
  background-color: #DD4B3E;
  outline-color: #DD4B3E;
}

@keyframes shake {
  10% {
    transform: rotate(15deg);
  }

  20% {
    transform: rotate(-15deg);
  }

  30% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-15deg);
  }
}
