:root {
  --primary-color: #5C982E;
  /* --secondary-color: #ACD04C; */
  --secondary-color: #2D302D;
  --off-black-color: #1f1c1e;
  --white-color: #fff;
  --dark-color: #333;
  --light-grey-color: rgb(247, 247, 247);
}

/* Basic styling*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body,
html {
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

@media all and (min-width: 500px){
  body {
    margin-top: 0px;
  }
}
@media all and (min-width: 770px){
  body {
    margin-top: 64px;
  }
}
@media all and (min-width: 801px){
  body {
    margin-top: 86px;
  }
}
@media all and (min-width: 1161px){
  body {
    margin-top: 138px;
  }
}

.primary-heading {
  font-size: 2.6rem;
  letter-spacing: 1px;
  color: var(--off-black-color);
  padding: 10px 0px 20px 0px;
  display: inline-block;
}

a,
a#anchor {
  cursor: pointer !important;
  margin: 0;
  padding: 0;
}

@media all and (max-width: 700px) {
  .primary-heading {
    font-size: 2rem;
  }
}

.text-primary {
  color: var(--off-black-color);
}

.header-border {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.header-border:after {
  content: "";
  border-bottom: 2px solid var(--secondary-color);
  padding-top: 5px;
  width: 80px;
}

.brands-container {
  text-align: center;
}

/* Navigation */

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

#navbar {
  overflow: hidden;
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
  padding:10px;
}

@media all and (min-width:769px) {
  #navbar {
    padding:0;
  }
}

#location.item h6 {
  display: inline-block;
  padding: 20px;
  margin: 0;
  color: var(--off-black-color);
  font-size: 1rem;
  line-height: 1.5rem;
  vertical-align: middle;
}
#location.item i {
  display: inline-block;
  padding: 10px;
  margin-left: 10px;
  color: var(--primary-color);
  background: var(--off-black-color);
  border-radius: 50%;
}

#location.item {
  background: transparent;
  padding: 13px 0;
  border-left: 1px solid #00000072;
}

ul {
  list-style-type: none;
}

a {
  color: var(--off-black-color);
  font-weight: bold;
  font-size: 1rem;
  padding: 5px 5px;
  text-decoration: none;
  cursor: pointer;
}

.logo a:hover {
  text-decoration: none;
}
.menu li {
  font-size: 16px;
  padding: 0 1.2rem 0 1.2rem;
  white-space: nowrap;
}
.logo a,
.toggle a {
  font-size: 1.1rem;
  padding: 10px;
}

.toggle a,
.toggle a:hover {
  text-decoration: none;
  border: none;
  color: var(--primary-color);
  background: var(--off-black-color);
  padding: 7px;
  border-radius: 1px;
}

.logo a {
  padding-top: 50px;
  display: inline-block;
}

#navbar .logo-link {
  all: unset;
  cursor: pointer;
  display: inline-block;
  padding-left: 10px;
}

/* Mobile menu */
li.logo {
  padding: 0;
}
li.logo img {
  width: 40px;
}
@media all and (min-width: 500px) {
  li.logo img {
    width: 60px;
  }
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.toggle {
  order: 1;
}
.item {
  width: 100%;
  text-align: center;
  order: 3;
  display: none;
}
.item.active {
  display: block;
}

.logo img {
  padding: 10px 0px 0px 0px;
  margin-left: 40px;
}
@media all and (max-width: 900px) {
  .logo img {
    /* padding: 10px; */
    margin: 0;
  }
}
li.item {
  border-top: 1px solid #efefef;
  padding: 1rem;
}

/* li.item:nth-last-child(3) {
  border-bottom: 1px solid var(--primary-color);
} */

.current-menu-item {
  border: none;
}

/* Mobile and tablet additional styles   */
@media all and (max-width: 1160px) {
  #location.item {
    display: none;
  }
}

/* Tablet menu */
@media all and (min-width: 600px) {
  .menu {
    justify-content: center;
  }
  .logo {
    flex: 1;
  }
  .toggle {
    flex: 1;
    text-align: right;
  }
  .toggle {
    order: 2;
  }
  .logo,
  .toggle {
    margin: 0 30px;
  }
}

