* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: 'Varela Round', sans-serif;
}

body {
    background-color: #fff;
}

a {
    color: #379FD9;
    text-decoration: none;
}

#page-top {
    width: 100%;
    height: 45vh;
    /* background-image: url('assets/Img/about-1.webp'); */
    background-image: url('about-1.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#page-top .content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, .8);
    color: #fff;
    cursor: default;
}

#page-top .content .container #header-text {
    font-weight: 300;
}

#page-top .content .container #page-location #page-home {
    cursor: pointer;
}

#page-top .content .container #page-location #page-home,
#page-top .content .container #page-location #page-now {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: .9rem;
    margin: 0 5px;
}

#page-top .content .container #page-location #page-home a {
    color: #61b0db;
}

#bosluk {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background: rgba(43, 32, 36, .7);
    width: 180px;
    height: 50px;
    border-radius: 2rem;
    color: #fff;
    transition: .3s;
    cursor: pointer;
    font-family: 'Varela Round', sans-serif;
}

#button:hover {
    background-color: #BD284E;
    box-shadow: 0 4px 20px 0 rgb(0 0 0 / 14%), 0 7px 10px -5px rgb(189 40 78 / 40%);
}

/* BACK TO TOP BUTTON */

#back-to-top-button {
    text-decoration: none;
    display: inline-block;
    background: #515151;
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 5px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

#back-to-top-button::after {
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#back-to-top-button:hover {
    cursor: pointer;
    background-color: #b62347;
}

#back-to-top-button:active {
    background-color: #555;
}

#back-to-top-button.show {
    opacity: 1;
    visibility: visible;
}

.loader-page {
    background-color: #fff;
   width: 100%;
   height: 400px;
    transition: .8s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: radial-gradient(circle at 13% 47%, rgba(140, 140, 140, 0.03) 0%, rgba(140, 140, 140, 0.03) 25%, transparent 25%, transparent 100%), radial-gradient(circle at 28% 63%, rgba(143, 143, 143, 0.03) 0%, rgba(143, 143, 143, 0.03) 16%, transparent 16%, transparent 100%), radial-gradient(circle at 81% 56%, rgba(65, 65, 65, 0.03) 0%, rgba(65, 65, 65, 0.03) 12%, transparent 12%, transparent 100%), radial-gradient(circle at 26% 48%, rgba(60, 60, 60, 0.03) 0%, rgba(60, 60, 60, 0.03) 6%, transparent 6%, transparent 100%), radial-gradient(circle at 97% 17%, rgba(150, 150, 150, 0.03) 0%, rgba(150, 150, 150, 0.03) 56%, transparent 56%, transparent 100%), radial-gradient(circle at 50% 100%, rgba(25, 25, 25, 0.03) 0%, rgba(25, 25, 25, 0.03) 36%, transparent 36%, transparent 100%), radial-gradient(circle at 55% 52%, rgba(69, 69, 69, 0.03) 0%, rgba(69, 69, 69, 0.03) 6%, transparent 6%, transparent 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));

}

.loader {
    display: inline-block;
    width: 30px;
    height: 30px;
 
    border: 4px solid #BD284E;
 
    animation: loader 2s infinite ease;
  }

.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #BD284E;
    animation: loader-inner 2s infinite ease-in;
  }

@keyframes loader {
    0% {
      transform: rotate(0deg);
    }
    
    25% {
      transform: rotate(180deg);
    }
    
    50% {
      transform: rotate(180deg);
    }
    
    75% {
      transform: rotate(360deg);
    }
    
    100% {
      transform: rotate(360deg);
    }
  }

@keyframes loader-inner {
    0% {
      height: 0%;
    }
    
    25% {
      height: 0%;
    }
    
    50% {
      height: 100%;
    }
    
    75% {
      height: 100%;
    }
    
    100% {
      height: 0%;
    }
  }

/* width */

::-webkit-scrollbar {
  width: 10px;


  
}

/* Track */

::-webkit-scrollbar-track {
  
  /* background-color: #F1D4DB;  */
  background-color: #fff; 
  
 
}

/* Handle */

::-webkit-scrollbar-thumb {
  background: #BD284E; 
  /* border-radius: 10px; */
  
  
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
  background: #ccc; 
}

ul.nav li a p{

  font-size: .7rem;
}

/*# sourceMappingURL=styles.css.map*/