/*
=============== 
Fonts
===============
*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans|Roboto:400,700&display=swap");

/*
=============== 
Variables
===============
*/

:root {
  /* dark shades of primary color*/
  --clr-primary-1: hsl(205, 86%, 17%);
  --clr-primary-2: hsl(205, 77%, 27%);
  --clr-primary-3: hsl(205, 72%, 37%);
  --clr-primary-4: hsl(205, 63%, 48%);
  /* primary/main color */
  --clr-primary-5: #49a6e9;
  /* lighter shades of primary color */
  --clr-primary-6: hsl(205, 89%, 70%);
  --clr-primary-7: hsl(205, 90%, 76%);
  --clr-primary-8: hsl(205, 86%, 81%);
  --clr-primary-9: hsl(205, 90%, 88%);
  --clr-primary-10: hsl(205, 100%, 96%);
  /* darkest grey - used for headings */
  --clr-grey-1: hsl(209, 61%, 16%);
  --clr-grey-2: hsl(211, 39%, 23%);
  --clr-grey-3: hsl(209, 34%, 30%);
  --clr-grey-4: hsl(209, 28%, 39%);
  /* grey used for paragraphs */
  --clr-grey-5: hsl(210, 22%, 49%);
  --clr-grey-6: hsl(209, 23%, 60%);
  --clr-grey-7: hsl(211, 27%, 70%);
  --clr-grey-8: hsl(210, 31%, 80%);
  --clr-grey-9: hsl(212, 33%, 89%);
  --clr-grey-10: hsl(210, 36%, 96%);
  --clr-white: #fff;
  --clr-red-dark: hsl(360, 67%, 44%);
  --clr-red-light: hsl(360, 71%, 66%);
  --clr-green-dark: hsl(125, 67%, 44%);
  --clr-green-light: hsl(125, 71%, 66%);
  --clr-secondary: hsla(182, 63%, 54%);
  --clr-black: #222;
  --ff-primary: "Roboto", sans-serif;
  --ff-secondary: "Open Sans", sans-serif;
  --transition: all 0.3s linear;
  --spacing: 0.25rem;
  --radius: 0.5rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  --max-width: 1170px;
  --fixed-width: 620px;
}
/*
=============== 
Global Styles
===============
*/
html {
  scroll-behavior: smooth;
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--ff-secondary);
  background: var(--clr-grey-10);
  color: var(--clr-grey-1);
  line-height: 1.5;
  font-size: 0.875rem;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}
img:not(.logo) {
  width: 100%;
}
img {
  display: block;
}

h1,
h2,
h3,
h4 {
  letter-spacing: var(--spacing);
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  font-family: var(--ff-primary);
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2rem;
   margin-bottom: 2.25rem;
   color: #004369;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 0.875rem;
}
p {
  margin-bottom: 1.25rem;
  color: #272727;
}
section {
  padding: 5rem 0;
}


.container {
  width: 90%;
  margin: 0 auto;
  max-width: var(--max-width);
}

.center{
  text-align:center;
}
@media screen and (min-width: 800px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1rem;
  }
  body {
    font-size: 1rem;
  }
  h1,
  h2,
  h3,
  h4 {
    line-height: 1;
  }
}
@media screen and (max-width: 1200px) {
  .banner .container h1 {
    font-size: 2.5rem !important;
    width: 95% !important;
  }
}
@media screen and (max-width: 400px) {
  .banner .container h1 {
    font-size: 2rem !important;
    width: 95% !important;
  }

.banner p {
  text-transform: uppercase;
  font-size: 1.5rem ;
}
h2 {
    font-size: 2rem;
    letter-spacing: 0.1px;
  }

}
/*  global classes */

