/*------------------ Google Fonts ------------------ */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");

/*------------------ Header ------------------ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  /* background: url("../images/home_bg.jpg") no-repeat;
  background-size: cover;
  background-position: center; */
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.3rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  z-index: -1;
}

.logo {
  font-size: 2rem;
  color: #5f5f5f;
  text-decoration: none;
  font-weight: 700;
  width: 55px;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  opacity: 90%;
}

.navbar {
  all: unset;
}

.navbar a {
  font-size: 1rem;
  color: #5f5f5f;
  text-decoration: none;
  font-weight: 500;
  margin-left: 2.5rem;
}

.navbar a:nth-child(1) {
  --i: 0;
}

.navbar a:nth-child(2) {
  --i: 1;
}

.navbar a:nth-child(3) {
  --i: 2;
}

.navbar a:nth-child(4) {
  --i: 3;
}

.navbar a:nth-child(5) {
  --i: 4;
}

.navbar a:hover {
  color: #303030;
}

.logo:hover {
  color: #303030;
}

#check {
  display: none;
}

.icons {
  position: absolute;
  right: 5%;
  font-size: 2.8rem;
  color: #5f5f5f;
  cursor: pointer;
  display: none;
}

/* header breakpoints */
@media (max-width: 992px) {
  .header {
    padding: 1.3rem 7%;
  }
}

@media (max-width: 858px) {
  .icons {
    display: inline-flex;
  }

  #check:checked ~ .icons #menu-icon {
    display: none;
  }

  .icons #close-icon {
    display: none;
  }

  #check:checked ~ .icons #close-icon {
    display: block;
  }

  .navbar {
    display: block !important;
    position: absolute !important;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.3s ease;
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }

  #check:checked ~ .navbar {
    height: 17.7rem;
  }

  .navbar a {
    display: block !important;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    text-align: center;
    transform: translateY(-50px);
    opacity: 0;
    transition: 0.3s ease;
  }

  #check:checked ~ .navbar a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: calc(0.15s * var(--i));
  }
}

/*------------------ End of Header ------------------ */

/*------------------ Home ------------------ */

#home {
  width: 100%;
  height: 700px;
  /* height: 100vh; */
  background: url(../images/home_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

#welcome_section_one {
  /* border: 1px solid red; */
  width: 100%;
  height: fit-content;
  top: 220px;
  position: absolute;
  padding-left: 212px;
}

#welcome_section_one_text {
  /* border: 1px solid red; */
  background-color: rgba(240, 240, 240, 0.7);
  height: 60px;
  border-radius: 5px;
  width: 310px;
}

#welcome_section_one_text h6 {
  padding-top: 10px;
  padding-left: 15px;
  font-size: 16px;
  font-weight: bold;
}

#welcome_section_one_text p {
  position: relative;
  padding-left: 15px;
  bottom: 8px;
  font-size: 14px;
  color: #545454;
}

#welcome_section_two {
  /* border: 1px solid red; */
  width: 100%;
  height: fit-content;
  top: 290px;
  position: absolute;
  padding-left: 212px;
}

#welcome_text {
  background-color: rgba(240, 240, 240, 0.7);
  height: 245px;
  border-radius: 5px;
  width: 310px;
}

#welcome_text p {
  padding: 15px;
  font-size: 14px;
  color: #545454;
}

#slide_section {
  /* border: 1px solid red; */
  width: 100%;
  height: fit-content;
  top: 560px;
  position: absolute;
  padding-left: 112px;
  gap: 48px;
}

#btn_slide_prev {
  background-color: white;
  height: 100px;
  border-radius: 5px;
  width: 52px;
  border: none;
}

#btn_slide_prev i {
  font-size: 2rem;
  color: #4d4d4d;
  text-decoration: none;
  font-weight: 700;
}

#announcement_slide {
  display: none;
}

#announcement_slider {
  /* border: 1px solid red; */
  height: 100px;
  border-radius: 5px;
  width: 310px;
}

