html {
  min-height: 100%;
  scroll-behavior: smooth;
  /*Do 'height' only (remove 'min-') and you'll see the gradient background repeat rather than extend. */
}

body {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-image: url('images/Home.jpg'); /* Replace with the path to your image */
  background-attachment: fixed;
  background-size: cover; /* This ensures the background covers the entire page */
  background-position: center; /* This centers the background image */
}

  @property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }
  
  * {
    box-sizing: border-box;
  }
  
  img {
    width: 100%;
    pointer-events: none;
    user-select: none;
  }

  /* SECTION - NAVBAR */

  h1 {
    margin: 20px 0;
    color: white;
  }
  
  .center {
    text-align: center;
  }
  
  .nav-wrapper {
    display: flex;
    position: sticky;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    width: 90%;
    height: 80px;
    border-radius: 0 0 15px 15px;
    padding: 0 25px;
    z-index: 2;
    background: #644117;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .logo {
    height: 40px;
    margin-left: 10px;
  }
  
  .nav-tabs {
    display: flex;
    font-weight: 600;
    font-size: 18px;
    list-style: none;
    color: white;
  }
  
  .nav-tab:not(:last-child) {
    padding: 10px 25px;
    margin: 0;
    border-right: 1px solid #eee;
  }
  
  .nav-tab:last-child {
    padding: 10px 0 0 25px;
  }
  
  .nav-tab,
  .menu-btn {
    cursor: pointer;
  }
  
  .hidden {
    display: none;
  }
  
  @media screen and (max-width: 800px) {
    .nav-container {
      position: fixed;
      display: none;
      overflow-y: auto;
      z-index: -1;
      top: 0;
      right: 0;
      width: 280px;
      height: 100%;
      background: #644117;;
      box-shadow: -1px 0 2px rgba(0, 0, 0, 0.2);
    }
  
    .nav-tabs {
      flex-direction: column;
      align-items: flex-end;
      margin-top: 80px;
      width: 100%;
    }
  
    .nav-tab:not(:last-child) {
      padding: 20px 25px;
      margin: 0;
      border-right: unset;
      border-bottom: 1px solid #f5f5f5;
    }
  
    .nav-tab:last-child {
      padding: 15px 25px;
    }
  
    .menu-btn {
      position: relative;
      display: block;
      margin: 0;
      width: 35px;
      height: 20px;
      cursor: pointer;
      z-index: 2;
      padding: 10px;
      border-radius: 10px;
      background: #110702;
    }
  
    .menu-btn .menu {
      display: block;
      width: 100%;
      height: 2px;
      border-radius: 2px;
      background: #111;
    }
  
    .menu-btn .menu:nth-child(2) {
      margin-top: 4px;
      opacity: 1;
    }
  
    .menu-btn .menu:nth-child(3) {
      margin-top: 4px;
    }
  
    #menuToggle:checked + .menu-btn .menu {
      transition: transform 0.2s ease;
    }
  
    #menuToggle:checked + .menu-btn .menu:nth-child(1) {
      transform: translate3d(0, 6px, 0) rotate(45deg);
    }
  
    #menuToggle:checked + .menu-btn .menu:nth-child(2) {
      transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
      opacity: 0;
    }
  
    #menuToggle:checked + .menu-btn .menu:nth-child(3) {
      transform: translate3d(0, -6px, 0) rotate(-45deg);
    }
  
    #menuToggle:checked ~ .nav-container {
      z-index: 1;
      display: flex;
      animation: menu-slide-left 0.3s ease;
    }
    @keyframes menu-slide-left {
      0% {
        transform: translateX(200px);
      }
      to {
        transform: translateX(0);
      }
    }
  }
   
  /* SECTION - HOME */

  @property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }
  
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  img {
    width: 100%;
    pointer-events: none;
    user-select: none;
  }
  
  /* SECTION - HOME */
  
  .home {
    display: grid;
    grid-template-columns: 45% 50%;
    place-items: center;
    gap: 50px;
    background:none;
    overflow: hidden;
    padding: 130px 80px;
  }
  
  .description {
    color: #fff;
    padding: 0 50px;
  }
  
  .description > h1 {
    font-family: "Tilt Neon", sans-serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1;
    margin-bottom: 30px;
  }
  
  .gradient-text {
    font-family: "Tilt Neon", sans-serif;
    background-image: linear-gradient(
      90deg,
      rgb(249, 206, 11) 0%,
      rgb(176, 144, 0) 40%,
      rgb(139, 98, 9) 50%,
      rgb(180, 104, 10) 70%,
      rgb(177, 102, 4) 100%
    );
    color: transparent;
    background-size: contain;
    background-clip: text;
    -webkit-background-clip: text;
  }
  
  .description > p {
    font-family: "Nunito", sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  #form {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  
  input {
    padding-inline-end: 10px;
    padding-inline-start: 10px;
    background-color: transparent;
    outline: transparent;
    border: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    margin-right: 10px;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
  }
  
  input::placeholder {
    color: rgb(117, 152, 242);
    opacity: 0.5;
    font-weight: 500;
  }
  
  input[type="email"] {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 1rem;
  }
  
  input[type="email"]:focus {
    border: transparent;
    outline: 2px dotted rgb(117, 152, 242);
    outline-offset: -3px;
  }
  
  .btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    max-width: max-content;
    background: linear-gradient(
    90deg,
    rgb(233, 161, 6) 0%,
    rgb(231, 195, 75) 40%,
    rgb(230, 201, 106) 50%,
    rgb(202, 173, 4) 70%,
    rgb(136, 109, 21) 100%
  );
    background-size: 200%;
    background-position: left;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    border: 0;
    padding: 12px 16px;
    border-radius: 5px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5),
      inset 0px 2px 2px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease-in;
  }
  
  .btns:is(:hover, :focus-visible) {
    background-position: right;
  }

  .users-color-container {
    gap: 20px;
  }

  .users-color-container img {
    width: 85%;
  }
  
  .item {
    max-width: 200px;
    aspect-ratio: 1/1;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.5),
      inset 0px 2px 2px rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.5s linear 1 forwards;
    animation-delay: calc(0.2s * var(--i));
    opacity: 0;
  }

  @media (max-width: 1215px) {
    .description > p {
      font-size: 1rem;
    }
  
    .btn {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 1015px) {
    .home {
      grid-template-columns: 45% 50%;
      gap: 50px;
      padding: 140px 50px;
    }
    
    .description > p {
      font-size: 1rem;
    }
  
    .btn {
      padding: 8px 12px;
    }
  
    .btn-grad {
      padding: 8px 12px;
    }
  }
  
  @media (max-width: 865px) {
    .home {
      grid-template-columns: 45% 50%;
      gap: 60px;
      padding: 130px 70px;
    }
  }
  
  @media (max-width: 815px) {
    .home {
      display: flex;
      flex-direction: column;
      align-items: center; /* Center items horizontally on smaller screens */
      padding: 20px;
    }
  
    .users-color-container {
      margin-bottom: 20px;
      width: 100%;
      order: -1; /* Move the image to the top */
    }
  
    .description {
      margin-bottom: 20px;
      width: 100%;
    }
  
    .btns {
      width: 100%;
    }
  
    .description > p {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 460px) {
    .home {
      padding: 10px;
    }
  }
  
  
  

/* SECTION - SERVICES */

* {
  box-sizing: border-box;
  margin: 0;
}

.one, .three {
  margin: 30px auto !important;
}

.scroll {
  overflow-y: auto;
  background: rgba(129, 83, 40, 0.2);;
}
/* ---------------------------- */

/* ---------- True Code ---------- */


.scroll {
  margin-top: 5%; /* Adjust the margin-top value to move the container down */
}

.container h3 {
  text-align: center;
  font-size: 1.5em;
  color: white;
  margin-bottom: 10px;
}

.container {
  max-width: 1400px;
  margin: auto;
  margin-bottom: 50px;

  &.two .card::after {
    content: '';
    width: 80px;
    height: 80px;
    background: white;
    position: absolute;
    top: -30px;
    border-radius: 35%;
    left: -20px;
  }
   
  .grid-cards {
    display: flex;
    justify-content: center;
    flex: 1;
    max-width: 1024px;
    margin: 1rem auto;
    
    @media (max-width: 922px) and (min-width: 601px) {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
    @media (max-width: 600px) {
      flex-direction: column;
    }
    
    .card {
      position: relative;
      flex: 1;
      background: rgba(129, 83, 40, 0.2);
      padding: 1rem 1rem 1.5rem;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      border-radius: 1rem;
      min-height: 170px;
      margin: 15px;
      transition: all ease 0.3s;
      overflow: hidden;
      animation: fadeInLeft 1.5s backwards;
      
      &:nth-child(2){
        animation-delay: 0.15s;
      }
      &:nth-child(3){
        animation-delay: 0.2s;
      }
      &:nth-child(4){
        animation-delay: 0.3s;
      }
      
      &:hover {
       transform: translateY(-6px);
       -webkit-transform: translateY(-6px);
      }
      
      img {
        //Google SEO - CLS optimize
        aspect-ratio: 500 / 320;
        
        width: 100%;
        border-radius: 12px;
        margin-bottom: 15px;
        position: relative;
        max-height: 320px;
        object-fit: cover;
        box-shadow: 0 6px 16px -7px #aaa;
      }
      
      .card-body {
        color: #676767;
        width: 100%;
        margin-bottom: 40px;
        padding: 0 0.8rem;
        position: relative;
        
        .icon {
          display: flex;
          width: 100%;
          text-align: left;
          padding: 15px 0;
          
          i {
            position: relative;
            font-size: 25px;
            transition: 0.5s;
            line-height: 0;
            top: -7px;
            left: -12px;
            z-index: 2;
            
            &::before {
              background: #FFD854;
              background-clip: border-box;
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
            }
          }
          
          h3 {
            margin: -9px 0 0 20px;
          }
        }
        
        .title-card {
          text-align: center;
          padding-bottom: 10px;
        }
        
        p {
          font-size: 14px;
          line-height: 22px;
          font-weight: 300;
        }
      }
      
      .card-footer {
        display: flex;
        justify-content: flex-end;
        position: absolute;
        bottom: 0;
        width: calc(100% - 1rem);
        
        a {
          display: flex;
          justify-content: center;
          align-items: center;
          background:  rgb(197, 139, 31);
          color: #fff;
          text-shadow: 0px 1px 5px rgba(0,0,0,0.08);
          font-size: 1rem;
          font-weight: 700;
          text-decoration: none;
          width: 56%;
          height: 40px;
          border-top-left-radius: 1rem;
          border-bottom-right-radius: 1rem;
          
          &:hover {
            filter: brightness(0.98);
          }
        }
      }
    }
  }
}

@keyframes fadeInLeft {
  0% {
    transform: translate(-100%,0);
  }

  100% {
      opacity: 1;
      transform: none;
  }
}

/* SECTION - ABOUT ABG */


.shadow {
  width: 100vw;
  display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 50vh;
	font-size: 2em;
	background: #0b0100;
	color: #a06e44;
	text-transform: uppercase;
	gap: 30px;
  margin-top: 5%
}

.shadow {
	@media (max-width: 768px) {
		min-height: 10vh;
    font-size: 2em;
	}
}

.h1 {
	font-size: 3.5em;
	text-decoration: underline;
	@media (max-width: 768px) {
		font-size: 1.2em;
	}
}

.text-shadow {
	font-style: italic;
	text-transform: uppercase;
	color: transparent;
	-webkit-text-stroke: #a06e44;
	-webkit-text-stroke-width: 1px;
	text-shadow: 2px 2px 10px $blue;
	transition: all 0.5s ease-in-out;
	text-align: center;
	letter-spacing: 0.2em;
	animation: flicker 0.5s ease-in-out infinite alternate;

	&:hover {
		color: #fff;
	}
}

.tags small {
	@media (max-width: 768px) {
		font-size: 0.4em;
	}
}

.text-shadow {
	@media (max-width: 768px) {
		font-size: 0.7em;
	}
}

@keyframes flicker {
	0% {
		opacity: 0.5;
		text-shadow: 2px 2px 10px $blue;
	}
	100% {
		opacity: 1;
		text-shadow: 2px 2px 20px $blue;
	}
}

.btnss {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  max-width: max-content;
  background: linear-gradient(
    90deg,
    rgb(233, 161, 6) 0%,
    rgb(231, 195, 75) 40%,
    rgb(230, 201, 106) 50%,
    rgb(202, 173, 4) 70%,
    rgb(136, 109, 21) 100%
  );
  background-size: 200%;
  background-position: left;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  border: 0;
  padding: 15px 25px;
  border-radius: 5px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5),
    inset 0px 2px 2px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.btnss:is(:hover, :focus-visible) {
  background-position: right;
}

@media (max-width: 1015px) {
  .home {
    grid-template-columns: 45% 50%;
    gap: 50px;
    padding: 140px 50px;
  }
  
  .description > p {
    font-size: 1rem;
  }

  .btnss {
    padding: 8px 12px;
  }

  .btn-grad {
    padding: 8px 12px;
  }
}

/* SECTION - OUR PARTNERS */

.section-title h3 {
  text-align: center;
  font-size: 1.2em;
  font-weight: 600;
  padding-bottom: 6px;
  letter-spacing: 0.3px;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  
}

.section-title h3 {
	text-decoration: underline;
	@media (max-width: 768px) {
		font-size: .7em;
    font-family: 'Montserrat', sans-serif;
	}
}
.section-title::after {
  content: "";
  height: 3px;
  width: 80px;
  position: absolute;
  left: 0;
  right: 0;
}

.carousel-client {
  display: flex;
  overflow: auto; 
  width: 100%;
}

.carousel-client img {
  width: 75%; 
  height: auto; 
 
}

/****************/
/*	 BX-SLIDER 	*/
/****************/
section.client {
padding:4em 0em;
background-color: transparent;

}
section.client .section-title {
margin-bottom: 6em;
}
.bx-controls {
position: relative;
}
.bx-wrapper .bx-pager {
  text-align: center;
  padding-top: 30px;
}
.bx-wrapper .bx-pager .bx-pager-item, .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}


/* SECTION - BLOGS */
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

#blogs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.section-title {
  margin-top: 5%;
  margin-bottom: -20px;
  font-size: 24px;
  font-weight: bold;
  color: whitesmoke;
}

.containers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-block: 2rem;
  gap: 2rem;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

h4, p {
  color: rgb(190, 187, 187);
}

.card {
  display: flex;
  flex-direction: column;
  width: clamp(20rem, calc(20rem + 2vw), 22rem);
  overflow: hidden;
  box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 1em;
  background: rgba(129, 83, 40, 0.2);
  margin-top: 5%;
  transition: all ease 0.3s;
      overflow: hidden;
      animation: fadeInLeft 1.5s backwards;
      
      &:nth-child(2){
        animation-delay: 0.15s;
      }
      &:nth-child(3){
        animation-delay: 0.2s;
      }
      &:nth-child(4){
        animation-delay: 0.3s;
      }
      
      &:hover {
       transform: translateY(-6px);
       -webkit-transform: translateY(-6px);
      }

}

.card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}


