@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Great+Vibes&display=swap');

:root {

  /**
   * COLORS
   */

  --gold-crayola: hsl(38, 61%, 73%);
  --smoky-black-3: hsla(0, 3%, 7%, 1);
  --eerie-black-1: hsla(210, 4%, 9%, 1);
  --white: hsla(0, 0%, 100%, 1);
  --black: hsla(0, 0%, 0%, 1);
  
  --eerie-black-1: hsl(0, 0%, 14%);
  --eerie-black-2_85: hsla(0, 0%, 12%, 0.85);
  --sonic-silver: hsl(0, 0%, 44%);
  --light-gray: hsl(0, 0%, 80%);
  --white: hsl(0, 0%, 100%);

  /**
   * GRADIENT COLOR
   */

  --loading-text-gradient: linear-gradient(90deg, transparent 0% 16.66%, var(--smoky-black-3) 33.33% 50%,  transparent 66.66% 75%);

  /**
   * TYPOGRAPHY
   */

  /* font-family */
  --fontFamily-forum: 'Forum', cursive;
  --fontFamily-dm_sans: 'DM Sans', sans-serif;

  --ff-oswald : 'Oswald', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;


  --fs-40: 4rem;
  --fs-30: 3rem;
  --fs-24: 2.4rem;


  --fw-600: 600;

  /* font-weight */
  --weight-regular: 400;
  --weight-bold: 700;

  /* line-height */
  --lineHeight-5: 1.85em;

  /* letter-spacing */
  --letterSpacing-5: 3px;

  /**
   * SPACING
   */

  --section-padding: 80px;

  /**
   * shadow
   */

   --shadow-1: 10px 0 60px hsla(0, 0%, 15%, 0.07);
   --shadow-2: 10px 0 60px hsla(0, 0%, 15%, 0.1);

  /**
   * radius
   */

  --radius-5: 5px;


  /**
   * BORDER RADIUS
   */

  --radius-circle: 50%;

  /**
   * TRANSITION
   */

  --transition-1: 250ms ease;
  --transition-2: 500ms ease;
  --transition-3: 1000ms ease;

}



*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
}


body{
  background-color: var(--white);
  color: var(--sonic-silver);
  font-size: 1.5rem;
  line-height: 2;
}


body.loaded { overflow: overlay; }

::-webkit-scrollbar { width: 8px; }

::-webkit-scrollbar-track { background-color: transparent; }

::-webkit-scrollbar-thumb { background-color: var(--gold-crayola); }


li { list-style: none; }

ion-icon { 
  pointer-events: none;
  display: block; 
}

address { font-style: normal; }


/** SEÇİLEN METNİN ARKA PLANINI DEĞİŞTİRME   starts */


/* Seçili metnin arka plan rengini ve metin rengini değiştirme */
::selection {
  background: #e4c590; /* Seçili metnin arka plan rengi */
  color: #000000; /* Seçili metnin metin rengi */
}

/* WebKit tarayıcılar için (Chrome, Safari, vs.) */
::-webkit-selection {
  background: #e4c590; /* Seçili metnin arka plan rengi */
  color: #000000; /* Seçili metnin metin rengi */
}


/** SEÇİLEN METNİN ARKA PLANINI DEĞİŞTİRME   ends  */


/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.ogcontainer { padding-inline: 15px; }

.section { padding-block: var(--section-padding); }

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  position: absolute;
  content: "";
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.h1,
.h2,
.h3 {
  font-family: var(--ff-oswald);
  line-height: 1.3;
}

.h1,
.h2 { text-transform: uppercase; }

.h1,
.h3 { font-weight: var(--fw-600); }

.h1 {
  color: var(--white);
  font-size: var(--fs-40);
}

.h2,
.h3 { color: var(--gold-crayola); }

.h2 { font-size: 35px; }

.h3 { font-size: var(--fs-24); }

.span { 
  font-size: 14px;
  display: block; }

.sergalbtn {
 background: #111111;
 padding: 10px 25px;
 color: #fff;
 font-size: 1.1em;
 font-weight: 500;
 border: 1px solid #333;
 text-decoration: none;
 display: flex;
 justify-content: space-between;   /* yeni ekledim */
 align-items: center;
 overflow: hidden;
 border-radius: 2px;
 letter-spacing: var(--letterSpacing-5);
 transition: 0.3s ease;
}

.sergalbtn:hover {
  background-color: #010100;
}


.sergalbtn:is(:hover, :focus)::before { transform: skewY(-15deg) scaleY(2.5); }

.text-center { text-align: center; }

.grid-list {
  display: grid;
  gap: 30px;
}

  /** a lar burada /*/