#announcement_slider_wrapper {
  border-radius: 5px;
  background-color: white;
}

#announcement_slider_one h6 {
  font-weight: bold;
  padding: 15px;
}

#announcement_slider_one p {
  position: relative;
  bottom: 15px;
  font-size: 14px;
  color: #545454;
  overflow-y: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
}

#announcement_slider_two h6 {
  font-weight: bold;
  padding: 15px;
}

#announcement_slider_two p {
  position: relative;
  bottom: 15px;
  font-size: 14px;
  color: #545454;
  overflow-y: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
}

#announcement_slider_three h6 {
  font-weight: bold;
  padding: 15px;
}

#announcement_slider_three p {
  position: relative;
  bottom: 15px;
  font-size: 14px;
  color: #545454;
  overflow-y: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
}

#service_slide {
  /* border: 1px solid red; */
  height: 100px;
  border-radius: 5px;
  width: 310px;
}

#service_slider_wrapper {
  border-radius: 5px;
  background-color: white;
}

#service_slider_one h6 {
  font-weight: bold;
  padding: 15px;
}

#service_slider_one p {
  position: relative;
  bottom: 15px;
  font-size: 14px;
  color: #545454;
  overflow-y: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
}

#service_slider_two h6 {
  font-weight: bold;
  padding: 15px;
}

#service_slider_two p {
  position: relative;
  bottom: 15px;
  font-size: 14px;
  color: #545454;
  overflow-y: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
}

#service_slider_three h6 {
  font-weight: bold;
  padding: 15px;
}

#service_slider_three p {
  position: relative;
  bottom: 15px;
  font-size: 14px;
  color: #545454;
  overflow-y: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
}

#btn_book {
  /* border: 1px solid red; */
  height: 100px;
  border-radius: 5px;
  width: 310px;
  background-color: white;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  border: none;
  text-decoration: none;
}

#btn_book span {
  position: relative;
  top: 30px;
  color: #1f1f1f;
}

#btn_book i {
  position: absolute;
  left: 270px;
  font-size: 22px;
  bottom: 11px;
  display: none;
  width: fit-content;
}

.ellipsis {
  text-overflow: ellipsis;
  position: relative;
  bottom: 15px;
  font-size: 14px;
  color: #545454;
  padding-left: 15px;
  padding-right: 15px;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#btn_book_icon {
  animation: move_right 0.7s infinite ease alternate;
}

/* home breakpoints */
@media (max-width: 1286px) {
  #service_slide {
    position: absolute;
    bottom: 125px;
    left: 570px;
  }

  #btn_book {
    background-color: rgba(240, 240, 240, 0.7) !important;
  }
}

@media (max-width: 986px) {
  #btn_book {
    /* width: 130px !important; */
    font-size: 22px !important;
    /* background-color: white !important; */
  }

  #service_slide {
    left: 534px;
    bottom: 113px;
  }

  #slide_section {
    gap: 12px !important;
    padding-left: 148px !important;
    top: 548px !important;
  }
}

@media (max-width: 966px) {
  #btn_book_text {
    top: 15px !important;
  }

  #btn_book span {
    top: 15px !important;
  }

  #service_slide {
    display: none;
  }

  #welcome_section_one {
    top: 155px !important;
    justify-content: center !important;
    padding: 0 !important;
  }

  #welcome_section_two {
    top: 227px !important;
    justify-content: center !important;
    padding: 0 !important;
  }

  #btn_book {
    position: absolute;
    bottom: 113px;
    height: 50px !important;
    font-size: 14px !important;
    color: #545454;
    text-align: start !important;
    padding-left: 15px;
  }

  #btn_book_icon {
    display: block !important;
  }

  #slide_section {
    justify-content: center !important;
    padding: 0 !important;
  }

  #btn_slide_prev {
    display: none !important;
  }
}

