/********** Template CSS **********/
:root {
   --alfiya: #d6b392;
   --alfiya-light: #ffeedc;
   --alfiya-dark: #754033;
   --grady-alfiya: linear-gradient(#ffeedc, #d6b392);
}

.text-alfiya {
   color: var(--alfiya) !important;
}

.bg-alfiya {
   background: var(--alfiya-light) !important;
}

.text-alfiya-dark {
   color: var(--alfiya-dark) !important;
}

.scale {
   transition: all .4s;
   cursor: pointer;

   &:hover {
      transform: scale(.97);
   }
}

.pointer {
   cursor: pointer;
}

.invalid-message {
   width: 100%;
   margin-top: 0.25rem;
   font-size: 0.875em;
   color: #dc3545;
}

input[type="radio"],
input[type="checkbox"] {
   cursor: pointer;
   width: 25px !important;
   height: 25px !important;
   vertical-align: middle;
}

.fw-medium {
   font-weight: 600 !important;
}

.fw-semi-bold {
   font-weight: 700 !important;
}

.back-to-top {
   position: fixed;
   display: none;
   right: 45px;
   bottom: 45px;
   z-index: 99;
}

.infosCookies {
   position: fixed;
   bottom: 0;
   width: 100%;
   min-width: 350px;
   color: #fff;
   font-size: 11pt;
   text-align: center;
   padding: 15px 0;
   background: linear-gradient(rgba(97, 97, 97, 0.7), rgba(0, 0, 0, 0.89));
   z-index: 500;
   border-top: 1px solid #fff;
   letter-spacing: 1px;
}

/*** Spinner ***/
#spinner {
   opacity: 0;
   visibility: hidden;
   transition: opacity .5s ease-out, visibility 0s linear .5s;
   z-index: 99999;
}

#spinner.show {
   transition: opacity .5s ease-out, visibility 0s linear 0s;
   visibility: visible;
   opacity: 1;
}


/*** Button ***/
.btn {
   font-family: 'Nunito', sans-serif;
   font-weight: 600;
   transition: .5s;
}


.btn-square {
   width: 38px;
   height: 38px;
}

.btn-sm-square {
   width: 32px;
   height: 32px;
}

.btn-lg-square {
   width: 48px;
   height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
   padding: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: normal;
   border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
   border: none;
   content: "\f107";
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
   vertical-align: middle;
   margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
   margin-right: 30px;
   padding: 25px 0;
   font-size: 15px;
   text-transform: uppercase;
   outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
   color: #fff;
   text-shadow: 0 0 5px var(--alfiya-dark);
}

@media (max-width: 991.98px) {
   .navbar-light .navbar-nav .nav-link {
      margin-right: 0;
      padding: 10px 0;
   }

   .navbar-light .navbar-nav {
      border-top: 1px solid #eee;
   }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
   height: 75px;
}

.navbar-light .navbar-nav .nav-link {
   color: var(--alfiya-dark);
   font-weight: 500;
}

.navbar-light.sticky-top {
   top: -100px;
   transition: .5s;
   background: var(--grady-alfiya) !important;
   box-shadow: 0 0 5px 3px #555 !important;
}

@media (min-width: 992px) {
   .navbar .nav-item .dropdown-menu {
      display: block;
      margin-top: 0;
      opacity: 0;
      visibility: hidden;
      transition: .5s;
   }

   .navbar .dropdown-menu.fade-down {
      top: 100%;
      transform: rotateX(-75deg);
      transform-origin: 0% 0%;
   }

   .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      transform: rotateX(0deg);
      visibility: visible;
      transition: .5s;
      opacity: 1;
   }
}

.page-header {
   background: url(../img/header.jpg);
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;
   height: 25vh;
   box-shadow: 0 0 10px 7px #333;
}

.page-header-inner {
   background: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
   color: var(--light);
}

/*** Section Title ***/
.section-title {
   position: relative;
   display: inline-block;
   text-transform: uppercase;
}

.section-title::before {
   position: absolute;
   content: "";
   width: calc(100% + 80px);
   height: 2px;
   top: 4px;
   left: -40px;
   background: var(--alfiya);
   z-index: -1;
}

.section-title::after {
   position: absolute;
   content: "";
   width: calc(100% + 120px);
   height: 2px;
   bottom: 5px;
   left: -60px;
   background: var(--alfiya);
   z-index: -1;
}

.section-title.text-start::before {
   width: calc(100% + 40px);
   left: 0;
}

.section-title.text-start::after {
   width: calc(100% + 60px);
   left: 0;
}

/*** SERVICE ***/
.service-item {
   background: var(--light);
   transition: .5s;
   border-radius: 5px;
}

.service-item:hover {
   margin-top: -10px;
   background: var(--alfiya-dark);
}

.service-item * {
   transition: .5s;
}

.service-item:hover * {
   color: var(--light) !important;
}

.service-item img {
   width: 25%;
   margin-bottom: 30px;
}


/*** Footer ***/
.footer {
   background: var(--grady-alfiya);
   margin-top: 100px !important;
   box-shadow: -3px 0 5px 3px #333;
}

.footer .btn.btn-link {
   color: var(--alfiya-dark);
   font-size: 13pt;
   font-weight: normal;
   text-transform: capitalize;
   transition: .3s;
}

.footer .btn.btn-link:hover {
   box-shadow: none;
   color: #fff;
   text-shadow: 0 0 5px var(--alfiya-dark);
}