/* Desktop menu */
@media all and (min-width: 801px) {
  .logo,
  .toggle {
    margin: 0 5px;
  }

  li.item {
    border: none;
  }
  li.item:nth-last-child(3) {
    border: none;
  }

  .item {
    display: block;
    width: auto;
  }
  a {
    color: var(--off-black-color);
    font-weight: bold;
    font-size: 1.4rem;
    /* padding: 5px 5px; */
    text-decoration: none;
    cursor: pointer;
    margin: 0;
  }
  a:hover {
    padding: 5px 5px;
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.1s ease-in;
  }
  .toggle {
    display: none;
  }
  .logo {
    order: 0;
  }
  li.logo img {
    width: 100px;
  }
  .item {
    order: 1;
  }
  .current-menu-item {
    border-bottom: 2px solid var(--primary-color);
  }
}

/* Banner Slider Section */
.banner .slider-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.banner .slide {
  height: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  scroll-snap-align: center;
}

.banner .slide-1,
.banner .slide-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 100%;
  grid-template-rows: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.banner .banner-image-div {
  grid-area: 1 / 1 / 2 / 2;
}

.banner .banner-overlay-div {
  grid-area: 1 / 1 / 2 / 2;
}

.banner .banner-image {
  display: -ms-grid;
  display: grid;
  min-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media all and (max-width: 769px){
  .banner .banner-image {
  padding-top: 84px;
  }
}
@media all and (max-width: 499px){
  .banner .banner-image {
  padding-top: 64px;
  }
}

.banner .banner-overlay-div {
  display: -ms-grid;
  display: grid;
  max-width: 100%;
  background: #000;
  background: linear-gradient(
    60deg,
    rgba(14, 13, 13, 0.778) 30%,
    rgba(58, 56, 56, 0) 80%
  );
}

.banner .slide-2 .banner-overlay-div {
  background: linear-gradient(
    40deg,
    rgba(14, 13, 13, 0.76) 10%,
    rgba(58, 56, 56, 0.1) 80%
  );
}

.banner .banner-text {
  grid-column: 1/6;
}

.banner .banner-text-div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-row-align: center;
  /* margin-left: 10px;
  margin-right: 5px; */
  text-align: center;
}
@media all and (max-width: 769px){
  .banner .banner-text-div {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding-top: 50px;
  }
}
@media all and (max-width: 700px){
  .banner .banner-text-div {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media all and (max-width: 550px){
  .banner .banner-text-div {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .banner .banner-text {
  grid-column: 1/5;
}
}

.banner .slide-2 .banner-text {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
}

.banner .banner-h1-text {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 900;
  margin: 0 0 10px 0;
}
.banner .banner-body-text {
  color: #fff;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 1.6rem;
  font-size: 8px;
}
@media all and (max-width: 500px){
  .banner .banner-h1-text {
    font-size: 1.2rem;
  }
  .banner .banner-body-text {
    line-height: 1rem;
  }
}


.banner .btn-primary {
  background: #fff;
  color: var(--primary-color);
  padding: 2px 6px;
  font-weight: 600;
  border: 1px solid var(--primary-color);
  font-size: 0.9rem;
  border-radius: 2px;
  outline: none;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
}

.banner .btn-primary:hover,
.banner .btn-primary:focus,
.banner .btn-primary:active {
  background: var(--primary-color);
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

.banner .slick-initialized .slick-slide {
  display: -ms-grid !important;
  display: grid !important;
}

.banner .slick-dots {
  position: absolute;
  bottom: 10px;
  display: block;
  width: 100%;
  padding: 10;
  margin: 0;
  list-style: none;
  text-align: center;
}

.banner .slick-dots li.slick-active button:before {
  font-size: 4px;
  color: #000;
}

.banner .slick-dots li button::before {
  font-size: 3px;
}

.banner .slick-prev {
  left: 10px;
  z-index: 1000;
  top: 50%;
}

.banner .slick-next {
  right: 10px;
  top: 50%;
  z-index: 1000;
}

.banner .slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.banner .slick-dots li {
  margin: 0;
}

.banner .slick-initialized .slide {
  display: block;
}

.slide-1 img.desktop-slider,
.slide-2 img.desktop-slider {
  display: none;
}

@media all and (min-width: 500px) {
  .banner .banner-h1-text {
    font-size: 2rem;
  }
  .banner .banner-body-text {
    font-size: 11px;
  }
}

@media all and (min-width: 769px) {
  .slide-1 img.mobile-slider,
  .slide-2 img.mobile-slider {
    display: none;
  }
  .slide-1 img.desktop-slider,
  .slide-2 img.desktop-slider {
    display: block;
  }
  .banner .banner-h1-text {
    font-size: 2rem;
  }
  .banner .banner-body-text {
    font-size: 12px;
  }
  .banner .banner-text {
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-column: 2/6;
  }
  .banner .slide-2 .banner-text {
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-column: 1/6;
  }
  .banner .banner-text-div {
    /* margin-left: 20px; */
  }
}

@media all and (min-width: 769px) {
  .banner .banner-body-text {
    font-size: 14px;
  }
}

@media all and (min-width: 1200px) {
  .banner .banner-text-div {
    margin-left: 55px;
  }
  .banner .banner-h1-text {
    font-size: 3.6rem;
    margin: 0 0 20px 0;
  }
  .banner .banner-body-text {
    font-size: 18px;
    line-height: 2.5rem;
    margin: 0 0 20px 0;
  }
  .banner .slick-dots li.slick-active button:before {
    font-size: 7px;
  }
  .banner .slick-dots li button::before {
    font-size: 6px;
  }
  .banner .btn-primary {
    padding: 5px 12px;
    font-size: 1.4rem;
  }
}
.top-banner-section {
  margin-top: 140px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-content: center;
  justify-content: center;
}
@media all and (max-width: 899px) {
  .top-banner-section {
    margin-top: 90px;
  }
}
.banner-image-div {
  grid-area: 1 / 1 / 2 / 2;
}
.banner-overlay-div {
  grid-area: 1 / 1 / 2 / 2;
}
.banner-text-div {
  grid-area: 1 / 1 / 2 / 2;
}

.banner-image {
  display: grid;
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay-div {
  display: grid;
  max-width: 100%;
  background: #000;
  background: linear-gradient(
    60deg,
    rgba(27, 27, 27, 0.778) 10%,
    rgba(58, 56, 56, 0) 80%
      /* rgba(0, 0, 0, 0.7777485994397759) 30%,
    rgba(255, 255, 255, 0) 100% */
  );
}




/* Showcase */
#showcase {
  background: url("./img/slider3.jpeg") no-repeat center center/cover;
  background-size: 100% 100%;
  height: 600px;
  margin-top: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

#showcase .showcase-text {
  background: rgba(67, 86, 102, 0.562);
  padding: 30px;
  color: #fff;
  font-size: 1.1rem;
}

/* Showcase Tablet styles */
@media all and (max-width: 1100px) {
  #showcase {
    height: 400px;
    margin-top: 90px;
  }
  #showcase .showcase-text {
    padding: 30px;
    font-size: 0.8rem;
  }
}
@media all and (max-width: 800px) {
  #showcase .showcase-text {
    font-size: 0.7rem;
  }
  #showcase {
    margin-top: 70px;
  }
}
/* Showcase Mobile styles */
@media all and (max-width: 600px) {
  #showcase {
    height: 300px;
    margin-top: 70px;
  }
  #showcase .showcase-text {
    font-size: 0.6rem;
  }
}
@media all and (max-width: 450px) {
  #showcase {
    height: 200px;
    margin-top: 70px;
  }
  #showcase .showcase-text {
    font-size: 0.4rem;
    padding: 10px;
  }
}
/* Trust section */
section .trust-container {
  background: #333333;
  padding: 10px 80px 10px 80px;
  margin-bottom: 20px;
}
.trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
  overflow: hidden;
  text-align: center;
}

