* {
  margin: 0px;
  padding: 0px;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth !important;
  scroll-padding: var(--scroll-padding, 90px);
}

body{
  /* max-width: 5000px; */
  max-width: 100%;
  height: 100%;
  overflow-x: hidden;
  margin: 0 auto;
}

/* back-to-top button */
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}
.custom-green {
  background-color: #2e8b57;
  color: white;
}
.custom-green:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.btns{
  background-color: #2e8b57;
  color: white;
  font-size: 1.1em;
  border: .3em solid #2e8b57;
  padding: .3em;
  border-radius: .4em;
  transition-duration: 0.4s;
  font-weight: bold;
}

@media screen and (max-width: 699px){
  .btns{
    font-size: 2vw;
  }
}

.btns:hover{
  background: #f7f7f7;
  color: #2e8b57;
  font-weight: bold;
}

.header{
  color: #2e8b57;
  text-transform: uppercase;
  font-size: 1.7em;
  font-weight: 600;
  text-align: center;
  padding: .4em;
}

body{
  background-color: #cadcd1 !important;
}

/*-------------------------------------------------------------------------*/
/*                      N A V I G A T I O N   B A R                        */
/*-------------------------------------------------------------------------*/
.navbar .navbar-brand {
  font-size: 2em;
  letter-spacing: .2em;
  min-width: 25% !important;
  position: relative;
  font-weight: bold;
  color: #2e8b57 !important;
} 

.navbar {
  background-color: #eeeee4!important;
  top: 0;
  width: 100% ;
  align-items: center;
  display: flex ;
  cursor:pointer;
  box-shadow: 00 0 1vw 0vw rgba(0, 0, 0, 0.2);
  padding: .3em 1em !important
}

.navbar a {
  color: #2e8b57 !important;
}

/* .navbar-nav{
margin-left: 10vw;
} */

.navbar .nav-link {
  opacity: 1;
  margin: 0 2em;
  font-size: .7em;
  min-width: 10%;
  font-weight: 700 ;
}

.navbar .nav-item a:hover {
  color: #17462a !important;
}

.navbtn{
  background-color: #2e8b57;
  color: white;
  font-size: .7em;
  padding: .4em;
  border: 3px solid #2e8b57;
  border-radius: .7em;
  transition-duration: 0.4s;
  font-weight: bold;
}

.navbtn:hover{
background: #f7f7f7 !important;
color: #2e8b57 !important;
font-weight: bold;
}

.account{
  margin: auto 0;
  /* margin: 0 2em; */
  margin-left: .7em;
  margin-right: 1em;
  border-right: 2px solid;
  padding: 0 1em;
  color: #2e8b57;
  font-weight: bold;
  font-size: .8em;
}



/*-------------------------------------------------------------------------*/
/*                               LANDING PAGE                              */
/*-------------------------------------------------------------------------*/

.landing-wrapper {
  position: relative;
  overflow: hidden;
  /* padding: 5em; */
  padding: 5em 5em 1em 5em;
  height: 85vh;
  width: auto;
  background-color: rgb(202, 220, 209, 0.75) !important;
  transition: min-height 0.6s ease;
  }

.landing-wrapper::after {
    content: "";
    display: block;
    clear: both;
}

/* @media screen and (min-width: 700px) {
  .landing-wrapper {
    height: 90vh; 
    }
} */

@media screen and (max-width: 699px) {
  .landing-wrapper {
    padding: 9vw;
    }
}

#bg-narrow{
  /* display: none; */
  z-index: -2;
}

.background{
  z-index: -1;
  position: absolute;
  width: 100%;
  left: 0%;
  top: 0%;
  /* height: 70vh; */
  display: block;
}

.background img{
  width: 100%;
  height: 85vh;
  object-fit: fill;
  /* display: block; */
}

.background .splide__arrow{
  display: none !important;
}

.background .splide__pagination{
  display: none !important;
}

/* .landing-wrapper span {
  position: absolute;
  width: 100%;
  display: block;
  height: 100%;
  z-index: -1;
  background-size: contain;
  animation: slide 80s linear infinite;
  bottom: 0%;
  left: 0%;
} */

#arrow-container {
  position: absolute;
  bottom: 1em; /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
}

/* @media screen and (max-width: 250px){
#landing-wrapper{
  background-image:linear-gradient(rgba(202, 220, 209, 0.6), rgba(202, 220, 209, 0.6));
}
} */

.landing {
position: relative;
/* border: solid 1px; */
}

