h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}
.header {
  display: flex;
  align-items: center;
  font-family: Heebo-Regular;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  height: 79px;
  background-color: #fff;
  position: fixed;
  z-index: 11;
  border-bottom: 1px solid #bdb9b969;
  top: 0;
}
.mob-nav, .sidebar {
  display: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease;
}
.nav {
  display: flex;
  align-items: center;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease;
}
.hide-nav {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
}
.nav-section1 {
  width: 43%;
}
.nav-section1 .gp-logo {
  max-width: 100%;
  width: 190px;
  height: 40px;
  margin-top: 8px;
}
.nav-section2{
  display: flex;
  align-items: center;
  justify-content: start;
  font-family: Heebo-Medium;
  font-size: 16px;
  font-weight: 500;
  gap: 29px;
}
.nav-section3 {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 25px;
}
.nav-section-right {
  display: flex;
  align-items: center;
  gap: 80px;
}
.nav a {
  font-family: Heebo-Medium;
  color: #333;
  text-decoration: none;
  transition: color 0.5s linear, background-color 0.5s linear;
  -webkit-transition: color 0.5s linear, background-color 0.5s linear;
}
.nav a:hover {
  text-decoration: underline;
  color: #424242;
  font-weight: bolder;
}
.nav span:hover {
  text-decoration: underline;
  color: #424242;
  font-weight: bolder;
  cursor: pointer;
}
.telph {
  font-size: 18px;
  font-weight: normal;
  display: flex;
  align-items: center;
  color: #ff9000 !important;
  gap: 4px;
}
.header-free-quotes {
  display: flex;
  color: #fff !important;
  font-weight: normal;
  border-radius: 23px;
  box-shadow: inset 0 -4px 8px 0 rgb(0 0 0 / 24%);
  background-image: linear-gradient(to top, #0a3755, #1b608e 50%);
  width: 170px;
  height: 46px;
  background-color: #0a3755;
  align-items: center;
  justify-content: center;
}
.nav-section3 .arrow_header {
  height: 12px;
  padding-left: 6px;
  position: relative;
  top: auto;
  transition: 0.5s;
}
.header-free-quotes:hover {
  text-decoration: none !important;
  background-image: linear-gradient(to top, #0a3755, #197fc3 100%);
}
.header-free-quotes:hover .arrow_header {
  padding-left: 10px;
  transition: padding-left 0.5s;
}

/* Dropdown styles */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
  background-color: #f1f1f1;
}
.dropdown:hover .dropdown-content {
  max-height: 85vh;
  overflow-y: auto;
}
.dropdown:hover a {
  color: #424242;
}
.mob-nav-scroll {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
}
.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease;
}
.scroll-nav-left {
  font-family: Heebo-Medium;
  font-size: 18px;
  line-height: 15px;
  width: 385px;
}
.head-arrow-scroll {
  position: relative;
  top: 4px;
  width: 30px;
}
.scroll-nav-right {
  display: flex;
  align-items: center;
  justify-content: start;
}
.scroll-nav-right a {
  display: flex;
  width: 138px;
  height: 46px;
  border-radius: 23px;
  box-shadow: inset 0 -4px 8px 0 rgb(0 0 0 / 24%);
  background-image: linear-gradient(to top, #ff6f00, #ff9b00 60%);
  font-family: Heebo-Medium;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.scroll-nav-right .arrow-price {
  padding-left: 5px;
  position: relative;
  transition: 0.5s;
  height: 13px;
}
.scroll-nav-right a:hover {
  background: #f67106;
}
.scroll-nav-right a:hover .arrow-price {
  padding-left: 15px;
  transition: padding-left 0.5s;
}

@media screen and (max-width: 1365px) {
  .header {
    height: 75px;
  }
  .nav {
    max-width: 1094px;
  }
  .nav-section1 .gp-logo {
    width: 178px;
  }
  .nav-section2 {
    font-size: 15px;
  }
  .nav-section-right {
    gap: 72px;
  }
  .telph-logo {
    width: 13px;
  }
  .telph {
    font-size: 16px;
  }
  .header-free-quotes {
    width: 162px;
    height: 44px;
    font-size: 15px;
  }
  .nav-section3 {
    gap: 34px;
  }
  .scroll-nav-left {
    font-size: 17px;
    line-height: 21px;
    width: 364px;
  }
  .scroll-nav-right a {
    width: 130px;
    height: 44px;
  }
}

@media screen and (max-width: 1279px) {
  .header {
    height: 64px;
  }
  .nav {
    max-width: 940px;
  }
  .nav-section1 .gp-logo {
    width: 152px;
    height: 34px;
  }
  .nav-section-right {
    gap: 64px;
  }
  .nav-section2 {
    font-size: 13px;
    gap: 23px;
  }
  .nav-section3 {
    gap: 22px;
  }
  .telph {
    font-size: 14px;
  }
  .telph-logo {
    width: 11px;
    margin-top: -4px;
  }
  .header-free-quotes {
    width: 142px;
    height: 40px;
    font-size: 12px;
  }
  .nav-section3 .arrow_header {
    height: 10px;
    padding-left: 4px;
  }
  .scroll-nav-left {
    font-size: 15px;
    width: 320px;
  }
  .head-arrow-scroll {
    width: 26px;
  }
  .scroll-nav-right a {
    width: 110px;
    height: 36px;
    font-size: 14px;
  }
  .scroll-nav-right .arrow-price {
    padding-left: 4px;
    height: 10px;
  }
}

@media screen and (max-width: 1099px) {
  .header {
    height: 60px;
  }
  .nav {
    max-width: 874px;
  }
  .nav-section1 .gp-logo {
    width: 142px;
    height: 32px;
    margin-top: 7px;
  }
  .nav-section-right {
    gap: 55px;
  }
  .nav-section2 {
    font-size: 12px;
    gap: 21px;
  }
  .telph {
    gap: 3px;
    font-size: 13.5px;
  }
  .telph-logo {
    width: 10px;
    margin-top: -1px;
  }
  .header-free-quotes {
    width: 130px;
    height: 34px;
    font-size: 12px;
  }  
  .scroll-nav-left {
    font-size: 13.5px;
    width: 290px;
  }
  .scroll-nav-right a {
    width: 104px;
    height: 34px;
    font-size: 13px;
  }
}

@media screen and (max-width: 1023px) {
  .header {
    height: 45px;
  }
  .nav {
    max-width: 658px;
  }
  .nav-section1 {
    width: 42%;
  }
  .nav-section1 .gp-logo {
    width: 108px;
    height: 24px;
  }
  .nav-section-right {
    gap: 42px;
  }
  .nav-section2 {
    font-size: 9px;
    gap: 15px;
  }
  .dropdown-content {
    min-width: 200px;
  }
  .dropdown-content a {
    padding: 6px 12px;
  }
  .nav-section3 {
    gap: 15px;
  }
  .telph {
    gap: 2px;
    font-size: 10px;
  }
  .telph-logo {
    width: 7px;
    margin-top: -1px;
  }
  .header-free-quotes {
    width: 96px;
    height: 26px;
    font-size: 9px;
  }
  .nav-section3 .arrow_header {
    height: 8px;
    padding-left: 3px;
    top: 0;
  }
  .scroll-nav-left {
    font-size: 10px;
    width: 218px;
  }
  .head-arrow-scroll {
    width: 22px;
  }
  .scroll-nav-right a {
    width: 78px;
    height: 26px;
    font-size: 10px;
  }
  .scroll-nav-right .arrow-price {
    padding-left: 3px;
    height: 9px;
  }
}

@media screen and (max-width: 767px) {
  .nav-section1 {
    width: 43%;
  }
  .header {
    height: 66px;      
  }
  .nav {
    display: none;
  }
  .mob-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
  }
  .mob-nav-section1 {
    padding-left: 28px;
  }
  .gp-logo {
    width: 150px;
    height: 22px;
    margin-top: 8px;
  }
  .mob-nav-sec2 {
    padding-right: 30px;
  }
  .mob-call-us {
    display: flex;
    align-items: center;
    justify-content: start;
    text-decoration: none;
  }
  .mob-call-us a {
    text-decoration: none;
  }
  .call-us {
    font-family: Heebo-Medium;
    font-size: 18px;
    line-height: 24px;
    color: #ff9000;
    margin: 0 16px 0 0;
  } 
  .call-us img {
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.2);  
    border-radius: 50%;
    width: 36px !important;
    height: 36px !important;
    margin-left: 4px;
  }
  .mob-nav-scroll {
    justify-content: center;
  }
  .scroll-nav-left {
    font-size: 22px;
    padding-left: 40px;
    width: 480px;
    line-height: 22px;
  }
  .head-arrow-scroll {
    top: 10px;
    width: 46px;
  }
  .scroll-nav-right {
    padding-right: 40px;
  }
  .scroll-nav-right a {
    width: 150px;
    height: 44px;
    font-size: 18px;
  }
  .scroll-nav-right .arrow-price {
    padding-left: 4px;
    height: 14px;
    top: 1px;
  }
  .sidebar {
    display: block;
    position: fixed;
    top: 66px;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #effeee;
    z-index: 11;
    transition: left 0.4s;
    overflow-y: auto;
    padding: 14px 20px 20px 28px;
    color: #fff;
  }
  .sidebar.active {
    left: 0;
  }
  .close-icon {
    padding: 0 8px;
  }
  .sidebar-heading {
    font-family: Heebo-Bold;
    font-size: 25px;
    line-height: 50px;
    color: #0a3755;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
  }
  .sidebar-arrow {
    position: relative;
    right: 66px;
    transform: translateY(-50%);
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
    transition: transform 0.3s ease;
  }
  .down {
    transform: translateY(-50%) rotate(45deg);
    margin-top: 8px;
  }
  .up {
    transform: translateY(-50%) rotate(-135deg);
    margin-top: 16px;
  }
  .sidebar-list-items {
    font-size: 22px;
    line-height: 52px;
    color: #0a3755;
    margin: 0;
    padding: 0 0 0 12px;
    list-style: none;
    display: none;
  }
  .sidebar-list-items a {
    text-decoration: none;
    color: #0a3755;
  }
}