.card-btn,
.card-title{
  display: block;
  color: inherit;
  text-decoration: none;
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}

                                   
.img-cover {
  display: block;
  height: auto; 
  width: 100%;
  height: 100%;
  object-fit: cover;
}





/***********************************************************\
          #NAVİGATİON
\***********************************************************/


:root {

  /**
   * COLORS
   */

  --gold-crayola: hsl(38, 61%, 73%);
  --smoky-black-1: hsla(40, 12%, 5%, 1);
  --smoky-black-3: hsla(0, 3%, 7%, 1);
  --eerie-black-1: hsla(210, 4%, 9%, 1);
  --eerie-black-3: hsla(180, 2%, 8%, 1);
  --white: hsla(0, 0%, 100%, 1);
  --black: hsla(0, 0%, 0%, 1);
  
  --indian-yellow: hsl(36, 61%, 58%);
  --eerie-black-1: hsl(0, 0%, 14%);
  --eerie-black-2_85: hsla(0, 0%, 12%, 0.85);
  --sonic-silver: hsl(0, 0%, 44%);
  --davys-gray: hsl(210, 9%, 31%);
  --light-gray: hsl(0, 0%, 80%);
  --white: hsl(0, 0%, 100%);

  /**
   * GRADIENT COLOR
   */

  --loading-text-gradient: linear-gradient(90deg, transparent 0% 16.66%, var(--smoky-black-3) 33.33% 50%,  transparent 66.66% 75%);

  /**
   * TYPOGRAPHY
   */

  /* font-family */
  --fontFamily-forum: 'Forum', cursive;
  --fontFamily-dm_sans: 'DM Sans', sans-serif;

  --ff-oswald : 'Oswald', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;


  /* font-size */
  --fontSize-title-2: 2.2rem;
  --fontSize-body-1: 2.4rem;
  --fontSize-body-2: 1.6rem;
  --fontSize-body-4: 1.6rem;
  --fontSize-label-2: 1.2rem;

  --fs-40: 4rem;
  --fs-30: 3rem;
  --fs-24: 2.4rem;
  --fs-14: 1.4rem;

  --fw-600: 600;

  /* font-weight */
  --weight-regular: 400;
  --weight-bold: 700;

  /* line-height */
  --lineHeight-2: 1.2em;
  --lineHeight-4: 1.6em;
  --lineHeight-5: 1.85em;

  /* letter-spacing */
  --letterSpacing-2: 0.4em;
  --letterSpacing-5: 3px;

  /**
   * SPACING
   */

  --section-space: 70px;
  --section-padding: 80px;

  /**
   * shadow
   */

   --shadow-1: 10px 0 60px hsla(0, 0%, 15%, 0.07);
   --shadow-2: 10px 0 60px hsla(0, 0%, 15%, 0.1);

  /**
   * radius
   */

  --radius-5: 5px;
  --radius-8: 8px;


  /**
   * BORDER RADIUS
   */

  --radius-circle: 50%;

  /**
   * TRANSITION
   */

  --transition-1: 250ms ease;
  --transition-2: 500ms ease;
  --transition-3: 1000ms ease;

}



*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;

  font-size: 10px;
  scroll-behavior: smooth;
}


body{
  background-color: var(--white);
  color: var(--sonic-silver);
  font-size: 1.5rem;
  line-height: 2;
}

address { font-style: normal; }

data{ display: block; }


article {
  background-color: var(--eerie-black-1);
  color: var(--white);
  font-family: var(--fontFamily-dm_sans);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-5);
  overflow: hidden;
  height: auto;
}

body.loaded { overflow: overlay; }

::-webkit-scrollbar { width: 8px; }

::-webkit-scrollbar-track { background-color: transparent; }

::-webkit-scrollbar-thumb { background-color: var(--gold-crayola); }


li { list-style: none; }

ion-icon { 
  pointer-events: none;
  display: block; 
}



.autovideoslide{


  height: 80.80px;

  z-index: 999;
  background-color: #b1986f;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 200px;
  transition: 0.5s ease;
}

.autovideoslide .brand span{
  color: #fff;
  font-family: 'Dancing Script', cursive;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
}

.autovideoslide .brand{
  color: #000;
  font-size: 2.1em;
  font-weight: 700;
  text-decoration: none;
}



.autovideoslide .navigation{
  position: relative;
}

.autovideoslide .navigation .navigation-items a{
  position: relative;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
}