.landing h1{
color: #2e8b57;
/* font-weight: 300; */
/* font-size: max(5vw, 41px); */
/* font-size: 5vw; */
letter-spacing: 2px;
font-weight: bold;
word-wrap:break-word;
}


.landing p{
/* font-size: max(2.2vw, 16px); */
/* font-size: 2.2vw; */
color: #2e8b57;
margin-top: 2vw;
margin-bottom: 2vw;
width: 85%;
font-weight: bold;
word-wrap:break-word;
/* border: solid 1px; */
}

@media screen and (min-width: 700px) {
  .landing h1 {
    font-size: 4em;
    }

  .landing p{
    font-size: 1.6em;
  }
}

@media screen and (max-width: 699px) {
  /* .landing-wrapper {
    height: 75vh;
    } */

    .landing h1 {
      font-size: 9vw;
      }
}

@keyframes slide {
0% {
  transform: translateX(0);
}
100% {
  transform: translateX(-400%);
}
}

/* @media screen and (max-width: 400px) {
.landing h1{
  width: 100%
}  
} */

/*-------------------------------------------------------------------------*/
/*                               ABOUT                              */
/*-------------------------------------------------------------------------*/

.about h1{
  margin-left: .5em;
}


.about p{
  margin-left: .5em;
}


.left-div-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  /* background-color: #ecf1ee; Adjust the background color as needed */
  z-index: 2; /* Ensure it sits behind the .about-container */
  overflow: hidden;
  opacity: 0.55;
}

@media screen and (min-width: 700px) {

.about {
    /* padding: 4vw; */
    margin: 0.8%;
    /* background-color: #ecf1ee; */
    /* font-size: max(1.5vw, 5px); */
    min-height: 37em;
    box-shadow: 00 0 1vw 0vw rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    display: flex;
  }

.about-container{
  font-size: 1.7em;
  /* border: solid 1px; */
  word-wrap: break-word;
  height: 100%;
  width: 97%;
  /* border-top-left-radius: 50%;
  border-bottom-left-radius: 50%; */
  background-color: #eeeee4;
  position: relative;
  margin-left: auto;
  margin-right: 0;
  /* text-align: right; */
  z-index: 3; 
  padding: 1.5em; 
  /* border-left: 3vw solid #2e8b57; */
  clip-path: ellipse(100% 85% at 100% 50%);
}

.about-container-border{
  /* height: 100%; */
  width: 70%;
  /* border-top-left-radius: 50%;
  border-bottom-left-radius: 50%; */
  background-color: #2e8b57;
  position: relative;
  margin-left: auto;
  margin-right: 0;
  /* text-align: right; */
  z-index: 2; /* Ensure it sits above the left-div */
  padding: 0; 
  /* border-left: 3vw solid #2e8b57; */
  clip-path: ellipse(100% 82% at 100% 50%);
}

.left-div {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background-color: #ecf1ee; /* Adjust the background color as needed */
  z-index: 1; /* Ensure it sits behind the .about-container */
  overflow: hidden;
}

}


@media screen and (max-width: 699px){

  .about {
    /* padding: 4vw; */
    margin: 0.8%;
    /* background-color: #ecf1ee; */
    /* font-size: max(1.5vw, 5px); */
    height: 90vh;
    box-shadow: 00 0 1vw 0vw rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    display: flex;
  }

  .about-container-border {
    height: 68%;
    /* width: 70%; */
    background-color: #2e8b57;
    position: absolute;
    bottom: 0;
    margin-left: auto;
    margin-right: 0;
    z-index: 2;
    padding: 0;
    clip-path: ellipse(100% 93% at 50% 100%);
  }

  .about-container {
    /* font-size: 2.5vw; */
    /* border: solid 1px; */
    word-wrap: break-word;
    height: 97%;
    width: 100%;
    background-color: #eeeee4;
    /* position: absolute; */
    margin-left: auto;
    margin-right: 0;
    /* text-align: right; */
    z-index: 3;
    padding: 10% 2vw;
    margin-top: 3%;
    clip-path: ellipse(100% 94% at 50% 100%);
}

    .left-div {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 60%;
      background-color: #ecf1ee;
      z-index: 1;
      overflow: hidden;
    }

}

/* .left-div img{
  width: 100%;
  height: 33.33%;
} */

.about-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  opacity: 0;
  animation: fadeAnimation 12s infinite;
}

@media screen and (max-width: 699px){
  .about-img {
    height: 80%;
  }
}