.btn {
  text-transform: uppercase;
  /* background: #f3faff ; */
  color: #f3faff;
  background:#004369 ;
  padding: 0.75rem 2rem;
  letter-spacing: var(--spacing);
  display: inline-block;
  transition: var(--transition);
  font-size: 1.2rem;
  border: 2px solid #004369 ;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  
  border-top-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.btn:hover {
  transform: scale(0.95);
  /* color: #004369 !important;
  background: #f3faff !important; */
}
.btn-white {
  color: var(--clr-white);
  border-color: var(--clr-white);

  border: 2px solid #f3faff ;
  padding: 0.75rem 2rem;
  border-top-left-radius: 24px;
  border-bottom-right-radius: 24px;
  transition: var(--transition);
  font-size: 1.2rem;

}
.btn-white:hover {
  background-color: #004369;
  border: 2px solid #004369 ;
  color: #fff;
  transform: scale(0.95) !important;
  /* background:#515355d6;
  color: #f3faffd6 !important; */
}
/* section */
.section {
  padding-bottom: 5rem;
}

.section-center {
  width: 90vw;
  margin: 0 auto;
  max-width: 1170px;
}
@media screen and (min-width: 992px) {
  .section-center {
    width: 95vw;
  }
}
@media (max-width:768px){

.hero-buttons{
  display: flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:15px;
}

.hero-buttons .btn,
.hero-buttons .btn-white{
    width:100%;
    max-width:320px;
    text-align:center;
    display:block;
}



}




main {
  min-height: 100vh;
  display: grid;
  place-items: center;
}
/*
=============== 
Scroll
===============
*/
/* navbar */
nav {
  padding: 2rem 1.5rem;
  background: #f3faff !important;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background: #f3faff !important;
}
/* fixed nav */
/* .fixed-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background: #f3faff !important;
}
.fixed-nav .links a {
  color: #000;
}
.fixed-nav .links a:hover {
  color: #000000b1;
} */
/* .fixed-nav .links-container {
  height: auto !important;
} */
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-toggle {
  font-size: 1.5rem;
  color: var(--clr-grey-1);
  background: transparent;
  border-color: transparent;
  transition: var(--transition);
  cursor: pointer;
}
.nav-toggle:hover {
  color: #336987;
}
.logo {
  height: 50px;
}
.links-container {
  height: 0;
  overflow: hidden;
  transition: var(--transition);
}
.show-links {
  height: 200px;
}
.links a {
  /* background: var(--clr-white); */
  color: #004369;
  font-weight: 300 !important;
  font-size: 1.1rem;
  letter-spacing: 0.05rem !important;
  display: block;
  transition: var(--transition);
  font-weight: bold;
  padding: 1rem 0;
  text-transform: uppercase !important;
}
.links a:hover {
  color: #004369bd;
}
@media screen and (min-width: 1200px) {
  nav {
    background: transparent;
  }
  .nav-center {
    width: 90vw;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-header {
    padding: 0;
  }
  .nav-toggle {
    display: none;
  }
  .links-container {
    height: auto !important;
  }
  .links {
    display: flex;
  }
  .links a {
    background: transparent;
    color: #000;
    font-size: 1.1rem;
    text-transform: capitalize;
    letter-spacing: var(--spacing);
    display: block;
    transition: var(--transition);
    margin: 0 1rem;
    font-weight: bold;
    padding: 0;
  }
  .links a:hover {
    color: #00000096;
  }
}
/* hero */
header {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/hero-bcg1.jpg) center/cover no-repeat;
}
.banner {
  /* min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center; */
   min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding-top:180px;
}

.banner .btn1{
  margin-right: 1rem;
}

.banner p{
  text-transform: uppercase;
  font-size: 2rem;
  margin-top: 20rem;
  color: var(--clr-white);
   margin: 0 auto;
   margin-bottom: 1.4rem;
   margin-top: 1.4rem;
}

.container h1 {
  color: var(--clr-white);
  text-transform: uppercase;
}
/* .container p {
  color: var(--clr-white);
  max-width: 25rem;
  margin: 0 auto;
  margin-bottom: 1.25rem;
} */
@media screen and (min-width: 768px) {
  .container p {
    max-width: 40rem;
  }
}

@media screen and (max-width: 400px) {

.banner p {
  text-transform: uppercase;
  font-size: 1.5rem !important;
}
.banner .btn1 {
  margin-right: 0rem;

}}
/* sections and title */
.title h2 {
  text-align: center;
  text-transform: uppercase;
}
.title span {
  color: var(--clr-secondary);
}
#about,
#services,
#tours {
  height: auto;
}
#services {
  background: var(--clr-white);
}
footer {
  background: #004369;
  padding: 5rem 1rem;
}
footer p {
  color: var(--clr-white);
  text-align: center;
 
  letter-spacing: var(--spacing);
  margin-bottom: 0;
}