.tag {
  align-self: flex-start;
  padding: .25em .75em;
  border-radius: 1em;
  font-size: .75rem;
}

.tag + .tag {
  margin-left: .5em;
}

.tag-blue {
  background: #D1913C;
  background: linear-gradient(to bottom, #996515 0%, #8A5606 100%);
  color: #fafafa;
}

.tag-brown {
  background: #D1913C;
  background: linear-gradient(to bottom, #FFD194, #D1913C);
  color: #fafafa;
}

.tag-red {
  background: #cb2d3e;
  background: linear-gradient(to top, #e6b980 0%, #eacda3 100%);
  color: #fafafa;
}

.card__body h4 {
  font-size: 1.5rem;
  text-transform: capitalize;
}

.card__footer {
  display: flex;
  padding: 1rem;
  margin-top: auto;
}

.user {
  display: flex;
  gap: .5rem;
}

.user__image {
  border-radius: 50%;
}

.user__info > small {
  color: #666;
}

.read-more-button {
  display: block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: rgb(197, 139, 31);
  color: white;
  text-align: center;
  border: none;
  border-radius: 5px;
  text-decoration: none;
}

.read-more-button:hover {
  background-color: #a06e44;
}

.btn {
  font-size: 1rem; 
  font-style: justify;
  background-color: transparent;
  color: white;
  text-decoration: none;
  display: inline-block;
}

.btn:hover{
  font-size: 1rem; 
  font-style: justify;
  background-color: transparent;
  color: #a06e44;
  text-decoration: none;
  display: inline-block;
}

.see-more-button {
  display: center;
  margin-top: 8%;
  margin-bottom: 16%; 
  background-color: rgb(182, 155, 0);
  color: white;
  text-align: center;
  border: none;
  border-radius: 5px;
  padding: 13px 100px;

  @media (max-width: 767px) {
    padding: 4px 25px; /* Adjust the padding for smaller screens */
  }
}


.see-more-button:hover {
  background-color: #3D2B1F;
  transform: translateY(-2px); 
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

* .footers {
  margin-left: auto;
  margin-right: auto;
  margin: 0;
  padding: 0;
  background-color: #0b0100;
  color: #fff;
  width: 100vw;
  height: auto;
}

a {
  color: #fff;
  text-decoration: none;
}
.pg-footer {
  font-family: 'Roboto', sans-serif;
}

.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}
.footer-wave-path {
    fill: #a06e44;
}

.footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 450px;
    position: relative;
}

.footer-content-column {
    box-sizing: border-box;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    color: #fff;
}

.footer-content-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-logo-link {
    display: inline-block;
}
.footer-menu {
    margin-top: 30px;
}

.footer-menu-name {
    color: #fffff2;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-menu-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 10px;
    padding-left: 0;
}
.footer-menu-list li {
    margin-top: 5px;
}

.footer-call-to-action-description {
    color: #fffff2;
    margin-top: 10px;
    margin-bottom: 20px;
}
.footer-call-to-action-button:hover {
    background-color: #644117;
    color: white;
}
.button:last-of-type {
    margin-right: 0;
}
.footer-call-to-action-button {
    background-color: rgb(197, 139, 31);
    border-radius: 21px;
    color: #fffff2;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    cursor: pointer;
    position: relative;
}
.footer-call-to-action {
    margin-top: 30px;
}
.footer-call-to-action-title {
    color: #fffff2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-call-to-action-link-wrapper {
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
}
.footer-call-to-action-link-wrapper a {
    color: #fff;
    text-decoration: none;
}


.hidden-link-text {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    top: 50%;
}

.footer-copyright {
    background-color: #644117;
    color: #fff;
    padding: 15px 15px;
    text-align: center;
}

.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding: 0;
}

.footer-copyright-text {
  color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #fff;
    text-decoration: none;
}







/* Media Query For different screens */
@media (min-width:320px) and (max-width:479px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
    .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}

@media (min-width:480px) and (max-width:599px)  { /* smartphones, Android phones, landscape iPhone */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}
@media (min-width:600px) and (max-width: 800px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}
@media (min-width:801px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */

}
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */

}
@media (min-width:1281px) { /* hi-res laptops and desktops */

}