@media screen and (min-width: 700px){
  .about-img {
    height: 100%;
  }
}


.about-img:nth-child(1) {
  animation-delay: 0s;
}

.about-img:nth-child(2) {
  animation-delay: 4s;
}

.about-img:nth-child(3) {
  animation-delay: 8s;
}

@keyframes fadeAnimation {
  0% { opacity: 0; }
  8% { opacity: 1; }
  33% { opacity: 1; }
  41% { opacity: 0; }
  100% { opacity: 0; }
}


.about ol{
margin-left: 6vw;
}

.about ul{
margin-left: 6vw;
}


/*-------------------------------------------------------------------------*/
/*                               DATA SOURCES                              */
/*-------------------------------------------------------------------------*/

.data-sources{
  background-color: #cce2d4;
  /* min-height: 40vh; */
  box-shadow: 00 0 1vw 0vw rgba(0, 0, 0, 0.2);
  margin: 3% 0.8% 0.8% 0.8%;
  padding-bottom: .2em;
}

@media screen and (max-width: 699px){
  /* .data-sources{
    min-height: 90vh;
  } */
}

@media screen and (min-width: 700px){
  .about-img {
    min-height: 40vh;
  }
}


.cards{
flex: 1;
/* margin: 0 1vw; */
text-align: center;
padding-bottom: .1em;
height: 100%;
}

.grid-desc{
margin-bottom: 0;
}

p.grid-desc{
/* font-size: 1vw !important; */
padding: .7em;
}

.grid-desc {
  transition: opacity 0.3s ease;
  opacity: 1;
  /* display: block; */
}

.card.shrink .grid-desc {
  display: none; /* This ensures that shrunk cards have no visible grid-desc */
}


.cards h1{
color: #2e8b57;
text-transform: uppercase;
font-size: 2em;
font-weight: 600;
text-align: center;
padding: .4em 0 0 0;
}

.future .grid-desc{
  font-weight: normal !important;
}

.history .grid-desc{
  font-weight: normal !important;
}

.cards p{
font-size: 1.1em;
font-weight:bold;
}

#source-services{
  display: flex;
  max-height: 30em;
}

#source-services .grid-desc{
  font-weight: normal;
}

#tools-services{
  height: 40vw
}

#tools-services .card{
  width: unset !important;
}

@media screen and (max-width: 699px){
  #c-tools-cards{
    height: 100%;
  }

  .cards h1{
    font-size: 1.5em;
    }

  .content p{
    font-size: 2vw !important;
    }

    .cards p{
      font-size: .8em;
      }

}



@media screen and (max-width: 1020px){
  #source-services{
    /* max-height: 25em; */
  }

  .content p{
    font-size: .7em;
    }

  .card{
    margin: 2vw 3vw 3vw 3vw !important;
    }
}

/* #c-tools-cards{
  height: 40vw;
} */



.card{
display: flex;
flex-wrap: wrap;
flex: 1;
margin: 1em 2.7em 2.7em 2.7em;
/* margin: 2vw 3vw 3vw 3vw; */
/* background-color: #f6f6e9 !important; */
border: none !important;
padding: 0 none !important;
outline: none !important;
width: 95%;
box-shadow: 0px 0px .5em 0px rgba(0, 0, 0, 0.5);
/* height: 60vh; */
/* align-self: flex-end; */
}


#h_button:hover, #f_button:hover, #t_button:hover{
  /* transform: scale(1.05);
  transition: 
    transform .3s ease; */
    transform: translateY(-10px) !important;
    transition: 
      transform .3s ease, 
      box-shadow .3s ease;
    /* box-shadow: 0px 8px 13px 0px rgba(0, 0, 0, 0.5); */
}

/* #ctools-card{
  border-radius: 0.7vw;
}

#ctools-card:hover{
  transform: scale(1.02);
  transition: 
    transform .3s ease, 
    box-shadow .3s ease;
} */

#h_button, #f_button, #t_button{
background-color: transparent !important;
}


.card .img{
  height: 50%;
  width:100%;
  transition: opacity 0.3s ease;

}
.card .img img{
  height: 100%;
  width: 100%;
  max-width:100%;
  object-fit: cover;
  
}
.card .content{
  height: 50%;
  width:100%;
  padding: .7em;
  background-color:#f6f6e9 ; 
}

/* .content-ctools{
  height: 100%;
  width:100%;
  background-color: f6f6e9;

}

.content-ctools h2{
  color: #2e8b57;
} */


