/* Topbar Srart */

#topbar {
  background: var(--secondary-color);
  font-family: var(--primary-font);
  padding: 7px 0;
}

.topbar_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar_wrapper .location,
.topbar_wrapper .social_wrapper,
.topbar_wrapper .social_wrapper .time,
.topbar_wrapper .contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar_wrapper .location,
.topbar_wrapper .social_wrapper,
.topbar_wrapper .social_wrapper .time,
.topbar_wrapper .contact:not(:last-child)::before {
  content: '|';
  top: 0;
  bottom: 0;
  margin: 0 10px;

}

.topbar_wrapper .social_wrapper p,
.topbar_wrapper .location p,
.topbar_wrapper .contact p {
  margin: 0;
  padding-left: 10px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--accent-2);
  font-weight: 400;
  transition: 0.3s;
}

.topbar_wrapper .contact p:hover {
  color: var(--accent-1);
}

.social_wrapper p:hover {
  color: var(--accent-1);
}

.topbar_wrapper .contact a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar_wrapper .contact a:first-child {
  margin-right: 30px;
}

.topbar_wrapper .social_wrapper span,
.topbar_wrapper .contact span {
  color: var(--accent-2);
  margin: 0px 10px;
}

.topbar_wrapper .contact i {
  color: var(--primary-color);
  font-size: 22px;
  margin-right: 5px;
}

.topbar_wrapper .social_wrapper i {
  color: var(--primary-color);
  font-size: 22px;
}

.topbar_wrapper .social_wrapper .social {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.topbar_wrapper .social_wrapper .social i {
  color: var(--white);
  font-size: 20px;
  line-height: 25px;
  transition: 0.4s;
}

.topbar_wrapper .social_wrapper .social a {
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--primary-color);
  transition: 0.4s;
}

.topbar_wrapper .social_wrapper .social a:hover {
  background: var(--white);
}

.topbar_wrapper .social_wrapper .social a:hover i {
  color: var(--secondary-color);
}

.topbar_wrapper .social_wrapper .time i {
  margin-right: 5px;
}

@media screen and (max-width: 992px) {
  #topbar {
    display: none;
  }
}

/* Top bar End */

/* Navbar Start */

#header a,
#header button {
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  box-shadow: none;
}

#header .brand {
  font-family: inherit;
  font-size: 25.6px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--color-pink-500);
}

#header {
  position: sticky;
  background: var(--white);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  top: 0;
  z-index: 100;
}

:root {
  --header-offset: 0px;
}

html {
  scroll-padding-top: var(--header-offset);
}

[id] {
  scroll-margin-top: var(--header-offset);
}

#header .navbar {
  padding: 20px 0px;
  font-family: var(--primary-font);
}

#header .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  margin: 0 auto;
  padding: 10px 0px;
}

#header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
  row-gap: 32px;
  width: 100%;
  margin: 0 auto;
  padding: 3px 0px;
}

#header .wrapper .logo img {
  width: 130px;
}

#header .contact_us_btn_1 {
  display: none;
}

#header .contact_us_btn_1 {
  font-family: var(--secondary-font);
  background-color: var(--primary-color);
  font-size: 18px;
  font-weight: 400;
  padding: 14.5px 46px;
  border-radius: 8px;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: color 0.5s;
  border: none;
}

#header .contact_us_btn {
  font-family: var(--secondary-font);
  display: inline-block;
  background-color: var(--primary-color);
  font-size: 18px;
  font-weight: 400;
  padding: 14.5px 35px;
  border-radius: 8px;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: color 0.5s;
  border: none;
}

#header .contact_us_btn_1 span,
#header .contact_us_btn span {
  font-family: var(--secondary-font);
  z-index: 999;
  color: var(--white);
}

#header .contact_us_btn_1::before,
#header .contact_us_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  border: none;
  background: var(--secondary-color);
  transition: transform 0.5s ease;
  z-index: 0;
}

#header .contact_us_btn_1:hover::before,
#header .contact_us_btn:hover::before {
  transform: translateX(100%);
}