.trust .item i {
  color: var(--primary-color);
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  font-size: 1.4rem;
}

.trust .item h5 {
  color: #fff;
  display: inline-block;
  padding-left: 5px;
  font-size: 1.6rem;
}

.trust li:nth-child(1) {
  order: 0;
}
.trust li:nth-child(2) {
  order: 1;
}
.trust li:nth-child(3) {
  order: 2;
}

/* Trust Responsive styles */
@media all and (max-width: 1050px) {
  section .trust-container {
    padding: 5px 0px;
  }
  .trust {
    display: flex;
    flex-flow: row nowrap;
  }
  .trust .item {
    display: inline-block;
    width: 30vw;
    margin: auto;
  }
  .trust .item i {
    /* padding: 10px; */
    font-size: 1rem;
  }
  .trust .item h5 {
    font-size: 1.2rem;
    margin: 5px 0;
  }
}

@media all and (max-width: 510px) {
  section .trust-container {
    padding: 5px 0px;
  }
  .trust {
    display: flex;
    flex-flow: row nowrap;
  }
  .trust .item {
    display: inline-block;
    width: 30vw;
    margin: auto;
  }
  .trust .item i {
    /* padding: 5px; */
    font-size: 1rem;
  }
  .trust .item h5 {
    font-size: 1rem;
    display: block;
    margin: 5px 0;
  }
}
@media all and (max-width: 415px) {
  .trust .item i {
    font-size: 1rem;
  }
  .trust .item h5 {
    font-size: 0.7rem;
  }
}