.card h2{
  font-size: 1.9em;
  margin: .3em 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: #000000;
}

@media screen and (max-width: 919px){
  .card h2{
    font-size: 2vw;
    margin: .3em 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000000;
  }
}


.card p{
/* font-size: max(1vw, 8px); */
text-align: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* .fa-solid:hover{
transform: scale(1.2);
transition: 
  transform .3s ease;
} */

.data-sources i{
text-align: bottom;
/* padding-top: 2vw */
}

.hide{
opacity: 0;
}

/* .card-body:hover{
  transform: scale(1.05);
  transition: 
    transform .3s ease;
  } */

.ds-card-1:hover .hide{
opacity: 1;
} 

.ds-card-2:hover .hide{
opacity: 1;
} 
.ds-card-3:hover .hide{
opacity: 1;
} 


/* #c-tools-tab .cards .services .card:hover{
  box-shadow: 00 0 1vw 0vw rgba(0, 0, 0, 0.2);
} */

/*-------------------------------------------------------------------------*/
/*                               HISTORICAL                             */
/*-------------------------------------------------------------------------*/

.historical{
  background-color: #ecf1ee;
  padding:0;
  opacity: 0;
  height: 0;
  transition: 
    opacity .1s linear,
    height .2s linear,
    display .2s linear;
  display: none;
  text-align: center;
  box-shadow: 0px 9px 2vw 0vw rgba(0, 0, 0, 0.2);
  margin: .5em;
}

.historical p{
  margin-bottom: 2.5rem;
}

.historical .cards{
  /* padding-bottom: 80vh; */
}


/*-------------------------------------------------------------------------*/
/*                               FUTURE                             */
/*-------------------------------------------------------------------------*/

.future{
  background-color: #ecf1ee;
  padding: 0;
  opacity: 0;
  height: 0;
  transition: 
    opacity .1s linear,
    height .2s linear,
    display .2s linear;
  display: none;
  text-align: center;
  box-shadow: 0px 9px 2vw 0vw rgba(0, 0, 0, 0.2);
  margin: .5em;
}

.future p{
  margin-bottom: 2.5rem;
}


/*-------------------------------------------------------------------------*/
/*                               CLIMATE TOOLS                             */
/*-------------------------------------------------------------------------*/

.c-tools{
  background-color: #ecf1ee;
  padding: 0;
  opacity: 0;
  height: 0;
  transition: 
    opacity .1s linear,
    height .2s linear,
    display .2s linear;
  display: none;
  overflow: hidden;
  text-align: center;
  box-shadow: 0px 9px 2vw 0vw rgba(0, 0, 0, 0.2);
  margin: .5em;
  }


#ctools h2{
  color: #2e8b57;
}

.narrow-tool-title h2{
  font-size: 1.2em;
}

.narrow-tool-title p{
  font-weight: bold !important;
  font-size: .6em !important;
}

#ctools{
  box-shadow: 00 0 1vw 0vw rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  border-radius: 0.7vw;
}

#ctools:hover{
  transform: scale(1.05);
  transition: 
    transform .3s ease;
}


.container-ctools {
  display: flex;
  align-items: stretch;
  height: 100%;
  width: 100%;

}

.container-ctools .content {
  flex: 1 1 35%; /* Flex-grow: 1, Flex-shrink: 1, Flex-basis: 25% */
  border-top-left-radius: 0.7vw;
  border-top-right-radius: 0.7vw;
}

.ctool-des {
  flex: 3 1 65%; /* Flex-grow: 3, Flex-shrink: 1, Flex-basis: 75% */
  background-color: #f6f6e9; /* Optional: Add background color to distinguish the div */
  /* Add other styles for Test2 content */
  /* height: 100%; */
  width: 100%;
  /* opacity: 0; */
  display: none;
  padding: .7em;
  transition: opacity 0.5s ease, width 0.5s ease;
  border-top-right-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}

#t_up:hover, #h_up:hover, #f_up:hover{
  transform: scale(1.2);
  transition: 
    transform .3s ease;
}

.tools-des{
padding: 3vw;
}

#tool-title{
  color: #2e8b57;
  font-size: 1.5em;
  margin: .3em 1em;
}

@media screen and (max-width: 919px){
  #tool-title{
    color: #2e8b57;
    font-size: 1em;
    margin: .3em 1em;
  }
}

.shrink #tool-title{
  color: #2e8b57; 
  font-size: 1.3em;
  margin:60% 0;
}