@media (min-width: 760px) {
  .footer-content {
      margin-left: auto;
      margin-right: auto;
      max-width: 1230px;
      padding: 40px 15px 450px;
      position: relative;
  }

  .footer-wave-svg {
      height: 50px;
  }

  .footer-content-column {
      width: 24.99%;
  }
}
@media (min-width: 568px) {
  /* .footer-content-column {
      width: 49.99%;
  } */
}

textarea {
  resize: none;
}

.text {
color: white;
font-size: 20px;
position: absolute;
top: -10%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
white-space: nowrap;
}

@charset "UTF-8";

.svg-inline--fa {
vertical-align: -0.200em;
}

.rounded-social-buttons {
text-align: center;
background: #0b0100;
padding: 0px 10px;
margin-bottom: 30px
}

.rounded-social-buttons .social-button {
display: inline-block;
position: relative;
cursor: pointer;
width: 3.125rem;
height: 3.125rem;
border: 0.125rem solid transparent;
padding: 0;
text-decoration: none;
text-align: center;
color: #fefefe;
font-size: 1.5625rem;
font-weight: normal;
line-height: 2em;
border-radius: 1.6875rem;
transition: all 0.5s ease;
margin-right: 0.25rem;
}

.rounded-social-buttons .social-button:hover, .rounded-social-buttons .social-button:focus {
-webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
        transform: rotate(360deg);
}

