.my-container {
  width: 90%;
  margin: auto;
}

body {
  position: relative;
}
body .after-text {
  display: inline-block;
  position: relative;
  z-index: -1;
  color: #034b5b;
}
body .after-text::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -13rem;
  left: -25px;
  width: 4rem;
  height: 6.5rem;
  transform: skewY(45deg);
  background-color: currentColor;
}

header {
  /* Additional styles for smooth transition */
  /* Custom styles for the toggle button */
}
@media (max-width: 768px) {
  header .background-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
  }
  header .text-over {
    justify-content: end !important;
  }
}
header .background-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 90vh;
}
header .text-over {
  height: 100vh;
  padding-top: 24rem;
}
header .text-over button {
  background: transparent;
  border: 2px solid white;
  color: white;
  width: 5.5rem;
  height: 2.5rem;
}
header .text-over button:hover {
  background-color: white;
  color: black;
}
header nav {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 0 6px 7px rgba(0, 0, 0, 0.1);
}
header .nav-link {
  font-size: 24px;
  font-weight: 400;
}
header .my-container {
  gap: 8rem;
}
header .navbar-collapse {
  transition: all 0.3s ease;
}
header .navbar-toggler {
  border: none;
  padding: 10px;
  outline: none !important;
}
header .navbar-toggler:focus {
  box-shadow: none;
}
header .connection-icons {
  margin-bottom: 6px;
}
header .connection-icons a {
  text-decoration: none;
}
header .connection-icons .line-between-icons {
  background-color: #3f5072;
  width: 1px;
  height: 25px;
}
header .connection-icons .icons-width {
  width: 1.3rem;
}
header .header-dark {
  background-color: #1e325b;
  color: white;
}
header .links-page a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: -1;
}

.slider-item {
  flex: 0 0 25vw;
  padding: 0 10px;
  text-align: center;
  position: relative;
  aspect-ratio: 1/1; /* Makes the item container square */
}
.slider-item img {
  width: 100%;
  height: 100%; /* Changed from fixed 200px to 100% */
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1; /* Ensures image is square */
}
.slider-item h3 {
  position: absolute;
  top: 50%; /* Changed from 40% to 50% for better centering */
  left: 0;
  right: 0;
  color: #f1bc56;
  transform: translateY(-50%); /* Better vertical centering */
  padding: 0 10px; /* Added padding for text readability */
}

@media (max-width: 768px) {
  .slider-item {
    flex: 0 0 100vw;
  }
}
.explore-sec h3 {
  color: #1e325b;
}
.explore-sec .arrow-left {
  background-color: #f5f5f5;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.explore-sec .arrow-left img {
  width: 70%;
}
.explore-sec .arrow-left:hover {
  background: #d6d4d4;
}
.explore-sec .arrow-left:disabled {
  cursor: not-allowed;
}