@media (max-width: 320px) {
  #welcome_section_one {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  #welcome_section_two {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  #btn_book {
    width: 290px !important;
  }

  #btn_book_icon {
    left: 250px !important;
  }

  #announcement_slider {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/*------------------ End of Home ------------------ */

/*------------------ Service ------------------ */

#service {
  height: fit-content;
  padding-bottom: 60px;
}

#service h3 {
  text-align: center;
  margin-top: 50px;
  font-weight: bold;
  padding-left: 15px;
  padding-right: 15px;
}

#service img {
  position: absolute;
  opacity: 7%;
  margin: auto;
  left: 0px;
  right: 0px;
  margin-top: 50px;
  z-index: 1;
  width: 30%;
}

#accordion_one,
#accordion_two,
#accordion_three,
#accordion_four,
#accordion_five {
  background-color: white;
  border: none;
}

#accordion_one button {
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height: 70px;
  border: 1px solid rgb(243, 243, 243);
}

#accordion_two button {
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height: 70px;
  border: 1px solid rgb(243, 243, 243);
}

#accordion_three button {
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height: 70px;
  border: 1px solid rgb(243, 243, 243);
}

#accordion_four button {
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height: 70px;
  border: 1px solid rgb(243, 243, 243);
}

#accordion_five button {
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height: 70px;
  border: 1px solid rgb(243, 243, 243);
}

/*------------------ End of Service ------------------ */

/*------------------ Gallery ------------------ */
#gallery {
  height: fit-content;
  padding-bottom: 50px;
}

#gallery h3 {
  text-align: center;
  font-weight: bold;
}

#instafeed-container {
  margin-top: 60px;
  columns: 3 200px;
  gap: 5px;
  margin: 20px;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
}

.grid-item {
  border: 2px solid #ddd;
  padding: 10px;
  text-align: center;
}

#instafeed-container img {
  margin-bottom: 5px;
  width: 100%;
  height: auto;
  max-height: 300px;
  border-radius: 7px;
  padding: 1px;
  opacity: 0.8;
  transition: 0.2s ease-in-out opacity;
}

#instafeed-container img:hover {
  opacity: 1;
}

.center-text {
  text-align: center;
}

#show-more-btn {
  background-color: white;
  cursor: pointer;
  color: black;
  display: block;
  border: 1px solid black;
  width: 170px;
  margin: auto;
  padding: 10px;
  font-size: 14px;
  margin-top: 40px;
}

/*------------------ About Us ------------------ */

#about_us {
  height: fit-content;
}

#about_us_title {
  text-align: center;
  font-weight: bold;
}

#about_us_sub_title {
  position: relative;
  text-align: center;
  color: #818181;
  font-size: 14px;
  bottom: 4px;
}

#about_us_para {
  text-align: center;
  padding-top: 10px;
  padding-left: 100px;
  padding-right: 100px;
  /* border: 1px solid red; */
  color: #383838;
}

#card_wrapper {
  /* border: 1px solid green; */
  padding-top: 75px;
  padding-left: 20px;
  padding-right: 20px;
  height: fit-content;
}

.card_one,
.card_two,
.card_three {
  background-color: white;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height: 250px;
  width: 350px;
}

#card_one_icon,
#card_two_icon,
#card_three_icon {
  position: absolute;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  bottom: 200px;
  left: 120px;
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#card_one_icon img {
  position: relative;
  width: 75px;
  margin-top: 17px;
  animation: move_up 1.3s infinite ease alternate;
}

#card_two_icon img {
  position: relative;
  width: 75px;
  margin-top: 17px;
  animation: move_up 1.3s infinite ease alternate;
}

#card_three_icon img {
  position: relative;
  width: 75px;
  margin-top: 17px;
  animation: move_up 1.3s infinite ease alternate;
}

#about_us_card_one_body,
#about_us_card_two_body,
#about_us_card_three_body {
  top: 40px;
}