.rounded-social-buttons .fa-twitter, .fa-facebook-f, .fa-linkedin, .fa-tiktok, .fa-youtube, .fa-instagram {
font-size: 25px;
}

.rounded-social-buttons .social-button.facebook {
background: #3b5998;
}

.rounded-social-buttons .social-button.facebook:hover, .rounded-social-buttons .social-button.facebook:focus {
color: #3b5998;
background: rgb(197, 139, 31);
border-color: #3b5998;
}

.rounded-social-buttons .social-button.twitter {
background: #55acee;
}

.rounded-social-buttons .social-button.twitter:hover, .rounded-social-buttons .social-button.twitter:focus {
color: #55acee;
background: rgb(197, 139, 31);
border-color: #55acee;
}

.rounded-social-buttons .social-button.linkedin {
background: #007bb5;
}

.rounded-social-buttons .social-button.linkedin:hover, .rounded-social-buttons .social-button.linkedin:focus {
color: #007bb5;
background: rgb(197, 139, 31);
border-color: #007bb5;
}

.rounded-social-buttons .social-button.tiktok {
background:#7289d9;
}

.rounded-social-buttons .social-button.tiktok:hover, .rounded-social-buttons .social-button.tiktok:focus {
color: #7289d9;
background:rgb(197, 139, 31);;
border-color: #7289d9;
}