#header .contact_us_btn_1:hover,
#header .contact_us_btn:hover {
  color: var(--secondary-color);
}

#header .contact_us_btn_1 span,
#header .contact_us_btn span {
  position: relative;
  z-index: 1;
}

#header .switcher__mobile {
  display: none;
}

@media screen and (max-width: 992px) {
  #header .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    display: block;
    z-index: 100;
    opacity: 0;
    overflow-y: auto;
    overflow-x: hidden;
    visibility: hidden;
    background-color: var(--white);
    pointer-events: none;
    transform: translateX(-118%);
    transition:
      transform 1s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 1s ease,
      visibility 1s ease;
  }
  #header .navbar.active {
    opacity: 1;
    visibility: visible;
    background: var(--white);
    transform: translateX(0);
    pointer-events: auto;
  }

  #header .navbar.is-closing {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: translateX(-118%);
  }

  #header .switcher__mobile {
    display: block;
    padding-left: 20px;
    padding-top: 10px;
    width: fit-content;
  }

  #header #menu > .menu-item,
  #header .switcher__mobile,
  #header .contact_us_btn_1 {
    opacity: 0;
    transform: translateX(-84px);
    filter: blur(8px);
    transition:
      transform 0.78s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.62s ease,
      filter 0.62s ease;
    transition-delay: var(--menu-item-delay, 0ms);
    will-change: transform, opacity, filter;
  }

  #header .contact_us_btn_1 {
    transition:
      transform 0.78s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.62s ease,
      filter 0.62s ease !important;
  }

  #header .navbar.active.items-visible #menu > .menu-item,
  #header .navbar.active.items-visible .switcher__mobile,
  #header .navbar.active.items-visible .contact_us_btn_1 {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }

  #header .navbar.is-preparing #menu > .menu-item,
  #header .navbar.is-preparing .switcher__mobile,
  #header .navbar.is-preparing .contact_us_btn_1 {
    opacity: 0;
    transform: translateX(-84px);
    filter: blur(8px);
    transition: none;
  }

  #header .navbar.is-closing #menu > .menu-item,
  #header .navbar.is-closing .switcher__mobile,
  #header .navbar.is-closing .contact_us_btn_1 {
    opacity: 0;
    transform: translateX(84px);
    filter: blur(8px);
  }


}

#header .navbar span {
  font-family: var(--primary-font);
}

#header .menu-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 24px;
}

#header .discover_link {
  column-gap: 4px;
  font-family: inherit;
  font-size: 18px;
  font-family: var(--secondary-font);
  font-weight: 500;
  line-height: inherit;
  padding: 0;
}

#header .menu-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 4px;
  font-family: inherit;
  font-size: 18px;
  font-family: var(--secondary-font);
  font-weight: 500;
  line-height: inherit;
  padding: 0;
  cursor: pointer;
  color: var(--secondary-color);
  transition: all 0.4s ease-in-out;
  white-space: nowrap;
}

#header .menu-item .active {
  position: relative;
  color: var(--primary-color);
}

#header .menu-item .active::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transition: 0.4s;
}

#header .menu-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  transition: 0.4s;
}

#header .menu-link:hover::after {
  width: 100%;
}

#header .menu-item.active .menu-link::after {
  width: 100%;
}

#header .menu-link {
  transition: 0.4s;
}

#header .discover_link {
  transition: 0.4s;
}

#header .discover_link .dropdown_icon {
  transition: 0.4s;
  margin-left: 5px;
}

#header .discover_link:hover {
  color: var(--primary-color);
}

#header .menu-link > .dropdown_icon {
  font-size: 18px;
  color: var(--secondary-color);
  transition: 0.4s;
}

#header .menu-link:hover > .dropdown_icon {
  rotate: 180deg;
  color: var(--primary-color);
}

#header .menu-link:hover {
  outline: none;
  color: var(--primary-color);
}

