:root {
    --body-bg: #ffffff;
    --theme-color: #ffd800;
    --secondary-color: #0c7735;
    --body-color: #555555;
    --title-color: #000000;
    --smoke-color: #f1f5f4;
    --light-color: #f8f9fa;
    --black-color: #000000;
    --white-color: #ffffff;
    --border-color: #bfbfbf;
    --accent-color: #F9D67B;
    --accent-secondary-color: #014E4E;
    --blue-color: blueviolet;
    --seagreen: #e6ecf6;
    --title-font: "Fredoka", sans-serif;
    --body-font: "Outfit", sans-serif;
    --icon-font: "Font Awesome 5 Free";
  }
  
  ::selection{
    color: black;
    background-color: var(--theme-color);
  }
  
  html, body {
    scroll-behavior: smooth !important;
  }
  
  body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    background-color: var(--body-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  
  body::-webkit-scrollbar {
    width: 7px;
    background: var(--black-color);
    border-radius: 10px;
  }
  
  body::-webkit-scrollbar-thumb{
    background-color: var(--theme-color);
    border-radius: 10px;
  }
  
  
  ul {
    list-style-type: disc;
  }
  
  ul, li{
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  a {
    text-decoration: none;
  }
  
  h1, h2, h3, h4, h5, h6{
    font-family: "Outfit", sans-serif;
  }

/* ----------- common-btn ------------- */

.common-btn {
  padding: 12px 22px;
  background-color: var(--theme-color);
  color: black;
  font-weight: 700;
  border-radius: 8px;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.common-btn:after {
  content: '';
  position: absolute;
  height: 30px;
  width: 30px;
  background-color: black;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.5s ease;
  z-index: 0;
}

.common-btn:hover {
  color: white;
}

.common-btn:hover:after {
  transform: translate(-50%, -50%) scale(8);
}

.common-btn span {
  position: relative;
  z-index: 1;
}
  
  /* ============= Scroll To Top here ============= */
  
  #scrollToTop {
    position: fixed;
    bottom: 80px;
    right: -40px;
    transform: rotate(90deg);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1000;
  }
  
  #scrollToTop.show {
    opacity: 1;
    visibility: visible;
  }
  
  #scrollToTop .scroll-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .scroll-progress {
    width: 50px;
    height: 3px;
    background: blueviolet;
    position: relative;
  }
  
  .progress-fill {
    height: 100%;
    background: var(--theme-color);
    width: 0%;
    transition: width 0.25s ease;
  }
  
  .scroll-label {
    font-size: 14px;
    font-weight: bold;
    color: burlywood;
  }
  
  /* =============== Mobile Menu here ================ */
  
  .vs-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    width: 0;
    width: 100%;
    height: 100%;
    transition: all ease 0.8s;
    opacity: 0;
    visibility: hidden;
  }
  .vs-menu-wrapper .mobile-logo {
    padding: 20px;
    display: block;
    text-align: center;
    background-color: var(--body-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .vs-menu-wrapper .mobile-logo img{
    width: 100px;
  }
  .vs-menu-wrapper .mobile-logo svg {
    max-width: 185px;
  }
  .vs-menu-wrapper .vs-menu-toggle {
    border: none;
    font-size: 22px;
    padding: 0;
    line-height: 1;
    width: 33px;
    height: 33px;
    line-height: 33px;
    font-size: 18px;
    z-index: 1;
    color: var(--white-color);
    background-color: var(--theme-color);
    border-radius: 50%;
  }
  .vs-menu-wrapper .vs-menu-toggle:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
  }
  .vs-menu-wrapper .vs-menu-area {
    width: 100%;
    max-width: 330px;
    background-color: var(--body-bg);
    border-right: 3px solid var(--theme-color);
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    transition: all ease 1s;
    z-index: 1;
  }
  .vs-menu-wrapper.vs-body-visible {
    opacity: 1;
    visibility: visible;
  }
  .vs-menu-wrapper.vs-body-visible .vs-menu-area {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  
  .vs-mobile-menu {
    overflow-y: auto;
    max-height: calc(100vh - 80px);
    padding-bottom: 40px;
    margin-top: 20px;
    text-align: left;
  }
  .vs-mobile-menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(242, 0, 58, 0.2);
    background-color: #000;
  }
  .vs-mobile-menu::-webkit-scrollbar {
    width: 4px;
    background-color: #000;
  }
  .vs-mobile-menu::-webkit-scrollbar-thumb {
    background-color: var(--theme-color);
  }
  .vs-mobile-menu ul {
    margin: 0;
    padding: 0 0;
  }
  .vs-mobile-menu ul li {
    border-bottom: 1px solid var(--border-color);
    list-style-type: none;
  }
  .vs-mobile-menu ul li li:first-child {
    border-top: 1px solid var(--border-color);
  }
  .vs-mobile-menu ul li a {
    display: block;
    position: relative;
    padding: 12px 0;
    line-height: 1;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--title-color);
    font-weight: 700;
  }
  .vs-mobile-menu ul li a:before {
    content: "\f105";
    font-family: var(--icon-font);
    position: relative;
    left: 0;
    top: 0;
    margin-right: 10px;
    display: inline-block;
  }
  .vs-mobile-menu ul li.vs-active > a {
    color: var(--theme-color);
  }
  .vs-mobile-menu ul li.vs-active > a:before {
    transform: rotate(90deg);
  }
  .vs-mobile-menu ul li ul li {
    padding-left: 20px;
  }
  .vs-mobile-menu ul li ul li:last-child {
    border-bottom: none;
  }
  .vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand {
    position: absolute;
    right: 0;
    top: 50%;
    font-weight: 400;
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-top: -12.5px;
    display: inline-block;
    text-align: center;
    background-color: var(--smoke-color);
    color: var(--title-color);
    box-shadow: 0 0 20px -8px rgba(242, 0, 58, 0.5);
    border-radius: 50%;
  }
  .vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand:before {
    content: "\f067";
    font-family: var(--icon-font);
  }
  .vs-mobile-menu ul .vs-item-has-children.vs-active > a .vs-mean-expand:before {
    content: "\f068";
  }
  .vs-mobile-menu > ul {
    padding: 0 20px;
  }
  .vs-mobile-menu > ul > li:last-child {
    border-bottom: none;
  }
  
  .vs-menu-toggle {
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 24px;
    border: none;
    background-color: var(--theme-color);
    color: var(--black-color);
    display: inline-block;
    border-radius: 0;
  }
  .vs-menu-toggle.style-text, .vs-menu-toggle.style-text-white {
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--title-color);
    font-size: 20px;
  }
  .vs-menu-toggle.style-text i, .vs-menu-toggle.style-text-white i {
    margin-right: 10px;
  }
  .vs-menu-toggle.style-text-white {
    color: var(--white-color);
  }
  
  
  /* ============ Header here ================= */
  
  .vs-header {
    position: relative;
    z-index: 41;
  }
  
  .header-logo {
    height: 100px;
    padding: 15px 0;
  }

  .header-logo img{
    height: 100%;
  }
  
  .will-sticky .sticky-active {
    position: fixed;
    top: -100%;
    right: 0;
    left: 0;
    background-color: var(--white-color);
    /* transition: all ease 0.8s; */
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  }
  .will-sticky .sticky-active.active {
    top: 0;
  }
  .will-sticky .sticky-active.active .menu-area {
    margin-bottom: 0;
  }
  
  .main-menu {
    text-align: end;
  }
  .main-menu a {
    display: block;
    position: relative;
    font-family: var(--title-font);
    font-weight: 500;
    font-size: 18px;
    color: var(--title-color);
    text-transform: capitalize;
    /* Extra large devices */
  }
  
  .main-menu a:hover {
    color: var(--secondary-color);
  }
  .main-menu > ul > li {
    margin: 0 16px;
  }
  .main-menu ul {
    margin: 0;
    padding: 0;
  }
  .main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
  }
  .main-menu ul li.menu-item-has-children > a:after {
    content: "\f078";
    position: relative;
    font-family: var(--icon-font);
    margin-left: 5px;
    top: -0.8px;
    font-size: 0.8rem;
  }
  .main-menu ul li:last-child {
    margin-right: 0;
  }
  .main-menu ul li:first-child {
    margin-left: 0;
  }
  .main-menu ul li:hover > ul.sub-menu,
  .main-menu ul li:hover ul.mega-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    z-index: 9;
  }
  .main-menu ul.sub-menu,
  .main-menu ul.mega-menu {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background-color: var(--body-bg);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    visibility: hidden;
    min-width: 190px;
    width: max-content;
    padding: 7px;
    left: -14px;
    margin-top: 50px;
    opacity: 0;
    z-index: -1;
    border-bottom: 3px solid var(--theme-color);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
    transform-origin: top center;
    transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
  }
  .main-menu ul.sub-menu a,
  .main-menu ul.mega-menu a {
    font-size: 16px;
    line-height: 30px;
  }
  .main-menu ul.sub-menu {
    padding: 18px 20px;
    left: -27px;
  }
  .main-menu ul.sub-menu:before {
    content: "";
    position: absolute;
    left: 34px;
    top: 32px;
    width: 1px;
    background-color: var(--border-color);
    height: calc(100% - 65px);
  }
  .main-menu ul.sub-menu li {
    display: block;
    margin: 0 0;
    padding: 3px 9px;
  }
  .main-menu ul.sub-menu li.menu-item-has-children > a:after {
    content: "\f105";
    float: right;
    top: 3px;
  }
  .main-menu ul.sub-menu li a {
    position: relative;
    padding-left: 21px;
  }
  .main-menu ul.sub-menu li a:before {
    content: "\f111";
    position: absolute;
    top: 3.3em;
    left: 0;
    font-family: var(--icon-font);
    width: 11px;
    height: 11px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-size: 0.2em;
    line-height: 11.5px;
    color: var(--secondary-color);
    font-weight: 700;
    background-color: var(--body-bg);
    box-shadow: inset 0px 2px 4px 0px rgba(12, 119, 53, 0.4);
  }
  .main-menu ul.sub-menu li ul.sub-menu {
    left: 100%;
    right: auto;
    top: 0;
    margin: 0 0;
    margin-left: 20px;
  }
  .main-menu ul.sub-menu li ul.sub-menu li ul {
    left: 100%;
    right: auto;
  }
  .main-menu .mega-menu-wrap {
    position: static;
  }
  .main-menu ul.mega-menu {
    display: flex;
    justify-content: space-between;
    text-align: left;
    width: 100%;
    padding: 20px 15px 23px 15px;
    left: 50%;
    transform: translateX(-50%);
  }
  .main-menu ul.mega-menu li {
    display: block;
    width: 100%;
    padding: 0 15px;
  }
  .main-menu ul.mega-menu li li {
    padding: 4px 0;
  }
  .main-menu ul.mega-menu li a {
    display: inline-block;
  }
  .main-menu ul.mega-menu > li > a {
    display: block;
    padding: 0;
    padding-bottom: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--title-color);
    border-color: var(--theme-color);
  }
  .main-menu ul.mega-menu > li > a::after, .main-menu ul.mega-menu > li > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15px;
    height: 1px;
    background-color: var(--theme-color);
  }
  .main-menu ul.mega-menu > li > a::after {
    width: calc(100% - 20px);
    left: 20px;
  }
  .main-menu ul.mega-menu > li > a:hover {
    padding-left: 0;
  }
  
  .menu-style1 > ul > li > a {
    padding: 29.5px 0;
  }
  
  .header-links ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .header-links li {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: var(--title-color);
    font-family: var(--body-font);
    margin: 0 36px 0 0;
    line-height: 23px;
  }
  .header-links li:last-child {
    margin-right: 0;
  }
  .header-links i {
    color: var(--title-color);
    margin-right: 10px;
  }
  .header-links a {
    color: inherit;
  }
  .header-links a:hover {
    color: var(--theme-color);
  }
  
  .header-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .header-icons .link-btn {
    margin-right: 10px;
  }
  .header-icons .link-btn:hover {
    color: var(--secondary-color);
  }
  
  .header-layout2 {
    width: 100%;
  }

  .header-layout2 .header-links a:hover {
    color: var(--secondary-color);
  }
  .header-layout2 .social-style1 a:hover {
    color: var(--secondary-color);
  }
  .header-layout2 .header-top {
    padding: 15px 20px;
    background-color: var(--theme-color);
  }
  .header-layout2 .menu-area {
    background-color: var(--white-color);
    padding: 0 20px;
    border-radius: 8px;
  }
  
  .extra-addon{
    display: flex;
    justify-content: end;
    align-items: center;
  }
  
  .btn-for-query{
    height: 50px;
    width: 130px;
    display: grid;
    place-items: center;
    border-radius: 100px;
    background-color: var(--body-color);
    color: white;
    margin-left: 30px;
    transition: 300ms;
  }
  
  .btn-for-query:hover{
    background-color: black;
  }
  
  .btn-for-login{
    height: 50px;
    width: 130px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background-color: var(--theme-color);
    color: black;
    margin-left: 8px;
    transition: 300ms;
    font-weight: 700;
  }

  .btn-for-login:hover{
    background-color: black;
    color: white;
  }