#about_us_card_one_title,
#about_us_card_two_title,
#about_us_card_three_title {
  color: #1b1b19;
}

#about_us_card_one_para,
#about_us_card_two_para,
#about_us_card_three_para {
  color: #969696;
  font-size: 14px;
}

#image_one {
  width: 100%;
  margin-top: 75px;
}

#image_one_one {
  width: 100%;
  margin-top: 60px;
  display: none;
}

.image_card_one {
  position: relative;
  bottom: 310px;
  width: 100%;
  padding-left: 60% !important;
  padding-right: 20px;
}

.image_card_one_title {
  color: white;
  font-size: 44px;
  font-weight: bold;
}

.image_card_one_text {
  color: white;
  font-size: 18px;
  margin-top: 10px;
}

#btn_img_one_contact_us {
  margin-top: 10px;
  position: relative;
  width: 180px;
  border-radius: 28px;
  background-color: #1b1b19;
  color: white;
  font-weight: bold;
  height: 42px;
  font-size: 15px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  outline: none;
}

#btn_img_one_contact_us a {
  text-decoration: none;
  color: #fff;
}

/* About Us Breakpoints */
@media (max-width: 1121px) {
  .card_three {
    position: relative;
    top: 80px;
  }

  #image_one {
    position: relative;
    top: 80px;
  }

  .image_card_one {
    margin-top: 110px;
  }
}

@media (max-width: 1036px) {
  .image_card_one {
    padding-left: 65% !important;
    margin-top: 150px;
  }

  .image_card_one_title {
    font-size: 30px !important;
  }

  .image_card_one_text {
    font-size: 15px !important;
  }

  .image_card_one_btn_contact_us {
    width: 120px !important;
    height: 38px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 860px) {
  .image_card_one {
    padding-left: 65% !important;
    margin-top: 180px;
  }

  .image_card_one_title {
    font-size: 25px !important;
  }

  .image_card_one_text {
    font-size: 13px !important;
  }

  .image_card_one_btn_contact_us {
    width: 100px !important;
    height: 35px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 759px) {
  .image_card_one {
    padding-left: 65% !important;
    margin-top: 290px;
  }

  .image_card_one_title {
    font-size: 20px !important;
  }

  .image_card_one_text {
    font-size: 11px !important;
  }

  .image_card_one_btn_contact_us {
    width: 85px !important;
    height: 34px !important;
    font-size: 11px !important;
  }

  .card_two {
    position: relative;
    top: 80px;
  }

  .card_three {
    position: relative;
    top: 160px;
  }

  #image_one {
    position: relative;
    top: 160px;
  }
}

@media (max-width: 618px) {
  #image_one {
    display: none;
  }

  #image_one_one {
    position: relative;
    display: block !important;
    top: 160px !important;
  }

  .image_card_one {
    text-align: center;
    margin-top: 190px;
    padding: 0px !important;
  }

  .image_card_one_title {
    font-size: 34px !important;
  }

  .image_card_one_text {
    font-size: 14px !important;
  }

  .image_card_one_btn_contact_us {
    width: 115px !important;
    height: 34px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 562px) {
  #card_one_icon,
  #card_two_icon,
  #card_three_icon {
    left: 0px !important;
    right: 0px !important;
    margin: auto !important;
  }

  #about_us_para {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .image_card_one {
    text-align: center;
    margin-top: 290px !important;
    padding: 0px !important;
  }

  .image_card_one_title {
    font-size: 20px !important;
  }

  .image_card_one_text {
    font-size: 10px !important;
  }

  .image_card_one_btn_contact_us {
    width: 85px !important;
    height: 30px !important;
    font-size: 10px !important;
  }
}