/* Hide the section on small screens */
@media (max-width: 768px) {
  .background-container {
    display: none;
  }
}
.background-container {
  width: 100%;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.section {
  flex: 1;
  padding: 1rem;
  overflow: hidden;
  border-right: 1px solid #94918d;
  min-height: 40rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: end;
}
.section h4 {
  margin-bottom: 0.5rem;
  color: #f8b660;
}
.section h3 {
  margin-bottom: 0.5rem;
}
.section p {
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  opacity: 0;
}

.section:last-child {
  border: none;
}

.section:hover {
  opacity: 1;
  transform: translateY(0);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  justify-content: center;
}
.section:hover p {
  opacity: 1;
  transform: translateY(10%);
  transition: all 1.5s ease;
}

.fixed-arrow {
  background-color: #1e325b;
  width: 3rem;
  height: 3rem;
  align-items: center;
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 9999999;
  cursor: pointer;
}
.fixed-arrow img {
  width: 32px;
}

.right-fixed {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 10px;
  z-index: 999999;
  cursor: pointer;
}
.right-fixed .message-icon {
  background-color: #a886cd;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  align-items: center;
  display: flex;
  justify-content: center;
}
.right-fixed img {
  width: 27px;
  padding-top: 5px;
}
.right-fixed .contact-us {
  width: 7rem;
  background-color: white;
  text-align: center;
  height: 2rem;
  border-radius: 10px;
  margin-top: 18px;
  display: none;
}

.imgs-sec {
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.imgs-sec img {
  width: 13%;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
}

footer {
  margin-top: 6rem;
}
footer h4 {
  color: #1e325b;
}
footer .background-footer {
  background-color: #f5f5f5;
}
footer .contact-sec a {
  text-decoration: none;
  color: #1e325b;
}
footer .addres-logo .footer-logo img {
  width: 6rem;
}
footer .services-sec {
  display: flex;
  flex-direction: column;
}
footer .important-pages {
  display: flex;
  flex-direction: column;
}
footer .important-pages ul {
  list-style-type: none;
  padding: 0 !important;
}
footer .important-pages a {
  text-decoration: none;
  color: #1e325b;
}
footer .copyright .line-footer {
  background-color: #dcdcdc;
  width: 75%;
  height: 1px;
  display: block;
  margin: auto;
  margin-top: 6rem;
}
footer .copyright .copyright-text {
  margin: auto;
  width: 28%;
  font-size: 17px;
}
@media (max-width: 991px) {
  footer .copyright .copyright-text {
    flex-direction: column;
    display: flex;
  }
}
footer .copyright .copyright-text .color-Company {
  color: #1e325b;
}

.about-us h3 {
  color: #1e325b;
  font-size: 40px;
}
.about-us h4 {
  color: #1e325b;
  font-size: 35px;
}
.about-us .after-text {
  display: inline-block;
  position: relative;
  z-index: -1;
  color: #f5f5f5;
}
.about-us .after-text::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0rem;
  left: -10px;
  width: 4rem;
  height: 6.5rem;
  transform: skewY(45deg);
  background-color: currentColor;
}

@media (max-width: 768px) {
  .text-aboutus {
    margin-top: 4rem;
  }
}
.background-dark {
  background-color: #003b49;
  color: white;
  position: relative;
  z-index: -1;
  margin-bottom: 7rem;
}

.background-dark ::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 40px;
  left: 4px;
  width: 4rem;
  height: 6.5rem;
  transform: rotate(90deg);
  border-style: solid;
  border-width: 0 3rem 3rem 3rem;
  border-color: transparent transparent #fab760 transparent;
}

.background-dark ::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0px;
  left: 1px;
  width: 4rem;
  height: 6.5rem;
  transform: rotate(360deg);
  border-style: solid;
  border-width: 0 3rem 3.5rem 3.5rem;
  border-color: transparent transparent #fab760 transparent;
}

.background-img-about {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 55vh;
  color: white;
  position: relative;
}
.background-img-about h1 {
  position: absolute;
  top: 45%;
  left: 5%;
}

.mnue-fixed {
  position: fixed;
  z-index: 999999999;
}
.mnue-fixed nav {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.mnue-fixed nav .nav-link {
  font-size: 20px;
  color: white;
}
.mnue-fixed nav .my-container {
  gap: 8rem;
}

.mnue-fixed nav {
  transition: all 0.3s ease;
}

.mnue-fixed nav.scrolled {
  background-color: white;
  top: 0;
}

.mnue-fixed .nav-link {
  color: white;
  transition: color 0.3s ease;
}

.mnue-fixed .nav-link.scrolled {
  color: #333;
}

/* Add transition for the logo */
.mnue-fixed img {
  transition: all 0.3s ease;
}

.why-premium {
  margin-bottom: 6rem;
}
.why-premium .after-text {
  display: inline-block;
  position: relative;
  z-index: -1;
  color: #1e325b;
  margin-left: 2rem;
}
.why-premium .after-text::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0rem;
  left: -1.5rem;
  width: 4rem;
  height: 6.5rem;
  transform: skewY(45deg);
  background-color: #fab760;
}
.why-premium .circle-before {
  background-color: white;
  height: 12px;
  width: 12px;
  min-width: 12px;
  border-radius: 50%;
  border: 3px solid #ff854f;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sections {
  margin-top: 1rem;
}
.sections .after-text {
  display: inline-block;
  position: relative;
  z-index: -1;
  color: #1e325b;
  margin-left: 2rem;
  margin-bottom: 2.5rem;
}
.sections .after-text::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0rem;
  left: -2rem;
  width: 4rem;
  height: 6.5rem;
  transform: skewY(45deg);
  background-color: #fab760;
}
.sections .div-sections {
  width: 28%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}