/* ========== BANNER section here ========== */

.top-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/contact-banner.webp') no-repeat center center/cover;
}

.top-section:after {
  content: "";
  display: block;
  width: 100%;
  height: 44px;
  position: absolute;
  bottom: -2px;
  z-index: 2;
  pointer-events: none;
  background-size: cover;
  margin-top: -44px;
  background: url(../images/pageheader-divider.png);
}

.top-section .ul-li ul li {
  display: inline-block;
  float: left;
}

.top-section .bredcrumb-content {
  padding: 120px 0px 170px;
}

.top-section .bredcrumb-title h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 600;
  font-family: var(--body-font) !important;
}

.top-section .breadcrumb-item-wrap .breadcrumb {
  left: 0;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  padding: 0px 45px;
  position: absolute;
  display: inline-block;
  background-color: #fff;
}

.top-section .breadcrumb-item-wrap .breadcrumb .breadcrumb-item {
  font-size: 20px;
  font-weight: 600;
}

.top-section .breadcrumb-item-wrap .breadcrumb .breadcrumb-item.active {
  color: #7EBC2D;
}

.top-section .breadcrumb-item-wrap .breadcrumb-item+.breadcrumb-item {
  position: relative;
  padding-left: 20px;
}

.top-section .breadcrumb-item-wrap .breadcrumb-item+.breadcrumb-item::before {
  top: 17px;
  left: 10px;
  padding: 0;
  width: 2px;
  content: "";
  height: 18px;
  position: absolute;
  background-color: #121e2d;
}