@media only screen and (min-width: 992px) {
  #header .menu-dropdown:hover > .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 3;
    transition: all 0.4s ease-in-out;
}
}
@media only screen and (max-width: 992px) {
  #header .wrapper {
    padding: 5px 0;
  }

  #header .menu-link,
  #header .discover_link {
    margin-bottom: 10px;
  }
  #header .discover_link {
    display: block;
    margin-left: 20px;
  }

  #header .menu-dropdown.active {
    color: var(--primary-color) !important;
  }

  #header .menu {
    width: 100%;
    height: auto;
    padding: 16px 0;
  }

  #header .menu-item {
    display: block;
    margin: 0 auto;
  }

  #header .menu-link::after {
    display: none !important;
  }

  #header .menu-link span {
    position: relative;
  }

  #header .menu-link span::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: 0.4s;
  }

  #header .menu-link:hover span:after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--primary-color);
  }

  #header .menu-link {
    justify-content: space-between;
    padding: 8px 20px;
    width: fit-content;
  }

  #header .menu-link {
    transition: color 0.4s ease;
}

  #header .menu-link:hover {
    color: var(--primary-color) !important;
  }

 

  #header .submenu-link {
    display: block;
    color: var(--secondary-color);
    transition: color 0.4s ease;
}
}

#header .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 208px;
  height: auto;
  padding-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(28px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  color: var(--secondary-color);
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
}

#header .submenu-item {
  display: block;
  margin: 0px 0px;
  transition: all 0.4s ease-in-out;
  color: var(--secondary-color);
  padding: 8px 10px;
}

@media only screen and (max-width: 992px) {
  #header .submenu-item {
    padding: 8px 10px 8px 40px;
    margin: 5px 0px;
  }
}

#header .submenu-link {
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  cursor: pointer;
  color: var(--color-black-500);
}

#header .menu-item .submenu .active {
  color: var(--primary-color);
}

#header .menu-item .submenu .active::after {
  display: none;
}

#header .menu-item .submenu li:hover {
  background: var(--accent-4);
  color: var(--secondary-color);
  border: none;
}

@media only screen and (max-width: 992px) {
  #header .submenu {
    position: relative;
    top: 0px;
    left: 40px;
    max-width: 460px;
    width: 100%;
    max-height: 0;
    padding: 0px;
    border: none;
    outline: none;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    transform: translateY(0px);
    box-shadow: none;
    background: transparent;
  }
  #header .submenu .submenu-item {
    border-radius: 6px;
  }
  #header .menu-item.active .dropdown_icon {
    rotate: 180deg;
  }
}

#header .burger {
  position: relative;
  display: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 25.6px;
  height: 18.4px;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}
#header .burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.1px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 1rem;
  background: var(--secondary-color);
}
#header .burger-line:nth-child(1) {
  top: 0px;
}
#header .burger-line:nth-child(2) {
  top: 8px;
  width: 70%;
}
#header .burger-line:nth-child(3) {
  top: 16px;
}

/* Close Icon */
.close-icon {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  z-index: 10;
}

.close-icon .close-line {
  position: absolute;
  background-color: #333;
  width: 100%;
  height: 3px;
  top: 50%;
  left: 0;
  transform-origin: center;
}

.close-icon .close-line:first-child {
  transform: rotate(45deg);
}

.close-icon .close-line:last-child {
  transform: rotate(-45deg);
}

@media only screen and (max-width: 992px) {
  #header .burger {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

#header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  background-color: rgba(0, 0, 0, 0.65);
}
@media only screen and (max-width: 992px) {
  #header .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .close-icon {
    display: block;
  }

  #header .header-content__buttons {
    display: none;
  }

  #header .contact_us_btn_1 {
    margin: 50px 0px 10px 20px;
    display: inline-block;
    border: 1px solid var(--secondary-color);
    padding: 10px 30px;
    border-radius: 8px;
    background: var(--primary-color);
    border: none;
    transition: 0.4s;
  }

  #header .contact_us_btn_1:hover {
    background: var(--secondary-color);
  }

  #header .contact_us_btn_1 a {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
  }
}