/* Section: About */
.about-container {
  margin: 20px 50px 50px 50px;
  display: block;
}

.heading {
  text-align: center;
}

.about-container p {
  line-height: 1.6rem;
  font-size: 1.1rem;
  text-align: justify;
}

/* Mobile styles for About section */
@media all and (max-width: 700px) {
  .about-container p {
    font-size: 0.7rem;
  }
  .about-container {
    margin: 5px 20px 20px 20px;
  }
}

/* Shop section */
.shop-container {
  margin: 0px auto 60px auto;
  display: block;
  text-align: center;
}

.shop-featured {
  display: flex;
  justify-content: space-around;
  flex-flow: row nowrap;
  align-items: center;
  margin: 0;
}

.shop-featured .module1 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(./img/scheduledmedication.jpg) no-repeat center center/cover;
  overflow: hidden;
  width: 400px;
  height: 350px;
  margin: 0;
  position: relative;
}
.shop-featured .module2 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(./img/nonscheduledmedication.jpg) no-repeat center center/cover;
  overflow: hidden;
  width: 400px;
  height: 350px;
  margin: 0;
  position: relative;
}
.shop-featured .module3 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(./img/disposable1.jpg) no-repeat center center/cover;
  overflow: hidden;
  width: 400px;
  height: 350px;
  margin: 0;
  position: relative;
}
.shop-featured .mid a {
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1.2rem;
  transform: translate(-50%, -50%);
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 10px 0 10px 0;
  letter-spacing: 1px;
}

/* Shop Section Responsive styles */
@media all and (max-width: 1220px) {
  .shop-featured .module1,
  .shop-featured .module2,
  .shop-featured .module3 {
    width: 350px;
    height: 300px;
  }
}
@media all and (max-width: 1080px) {
  .shop-featured .module1,
  .shop-featured .module2,
  .shop-featured .module3 {
    width: 300px;
    height: 250px;
  }
}
@media all and (max-width: 918px) {
  .shop-featured .module1,
  .shop-featured .module2,
  .shop-featured .module3 {
    width: 270px;
    height: 220px;
  }
}
@media all and (max-width: 850px) {
  .shop-featured {
    flex-flow: column nowrap;
  }
  .shop-featured .module1,
  .shop-featured .module2,
  .shop-featured .module3 {
    width: 400px;
    height: 300px;
    margin-bottom: 10px;
  }
}

@media all and (max-width: 600px) {
  .shop-featured .module1,
  .shop-featured .module2,
  .shop-featured .module3 {
    width: 350px;
    height: 250px;
    margin-bottom: 10px;
  }
  .shop-container {
    margin: 0px auto 20px auto;
  }
}
@media all and (max-width: 400px) {
  .shop-featured .module1,
  .shop-featured .module2,
  .shop-featured .module3 {
    width: 300px;
    height: 200px;
    margin-bottom: 10px;
  }
}

/* Contact section */
.contact-container {
  margin: 10px 100px 30px 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
  grid-template-areas: "contactinfo contactform";
}
.contact-grid1 {
  grid-area: contactinfo;
}
.contact-grid2 {
  grid-area: contactform;
}

.contact-grid1 {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: max-content max-content max-content max-content minmax(
      300px,
      1fr
    );
  grid-column-gap: 10px;
  grid-row-gap: 20px;
  padding-top: 10px;
}

#address {
  display: flex;
  background: #f9f9f9;
  padding: 5px;
  border-radius: 5px;
  align-items: center;
}

#address a,
#address a:hover,
#address > p {
  font-weight: normal;
  text-decoration: none;
  line-height: 2rem;
  border: none;
  color: black;
  font-size: 1.2rem;
}
#address a:hover {
  color: var(--primary-color);
}

#address #paddress {
  padding-left: 20px;
}

#address i {
  display: inline-block;
  font-size: 1rem;
  padding: 10px;
  color: var(--primary-color);
  background: #000;
  border-radius: 50%;
}

/* Contact form styling */
.contact-grid2 {
  padding: 10px 10px 10px 10px;
  overflow: hidden;
  background: var(--tertiary-color);
}

