/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 10 2024 | 08:23:27 */
 @import url('https://fonts.googleapis.com/css2?family=Rubik:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Rubik';
}
.footerwrapper{
  background: #2B581B;
  position: relative;
  width: 100%;
}
.footerwrapper nav{
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: calc(100% - 200px);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}
nav .footercontent{
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  height: 70px;
}
.footercontent .logo a img {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
nav .footercontent .footerlinks{
  margin-left: 80px;
  display: flex;
	margin: auto;
}
.footercontent .logo a{
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 100px;
}
.footercontent .footerlinks li{
  list-style: none;
  line-height: 70px;
}
.footercontent .footerlinks li a,
.footercontent .footerlinks li label{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 17px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.footercontent .footerlinks li label{
  display: none;
}
.footercontent .footerlinks li a:hover,
.footercontent .footerlinks li label:hover{
  background: #A6CC99;
  color: #2B581B;
  border-radius: 5px;
}

.footerwrapper input[type="checkbox"]{
  display: none;
}

.policy-links {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.policy-links a {
  color: #fff;
  font-size: 14px;
  margin: 0 10px;
  text-decoration: none;
}

.policy-links a:hover {
  color: #A6CC99;
}

/* Responsive code start */
@media screen and (max-width: 1250px){
  .footerwrapper nav{
    max-width: 100%;
    padding: 0 200px 20px;
  }
  nav .footercontent .footerlinks{
    margin-left: 30px;
  }
  .footercontent .footerlinks li a{
    padding: 8px 13px;
  }
	.footercontent .logo a{
    margin-right: auto;
	}
}

@media screen and (max-width: 900px){
  .footerwrapper .menu-icon{
    display: block;
  }
  nav .footercontent .footerlinks{
    display: block;
    position: fixed;
    background: #14181f;
    height: 100%;
    width: 100%;
    top: 70px;
    left: -100%;
    margin-left: 0;
    max-width: 350px;
    overflow-y: auto;
    padding-bottom: 100px;
    transition: all 0.3s ease;
  }
  .footercontent .footerlinks li{
    margin: 15px 20px;
  }
  .footercontent .footerlinks li a,
  .footercontent .footerlinks li label{
    line-height: 40px;
    font-size: 20px;
    display: block;
    padding: 8px 18px;
    cursor: pointer;
  }
  .footercontent .footerlinks li a.footer-desktop-link{
    display: none;
  }
}

@media screen and (max-width: 400px){
  .footerwrapper nav{
    padding: 0 10px 20px;
  }
  .footercontent .logo a{
    font-size: 27px;
  }
}

.dummy-text{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  z-index: -1;
  padding: 0 20px;
  text-align: center;
  transform: translate(-50%, -50%);
}
.dummy-text h2{
  font-size: 45px;
  margin: 5px 0;
}