.rounded-social-buttons .social-button.youtube {
background: #bb0000;
}

.rounded-social-buttons .social-button.youtube:hover, .rounded-social-buttons .social-button.youtube:focus {
color: #bb0000;
background: rgb(197, 139, 31);;
border-color: #bb0000;
}

.rounded-social-buttons .social-button.instagram {
background: #125688;
}

.rounded-social-buttons .social-button.instagram:hover, .rounded-social-buttons .social-button.instagram:focus {
color: #125688;
background: rgb(197, 139, 31);
border-color: #125688;
}


/* Media Query For different screens */
@media (min-width:320px) and (max-width:479px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 150px;
    position: relative;
  }
}
@media (min-width:480px) and (max-width:599px)  { /* smartphones, Android phones, landscape iPhone */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}
@media (min-width:600px) and (max-width: 800px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}
@media (min-width:801px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */

}
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */

}
@media (min-width:1281px) { /* hi-res laptops and desktops */

}




@media (min-width: 760px) {
  .footer-content {
      margin-left: auto;
      margin-right: auto;
      max-width: 1230px;
      padding: 40px 15px 450px;
      position: relative;
  }

  .footer-wave-svg {
      height: 50px;
  }

  .footer-content-column {
      width: 24.99%;
  }
}
@media (min-width: 568px) {
  /* .footer-content-column {
      width: 49.99%;
  } */
}