@media screen and (max-width: 719px) {
  .scroll-nav-left {
    font-size: 17px;
    padding-left: 22px;
    width: 378px;
    line-height: 22px;
  }
  .scroll-nav-right {
    padding-right: 22px;
  }
  .head-arrow-scroll {
    top: 8px;
    width: 40px;
  }
  .scroll-nav-right a {
    width: 120px;
    height: 40px;
    font-size: 16px;
  }
}

@media screen and (max-width: 539px) {
  .mob-nav-section1 {
    padding-left: 20px;
  }
  .gp-logo {
    width: 135px;
    height: 20px;
    margin-top: 7px;
  }
  .mob-nav-sec2 {
    padding-right: 21px;
  }
  .call-us {
    font-size: 16px;
    line-height: 24px;
    margin: 0 14px 0 0;
  } 
  .call-us img {
    width: 32px !important;
    height: 32px !important;
    margin-left: 2px;
  }
  .mob-nav-scroll {
    justify-content: space-between;
  }
  .scroll-nav-left {
    font-size: 20px;
    padding-left: 22px;
    width: 228px;
    line-height: 18px;
  }
  .head-arrow-scroll {
    top: 8px;
    width: 43px;
  }
  .scroll-nav-right {
    padding-right: 22px;
  }
  .scroll-nav-right a {
    width: 138px;
    height: 48px;
    font-size: 17px;
  }
  .sidebar {
    padding: 10px 20px 20px 20px;
  }
  .close-icon {
    padding: 0 7px;
  }
  .sidebar-arrow {
    right: 40px;
  }
  .sidebar-list-items {
    padding: 0 0 0 9px;
  }
}