@media (max-width: 320px) {
  #image_one_one {
    display: none !important;
  }

  .image_card_one {
    text-align: center;
    margin-top: 510px !important;
    padding: 0px !important;
  }

  .image_card_one_title {
    font-size: 25px !important;
    color: #383838 !important;
  }

  .image_card_one_text {
    font-size: 14px !important;
    color: #383838 !important;
    margin-top: 30px !important;
  }

  .image_card_one_btn_contact_us {
    width: 135px !important;
    height: 34px !important;
    font-size: 14px !important;
    bottom: 1px !important;
  }
}

/*------------------ End of About Us ------------------ */

/*------------------ Announcements ------------------ */
#announcements {
  width: 100%;
  position: relative;
  height: 630px;
  bottom: 200px;
}

#announcements_topic {
  text-align: center;
  font-weight: bold;
  position: relative;
}

.slider-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}

.slider-wrap .slider {
  position: relative;
  width: fit-content;
  margin-left: 30%;
  top: 50px;
}

.slider-item {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  width: 530px;
  padding: 20px 0 25px 30px;
  border-radius: 10px;
  background-color: #ffffff;
  display: flex;
  justify-content: flex-start;
  position: absolute;
  opacity: 0;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.slider-item .animation-card_image {
  max-width: 60px;
  max-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 4px 9px rgba(241, 241, 244, 0.72);
  background-color: #ffffff;
}

.slider-item .animation-card_image img {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  object-fit: cover;
}

.slider-item .animation-card_content {
  width: 100%;
  max-width: 374px;
  margin-left: 26px;
  font-family: "Open Sans", sans-serif;
}

.slider-item .animation-card_content .animation-card_content_title {
  color: #4a4545;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.18px;
  line-height: 24px;
  margin: 0;
}

.slider-item .animation-card_content .animation-card_content_description {
  color: #696d74;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 24px;
  margin: 10px 0 0 0;
}

.slider-item .animation-card_content .animation-card_content_city {
  font-size: 11px;
  margin: 10px 0 0 0;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #696d74;
}

#announcement_two {
  /* border: 1px solid green; */
  position: relative;
  padding-top: 40px;
  padding-bottom: 20px;
  margin: auto;
  top: 20px;
  width: 95%;
  height: 77%;
  overflow-y: auto;
}

.announcement_card_one {
  top: 0px;
  background-color: white;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height: 200px;
  width: 350px;
}

.announcement_card_two,
.announcement_card_three,
.announcement_card_four,
.announcement_card_five,
.announcement_card_six {
  background-color: white;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height: 200px;
  width: 350px;
}

#announcement_card_one_body,
#announcement_card_two_body,
#announcement_card_three_body,
#announcement_card_four_body,
#announcement_card_five_body {
  position: relative;
  top: 10px;
}

#announcement_card_one_body h5 {
  color: #1b1b19;
}

#announcement_card_one_body p {
  color: #bdbdbd;
  font-size: 14px;
}

#announcement_card_two_body h5 {
  color: #1b1b19;
}

#announcement_card_two_body p {
  color: #bdbdbd;
  font-size: 14px;
}

#announcement_card_three_body h5 {
  color: #1b1b19;
}

#announcement_card_three_body p {
  color: #bdbdbd;
  font-size: 14px;
}

#announcement_card_four_body h5 {
  color: #1b1b19;
}

#announcement_card_four_body p {
  color: #bdbdbd;
  font-size: 14px;
}

#announcement_card_five_body h5 {
  color: #1b1b19;
}

#announcement_card_five_body p {
  color: #bdbdbd;
  font-size: 14px;
}

#announcement_card_six_body h5 {
  color: #1b1b19;
}

#announcement_card_six_body p {
  color: #bdbdbd;
  font-size: 14px;
}

/* announcement breakpoints*/
@media (max-width: 1121px) {
  #announcements {
    bottom: 240px !important;
  }
}

@media (max-width: 1100px) {
  .slider-wrap .slider {
    margin-left: 20% !important;
  }
}

@media (max-width: 860px) {
  .slider-wrap .slider {
    margin-left: 15% !important;
  }
}