#c-tools-cards{
  background: #ecf1ee; 
  /* height:40vw */
}

@media screen and (max-width: 699px){
  .c-tools{
    max-width: 100%;
  }

  #tools-services{
    height: 100%;
  }

  #tool-title{
    display: none;
  }

  .narrow-tool-title{
    display: block;
  }

  .container-ctools .grid-desc{
    display: none !important;
  }

  .ds-card-2 img{
    height: 44vw;
  }

  .shrink #tool-title{
    color: #2e8b57; 
    font-size: .6em !important;
    margin:60% 0;
  }


  .cimg {
    width: 100%;
    /* height: 100%; */
    height: 38vw;
    border-top-left-radius: 0.7vw;
    border-top-right-radius: 0.7vw;
    /* border-radius: 0.7vw; */
    /* border: solid #fff 0.5vw; */
  }

  .content-des .small {
    text-align: center;
    font-weight: 500;
    font-size: 2vw;
    line-height: 1.8em;
    margin-top: 2%;
  }

  .content-des p {
    text-align: center;
    font-weight: 500;
    font-size: 1.5vw;
    line-height: 1.8em;
    margin-bottom: 0;
  }

  .shrink .ctool-des{
    display: none;
    /* width: 0;
    opacity: 0; */
  }

}
@media screen and (max-width: 1000px) {
  .btns {
    background-color: #2e8b57;
    color: white;
    font-size: .75em !important;
    border: .3em solid #2e8b57;
    padding: .3em;
    border-radius: .4em;
    transition-duration: 0.4s;
    font-weight: bold;
}
}

@media screen and (min-width: 1000px) {
  #tools-services{
    max-height: 30em !important;
  }

}

@media screen and (min-width: 700px) {
  #tools-services{
    max-height: 20em;
    display: flex;
    padding: 0 3em;
  }

  .grid-desc{
    margin-bottom: .4em;
  }

  .container-ctools .grid-desc{
    display: block ;
  }

  .content-des p{
    margin-bottom: 1.5vw;
  }

  .narrow-tool-title{
    display: none;
  }

  .cimg{
    width: 100%;
    height: 100%;
    border-top-left-radius: 0.7vw;
    border-top-right-radius: 0.7vw;
    /* border-radius: 0.7vw; */
    /* border: solid #fff 0.5vw; */
  }

  .content-des p{
    text-align: center;
    font-weight: 500;
    font-size: 1.1vw;
    line-height: 1.8em;
    margin-bottom: 0;
  }
    
  .content-des .small{
    text-align: center;
    font-weight: 500;
    font-size: 1.7vw;
    line-height: 1.8em;
    /* margin-top: 12%; */
  }

  .shrink .ctool-des{
    /* display: none; */
    /* width: 0;
    opacity: 0; */
  }

}

.card-tools{
/* color: #ecf1ee; */
flex: 1;
/* margin: 0 10px; */
}

.expanded{
  flex: 3; /* Adjust this value to control the width of the expanded card */
}

.expanded .ctool-des{
  display: block;
  /* width: 100%;
  opacity: 1; */
}

.shrink {
  flex: 0.5; /* Adjust this value to control the width of the shrunk cards */
}




#Caridro{
padding-bottom: 1em !important;
}

.content-des button{
margin-top: 0.7em;
}

.clim{
/* background-color: #ecf1ee !important; */
background-color: transparent;
}





/*-------------------------------------------------------------------------*/
/*                               NEWS                             */
/*-------------------------------------------------------------------------*/

#news{
  margin: 3% 0.8% 0.8% 0.8%;
  background-color: #ecf1ee;
  padding-bottom: 1em;
  box-shadow: 0 0 0.3em 0vw rgba(0, 0, 0, 0.2);
  padding: 0 1em;
}

#news h1{
  font-size:2em;
}

#news .card-title{
  margin-bottom: .75rem;
  font-size: 1em;
  font-weight: bold;
}

@media screen and (max-width: 699px){
  #news h1{
    font-size:1.5em;
  }
}

#news h6{
  font-size: .8em;
}

.news{
  background-color: #ecf1ee;
  padding: 2vw;
  /* height: 100%; */
  width: 100%;
  max-height: 90vh;
}

/* CSS */
.news-container {
  width: 100%; /* Ensure each card takes up the full width */
  display: flex;

}