.contact-grid2 .contact-form {
  background: var(--tertiary-color);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  /* -webkit-box-shadow: -5px 8px 10px -4px rgba(255, NaN, NaN, 1);
  -moz-box-shadow: -5px 8px 10px -4px rgba(255, NaN, NaN, 1);
  box-shadow: -5px 8px 10px -4px rgba(255, NaN, NaN, 1); */
  padding: 0px 20px 20px 20px;
  border: 1px solid rgb(233, 233, 233);
}
.contact-form h3 {
  display: inline-block;
  background: var(--primary-color);
  padding: 20px 50px;
  color: #fff;
  margin: 0 0 20px -20px;
  font-size: 1.4rem;
  font-weight: 700;
}

.contact-grid2 .contact-form .input-field::placeholder,
.contact-grid2 .contact-form .input-field-message::placeholder {
  color: var(--off-black-color);
  font-weight: normal;
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
}

/* Contact Form Styling */
.contact-form .field .input-icons i {
  /* Style icons inside input box */
  position: absolute;
  padding: 18px 15px 15px 15px;
  color: var(--off-black-color);
  min-width: 50px;
  font-size: 1.4rem;
}
.contact-form .field .input-icons {
  /* Style icons inside input box */
  width: 100%;
  margin: 30px 0px;
}
.contact-form .field .input-field {
  padding: 20px 0px 20px 40px;
  /* width: 26vw; */
  width: 100%;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  -moz-box-shadow: inset -3px -3px 10px #eee;
  -webkit-box-shadow: inset -3px -3px 10px #eee;
  box-shadow: inset -3px -3px 10px #eee;
}
.contact-form .field .input-field-message {
  width: 100%;
  padding: 18px 0px 200px 40px;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  -moz-box-shadow: inset -3px -3px 10px #eee;
  -webkit-box-shadow: inset -3px -3px 10px #eee;
  box-shadow: inset -3px -3px 10px #eee;
}

.contact-form .input-field:focus,
.contact-form .input-field-message:focus {
  outline: none !important;
  border-color: var(--primary-color);
  box-shadow: 0 0 2px var(--primary-color);
}
.contact-form input.input-field {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  border-radius: 5px;
  border: 1px solid #d3d3d3;
  background: var(--tertiary-color);
}

.contact-form textarea {
  padding: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  border-radius: 5px;
}

.contact-form button {
  width: 279.68px;
  height: 71.76px;
  margin: 10px 0 0 0;
  background: var(--primary-color);
  border-radius: 5px;
  border: 1px solid #d3d3d3;
  -moz-box-shadow: inset -1px -1px 3px #eee;
  -webkit-box-shadow: inset -1px -1px 3px #eee;
  box-shadow: inset -1px -1px 3px #eee;
  color: var(--white-color);
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  cursor: pointer !important;
}
.contact-form button:hover,
.contact-form button:focus {
  filter: brightness(80%);
}

.contact-form #mail-status {
  margin-top: 20px;
  padding: 10px 10px;
  width: 100%;
  display: none;
  font-size: 1rem;
  color: rgb(40, 40, 40);
  border-radius: 5px;
}
.error {
  background-color: rgb(233, 33, 19);
  margin-bottom: 10px;
}
.success {
  background-color: #0de28d;
  margin-bottom: 10px;
}
.g-recaptcha {
  display: block;
  margin: 30px 0px 10px 0px;
  transform: scale(0.92);
  -webkit-transform: scale(0.92);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}
.rc-anchor-error-msg-container {
  font-size: 11px;
  padding: 10px;
}