@media screen and (max-width: 429px) {

}

@media screen and (max-width: 427px) {
  .scroll-nav-left {
    font-size: 19px;
    padding-left: 20px;
    line-height: 16px;
  }
  .scroll-nav-right a {
    width: 134px;
    height: 46px;
    font-size: 17px;
  }
}

@media screen and (max-width: 409px) {
  .scroll-nav-left {
    font-size: 18px;
    line-height: 14px;
    width: 224px;
  }
  .scroll-nav-right a {
    width: 130px;
  }
  .sidebar-heading {
    font-size: 24px;
  }
  .down {
    margin-top: 6px;
  }
  .up {
    margin-top: 18px;
  }
}

@media screen and (max-width: 399px) {
  .scroll-nav-left {
    font-size: 18px;
    padding-left: 20px;
    width: 215px;
  }
  .scroll-nav-right .arrow-price {
    padding-left: 4px;
    height: 13px;
    top: 1px;
  }
}

@media screen and (max-width: 389px) {
  .header {
    height: 61px;
  }
  .mob-nav-section1 {
    padding-left: 18px;
  }
  .gp-logo {
    width: 130px;
  }
  .mob-nav-sec2 {
    padding-right: 20px;
  }
  .call-us {
    margin: 0px 12px 0 0;
  }
  .scroll-nav-left {
    font-size: 17px;
    line-height: 12px;
    width: 200px;
  }
  .scroll-nav-right a {
    width: 124px;
    height: 44px;
  }
  .scroll-nav-right .arrow-price {
    top: 0px;
  }
  .sidebar {
    top: 61px;
  }
}