.autovideoslide .navigation .navigation-items a:before{
  content: '';
  position: absolute;
  background: #000;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

.autovideoslide .navigation .navigation-items a:hover:before{
  width: 100%;
}


@media (max-width: 1040px){
  .autovideoslide{
    padding: 12px 20px;
  }

  .autovideoslide .navigation{
    display: none;
  }

  .autovideoslide .navigation.active{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 1, 1, 0.5);
  }

  .autovideoslide .navigation .navigation-items a{
    color: #222;
    font-size: 1.2em;
    margin: 20px;
  }

  .autovideoslide .navigation .navigation-items a:before{
    background: #222;
    height: 5px;
  }

  .autovideoslide .navigation.active .navigation-items{
    background: #fff;
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  }

  .menu-btn{
    background: url(menu.png)no-repeat;
    background-size: 30px;
    background-position: center;
    width: 43px;
    height: 43px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .menu-btn.active{
    z-index: 999;
    background: url(close.png)no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.3s ease;
  }
}




/*-----------------------------------*\
  # YUKLENME ANIMASYONU DENEMESI
\*-----------------------------------*/

#yukanimasyon {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e4c590;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container {
  animation: fadeInOut 2s infinite;
}

.logo-container img {
  width: 195px; /* Adjust the size as needed */
  height: auto;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}




/*-----------------------------------*\
  #GALLERY
\*-----------------------------------*/

.title-wrapper { margin-block-end: 60px; }

.gallery .gsection-text
{ 
  font-size: 16px;
  margin-block: 12px 15px; 
}

.gallery-card { position: relative; }

.gallery-card .card-banner .img-cover { transition: var(--transition-2); }

.gallery-card:is(:hover, :focus-within) .card-banner .img-cover { transform: scale(1.1); }

.gallery-card .card-content {
  position: absolute;
  inset: 15px;
  background-color: var(--eerie-black-2_85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-2);
}

.gallery-card:is(:hover, :focus-within) .card-content {
  opacity: 1;
  transform: scale(1);
}

.gallery-card :is(.card-title, .card-text) { color: var(--white); }

.gallery-card .card-btn {
  background-color: var(--white);
  color: var(--gold-crayola);
  font-size: 18px;
  padding: 16px;
  border-radius: var(--radius-5);
  margin-block-start: 12px;
  transition: var(--transition-1);
}

.gallery-card .card-btn:is(:hover, :focus) {
  background-color: var(--gold-crayola);
  color: var(--white);
}


/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-40: 6rem;

  }


  /**
   * REUSED STYLE
   */

  .ogcontainer,
  .header-top {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  .sergalbtn { padding: 13px 40px; }

  .h2 { --fs-30: 3.5rem; }


  /**
   * GALLERY
   */

  .gallery .grid-list { grid-template-columns: 1fr 1fr; }



}



/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-40: 8rem;

  }


  /**
   * REUSED STYLE
   */

  .ogcontainer { max-width: 720px; }

  .h2 { --fs-30: 4rem; }

  .gsection-text {
    max-width: 50ch;
    margin-inline: auto;
  }


  /**
   * SERVICE
   */

  .gservice .grid-list { grid-template-columns: 1fr 1fr; }               


  /**
   * GALLERY
   */

  .gallery .gsection-text { margin-inline: 0; }

  .gallery-card .card-content { inset: 30px; }



}


/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-40: 10rem;

  }



  /**
   * REUSED STYLE
   */

  .ogcontainer { max-width: 960px; }


  /**
   * SERVICE
   */

  .gservice .grid-list { grid-template-columns: repeat(3, 1fr); }                     


  /**
   * GALLERY
   */

  .gallery .title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .gallery .gsection-text { margin-block-end: 0; }


}


/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-40: 11rem;

    /**
     * spacing
     */

    --section-padding: 120px;

  }


  /**
   * REUSED STYLE
   */

  .ogcontainer { max-width: 1200px; }


  /**
   * GALLERY
   */

  .gallery .grid-list { grid-template-columns: repeat(4, 1fr); }

}



/* Galery Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;  /* 1 di */
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: auto;
}

.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}