@media (max-width: 760px) {
  .slider-item {
    width: 430px !important;
  }

  .slider-item .animation-card_content .animation-card_content_description {
    font-size: 13px !important;
  }

  .slider-item .animation-card_content .animation-card_content_city {
    font-size: 10px !important;
  }
}

@media (max-width: 645px) {
  .slider-item {
    width: 330px !important;
  }

  .slider-item .animation-card_content .animation-card_content_description {
    font-size: 13px !important;
  }

  .slider-item .animation-card_content .animation-card_content_city {
    font-size: 10px !important;
  }

  .animation-card_image {
    display: none !important;
  }
}

@media (max-width: 618px) {
  #announcements {
    bottom: 170px !important;
  }
}

@media (max-width: 562px) {
  #announcements {
    bottom: 210px !important;
  }
}

@media (max-width: 521px) {
  .slider-wrap {
    display: none !important;
  }

  #announcements {
    height: 1220px !important;
  }

  #announcement_two {
    display: block !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 88% !important;
  }
}

@media (max-width: 320px) {
  #announcements {
    bottom: 270px !important;
  }
}

/*------------------ Purposes ------------------ */

#image_two_section {
  position: relative;
  width: 100%;
  bottom: 200px;
  height: fit-content;
  /* border: 2px solid red; */
}

#image_two {
  width: 100%;
}

#image_two_two {
  display: none;
  width: 100%;
}

.image_card_two {
  position: relative;
  bottom: 300px;
  width: 100%;
  padding-left: 5% !important;
  padding-right: 10px;
}

.image_card_two_para {
  color: white;
  font-size: 18px;
  margin-top: 10px;
  margin-left: 3px;
}

.image_card_two_title {
  color: white;
  font-size: 44px;
  font-weight: bold;
  padding-left: 2px;
  padding-right: 10px;
}

#btn_img_two_contact_us {
  margin-top: 40px;
  position: relative;
  width: 180px;
  border-radius: 28px;
  background-color: #1b1b19;
  color: white;
  font-weight: bold;
  height: 42px;
  font-size: 15px;
  box-shadow: 0 0 1em rgb(1 17 39 / 25%) !important;
  transition: all 0.3s ease 0s;
  outline: none;
}

#btn_img_two_contact_us a {
  text-decoration: none;
  color: #fff;
}

/* Purposes Breakpoint*/
@media (max-width: 1121px) {
  #image_two_section {
    bottom: 250px !important;
  }

  .image_card_two {
    bottom: 240px !important;
  }

  .image_card_two_title {
    font-size: 34px !important;
  }

  .image_card_two_text {
    font-size: 16px !important;
  }

  .image_card_two_btn_contact_us {
    margin-top: 20px !important;
  }
}

@media (max-width: 900px) {
  .image_card_two {
    bottom: 200px !important;
  }

  .image_card_two_title {
    font-size: 28px !important;
  }

  .image_card_two_text {
    font-size: 14px !important;
  }

  .image_card_two_btn_contact_us {
    margin-top: 10px !important;
    width: 150px !important;
    height: 40px !important;
  }
}

@media (max-width: 750px) {
  .image_card_two {
    bottom: 170px !important;
  }

  .image_card_two_title {
    font-size: 22px !important;
  }

  .image_card_two_para {
    font-size: 13px !important;
  }

  .image_card_two_btn_contact_us {
    margin-top: 10px !important;
    width: 130px !important;
    height: 35px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 562px) {
  #image_two_section {
    top: -220px !important;
  }
}

@media (max-width: 618px) {
  #image_two_section {
    bottom: 170px !important;
    text-align: center;
    /* margin-top: 190px; */
    padding: 0px !important;
  }

  #image_two_two {
    display: block !important;
  }

  #image_two {
    display: none !important;
  }

  .image_card_two {
    bottom: 250px !important;
  }

  .image_card_two_title {
    font-size: 22px !important;
  }

  .image_card_two_para {
    font-size: 13px !important;
  }

  .image_card_two_btn_contact_us {
    margin-top: 10px !important;
    width: 130px !important;
    height: 35px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 500px) {
  .image_card_two {
    bottom: 210px !important;
  }
}