.top-link {
  font-size: 1.25rem;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  background: #004369;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--clr-white);
  animation: bounce 2s ease-in-out infinite;
  visibility: hidden;
  z-index: -100;
}
.show-link {
  visibility: visible;
  z-index: 100;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}






.property-text {
  max-width: 1110px;
  margin: 105px auto 0;
  padding: 0 24px;
  font-family: "Montserrat", Arial, sans-serif;
  color: #000;
}

.property-text h1 {
  margin: 0 0 58px;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #004369;
}

.property-text p,
.property-text li {
  font-size: 21px;
  line-height: 1.55;
  font-weight: 400;
}

.property-text p {
  max-width: 1080px;
  margin: 0 0 34px;
}

.property-text .subtitle {
  margin-bottom: 4px;
}

.property-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.property-text li::before {
  content: "· ";
}

@media (max-width: 768px) {
  .property-text {
    margin-top: 60px;
    padding: 0 20px;
  }

  .property-text h1 {
    font-size: 30px;
    margin-bottom: 36px;
  }

  .property-text p,
  .property-text li {
    font-size: 18px;
    line-height: 1.55;
  }
}



.property-stats {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 24px;
  font-family: "Montserrat", Arial, sans-serif;
}

.property-stat {
  flex: 1;
  padding: 34px 24px;
  border: 1px solid #e5e5e5;
  text-align: center;
  background: #fff;
}

.property-stat span {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  color: #777;
}

.property-stat strong {
  display: block;
  font-size: 30px;
  font-weight: 400;
  color: #000;
}

@media (max-width: 768px) {
  .property-stats {
    flex-direction: column;
    margin: 55px auto;
    gap: 16px;
  }

  .property-stat {
    padding: 28px 20px;
  }

  .property-stat strong {
    font-size: 26px;
  }
}





.location-info{
    max-width:1100px;
    margin:90px auto;
    padding:0 20px;
    font-family:"Montserrat",sans-serif;
}

.location-info h2{
    margin:0 0 45px;
    /* font-size:40px;
    font-weight:400; */
    /* line-height:1.2; */
    color:#111;
}

.location-info p{
    margin:0 0 28px;
    font-size:21px;
    line-height:1.8;
    color:#444;
}

.location-info p strong{
    color:#111;
    font-weight:600;
}

@media (max-width:768px){

    .location-info{
        margin:60px auto;
        padding:0 10px;
    }

    .location-info h2{
        font-size:30px;
        margin-bottom:30px;
    }

    .location-info p{
        font-size:18px;
        line-height:1.7;
        margin-bottom:22px;
    }

}


.btn-container{
  display:flex;
  justify-content:center;
  padding:1rem 0 2rem 0;
  text-align: center;
}




/* 
.video-box{
    position:relative;
    width:100%;
    max-width:1200px;
    margin:1rem auto;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
    
}

.video-box video{
    display:block;
    width:100%;
    height:auto;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90px;
    height:90px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    font-size:34px;
    cursor:pointer;
    transition:.3s;
}

.play-btn:hover{
    transform:translate(-50%,-50%) scale(1.08);
}

.play-btn.hide{
    opacity:0;
    pointer-events:none;
}

@media (max-width:768px){

    .video-box{
        margin:50px auto;
        border-radius:12px;
    }

    .play-btn{
        width:70px;
        height:70px;
        font-size:26px;
    }

} */