.close {
  z-index: 9999999;
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
  border-radius: 3px 3px 0 0;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.close {
  z-index: 999;
  position: absolute;
  top: 5px;
  right: 25px; /* Sağ üst köşe ayarlaması */
  color: #bbb;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s ease;
}
.close-img{
  width: 25px;
  height: 25px;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}



/**                                                                 FOOTER STARTS       */


/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --light-steel-blue: hsl(218, 33%, 77%);
  --royal-blue-light: hsl(225, 68%, 53%);
  --carolina-blue: hsl(201, 92%, 47%);
  --flickr-blue_30: hsla(225, 68%, 53%, 0.3);
  --oxford-blue-2: hsl(217, 100%, 12%);
  --oxford-blue-3: hsl(218, 71%, 11%);
  --sonic-silver: hsl(0, 0%, 47%);
  --black_10: hsla(0, 0%, 0%, 0.1);
  --black_8: hsla(0, 0%, 0%, 0.08);
  --white: hsl(0, 0%, 100%);

  /**
   * gradient color
   */

  --gradient: linear-gradient( 90deg, var(--carolina-blue) 0%, var(--royal-blue-light) 100%);

  --gradient2: linear-gradient( 90deg, var(--gold-crayola) 0%, var(--gold-crayola) 100%);
  /**
   * typography
   */

  --ff-roboto: "Roboto", sans-serif;
  --ff-poppins: "Poppins", sans-serif;

  --fs-1: 4rem;
  --fs-2: 3.6rem;
  --fs-3: 3.2rem;
  --fs-4: 2.4rem;
  --fs-6: 1.8rem;


  --fw-700: 700;


  /**
   * spacing
   */

  --section-padding: 120px;


  /**
   * transition
   */

  --transition: 0.25s ease;

}


/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/


.logo,
.footer-link,
.social-link,
.back-top-btn{
  text-decoration: none;
  color: inherit;
  display: block;
}

.fcontainer { padding-inline: 25px; }

.fsection { padding-block: var(--section-padding); }

.fspan{
  display: block;
}

/*-----------------------------------*\
#FOOTER
\*-----------------------------------*/

.footer-top {
  background-color: #242424;
  color: var(--sonic-silver);
}

.footer-top .fcontainer {
  display: grid;
  gap: 30px;
}


 .footer-brand .logo span{
  color: #fff;
  font-family: 'Dancing Script', cursive;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
}

.footer-brand .logo{
  color: #000;
  font-size: 2.1em;
  font-weight: 700;
  text-decoration: none;
}


.footer-text {
  line-height: 1.6;
  margin-block: 15px;
}

.schedule {
  display: flex;
  align-items: center;
  gap: 15px;
}

.schedule-icon,
.footer-item .item-icon {
  background-image: var(--gradient2);                     /* MAVİ İCON RENGİ */
  color: var(--white);
  font-size: 18px;
  padding: 11px;
  border-radius: 50%;
}

.schedule .fspan,
.footer-item .item-text { line-height: 1.6; }

.footer-list-title {
  color: var(--white);
  font-family: var(--ff-poppins);
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
  margin-block-end: 10px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-block: 10px;
  transition: var(--transition);
}

.footer-link ion-icon {
  color: var(--gold-crayola);
  --ionicon-stroke-width: 50px;
}

.footer-link:is(:hover, :focus) { color: var(--white); }

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-item:not(:first-child) { margin-block-start: 20px; }

.footer-bottom {
  background-color: var(--black);
  padding-block: 50px;
  text-align: center;
}

.copyright {
  color: var(--white);
  line-height: 1.6;
  margin-block-end: 25px;
}

.copyright a{
  color: var(--gold-crayola);
}

.footer .social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.footer .social-link {
  padding: 11px;
  background-color: hsla(0, 0%, 100%, 0.2);
  color: var(--white);
  font-size: 18px;
  border-radius: 50%;
}

.footer .social-link:is(:hover, :focus) { background-image: var(--gradient2); }




/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 4.2rem;

  }


  /**
   * REUSED STYLE
   */

  .fcontainer {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * FOOTER
   */

  .footer-top .fcontainer { grid-template-columns: 1fr 1fr; }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 4.8rem;

  }


  /**
   * RESET
   */

  body { font-size: 1.6rem; }



  /**
   * REUSED STYLE
   */

  .fcontainer { max-width: 750px; }


  /**
   * FOOTER
   */

  .footer-bottom { padding-block: 30px; }

  .footer-bottom .fcontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .copyright { margin-block-end: 0; }


}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 6rem;
    --fs-1: 4.6rem;
    --fs-3: 4.6rem;

  }



  /**
   * REUSED STYLE
   */

  .fcontainer { max-width: 980px; }



  /**
   * FOOTER
   */

  .footer-top .fcontainer { grid-template-columns: 1fr 0.5fr 0.6fr 0.75fr; }

}



/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 8rem;
    --fs-1: 5.5rem;
    --fs-3: 4.8rem;

  }



  /**
   * REUSED STYLE
   */

  .fcontainer { max-width: 1180px; }


}


/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

/*=============== SCROLL UP ===============*/

.back-top-btn {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: #333333;
  color: #fff;
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 5rem;
  display: grid;
  place-items: center;
  transition: var(--transition-1);
  opacity: 0;
  visibility: hidden;
  z-index: 4;
}

.back-top-btn:is(:hover, :focus-visible) {
  background-color: var(--gold-crayola);
  color: #333333;
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
}