@media (max-width: 395px) {
  .image_card_two {
    bottom: 180px !important;
  }

  .image_card_two_btn_contact_us {
    margin-top: 1px !important;
  }
}

@media (max-width: 320px) {
  #image_two_two {
    display: none !important;
  }

  .image_card_two {
    bottom: 0px !important;
  }

  .image_card_two_title {
    color: #1b1b19 !important;
  }

  .image_card_two_para {
    color: #383838 !important;
  }

  #image_two_section {
    top: -310px !important;
  }

  .image_card_two_text {
    margin-top: 20px !important;
  }

  .image_card_two_btn_contact_us {
    margin-top: 20px !important;
  }
}

/*------------------ End of Purposes ------------------ */

/*------------------ Testimonials ------------------ */
#testimonials_topic {
  text-align: center;
  font-weight: bold;
  position: relative;
  bottom: 390px;
  padding-left: 15px;
  padding-right: 15px;
}

.wrapper {
  position: relative;
  background-color: #ffffff;
  width: 80vw;
  max-width: 41em;
  min-height: 20em;
  border-radius: 0.6em;
  transform: translate(-50%, -50%);
  left: 50%;
  bottom: 180px;
  box-shadow: 0 1.8em 3em rgba(1, 17, 39, 0.15);
  display: flex;
}

.testimonial-container {
  width: 85%;
  height: 100%;
  position: relative;
  margin: auto;
  padding: 1.8em 1.2em;
}

.wrapper button {
  font-size: 1.8em;
  height: 2.2em;
  width: 2.2em;
  background-color: #ffffff;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border: none;
  color: #0a69ed;
  box-shadow: 0 0 1em rgba(1, 17, 39, 0.25);
  cursor: pointer;
  border-radius: 50%;
  padding-bottom: 5px;
}

button#next {
  right: -5.1em;
  animation: move_right 1s infinite ease alternate;
}

button#prev {
  left: -5.1em;
  animation: move_left 1s infinite ease alternate;
}

.testimonial-container p {
  color: #8c8c90;
  text-align: center;
  font-size: 0.9em;
  line-height: 2em;
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif;
}

.testimonial-container img {
  display: block;
  margin: 1.8em auto 1.25em auto;
  border-radius: 50%;
  width: 4.4em;
}

.testimonial-container h3 {
  color: #2d3d67;
  font-size: 1em;
  text-align: center;
}

.testimonial-container h6 {
  color: #bcc4da;
  font-size: 0.9em;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-align: center;
}

/* Testimonials Breakpoint*/
@media (max-width: 1121px) {
  .wrapper {
    bottom: 160px !important;
  }
}

@media screen and (max-width: 999px) {
  button#next {
    right: -3.1em;
  }

  button#prev {
    left: -3.1em;
  }
}

@media (max-width: 900px) {
  .wrapper {
    bottom: 190px !important;
  }
}

@media screen and (max-width: 887px) {
  button#next {
    right: -1.1em;
  }

  button#prev {
    left: -1.1em;
  }
}

@media screen and (max-width: 790px) {
  .wrapper {
    bottom: 170px !important;
  }
}

@media screen and (max-width: 650px) {
  .wrapper {
    font-size: 15px;
  }
}

@media screen and (max-width: 618px) {
  #testimonials_topic {
    bottom: 300px !important;
  }

  .wrapper {
    bottom: 90px !important;
  }
}

@media screen and (max-width: 562px) {
  #testimonials_topic {
    bottom: 335px !important;
  }
}

@media screen and (max-width: 421px) {
  .wrapper {
    bottom: 60px !important;
  }
}

