/* // <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 400 to 900

.cinzel-<uniquifier> {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */
.ratio-19x6 {
  --bs-aspect-ratio: calc(6 / 19 * 100%); /* Aspect ratio calculation */
}

@keyframes appear2{
  from{
    opacity: 0;
    scale: .9;
    transform: translatey(20px);
  }
  to{
    opacity: 1;
    scale: 1;
    transform: translateX(0px);
  }
}

.text-overlay{
  animation: appear2 ease-out;
  animation-duration: .5s ;
  
}



@keyframes appear1{
  from{
    opacity: 0;
    scale: 1;
    transform: translateX(50px);
  }
  to{
    opacity: 1;
    scale: 1;
    transform: translateX(0px);
  }
}

.left-slide,.s2h{
  animation: appear1 linear;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}


@keyframes appear{
  from{
    opacity: 0;
    scale: 0.9;
    transform: translateX(-100px);
  }
  to{
    opacity: 1;
    scale: 1;
    transform: translateX(0px);
  }
  
}

.para,.para2,.card-text,.card-text-small,.s3hg{
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.p-just{
  text-align: justify;
}
.text-color{
  color: #480028;
}
.text-color2{
  color: #58595B;
}

/* Button Styling */
.btn-wine {
  background-color: #8B0000; /* Deep wine red color */
  color: white; /* Text color */
  padding: 10px 50px; /* Adjust padding for size */
  border: none; /* Remove border */
  cursor: pointer; /* Change cursor to pointer */
  text-align: center; /* Center the text */
  font-size: 16px; /* Adjust font size */
  font-weight: normal; /* Bold text */
  transition: background-color 0.3s ease; /* Smooth hover transition */
}

.btn-wine:hover {
  background-color: #6A0000; /* Darker wine color on hover */
}

/* Optional Styling */
.text-center {
  text-align: center;
}

.rounded-0 {
  border-radius: 0; /* No rounded corners */
}

.fb-h {
  height: 75px; /* Set a fixed height */
}

.h-75 {
  height: 75%; /* Example percentage height if relevant */
}



.navbar-toggler{
  width: 20px;
  height: 20px;
  position: relative;
  transition: .5s ease-in-out;
}
.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

.navbar-toggler span{
  margin: 0;
  padding: 0;

}
.toggler-icon{
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: black;
  border-radius: 1px;
  left: 0;
  transform: rotate(0deg);
  transition: .2s ease-in-out;
}
.middle-bar{
  margin-top: 0px;
}

.navbar-toggler .top-bar{
  margin-top: 0;
  transform: rotate(135deg);
}
.navbar-toggler .middle-bar{
  opacity: 0;
  filter: alpha(opacity=0);
}
.navbar-toggler .bottom-bar{
  margin-top: 0;
  transform: rotate(-135deg);
}
/* collapsed */
.navbar-toggler.collapsed .top-bar{
  margin-top: -20px;
  transform: rotate(0deg);
}
.navbar-toggler.collapsed .middle-bar{
  opacity: 1;
  filter: alpha(opacity=100);
}
.navbar-toggler.collapsed .bottom-bar{
  margin-top: 20px;
  transform: rotate(0deg);
}


.navbar-brand img {
  width: 80px; /* Logo size */
  position: relative;
  z-index: 1; /* Ensure the logo appears on top of other elements */
}

.navbar-brand {
  margin-right: 0;
  padding: 0 1em;
  position: relative;
  top: 15px; /* Move the logo down */
}

.navbar .navbar-nav .nav-link {
  color: #480028;
  font-size: 1em;
  padding: 0.5em 1em;
  font-family: "myriad-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  transition: color 0.3s ease;
}

.navbar .navbar-nav .nav-link.active {
  color: #ADC65D;
  font-family: "myriad-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.navbar .navbar-nav .nav-link:hover {
  
  color: #ADC65D;
}




.navbar {
  position: relative;
  z-index: 2;
}

.navbar-nav {
  align-items: center;
}

.nav-item {
  margin: 0 15px; /* Adds horizontal space between the menu items */
}

      /* Style for the button */
      #audio-control {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background-color: #f1f1f1;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 25;
    }
    #audio-control svg {
        width: 24px;
        height: 24px;
    }


/* Carousel image full width and height */
.carousel-inner img {
  width: 100%; /* Full width */
  height: 100%; /* Ensures images take full height of the container */
  object-fit: cover; /* Keeps the image aspect ratio while covering the container */
}

/* Set the height of the carousel on large screens */
#demo {
  height: 800px; /* Set height to 800px */
  width: 100%; /* Full width */
  z-index: 1;
}


.con{
  width:90%;
  margin-left: auto;
  margin-right: auto;
}
.text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
  border-radius: 10px;

}
.box-on-carousel {
  position: absolute;
  top: 0;
  margin: 0;
  left: 50%;
  transform: translateX(-50%); /* Center the box horizontally */
  width: 200px;
  height: 100px;
  z-index: 15; /* Ensure the box is above the carousel */

}
.home-banner-p-text{
  color: #ADC65D;
  font-size: 1.3em;
  padding: 0.5em 1em;
  font-family: "myriad-pro-semi-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  transition: color 0.3s ease;
}

