/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header1-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ... Montserrat 
  --body-font: "Helvetica", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ========== 
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========
  --z-tooltip: 10;
  --z-fixed: 100;*/
}

/*========== Responsive typography ==========
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/

/* CSS */
.button-22 {
  align-items: center;
  appearance: button;
  background-color: #0276FF;
  border-radius: 8px;
  border-style: none;
  box-shadow: rgba(255, 255, 255, 0.26) 0 1px 2px inset;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  font-family: "RM Neue",sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  padding: 10px 21px;
  text-align: center;
  text-transform: none;
  transition: color .13s ease-in-out,background .13s ease-in-out,opacity .13s ease-in-out,box-shadow .13s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-22:active {
  background-color: #006AE8;
}

.button-22:hover {
  background-color: #1C84FF;
}

/*=============== Topbar===============*/
.topbar {
position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f1f1f1;
    z-index: 100;
      transition: top 1s;

}

.topbar_container {
  max-width: 1120px;
  margin-inline: 1.5rem;
  padding-top: 10px;
  
}

.support-contact-info{
    font-size:16px;
    font-weight: 500;
    color: #000;
}

.phone{
    margin-right: 50px;
}

.social{
    margin-right: 20px;
}
.support-bar-area .support-contact-info i {
    color: #25d06f;
    font-size: 16px;
    margin-right: 4px;
}
.support-bar-area i {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    
}
.support-bar-area .address {
    margin-right: 25px;
}
.support-bar-area ul.social-links {
    position: relative;
    display: inline-block;
}
.support-bar-area ul.social-links::after {
    position: absolute;
    content: "|";
    display: inline-block;
    right: 0;
    top: 0;
}
.support-bar-area ul.social-links li {
    display: inline-block;
    margin-right: 15px;
    position: relative;
    z-index: 1;
}
.support-bar-area ul.social-links li a {
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.support-bar-area ul.social-links li a:hover {
    color: #25d06f;
}
.support-bar-area ul.social-links li:last-child {
    margin-right: 12px;
}

.sticky-navbar {
    padding: 4px 15% 4px 15%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #0a3041;
    border: none;
    -webkit-animation: navFadeIn 1s;
    animation: navFadeIn 1s;
}


/*=============== REUSABLE CSS CLASSES ===============*/
/*=============== HEADER ===============*/
.header1 {
  position: fixed;
  margin-bottom: 100px;
  top: 0px;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px hsla(220, 32%, 8%, .3);
  z-index: 1001;
  transition: top 1s; /* Add smooth transition effect */

}

.container1 {
  max-width: 1120px;
  margin-inline: 1.5rem;
  
}

.fixed {
position: fixed;
top: 0;
left: 0;
width: 100%;
}


/*=============== NAV ===============*/
.topbar_nav {
  height: 40px;
}

.nav1 {
  height: var(--header1-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: #212121;
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: 600;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: #fff;
    padding-top: 1rem;
  }
}

.nav__link {
  color: #212121;
  background-color: #fff;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
  font-family: "Helvetica", sans-serif;
  
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  padding: 12px 14px 12px 14px;
  color: #212121;
  background-color: #fff;
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-size: 15px;
  font-weight: 600;
  font-family: "Helvetica", sans-serif;
  transition: background-color .3s;
}

.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
  background-color: #f1f1f1;
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
  width: 270px;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
  font-size: 16px;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: #fff;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .topbar_container {
    margin-inline: 1rem;
  }
  
  .container1 {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
 .topbar_container {
    margin-inline: auto;
  }

  .container1 {
    margin-inline: auto;
  }

  .nav1 {
    height: calc(var(--header1-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 2rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}