@media screen and (max-width: 320px) {
  #testimonials_topic {
    bottom: 300px !important;
  }

  .wrapper {
    bottom: 1px !important;
  }
}

/*------------------ End of Testimonials ------------------ */

/*------------------ Contact ------------------ */
.contact {
  position: relative;
  /* min-height: 100vh; */
  padding: 50px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url(../images/contact_bg.png);
  background-size: cover;
  bottom: 280px;
}

.contact .content {
  max-width: 800px;
  text-align: center;
}

.contact .content h2 {
  font-size: 36px;
  font-weight: 500;
  color: #fff;
}

.contact .content p {
  font-weight: 300;
  color: #fff;
}

#contact_email {
  word-break: break-all;
}

.containers {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.containers .contactInfo {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.containers .contactInfo .box {
  position: relative;
  padding: 20px 0;
  display: flex;
}

.containers .contactInfo .box .icon {
  min-width: 60px;
  height: 60px;
  background: #ffffff81;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 0 1em rgba(1, 17, 39, 0.5);
}

.containers .contactInfo .box .text {
  display: flex;
  margin-left: 20px;
  font-size: 16px;
  color: #fff;
  flex-direction: column;
  font-weight: 300;
}

.containers .contactInfo .box .text h3 {
  font-weight: 500;
  color: #ffffff;
}

.contactForm {
  width: 40%;
  padding: 40px;
  background: #ffffff81;
}

.contactForm h2 {
  font-size: 25px;
  color: #333;
  font-weight: 500;
}

.contactForm .inputBox {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contactForm .inputBox input,
.contactForm .inputBox textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
  background-color: transparent;
}

.contactForm .inputBox span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 14px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #000000;
}

.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span {
  color: #22675c;
  font-size: 12px;
  transform: translateY(-20px);
}

.contactForm .inputBox input[type="submit"] {
  width: 100px;
  background: #353535;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 15px;
  animation: move_right 1s infinite ease alternate;
}

#btnSendMail {
  width: 100px;
  background-color: #1b1b19;
  color: white;
  font-weight: bold;
  height: 42px;
  font-size: 15px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  outline: none;
  animation: move_right 1s infinite ease alternate;
}

/* Contact Breakpoint*/
@media screen and (max-width: 618px) {
  .contact {
    bottom: 211px;
  }
}

@media screen and (max-width: 991px) {
  .contact {
    padding: 50px;
  }
  .containers {
    flex-direction: column;
  }
  .containers .contactInfo {
    margin-bottom: 40px;
  }
  .containers .contactInfo,
  .contactForm {
    width: 100%;
  }
}

#main {
  height: 10px;
}

/*------------------ End of Contact ------------------ */

/*------------------ Footer ------------------ */
#footer {
  position: relative;
  bottom: 250px;
  background-color: #fff;
  text-align: center;
  /* border: 1px solid red; */
}

#footer_about_company_title {
  color: var(--charcoalGray2);
}

#footer_about_company_para {
  color: #383838;
}

#facebook,
#twitter,
#google-plus,
#linkedin,
#youtube {
  font-size: 23px;
  color: #1b1b19;
}

#footer_menu {
  text-align: center;
  gap: 15px;
  margin: auto;
  width: fit-content;
  height: fit-content;
}

#home_footer,
#services_footer,
#about_footer,
#announcement_footer,
#testimonials_footer,
#contact_footer {
  text-decoration: none;
  color: var(--lightGray);
  cursor: pointer;
  height: fit-content;
  margin-right: 5px;
  margin-left: 5px;
}

#footer_Copyright {
  color: #1b1b19;
}

/*------------------ End of Footer ------------------ */

/* Keyframes */
@keyframes move_right {
  from {
    transform: translateX(-5px);
  }
  to {
    transform: translateX(5px);
  }
}

@keyframes move_left {
  from {
    transform: translateX(5px);
  }
  to {
    transform: translateX(-5px);
  }
}

@keyframes move_up {
  from {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