.home-banner-h-text{
    color: #480028;
    font-family: "Cinzel", serif;
    font-size: 4em;
    font-weight: 300;
    font-style: normal;
  
}

.home-banner-p-text-w{
  color: #ffffff;
  font-size: 1.3em;
  padding: 0.5em 1em;
  font-family: "myriad-pro-semi-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  transition: color 0.3s ease;
}

.home-banner-h-text-w{
    color: #ffffff;
    font-family: "Cinzel", serif;
    font-size: 4em;
    font-weight: 300;
    font-style: normal;
  
}


.fb-h{
  text-align: start;
  height: 90px;
}
.mb-h{
  height: 350px;
}

.home-banner-p-text-rw{
  color: #480028;
  font-size: 1.3em;
  padding: 0.5em 1em;
  font-family: "myriad-pro-semi-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  transition: color 0.3s ease;
}

.home-banner-h-text-rw{
    color: #480028;
    font-family: "Cinzel", serif;
    font-size: 4em;
    font-weight: 300;
    font-style: normal;
  
}
/* Green button styling */
.btn-green {
  width: 200px;
  background-color: #ADC65D; /* Change the background color to match your brand */
  color: white; /* Better contrast for readability */
  border: none; /* Remove default borders */
  padding: 10px 20px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Button hover effect */
.btn-green:hover {
  background-color: #96b14f; /* Darker green on hover */
  color: white;
}

.home-banner-button-text {
  color: #ADC65D;
  font-size: 1em;
  padding: 0.5em 1em;
  font-family: "myriad-pro-semi-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  transition: color 0.3s ease, background-color 0.3s ease;
  background: none;
  border-color: #ADC65D;
  width: 150px;
  cursor: pointer; /* Makes the button look clickable */
}

.home-banner-button-text:hover {
  color: #fff;
  background-color: #ADC65D; /* Adds background color on hover */
}
.parallax {
  /* Create a full height parallax effect */
  height: 800px; /* Set height of the parallax section */
  background-attachment: fixed; /* Keeps the background fixed during scroll */
  background-size: cover; /* Ensures the background image covers the entire section */
  background-position: center; /* Centers the background image */
  position: relative; /* Relative positioning for text overlay */
}
.para{
  color: #58595B;
  font-size: 1.4em;
  padding: 0.5em 1em;
  font-family: "myriad-pro-semi-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  transition: color 0.3s ease;
}
.TRA{
    color: #480028;
    padding: 0.5em 1em;
    font-family: "Cinzel", serif;
    font-size: 2em;
    font-weight: 300;
    font-style: normal;
    line-height:40px ;
}

.line {
  height: 1px; /* Example: 5px thick */
  background-color:#480028; /* Black line */
  border: none; /* Remove default styling */
  color: #480028;
}
.line-w{

  height: 1px; /* Example: 5px thick */
  background-color:#B3B5B8; /* Black line */
  border: none; /* Remove default styling */
  color: #B3B5B8;
}
.line-2{
  height: 1px; /* Example: 5px thick */
  background-color:#480028; /* Black line */
  border: none; /* Remove default styling */
  color: #480028;
  width: 5%;
  margin-left: 47.5%;
  position: relative;
  top: -10px; /* Move the logo down */
}

.s2h{
  color: #480028;
  padding: 0.5em 1em;
  font-family: "Cinzel", serif;
  font-size: 2em;
  font-weight: 300;
  font-style: normal;
  line-height:40px ;
}

.s3h{
  color: #480028;
  padding: 0.5em 1em;
  font-family: "Cinzel", serif;
  font-size: 1.1em;
  font-weight: 300;
  font-style: normal; 
  line-height:40px ;
}
.s3hg{
  color: #480028;
  padding: 0.5em 1em;
  font-family: "Cinzel", serif;
  font-size: 1.2em;
  font-weight: 300;
  font-style: normal; 
  line-height:40px ;
}

.para2{
  color: #58595B;
  font-size: 1.2em;
  font-family: "myriad-pro-semi-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  transition: color 0.3s ease;
  line-height:25px ;
}

.s4h{
  color: #480028;
  font-family: "Cinzel", serif;
  font-size: 3em;
  font-weight: 700;
  font-style: normal;
  line-height:40px ;
}
/* .s5h{
  color: #480028;
  font-family: "Cinzel", serif;
  font-size: .8em;
  font-weight: 700;
  font-style: normal;
  line-height:40px ;
} */
.s5h-lite{
  color: #480028;
  font-family: "Cinzel", serif;
  font-size: 1.5em;
  font-weight: 300;
  font-style: normal;
  line-height:40px ;
}
.wine-of-georgia{
  width: 50%;
  margin-left: 25%;
}
.card-color{
  background-color:#F4F0EF

}
.card-text-small{
  color: #58595B;
  font-size: 1.2em;
  font-family: "myriad-pro-semi-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  transition: color 0.3s ease;
}

.card-text{
  color: #58595B;
  font-size: 1.4em;
  font-family: "myriad-pro-semi-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  transition: color 0.3s ease;
}

.short-line{
  transition: color 0.3s ease;
  width: 80px;
}

.margin-box{
  margin: 1em 1em;
}
.margin-box-m{
  margin: 0em .1em;
}
.footer{
  background-color: #343130;
}

.navbar-brand-footer img{
  width: 120px;
}

.footer-text{
  color: #B3B5B8;
  font-size: 1.2em;
  font-family: "myriad-pro-semi-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  transition: color 0.3s ease;
  line-height: 23px;
}
.footer-links{
  text-decoration: none;
  color: #B3B5B8;

}

.gallery-item {
  margin-bottom: 30px;
}
.gallery-item img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

     
  .navbar-brand img {
    width: 80px; /* Logo size */
    position: relative;
    z-index: 1; /* Ensure the logo appears on top of other elements */
  }
  
  .navbar-brand {
    margin-right: 0;
    padding: 0 .2em;
    position: relative;
    top: 5px; /* Move the logo down */
  }
  

  
  .navbar {
    position: relative;
    z-index: 2;
  }
  
  .navbar-nav {
    align-items: center;
  }
  
  .nav-item {
    margin: 0 0px; /* Adds horizontal space between the menu items */
  }
  
  .navbar .navbar-nav .nav-link {
    color: #480028;
    font-size: 1em;
    padding: 0.5em 1em;
    font-family: "myriad-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    transition: color 0.3s ease;
  }
  
  .navbar .navbar-nav .nav-link.active {
    color: #ADC65D;
    font-family: "myriad-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .navbar .navbar-nav .nav-link:hover {
    
    color: #ADC65D;
  }
  
  

      /* Style for the button */
      #audio-control {
        position: fixed;
        top: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        background-color: #f1f1f1;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 25;
    }
    #audio-control svg {
        width: 24px;
        height: 24px;
    }

    .home-banner-h-text-w{
      color: #ffffff;
      font-family: "Cinzel", serif;
      font-size: 1.4em;
      font-weight: 300;
      font-style: normal;
    
  }
}
.iframe-video{
  width: 70%;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

    
  .navbar-brand img {
    width: 80px; /* Logo size */
    position: relative;
    z-index: 1; /* Ensure the logo appears on top of other elements */
  }
  
  .navbar-brand {
    margin-right: 0;
    padding: 0 .2em;
    position: relative;
    top: 0px; /* Move the logo down */
  }
  

  .navbar {
    position: relative;
    z-index: 2;
  }
  
  .navbar-nav {
    align-items: center;
  }
  
  .nav-item {
    margin: 0 0px; /* Adds horizontal space between the menu items */
  }
  

  
      /* Style for the button */
      #audio-control {
        position: fixed;
        top: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        background-color: #f1f1f1;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 25;
    }
    #audio-control svg {
        width: 24px;
        height: 24px;
    }

  /* Carousel image full width and height */
  .carousel-inner img {
    width: 100%; /* Full width */
    height: 100%; /* Ensures images take full height of the container */
    object-fit: cover; /* Keeps the image aspect ratio while covering the container */
  }
  
  /* Set the height of the carousel on large screens */
  #demo {
    height: 600px; /* Set height to 800px */
    width: 100%; /* Full width */
    z-index: 1;
  }
  

  .con{
    width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 1px;
    border-radius: 1px;
  }
  .box-on-carousel {
    position: absolute;
    top: 0;
    margin: 0;
    left: 50%;
    transform: translateX(-50%); /* Center the box horizontally */
    width: 200px;
    height: 100px;
    z-index: 15; /* Ensure the box is above the carousel */
  
  }
  .home-banner-p-text{
    color: #ADC65D;
    font-size: .8em;
    padding: 0.5em 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
  }
  
  .home-banner-h-text-w{
    color: #ffffff;
    font-family: "Cinzel", serif;
    font-size: 2.2em;
    font-weight: 300;
    font-style: normal;
  
}
  
  .home-banner-button-text {
    color: #ADC65D;
    font-size: .8em;
    padding: 0.5em 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease, background-color 0.3s ease;
    background: none;
    border-color: #ADC65D;
    width: 150px;
    cursor: pointer; /* Makes the button look clickable */
  }
  
  .home-banner-button-text:hover {
    color: #fff;
    background-color: #ADC65D; /* Adds background color on hover */
  }
  .parallax {
    /* Create a full height parallax effect */
    height: 600px; /* Set height of the parallax section */
    background-attachment: fixed; /* Keeps the background fixed during scroll */
    background-size: cover; /* Ensures the background image covers the entire section */
    background-position: center; /* Centers the background image */
    position: relative; /* Relative positioning for text overlay */
  }
  .para{
    color: #58595B;
    font-size: .8em;
    padding: 0.5em 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
  }
  .TRA{
      color: #480028;
      padding: 0.5em 1em;
      font-family: "Cinzel", serif;
      font-size: 1em;
      font-weight: 300;
      font-style: normal;
      line-height:20px ;
  }
  
  .line {
    height: 1px; /* Example: 5px thick */
    background-color:#480028; /* Black line */
    border: none; /* Remove default styling */
    color: #480028;
  }
  .line-2{
    height: 1px; /* Example: 5px thick */
    background-color:#480028; /* Black line */
    border: none; /* Remove default styling */
    color: #480028;
    width: 5%;
    margin-left: 47.5%;
    position: relative;
    top: -10px; /* Move the logo down */
  }
  
  .s2h{
    color: #480028;
    padding: 0.5em 1em;
    font-family: "Cinzel", serif;
    font-size: 1.3em;
    font-weight: 300;
    font-style: normal;
    line-height:40px ;
  }
  
  .s3h{
    color: #480028;
    padding: 0.5em .5em;
    font-family: "Cinzel", serif;
    font-size: .9em;
    font-weight: 300;
    font-style: normal; 
    line-height:40px ;
  }
  .s3hg{
    color: #480028;
    padding: 0.5em 1em;
    font-family: "Cinzel", serif;
    font-size: 1.2em;
    font-weight: 300;
    font-style: normal; 
    line-height:40px ;
  }
  
  .para2{
    color: #58595B;
    font-size: .8em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
    line-height:18px ;
  }
  
  .s4h{
    color: #480028;
    font-family: "Cinzel", serif;
    font-size: 1.5em;
    font-weight: 700;
    font-style: normal;
    line-height:20px ;
  }
  .s5h{
    color: #480028;
    font-family: "Cinzel", serif;
    font-size: .8em;
    font-weight: 700;
    font-style: normal;
    line-height:40px ;
  }
  .wine-of-georgia{
    width: 50%;
    margin-left: 25%;
  }
  .card-color{
    background-color:#F4F0EF
  
  }
  .card-text-small{
    color: #58595B;
    font-size: .8em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
  }
  
  .card-text{
    color: #58595B;
    font-size: .8em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
  }
  
  .short-line{
    transition: color 0.3s ease;
    width: 70px;
    padding: 0;
    margin: 0;
  }
  
  .margin-box{
    margin: 0em .2em;
  }

  .margin-bottom-1 {
    margin-bottom: 15px;
  }
  .margin-top-bottom-1 {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .margin-top-bottom{
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .padding-top-bottom-1 {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .footer{
    background-color: #343130;
  }
  
  .navbar-brand-footer img{
    width: 100px;
  }
  
  .footer-text{
    color: #B3B5B8;
    font-size: 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
    line-height: 16px;
  }
  .footer-links{
    text-decoration: none;
    color: #B3B5B8;
    font-size: 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
    line-height: 23px;
  }
  
  .f-img{
    width: 70px
  }

}



/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  
  .navbar-brand img {
    width: 80px; /* Logo size */
    position: relative;
    z-index: 1; /* Ensure the logo appears on top of other elements */
  }
  
  .navbar-brand {
    margin-right: 0;
    padding: 0 .2em;
    position: relative;
    top: 15px; /* Move the logo down */
  }
  

  
  .navbar {
    position: relative;
    z-index: 2;
  }
  
  .navbar-nav {
    align-items: center;
  }
  
  .nav-item {
    margin: 0 0px; /* Adds horizontal space between the menu items */
  }
  
  .navbar .navbar-nav .nav-link {
    color: #480028;
    font-size: .8em;
    padding: 0.5em 1em;
    font-family: "myriad-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    transition: color 0.3s ease;
  }
  
  .navbar .navbar-nav .nav-link.active {
    color: #ADC65D;
    font-family: "myriad-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .navbar .navbar-nav .nav-link:hover {
    
    color: #ADC65D;
  }
  
  
      /* Style for the button */
      #audio-control {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background-color: #f1f1f1;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 25;
    }
    #audio-control svg {
        width: 24px;
        height: 24px;
    }

  /* Carousel image full width and height */
  .carousel-inner img {
    width: 100%; /* Full width */
    height: 100%; /* Ensures images take full height of the container */
    object-fit: cover; /* Keeps the image aspect ratio while covering the container */
  }
  
  /* Set the height of the carousel on large screens */
  #demo {
    height: 600px; /* Set height to 800px */
    width: 100%; /* Full width */
    z-index: 1;
  }
  

  .con{
    width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 1px;
    border-radius: 1px;
  }
  .box-on-carousel {
    position: absolute;
    top: 0;
    margin: 0;
    left: 50%;
    transform: translateX(-50%); /* Center the box horizontally */
    width: 200px;
    height: 100px;
    z-index: 15; /* Ensure the box is above the carousel */
  
  }
  .home-banner-p-text{
    color: #ADC65D;
    font-size: .8em;
    padding: 0.5em 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
  }
  
  .home-banner-h-text-w{
    color: #ffffff;
    font-family: "Cinzel", serif;
    font-size: 3em;
    font-weight: 300;
    font-style: normal;
  
}
  
  .home-banner-button-text {
    color: #ADC65D;
    font-size: .8em;
    padding: 0.5em 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease, background-color 0.3s ease;
    background: none;
    border-color: #ADC65D;
    width: 150px;
    cursor: pointer; /* Makes the button look clickable */
  }
  
  .home-banner-button-text:hover {
    color: #fff;
    background-color: #ADC65D; /* Adds background color on hover */
  }
  .parallax {
    /* Create a full height parallax effect */
    height: 600px; /* Set height of the parallax section */
    background-attachment: fixed; /* Keeps the background fixed during scroll */
    background-size: cover; /* Ensures the background image covers the entire section */
    background-position: center; /* Centers the background image */
    position: relative; /* Relative positioning for text overlay */
  }
  .para{
    color: #58595B;
    font-size: .8em;
    padding: 0.5em 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
  }
  .TRA{
      color: #480028;
      padding: 0.5em 1em;
      font-family: "Cinzel", serif;
      font-size: 1em;
      font-weight: 300;
      font-style: normal;
      line-height:20px ;
  }
  
  .line {
    height: 1px; /* Example: 5px thick */
    background-color:#480028; /* Black line */
    border: none; /* Remove default styling */
    color: #480028;
  }
  .line-2{
    height: 1px; /* Example: 5px thick */
    background-color:#480028; /* Black line */
    border: none; /* Remove default styling */
    color: #480028;
    width: 5%;
    margin-left: 47.5%;
    position: relative;
    top: -10px; /* Move the logo down */
  }
  
  .s2h{
    color: #480028;
    padding: 0.5em 1em;
    font-family: "Cinzel", serif;
    font-size: 1.3em;
    font-weight: 300;
    font-style: normal;
    line-height:40px ;
  }
  
  .s3h{
    color: #480028;
    padding: 0.5em .5em;
    font-family: "Cinzel", serif;
    font-size: 1em;
    font-weight: 300;
    font-style: normal; 
    line-height:40px ;
  }
  
  .para2{
    color: #58595B;
    font-size: .8em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
    line-height:18px ;
  }
  
  .s4h{
    color: #480028;
    font-family: "Cinzel", serif;
    font-size: 1.5em;
    font-weight: 700;
    font-style: normal;
    line-height:20px ;
  }
  .s5h{
    color: #480028;
    font-family: "Cinzel", serif;
    font-size: 1em;
    font-weight: 700;
    font-style: normal;
    line-height:40px ;
  }
  .wine-of-georgia{
    width: 50%;
    margin-left: 25%;
  }
  .card-color{
    background-color:#F4F0EF
  
  }
  .card-text-small{
    color: #58595B;
    font-size: .8em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
  }
  
  .card-text{
    color: #58595B;
    font-size: .8em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
  }
  
  .short-line{
    transition: color 0.3s ease;
    width: 70px;
    padding: 0;
    margin: 0;
  }
  
  .margin-box{
    margin: 0em .2em;
  }
  .margin-bottom-1 {
    margin-bottom: 15px;
  }
  .margin-top-bottom-1 {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .margin-top-bottom{
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .padding-top-bottom-1 {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .footer{
    background-color: #343130;
  }
  
  .navbar-brand-footer img{
    width: 100px;
  }
  
  .footer-text{
    color: #B3B5B8;
    font-size: 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
    line-height: 16px;
  }
  .footer-links{
    text-decoration: none;
    color: #B3B5B8;
    font-size: 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
    line-height: 23px;
  }
  
  .f-img{
    width: 70px
  }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  
  .navbar-brand img {
    width: 80px; /* Logo size */
    position: relative;
    z-index: 1; /* Ensure the logo appears on top of other elements */
  }
  
  .navbar-brand {
    margin-right: 0;
    padding: 0 1em;
    position: relative;
    top: 15px; /* Move the logo down */
  }

  .navbar {
    position: relative;
    z-index: 2;
  }
  
  .navbar-nav {
    align-items: center;
  }
  
  .nav-item {
    margin: 0 10px; /* Adds horizontal space between the menu items */
  }
  
 
  
  /* Carousel image full width and height */
  .carousel-inner img {
    width: 100%; /* Full width */
    height: 100%; /* Ensures images take full height of the container */
    object-fit: cover; /* Keeps the image aspect ratio while covering the container */
  }
  
  /* Set the height of the carousel on large screens */
  #demo {
    height: 600px; /* Set height to 800px */
    width: 100%; /* Full width */
    z-index: 1;
  }
  

  .con{
    width: 780px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
  }
  .box-on-carousel {
    position: absolute;
    top: 0;
    margin: 0;
    left: 50%;
    transform: translateX(-50%); /* Center the box horizontally */
    width: 200px;
    height: 100px;
    z-index: 15; /* Ensure the box is above the carousel */
  
  }
  .home-banner-p-text{
    color: #ADC65D;
    font-size: 1em;
    padding: 0.5em 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
  }
  
  .home-banner-h-text-w{
    color: #ffffff;
    font-family: "Cinzel", serif;
    font-size: 4em;
    font-weight: 300;
    font-style: normal;
  
}
  
  .home-banner-button-text {
    color: #ADC65D;
    font-size: .8em;
    padding: 0.5em 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease, background-color 0.3s ease;
    background: none;
    border-color: #ADC65D;
    width: 150px;
    cursor: pointer; /* Makes the button look clickable */
  }
  
  .home-banner-button-text:hover {
    color: #fff;
    background-color: #ADC65D; /* Adds background color on hover */
  }
  .parallax {
    /* Create a full height parallax effect */
    height: 600px; /* Set height of the parallax section */
    background-attachment: fixed; /* Keeps the background fixed during scroll */
    background-size: cover; /* Ensures the background image covers the entire section */
    background-position: center; /* Centers the background image */
    position: relative; /* Relative positioning for text overlay */
  }
  .para{
    color: #58595B;
    font-size: 1em;
    padding: 0.5em 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
  }
  .TRA{
      color: #480028;
      padding: 0.5em 1em;
      font-family: "Cinzel", serif;
      font-size: 1.3em;
      font-weight: 300;
      font-style: normal;
      line-height:30px ;
  }
  
  .line {
    height: 1px; /* Example: 5px thick */
    background-color:#480028; /* Black line */
    border: none; /* Remove default styling */
    color: #480028;
  }
  .line-2{
    height: 1px; /* Example: 5px thick */
    background-color:#480028; /* Black line */
    border: none; /* Remove default styling */
    color: #480028;
    width: 5%;
    margin-left: 47.5%;
    position: relative;
    top: -10px; /* Move the logo down */
  }
  
  .s2h{
    color: #480028;
    padding: 0.5em 1em;
    font-family: "Cinzel", serif;
    font-size: 1.8em;
    font-weight: 300;
    font-style: normal;
    line-height:40px ;
  }
  
  .s3h{
    color: #480028;
    padding: 0.5em 1em;
    font-family: "Cinzel", serif;
    font-size: 1.1em;
    font-weight: 300;
    font-style: normal; 
    line-height:10px ;

  }
  
  .para2{
    color: #58595B;
    font-size: 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
    line-height:22px ;
  }
  
  .s4h{
    color: #480028;
    font-family: "Cinzel", serif;
    font-size: 1.5em;
    font-weight: 700;
    font-style: normal;
    line-height:20px ;
  }
  .s5h{
    color: #480028;
    font-family: "Cinzel", serif;
    font-size: 1.5em;
    font-weight: 700;
    font-style: normal;
    line-height:40px ;
  }
  .wine-of-georgia{
    width: 50%;
    margin-left: 25%;
  }
  .card-color{
    background-color:#F4F0EF
  
  }
  .card-text-small{
    color: #58595B;
    font-size: .9em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
  }
  
  .card-text{
    color: #58595B;
    font-size: .8em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
    line-height:14px ;
  }
  
  .short-line{
    transition: color 0.3s ease;
    width: 70px;
  }
  
  .margin-box{
    margin: 0em 2.3em;
  }
  .footer{
    background-color: #343130;
  }
  
  .navbar-brand-footer img{
    width: 100px;
  }
  
  .footer-text{
    color: #B3B5B8;
    font-size: 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
    line-height: 16px;
  }
  
  .f-img{
    width: 70px
  }
}



/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .navbar-brand img {
    width: 80px; /* Logo size */
    position: relative;
    z-index: 1; /* Ensure the logo appears on top of other elements */
  }
  
  .navbar-brand {
    margin-right: 0;
    padding: 0 1em;
    position: relative;
    top: 15px; /* Move the logo down */
  }
  
  .navbar .navbar-nav .nav-link {
    color: #480028;
    font-size: 1em;
    padding: 0.5em 1em;
    font-family: "myriad-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    transition: color 0.3s ease;
  }
  
  .navbar .navbar-nav .nav-link.active {
    color: #ADC65D;
    font-family: "myriad-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .navbar .navbar-nav .nav-link:hover {
    
    color: #ADC65D;
  }
  
  
  .navbar {
    position: relative;
    z-index: 2;
  }
  
  .navbar-nav {
    align-items: center;
  }
  
  .nav-item {
    margin: 0 15px; /* Adds horizontal space between the menu items */
  }
  

  
  /* Carousel image full width and height */
  .carousel-inner img {
    width: 100%; /* Full width */
    height: 100%; /* Ensures images take full height of the container */
    object-fit: cover; /* Keeps the image aspect ratio while covering the container */
  }
  
  /* Set the height of the carousel on large screens */
  #demo {
    height: 800px; /* Set height to 800px */
    width: 100%; /* Full width */
    z-index: 1;
  }
  
  @media screen and (min-width: 768px) {
    /* Large screens: Set a fixed height of 800px */
    #demo {
      height: 800px;
    }
  
    .carousel-inner {
      height: 100%; /* Ensures inner carousel items take full height */
    }
  }