/* Responsive contact section styles Final */
@media all and (max-width: 1100px) {
  .contact-container {
    margin: 10px 50px 30px 50px;
  }
}
@media all and (max-width: 950px) {
  .contact-container {
    margin: 10px 20px 20px 20px;
  }
}
@media all and (max-width: 870px) {
  .contact-grid {
    grid-column-gap: 10px;
  }
  .contact-container #address a,
  .contact-container #address p,
  .contact-container #address a,
  #address h6 {
    font-size: 0.9rem;
  }

  .contact-grid2 .contact-form .input-field::placeholder,
  .contact-grid2 .contact-form .input-field-message::placeholder {
    font-size: 0.9rem;
  }
  .contact-form .field .input-icons i {
    font-size: 0.9rem;
    padding-top: 20px;
  }
  .contact-form .message-field .input-icons i {
    padding-top: 15px;
  }
  .g-recaptcha {
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
  .contact-form button {
    width: 304px;
    height: 78px;
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    margin-top: 5px;
    font-size: 1rem;
  }
  .contact-form h3 {
    padding: 20px 20px;
    font-size: 1rem;
  }

  .heading-border {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .primary-heading {
    font-size: 1.8rem;
    padding: 0px 0px 20px 0px;
  }
}
@media all and (max-width: 680px) {
  .contact-grid {
    grid-template-columns: 1fr;
    grid-column-gap: 0px;
    grid-template-areas: "contactinfo contactinfo" "contactform contactform";
    grid-row-gap: 0px;
  }
  .contact-grid1 {
    grid-column-gap: 0px;
    margin: 0 10px;
    grid-template-rows: max-content max-content max-content max-content minmax(
        250px,
        1fr
      );
  }
  .contact-grid2 {
    margin: 20px 3px 0 2px;
  }
  .contact-container {
    margin: 10px 0px;
  }
  .heading-border {
    align-items: center;
    text-align: center;
  }
}
@media all and (max-width: 400px) {
  .primary-heading {
    font-size: 1.7rem;
    padding: 0px 0px 40px 0px;
  }
}
@media all and (max-width: 375px) {
  .g-recaptcha {
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
  .contact-form button {
    font-size: 1rem;
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    margin-top: 0px;
  }
}
@media all and (max-width: 365px) {
  .g-recaptcha {
    transform: scale(0.97);
    -webkit-transform: scale(0.97);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
  .contact-form button {
    font-size: 1rem;
    transform: scale(0.97);
    -webkit-transform: scale(0.97);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
}

@media all and (max-width: 350px) {
  .g-recaptcha {
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
  .contact-form button {
    font-size: 0.9rem;
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    margin-top: -10px;
  }
}

/* Footer styling */
footer {
  border-top: 2px solid var(--primary-color);
  background: #333333;
}

.footer li {
  display: inline;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--primary-color);
  align-items: center;
  margin: 0 3rem;
  height: 3rem;
}

.footer .social {
  order: 1;
}

.footer .social i.fa-instagram {
  color: #cd486b;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0 4px;
}

.footer .social i.fa-facebook {
  padding: 0 4px;
  color: #3b5998;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.footer .social a {
  all: unset;
}

.footer li.copy {
  order: 0;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--white-color);
}

.footer li.copy a {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  border: none;
  color: var(--white-color);
}

/* Footer Tablet styles */
@media all and (max-width: 880px) {
  .footer li.copy {
    font-size: 0.75rem;
  }
  .footer li.copy a {
    text-decoration: none;
    font-size: 0.75rem;
    cursor: pointer;
    border: none;
  }
  .footer .social i.fa-instagram {
    padding: 0 2px;
    font-size: 1.4rem;
  }

  .footer .social i.fa-facebook {
    padding: 2px;
    font-size: 1.4rem;
  }
}

/* Footer Mobile styles */
@media all and (max-width: 630px) {
  .footer {
    display: flex;
    align-items: center;
    margin: 0 1rem;
    overflow: hidden;
  }
  .footer li.copy {
    font-size: 6.5px;
  }
  .footer li.copy a {
    text-decoration: none;
    font-size: 6.5px;
    cursor: pointer;
    border: none;
  }
  .footer .social i.fa-instagram {
    padding: 0 2px;
    font-size: 1rem;
  }

  .footer .social i.fa-facebook {
    padding: 0 2px;
    font-size: 1rem;
  }
}
@media all and (max-width: 359px) {
  .footer li.copy {
    font-size: 6px;
  }
  .footer li.copy a {
    font-size: 6px;
  }
  .footer .social i.fa-instagram {
    padding: 0 2px;
    font-size: 0.8rem;
  }

  .footer .social i.fa-facebook {
    padding: 0 2px;
    font-size: 0.8rem;
  }
}

/* Back to Top */
.back-to-top,
.back-to-top:hover,
.back-to-top:active,
.back-to-top:focus {
  position: fixed;
  transition: none;
  box-shadow: none;
  bottom: 25px;
  right: 25px;
  display: none;
  color: var(--white-color);
  background: var(--primary-color);
  border: 1px solid var(--white-color);
  border-radius: 20%;
  padding: 5px 8px;
}
#back-to-top .fa-chevron-up {
  color: var(--white-color);
}

.loader-icon{
    display:none;
}

.htmx-request{
    display:block!important;
}