.sections .number {
  background-color: #f5f5f5;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e325b;
}
@media (max-width: 768px) {
  .sections .row.my-container {
    flex-direction: column;
  }
  .sections .div-sections {
    width: 80%;
    height: auto;
    padding: 10px;
    text-align: center;
  }
  .sections .number {
    margin-bottom: 0.5rem;
  }
}

.our-team {
  background-color: #1d335b;
  color: white;
  position: relative;
}
.our-team .after-text {
  display: inline-block;
  position: relative;
  z-index: 99999;
}
.our-team .after-text::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 7rem;
  left: -21px;
  width: 4.5rem;
  height: 7.5rem;
  transform: skewY(45deg);
  background-color: #f1bc56;
}
.our-team h3 {
  color: white;
  padding-top: 10rem;
}

@media (max-width: 768px) {
  .our-team {
    margin-top: 8rem;
  }
  .our-team .response-p {
    margin-bottom: 12rem;
  }
  .our-team h3 {
    padding-top: 6rem;
  }
  .our-team .after-text::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 2rem;
    left: -21px;
    width: 4.5rem;
    height: 7.5rem;
    transform: skewY(45deg);
    background-color: #f1bc56;
  }
}
.team-img {
  position: relative;
  z-index: -1;
}
.team-img .car-img {
  position: absolute;
  bottom: -60px;
  right: 11px;
}
.team-img .after-text {
  display: inline-block;
  position: relative;
  z-index: 999999;
}
.team-img .after-text::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -33rem;
  left: 24px;
  width: 4rem;
  height: 6.5rem;
  transform: skewY(45deg);
  background-color: #034b5b;
}
.team-img .small-honty {
  display: inline-block;
  position: relative;
  z-index: 9999;
}
.team-img .small-honty::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 92px;
  bottom: 375px;
  left: -17px;
  border-left: 46px solid transparent;
  border-right: 46px solid transparent;
  border-top: 43px solid #fab760;
  transform: rotate(45deg);
}

.contact-with a {
  text-decoration: none;
  color: #1e325b;
}
.contact-with h3 {
  padding-bottom: 1rem;
}
.contact-with h3 img {
  width: 30px;
  padding-right: 5px;
}

@media (max-width: 768px) {
  .our-location {
    margin-top: 2rem;
  }
}
.our-location .circle-location {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #edeff2;
  padding-bottom: 4px;
}
.our-location .circle-location img {
  padding-bottom: 2px;
  width: 18px;
}
.our-location h3 {
  padding-bottom: 1.5rem;
}
.our-location h3 img {
  width: 25px;
  padding-right: 5px;
}

.social-media h3 {
  padding-bottom: 1.5rem;
}
.social-media h3 img {
  width: 25px;
  padding-right: 5px;
}
.social-media .youtube-icon {
  background-color: #cd201f;
  height: 3rem;
  width: 3rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-media .youtube-icon img {
  width: 20px;
}
.social-media .twitter-icon {
  background-color: #1da1f2;
  height: 3rem;
  width: 3rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-media .twitter-icon img {
  width: 20px;
}
.social-media .facebook-icon {
  background-color: #3b5998;
  height: 3rem;
  width: 3rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-media .facebook-icon img {
  width: 20px;
}

@media (max-width: 768px) {
  .form-contact {
    margin-top: 5rem;
  }
}
.sec-map {
  margin-top: 7rem;
}

.form-contact {
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}
.form-contact input {
  height: 48px;
}
.form-contact textarea {
  height: 130px;
}
.form-contact .form-label img {
  width: 8px;
  padding-bottom: 8px;
  padding-left: 2px;
}
.form-contact .form-btn {
  padding-top: 30px;
  padding-bottom: 50px;
}
.form-contact .form-btn button {
  background-color: #066aab;
  border: none;
  border-radius: 3px;
  width: 5.5rem;
  color: white;
  height: 2.5rem;
}/*# sourceMappingURL=main.css.map */