.news-card {
  width: 100%; /* Ensure each card takes up the full width */
  border: 1px solid #ccc; /* Add a border for visual separation */
  margin-bottom: 20px; /* Add some spacing between cards */
  height: 200px; /* Set a fixed height for the cards */
  box-sizing: border-box; /* Include padding and border in height calculation */
}


.news-content {
  display: flex;
  flex-direction: column; /* Align content vertically */
  padding: 10px; /* Add padding for spacing */
  box-sizing: border-box; /* Include padding in width calculation */
}


.title {
  height: 50%; /* Set the width of the title to 50% */
  width: 100%;
  margin-bottom: 10px; /* Add some spacing below title */
  overflow: hidden; /* Hide overflowing content */
  white-space: nowrap; /* Prevent wrapping */
  text-overflow: ellipsis; /* Add ellipsis for overflow */
}


.news-details {
  flex-grow: 1; /* Ensure the details take up available space */
  height: 50%;
  width: 100%;

}

/* Optionally, you can style links, sources, and dates to align */
.news-details h5,
.news-details h6,
.news-details p {
  margin: 0; /* Remove default margin */
}


.card-body {
  display: flex;
  flex-direction: column;
  height: 13em !important;
}

.card-details {
  margin-top: auto; /* Pushes this section to the bottom */
}

.card-title {
  flex-shrink: 0; /* Prevent the title from shrinking */
}



.custom-slider{
width: 90%;
margin: auto;
}

@media screen and (max-width: 699px){
  .custom-slider{
    width: 60vw;
    margin: auto;
    }
}


.custom-box img{
  width: 100%;
  height: 100%;
}

.splide__slide:hover{
  transform: scale(1.05);
  transition: 
    transform .3s ease;
}


/*-------------------------------------------------------------------------*/
/*                                CONTACT                             */
/*-------------------------------------------------------------------------*/

.contacts {
background-image:linear-gradient(rgba(202, 220, 209, 0.2), rgba(202, 220, 209, 0.2)), url(../img/contact_us_new.png);
background-size: cover;
background-position: left center;
padding: 1em 3em;
margin: 0.8% 0.8% 0 0.8%;
/* height: 90vh; */
}

.contact-overlay{
height: 100%;
color: #fff;
}

.contact a {
  color:white;
}
.contact-overlay h1{
font-size: 2.3em;
margin-bottom: .5em;
font-weight: bold;
}

@media screen and (max-width: 699px){
  .contact-overlay h1{
    font-size: 1.7em;
    }
  .contact-overlay h3{
    font-size: 1.1em;
  }
  
  .contact-overlay p{
    font-size: .8em;
    margin-bottom: .7em;
  }

  #news .btn{
    font-size: .7rem !important;
  }
}


@media screen and (min-width: 700px){

  .contact-overlay h3{
    font-size: 1.7em;
  }
  
  .contact-overlay p{
    font-size: 1.1em;
    margin-bottom: 1em;
  }
}





/*-------------------------------------------------------------------------*/
/*                                FOOTER                             */
/*-------------------------------------------------------------------------*/

/* .footer-outer{
overflow: hidden;
background-color: #a9e7c2;
padding: 3vw 3vw 0;
width: 100%;
align-content: center;
}
.footer-inner{
display: flex;
justify-content: space-between;
align-items: center;
}
.footer-brand {
font-weight: bold;
font-size: max(2.5vw, 10px);
color: #000;
font-weight: bold;
}
.footer-nav {
display: flex;
justify-content: center;
align-items: center;
}
.footer-nav a {
text-decoration: none;
margin-left: 2vw;
color: #000 !important;
font-size: max(1.2vw, 7px);
}
.footer-outer .footer-nav a:hover {
color: #adadad !important;
-webkit-transition: color .2s ease-in-out;
-o-transition: color .2s ease-in-out;
transition: color .2s ease-in-out;
}
.footer-images {
display: flex;
align-items: center;
justify-items: center;
padding: 1vw;
padding-bottom: 2vw;
}

.footer-outer .border-bottom-footer {
height: 1px;
width: 85%;
border: 1px solid #000;
margin-top: 2vw;
display: block;
margin-left: 7.5%;
}
.footer-outer .copyright {
width: 100%;
justify-items: center;
color: #000;
margin-top: 4vw;
font-size: max(1vw, 4px);
}

.res-img{
max-width: 100%;
height: auto;
}

.copyright a:link{
color: #000 !important;
background-color: transparent;
}

.copyright a:hover {
color: #000;
background-color: transparent;
text-decoration: underline;
} */