@media screen and (max-width: 374px) {
  .gp-logo {
    width: 128px;
  }
  .mob-nav-sec2 {
    padding-right: 18px;
  }
  .call-us img {
    width: 30px !important;
    height: 30px !important;
  }
  .call-us {
    font-size: 15px;
  }
  .scroll-nav-left {
    font-size: 16px;
    width: 190px;
    line-height: 8px;
  }
  .scroll-nav-right {
    padding-right: 20px;
  }
  .scroll-nav-right a {
    width: 118px;
    font-size: 15px;
  }
  .scroll-nav-right .arrow-price {
    height: 12px;
    top: 1px;
  }
  .sidebar-heading {
    font-size: 23px;
  }
  .sidebar-list-items {
    font-size: 21px;
    line-height: 48px;
  }
}

@media screen and (max-width: 364px) {
  .header {
    height: 54px;
  }
  .gp-logo {
    width: 110px;
  }
  .mob-nav-sec2 {
    padding-right: 17px;
  }
  .ham-menue {
    height: 20px;
    width: 26px;
  }
  .call-us img {
    width: 26px !important;
    height: 26px !important;
  }
  .call-us {
    font-size: 14px;
  }
  .scroll-nav-left {
    font-size: 15px;
    width: 172px;
    line-height: 12px;
  }
  .head-arrow-scroll {
    top: 6px;
    width: 34px;
  }
  .scroll-nav-right a {
    width: 102px;
    font-size: 12px;
    height: 36px;
  }
  .scroll-nav-right .arrow-price {
    height: 10px;
  }
  .sidebar {
    top: 54px;
  }
  .close-icon {
    width: 15px;
  }
  .sidebar-heading {
    font-size: 20px;
    line-height: 46px;
  }
  .sidebar-arrow {
    padding: 4px;
  }
  .sidebar-list-items {
    font-size: 18px;
    line-height: 42px;
  }
}