.con{
  width: 880px;
  margin-left: auto;
  margin-right: auto;
}
  .text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
  }
  .box-on-carousel {
    position: absolute;
    top: 0;
    margin: 0;
    left: 50%;
    transform: translateX(-50%); /* Center the box horizontally */
    width: 200px;
    height: 100px;
    z-index: 15; /* Ensure the box is above the carousel */
  
  }
  .home-banner-p-text{
    color: #ADC65D;
    font-size: 1.3em;
    padding: 0.5em 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
  }
  
  .home-banner-h-text{
    color: #c3ee38;
      font-family: "Cinzel", serif;
      font-size: 4em;
      font-weight: 300;
      font-style: normal;
    
  }
  
  .home-banner-button-text {
    color: #ADC65D;
    font-size: 1em;
    padding: 0.5em 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease, background-color 0.3s ease;
    background: none;
    border-color: #ADC65D;
    width: 150px;
    cursor: pointer; /* Makes the button look clickable */
  }
  
  .home-banner-button-text:hover {
    color: #fff;
    background-color: #ADC65D; /* Adds background color on hover */
  }
  .parallax {
    /* Create a full height parallax effect */
    height: 800px; /* Set height of the parallax section */
    background-attachment: fixed; /* Keeps the background fixed during scroll */
    background-size: cover; /* Ensures the background image covers the entire section */
    background-position: center; /* Centers the background image */
    position: relative; /* Relative positioning for text overlay */
  }
  .para{
    color: #58595B;
    font-size: 1.1em;
    padding: 0.5em 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
  }
  .TRA{
      color: #480028;
      padding: 0.5em 1em;
      font-family: "Cinzel", serif;
      font-size: 1.6em;
      font-weight: 300;
      font-style: normal;
      line-height:30px ;
  }
  
  .line {
    height: 1px; /* Example: 5px thick */
    background-color:#480028; /* Black line */
    border: none; /* Remove default styling */
    color: #480028;
  }
  .line-2{
    height: 1px; /* Example: 5px thick */
    background-color:#480028; /* Black line */
    border: none; /* Remove default styling */
    color: #480028;
    width: 5%;
    margin-left: 47.5%;
    position: relative;
    top: -10px; /* Move the logo down */
  }
  
  .s2h{
    color: #480028;
    padding: 0.5em 1em;
    font-family: "Cinzel", serif;
    font-size: 2.2em;
    font-weight: 300;
    font-style: normal;
    line-height:40px ;
  }
  
  .s3h{
    color: #480028;
    padding: 0.5em 1em;
    font-family: "Cinzel", serif;
    font-size: 1em;
    font-weight: 300;
    font-style: normal; 

  }
  .s3hg{
    color: #480028;
    padding: 0.5em 1em;
    font-family: "Cinzel", serif;
    font-size: 1em;
    font-weight: 300;
    font-style: normal; 

  }
  
  .para2{
    color: #58595B;
    font-size: 1.1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
    line-height:22px ;
  }
  
  .s4h{
    color: #480028;
    font-family: "Cinzel", serif;
    font-size: 2em;
    font-weight: 700;
    font-style: normal;
    line-height:22px ;
  }
  .s5h{
    color: #480028;
    font-family: "Cinzel", serif;
    font-size: 2em;
    font-weight: 700;
    font-style: normal;
    line-height:40px ;
  }
  .s5h-lite{
    color: #480028;
    font-family: "Cinzel", serif;
    font-size: 2em;
    font-weight: 300;
    font-style: normal;
    line-height:40px ;
  }
  .wine-of-georgia{
    width: 50%;
    margin-left: 25%;
  }
  .card-color{
    background-color:#F4F0EF
  
  }
  .card-text-small{
    color: #58595B;
    font-size: .9em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
  }
  
  .card-text{
    color: #58595B;
    font-size: 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
    line-height:18px ;
  }
  
  .short-line{
    transition: color 0.3s ease;  
    width: 80px;
  }
  
  .margin-box{
    margin: 0em 3.3em;
  }
  .footer{
    background-color: #343130;
  }
  
  .navbar-brand-footer img{
    width: 120px;
  }
  
  .footer-text{
    color: #B3B5B8;
    font-size: 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
    line-height: 22px;
  }
  .footer-links{
    text-decoration: none;
    color: #B3B5B8;
 
  }


}