.video-box{
    position:relative;
    width:100%;
    max-width:1200px;
    margin:1rem auto;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
    aspect-ratio:16 / 9;
    background:#000;
}

.video-box video{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90px;
    height:90px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    font-size:34px;
    cursor:pointer;
    transition:.3s;
    z-index:2;
}

.play-btn:hover{
    transform:translate(-50%,-50%) scale(1.08);
}

.play-btn.hide{
    opacity:0;
    pointer-events:none;
}

@media (max-width:768px){
    .video-box{
        margin:50px auto;
        border-radius:12px;
        aspect-ratio:16 / 9;
    }

    .play-btn{
        width:70px;
        height:70px;
        font-size:26px;
    }
}




/* /////////////////// */





.advantages{
    max-width:1200px;
    margin:120px auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid #ddd;
    border-left:1px solid #ddd;
}

.advantage{
    padding:60px 45px;
    text-align:center;
    border-right:1px solid #ddd;
    border-bottom:1px solid #ddd;
    transition:.35s;
}

.advantage:hover{
    background:#fafafa;
}

.icon{
    width:82px;
    height:82px;
    border:1px solid #d9d9d9;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 30px;
    font-size:34px;
}

.advantage h3{
    font-size:34px;
    font-weight:400;
    margin-bottom:25px;
}

.advantage p{
    font-size:20px;
    line-height:1.8;
    color:#444;
}

@media(max-width:900px){

.advantages{
grid-template-columns:1fr;
}

.advantage{
padding:45px 30px;
}

.advantage h3{
font-size:28px;
}

.advantage p{
font-size:18px;
}

}





.documents-section{
    max-width:1200px;
    margin:100px auto;
    padding:0 20px;
    font-family:Montserrat,sans-serif;
}

.documents-section h2{
    /* font-size:42px;
    font-weight:400; */
    text-align:center;
    margin-bottom:20px;
}

.documents-section>p{
    max-width:750px;
    margin:0 auto 60px;
    text-align:center;
    font-size:20px;
    line-height:1.7;
    color:#555;
}

.documents-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.document-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:.3s;
}

.document-card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.document-card h3{
    font-size:22px;
    font-weight:500;
    margin:0;
}

.actions{
    display:flex;
    gap:10px;
}

.actions a{
    padding:11px 18px;
    border:1px solid #004369;
    border-radius:6px;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

.actions a:first-child{
    background:#004369;
    color:#fff;
}

/* .actions a:last-child{
    color:#111;
} */

.actions a:hover{
    background:#336987;
    border:1px solid #336987;
    color:#fff;
}

@media(max-width:900px){

.documents-grid{
grid-template-columns:1fr;
}

.document-card{
flex-direction:column;
align-items:flex-start;
gap:20px;
}

.actions{
width:100%;
}

.actions a{
flex:1;
text-align:center;
}

}

@media(max-width:500px){

.documents-section h2{
font-size:32px;
}

.documents-section>p{
font-size:17px;
}

.actions{
flex-direction:column;
}
.document-card h3 {
  
  text-align: center !important;
  letter-spacing: 0.5px;
}

  .document-card {
    align-items: center;
    gap: 10px;
    padding: 15px;

}}


/* /////////////////// */
/* section-foto */
.section-foto {
  padding: 5rem 0;
  width: 90vw;
  margin: 0 auto;
  max-width: 1170px;
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 400px) {
  .section-foto {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) {
  .section-foto {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .section-foto {
    grid-template-columns: 1fr 1fr 1fr;
    width: 95vw;
  }
  .prev-btn {
    left: -4.5rem;
  }
  .next-btn {
    right: -4.5rem;
  }
}
.section-foto .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--light-shadow);
  height: 15rem;
}
.section-foto .img:hover {
  box-shadow: var(--dark-shadow);
}

/*
=============== 
Modal
===============
*/

.modal {
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  transition: var(--transition);
  opacity: 0;
  min-height: 100vh;
  overflow: scroll;
}
.modal.open {
  opacity: 1;
  z-index: 999;
}
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  color: var(--clr-white);
  background: transparent;
  border-color: transparent;
  cursor: pointer;
}
.next-btn,
.prev-btn {
  position: absolute;
  top: 10rem;
  transform: translateY(-50%);
  background: transparent;
  font-size: 2rem;
  color: var(--clr-white);
  border-color: transparent;
  cursor: pointer;
}
.prev-btn {
  left: -2.5rem;
}
.next-btn {
  right: -2.5rem;
}
@media screen and (min-width: 768px) {
  .prev-btn {
    left: -4rem;
  }
  .next-btn {
    right: -4rem;
  }
}