@media screen and (max-width: 767px) {
  .top-section .bredcrumb-content {
    padding: 120px 0px 150px;
  }

  .top-section .bredcrumb-title h2 {
    font-size: 50px;
  }
}

@media screen and (max-width: 480px) {
  .top-section .bredcrumb-title h2 {
    font-size: 40px;
  }

  .top-section .breadcrumb-item-wrap .breadcrumb {
    padding: 0px 25px;
  }
}









  
  /* ====================== Footer section here ===================== */
  
  footer {
    overflow: hidden;
  }

  .footer-section {
    background-color: #049546;
    position: relative;
  }

  .footer-section .extra-img{
    position: absolute;
    top: -2px;
    transform: scaleY(-1);
  }
  
  footer a {
    color: var(--white-color);
  }
  
  .d-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer-section h2 span{
    color: var(--theme-color) !important;
  }
  
  .footer-section .footer-element {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
  }
  
  .footer-section .footer-newsletter {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0 60px;
  }
  
  .footer-section .footer-newsletter h2 {
    z-index: 1;
    font-size: clamp(26px, 2.6vw, 120px);
    font-weight: 700;
    color: var(--white-color);
  }
  
  .footer-section .footer-newsletter h2 .newsletter-element {
    position: absolute;
    top: 96%;
    right: 20%;
    z-index: -1;
  }
  
  .footer-widgets-wrapper {
    padding: 50px 60px;
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.37);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  
  .footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 26px;
    color: var(--white-color);
  
  }
  
  .footer-widgets-wrapper .single-footer-widget .widget-head h4 {
    font-weight: 600;
    position: relative;
    font-family: var(--title-font);
    margin-bottom: 40px;
  }
  
  .footer-widgets-wrapper .single-footer-widget .widget-head h4::before {
    content: "";
    position: absolute;
    background-color: var(--theme-color);
    width: 25%;
    height: 4px;
    display: inline;
    left: 0;
    bottom: -10px;
    border-radius: 50px;
  }
  
  .footer-widgets-wrapper .single-footer-widget .logo {
    border-radius: 50%;
    background-color: white;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-widgets-wrapper .single-footer-widget .logo img {
    width: 150px;
  }
  
  .footer-widgets-wrapper .single-footer-widget .footer-content p {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    color: var(--white-color);
    text-align: center;
  }

  .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li {
    color: var(--text);
    font-weight: 500;
  }
  
  .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li:not(:last-child) {
    margin-bottom: 20px;
  }
  
  .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li i {
    font-size: 16px;
    color: var(--p2-clr);
    margin-right: 10px;
    font-size: 20px;
  }
  
  .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li a {
    color: var(--text);
  }
  
  .footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
    margin-bottom: 15px;
  }
  
  .footer-widgets-wrapper .single-footer-widget .list-area li a {
    color: white;
    font-size: 18px;
    font-family: "Outfit", sans-serif;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.4s;
    text-wrap: nowrap;
  }
  
  .footer-widgets-wrapper .single-footer-widget .list-area li a i {
    font-size: 14px;
    transition: all 0.4s;
  }
  
  .footer-widgets-wrapper .single-footer-widget .list-area li a:hover {
    color: var(--theme-color);
  }
  
  .footer-widgets-wrapper .single-footer-widget .list-area li a:hover i {
    opacity: 1;
  }
  
  .footer-widgets-wrapper .single-footer-widget .footer-info li {
    display: flex;
  }
  
  .footer-widgets-wrapper .single-footer-widget .footer-info li .icon {
    width: 40px;
    height: 40px;
    padding: 15px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-widgets-wrapper .single-footer-widget .footer-info li .icon i {
    color: var(--white);
    font-size: 16px;
  }
  
  .footer-widgets-wrapper .single-footer-widget .footer-info li .cont{
    padding-left: 10px;
  }

  .footer-widgets-wrapper .single-footer-widget .footer-info li .cont a:hover {
    color: var(--theme-color);
  }

  .footer-section .map-section iframe{
    height: 250px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .footer-bottom {
    position: relative;
    z-index: 9;
  }
  
  .footer-bottom p {
    font-size: 14px;
    color: var(--white-color);
  }

  

  
  
  
  
  
  
  
  
  
  
  
  
  
  /* ================ Media Query Here ============== */
  
  @media (max-width: 1300px) {
  
    .main-menu a {
      font-size: 16px;
    }
  
  }
  
  @media (max-width: 1200px) {
  
    .header-logo img{
      max-width: 250px;
    }
  
    .main-menu {
      text-align: right;
    }
  
    .header-top {
      display: none;
    }
  
  }

  @media (max-width: 1199px) {

      .footer-section .footer-newsletter {
          padding: 50px 0 30px;
      }

      .footer-bottom .footer-wrapper .footer-menu {
          display: flex;
          align-items: center;
          gap: 14px;
      }

      .footer-bottom .footer-wrapper .footer-menu .line {
          height: 18px;
      }

      .footer-widgets-wrapper {
          gap: 30px 20px;
      }

      .footer-widgets-wrapper .single-footer-widget .widget-head {
          margin-bottom: 20px;
      }

      .footer-widgets-wrapper .single-footer-widget .footer-content p {
          margin-bottom: 20px;
          font-size: 16px;
          line-height: 26px;
      }

      .footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
          margin-bottom: 14px;
      }

      .footer-widgets-wrapper .single-footer-widget .list-area li a {
          font-size: 16px;
      }

  }
  
  @media(max-width:1100px){

    .main-menu > ul > li {
      margin: 0 10px;
    }

  }
  
  @media (max-width:991.5px){
  
    .btn-for-query{
      margin-left: 20px;
      margin-top: 30px;
    }

    .footer-section .footer-newsletter h2 .newsletter-element {
        position: absolute;
        top: 96%;
        right: 50%;
        transform: translateX(50%);
    }

    .footer-widgets-wrapper {
        padding: 20px;
    }
  
  }

  @media (max-width:767.5px){

    .top-section .bredcrumb-content {
      padding: 120px 0px 150px;
    }
  
    .top-section .bredcrumb-title h2 {
      font-size: 50px;
    }
    
  }
  
  
  @media (max-width: 576px) {

    .header-logo {
      height: 90px;
      padding: 10px 0;
    }
  
    .header-logo img{
      max-width: 250px;
    }
  
    .header-layout2 .menu-area {
      padding: 0 10px;
    }
  
  }

  @media screen and (max-width: 480px) {
    .top-section .bredcrumb-title h2 {
      font-size: 40px;
    }
  
    .top-section .breadcrumb-item-wrap .breadcrumb {
      padding: 0px 25px;
    }
  }
  
  @media (max-width:450px){

    .btn-for-login{
      width: 100px;
    }
  
    .header-logo img{
      max-width: 150px;
    }

  
    .footer-widgets-wrapper .single-footer-widget .footer-content p{
      text-align: justify;
      text-align-last: center;
    }
  
  }

  @media (max-width:400px){

    .btn-for-login{
      width: 80px;
    }
  
    .header-logo img{
      max-width: 110px;
      object-fit: contain;
    }

  }
  
  