.header-content__buttons {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Navbar End */

/* Footer Start */
#footer {
  margin-top: 70px;
  background: var(--secondary-color);
  font-family: var(--primary-font);
}

.footer_wrapper {
  border-bottom: 1px solid var(--accent-1);
  padding: 70px 0px;
  margin: 0px 12px;
}

.footer_wrapper i {
  font-size: 21px;
  margin-right: 10px;
  color: var(--primary-color);
}

.footer_wrapper .row {
  display: flex;
  justify-content: space-between !important;
}

.footer_logo {
  display: block;
  width: 160px;
  padding: 5px;
  border-radius: 10px;
  background-color: #FFF;
}

.footer_logo img {
  width: 100%;
}

.footer_logo_text p {
  max-width: 350px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--accent-2);
}

.footer_content_heading h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  display: inline-block;
}

.footer_content ul li {
  line-height: 35px;
}

.footer_content ul li a {
  flex-wrap: wrap;
  color: var(--accent-2);
  font-family: var(--secondary-font);
}

.footer_content_menu ul li {
  font-family: var(--secondary-font);
  position: relative;
}

.footer_content_menu ul li a {
  color: inherit;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.4s;
  position: relative;
  word-break: break-word;
}

.footer_content_menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.4s ease;
}

.footer_content_menu ul li:hover a {
  color: var(--primary-color);
}

.footer_content_menu ul li:hover a::after {
  width: 100%;
}

.footer_content_menu ul li a {
  font-size: 18px;
  color: var(--accent-2);
  font-weight: 500;
  transition: 0.5s;
}

.footer_content_time .site_day_time {
  font-family: var(--secondary-font);
}

.footer_content_time .site_map {
  font-family: var(--primary-font);
}

.footer_wrapper_item .social_contact h3 {
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
  margin-top: 30px;
  font-family: var(--secondary-font);
}

.footer_wrapper_item .social_icon {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer_wrapper_item .social_icon i {
  color: var(--white);
  margin: 0px;
  transition: 0.4s;
}

.footer_wrapper_item .social_icon a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  transition: 0.5s;
}

.footer_wrapper_item .social_icon a:hover {
  background: var(--white);
}

.footer_wrapper_item .social_icon a:hover i {
  color: var(--secondary-color);
}

.footer_wrapper_item .site_map {
  font-size: 22px;
  color: var(--white);
}

.footer_content_address a {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--accent-2);
  font-weight: 500;
  font-family: var(--secondary-font);
  transition: 0.5s;
}

.footer_content_address a .footer_contract_number {
  transition: 0.5s;
  font-family: var(--secondary-font);
}

.footer_content_address a .footer_contract_address {
  font-family: var(--secondary-font);
  transition: 0.5s;
}

.footer_content_address a .footer_contract_number:hover {
  color: var(--primary-color);
}

.footer_content_address a .footer_contract_address:hover {
  color: var(--primary-color);
}

@media screen and (max-width: 1200px) {
  .footer_logo_text p {
    max-width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .footer_wrapper {
    padding: 40px 0;
  }

  .footer_wrapper_item .social_icon {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .footer_logo {
    width: 130px;
  }

  .footer_content_heading h2 {
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .footer_wrapper_item .social_icon {
    margin-bottom: 0px;
  }
}

/* Footer End */

/* Copy Right Start */
#copy_right {
  font-family: var(--primary-font);
  background: var(--secondary-color);
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
}

.copy_right_heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copy_right_heading p {
  font-size: 16px;
  text-align: left;
  margin: 0px;
  font-weight: 500;
  color: var(--accent-2);
}

.copy_right_heading p span a {
  color: var(--primary-color);
  font-weight: 600;
}

.copy_right_heading p a {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
}

.copy_right_heading p a:hover {
  text-decoration: underline !important;
}

@media screen and (max-width: 768px) {
  .copy_right_heading {
    display: block;
  }

  .copy_right_heading p {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
  }
}

/* Copy Right End */

@media screen and (max-width: 768px) {
  #header .wrapper .logo img {
    width: 100px;
  }
}