.modal-content {
  width: 80%;
  max-width: var(--max-width);
  margin: 0 auto;
  margin-top: 10rem;
  position: relative;
}
.main-img {
  width: 100%;
  height: 35rem;
  object-fit: cover;
  border-radius: var(--radius);
}
.image-name {
  text-align: center;
  margin: 1rem 0 3rem;
  color: var(--clr-white);
}
.modal-images {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.modal-img {
  width: 100%;
  height: 5rem;
  object-fit: cover;
  opacity: 0.5;
  transition: var(--transition);
  cursor: pointer;
}
.modal-img:hover {
  opacity: 1;
}
.modal-img.selected {
  opacity: 1;
}



.map-container{
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;
}

.map-container iframe{
    width:100%;
    height:500px;
    border:0;
    border-radius:12px;
}

@media (max-width:768px){

    .map-container{
        margin:50px auto;
        padding:0 15px;
    }

    .map-container iframe{
        height:350px;
    }

}









.site-footer {
  padding: 90px 20px 45px;
  background: #004369;
  font-family: "Montserrat", Arial, sans-serif;
  color: #f3faff;
  text-align: center;
  font-size: 15px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 34px;
}

.footer-logo img {
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.footer-contact {
  margin-bottom: 48px;
}

.footer-name {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-phone {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #f3faff;
  text-decoration: none;
}

.footer-email {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  color: #f3faff;
  text-decoration: none;
}

.footer-address {
  margin-bottom: 10px;
  font-size: 15px;
  color: #f3faff;
  letter-spacing: 0.5px;
}
.footer-ico {
  margin: 0;
  font-size: 15px;
  color: #f3faff;
  letter-spacing: 0.5px;
}

.footer-phone:hover,
.footer-email:hover {
  text-decoration: underline;
}

.footer-copy {
  /* border-top: 1px solid #f3faff; */
  padding-top: 26px;
}

.footer-copy p {
  margin: 0;
  font-size: 10px;
  color: #f3faff;
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .site-footer {
    padding: 65px 18px 36px;
  }

  .footer-logo img {
    max-width: 150px;
  }

  .footer-name {
    font-size: 20px;
  }

  .footer-phone,
  .footer-email {
    font-size: 16px;
    font-weight: 600;
  }

  
  .footer-address,
  .footer-ico {
    font-size: 14px;
  }

  .footer-copy p {
    font-size: 12px;
    line-height: 1.5;
  }
}




/* Scroll animation */

.fade-up{
    opacity:0;
    transform:translate(-50px, 50px) scale(.96);
    filter:blur(6px);

    transition:
        opacity 1s ease,
        transform 1.1s cubic-bezier(.22,1,.36,1),
        filter .9s ease;

    will-change:transform,opacity,filter;
}

.fade-up.show{
    opacity:1;
    transform:translate(0,0) scale(1);
    filter:blur(0);
}






.cookie-bar {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: none;
  font-family: "Montserrat", Arial, sans-serif;
}

.cookie-bar.show {
  display: block;
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 26px;
  background: #111;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-actions button {
  padding: 12px 18px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: .3s;
}

.cookie-actions button:first-child {
  background: #fff;
  color: #111;
}

.cookie-actions button:hover {
  opacity: .75;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1;
  }
}