/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1400px) {
  .navbar-brand img {
    width: 120px; /* Adjust logo size for larger screens */
  }
  
  .navbar-brand {
    margin-right: 0;
    padding: 0 2em;
    top: 20px; /* Adjust the overflow for larger screens */
  }
  
  .navbar {
    position: relative;
    z-index: 2;
  }
  
  .navbar-nav {
    align-items: center;
  }
  
  .nav-item {
    margin: 0 15px; /* Adds horizontal space between the menu items */
  }
  

  
  /* Carousel image full width and height */
  .carousel-inner img {
    width: 100%; /* Full width */
    height: 100%; /* Ensures images take full height of the container */
    object-fit: cover; /* Keeps the image aspect ratio while covering the container */
  }
  
  /* Set the height of the carousel on large screens */
  #demo {
    height: 800px; /* Set height to 800px */
    width: 100%; /* Full width */
    z-index: 1;
  }
  
  .navbar .navbar-nav .nav-link {
    color: #480028;
    font-size: 1em;
    padding: 0.5em 1.2em;
    font-family: "myriad-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    transition: color 0.3s ease;
  }
  
  .navbar .navbar-nav .nav-link.active {
    color: #ADC65D;
    font-family: "myriad-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .navbar .navbar-nav .nav-link:hover {
    
    color: #ADC65D;
  }
  

  .con{
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
  .text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
  }
  .box-on-carousel {
    position: absolute;
    top: 0;
    margin: 0;
    left: 50%;
    transform: translateX(-50%); /* Center the box horizontally */
    width: 200px;
    height: 100px;
    z-index: 15; /* Ensure the box is above the carousel */
  
  }
  .home-banner-p-text{
    color: #ADC65D;
    font-size: 1.3em;
    padding: 0.5em 3em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
  }
  
  .home-banner-h-text{
    color: #480028;
      font-family: "Cinzel", serif;
      font-size: 4em;
      font-weight: 300;
      font-style: normal;
    
  }
  
  .home-banner-button-text {
    color: #ADC65D;
    font-size: 1em;
    padding: 0.5em 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease, background-color 0.3s ease;
    background: none;
    border-color: #ADC65D;
    width: 150px;
    cursor: pointer; /* Makes the button look clickable */
  }
  
  .home-banner-button-text:hover {
    color: #fff;
    background-color: #ADC65D; /* Adds background color on hover */
  }
  .parallax {
    /* Create a full height parallax effect */
    height: 800px; /* Set height of the parallax section */
    background-attachment: fixed; /* Keeps the background fixed during scroll */
    background-size: cover; /* Ensures the background image covers the entire section */
    background-position: center; /* Centers the background image */
    position: relative; /* Relative positioning for text overlay */
  }
  .para{
    color: #58595B;
    font-size: 1.4em;
    padding: 0.5em 1em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
  }
  .TRA{
      color: #480028;
      padding: 0.5em 1em;
      font-family: "Cinzel", serif;
      font-size: 2em;
      font-weight: 300;
      font-style: normal;
      line-height:40px ;
  }
  
  .line {
    height: 1px; /* Example: 5px thick */
    background-color:#480028; /* Black line */
    border: none; /* Remove default styling */
    color: #480028;
  }
  .line-2{
    height: 1px; /* Example: 5px thick */
    background-color:#480028; /* Black line */
    border: none; /* Remove default styling */
    color: #480028;
    width: 5%;
    margin-left: 47.5%;
    position: relative;
    top: -10px; /* Move the logo down */
  }
  
  .s2h{
    color: #480028;
    padding: 0.5em 1em;
    font-family: "Cinzel", serif;
    font-size: 2.6em;
    font-weight: 300;
    font-style: normal;
    line-height:40px ;
  }
  
  .s3h{
    color: #480028;
    padding: 0.5em 1em;
    font-family: "Cinzel", serif;
    font-size: 1em;
    font-weight: 300;
    font-style: normal; 
  }
  
  .para2{
    color: #58595B;
    font-size: 1.3em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
    line-height:25px ;
  }
  
  .s4h{
    color: #480028;
    font-family: "Cinzel", serif;
    font-size: 2.5em;
    font-weight: 700;
    font-style: normal;
    line-height:40px ;
  }
  .s5h{
    color: #480028;
    font-family: "Cinzel", serif;
    font-size: 2em;
    font-weight: 700;
    font-style: normal;
    line-height:40px ;
  }
  .s5h-lite{
    color: #480028;
    font-family: "Cinzel", serif;
    font-size: 2em;
    font-weight: 300;
    font-style: normal;
    line-height:40px ;
  }
  .wine-of-georgia{
    width: 40%;
    margin-left: 30%;
  }
  .card-color{
    background-color:#F4F0EF
  
  }
  .card-text-small{
    color: #58595B;
    font-size: 1.2em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
    line-height:25px ;
  }
  
  .card-text{
    color: #58595B;
    font-size: 1.3em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
    line-height:25px;
  }
  
  .short-line{
    transition: color 0.3s ease;
    width: 80px;
  }
  
  .margin-box{
    margin: 0em 3.3em;
  }
  .footer{
    background-color: #343130;
  }
  
  .navbar-brand-footer img{
    width: 120px;
  }
  
  .footer-text{
    color: #B3B5B8;
    font-size: 1.2em;
    font-family: "myriad-pro-semi-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: color 0.3s ease;
    line-height: 23px;
  }
  .footer-links{
    text-decoration: none;
    color: #B3B5B8;

  }

}

