/*

Amber Esthetics

https://amberesthetics.com

*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;	
  --chocolate-dark-color:         #131814;	
  --bistre-dark-brown-color:      #403024;
  --seal-brown-color:             #492916;
  --khaki-color:                  #C6B2A2;
  --timberwolf-color:             #CDC4BB;
  --linen-color:                  #DBD9D4;
  --linear-gradient:              linear-gradient(90deg, #C6B2A2 0, #DBD9D4 50%, #CDC4BB 100%);
  --radial-gradient:              radial-gradient(413.4% 117.81% at 5.01% 10.87%, #C6B2A2 0%, #DBD9D4 100%);

  --heading-font-family:	      'Dancing Script', cursive;
  --body-font-family:             'Crimson Text', serif;

  --h1-bigger-font-size:          calc(104px + 0.390625vw); /*120px;*/
  --h1-font-size:                 calc(50px + 0.390625vw);	/*was 60px*/
  --h2-font-size:                 52px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --btn-font-size:                18px;
  --icon-font-size:               16px;
  --copyright-font-size:          16px;	

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-semi-bold:        600;
  --font-weight-bold:             700;
  --font-style-italic:            italic;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
	overflow-x:hidden;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
	margin: 0;
	padding:0;
	overflow-x:hidden;
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--chocolate-dark-color);
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: 4.4rem;
}

h1 .cursive-title{
  font-size: var(--h1-bigger-font-size);
  font-family: var(--heading-font-family); 
  line-height: 5.2rem;	
}

h2 {
  font-family: var(--heading-font-family); 
  font-size: var(--h2-font-size);
  line-height: 4rem;		
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--seal-brown-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.5px;	
}

ul li {
  color: var(--chocolate-dark-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
  font-size:20px;
}

a {
  display: block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover, button:hover {
  color: var(--khaki-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  /*line-height: 1;*/
  flex-shrink: 0;
  max-width: initial;
}

img{
	max-width:100%
}
img.script{
	margin-top:-10px;
}
/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background: var(--radial-gradient);
}

.section-overlay {
  background-color: var(--chcolate-dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

/*---------------------------------------
  COLOR EFFECT ON IMAGES               
-----------------------------------------*/
.blk-white figure img{
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
	border-radius: var(--border-radius-small);
	max-width: 100%;
	transition: .2s ease;
}

.blk-white:hover figure img{
  -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
}
/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--white-color);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--chocolate-dark-color);
  border: 2px solid var(--chocolate-dark-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  letter-spacing:0.4px;
  transition: all 0.3s;
  padding: 10px 30px;
}

.custom-btn:hover {
  background: transparent;
  border: 2px solid var(--chocolate-dark-color);
  color: var(--chocolate-dark-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--chocolate-dark-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-khaki {
  background: var(--khaki-color);
  border-color: var(--khaki-color);
  color: var(--chocolate-dark-color);
  padding: 10px 30px;	
}
.custom-btn-bg-khaki:hover {
  background: transparent;
  border-color: var(--khaki-color);
  color: var(--khaki-color);
}

.outline-btn{
  background: transparent;
  border: 2px solid var(--chocolate-dark-color);
  border-radius: var(--border-radius-large);
  color: var(--chocolate-dark-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  letter-spacing:0.4px;
  transition: all 0.3s;
  padding: 10px 30px;
}

.outline-btn:hover {
  background: var(--chocolate-dark-color);
  border-color: var(--chocolate-dark-color);
  color: var(--white-color);	
}
 /********SVG BUTTON EFFECT*****/
.link-fx-1 {
  color: var(--chocolate-dark-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--chocolate-dark-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}



/********UNDERLINE BUTTON EFFECT*****/
/*
.custom-links {
  max-width: 230px;
}

.custom-link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  color: var(--chocolate-dark-color);
  font-weight: var(--font-weight-semi-bold);	
  transition: all .3s cubic-bezier(.645,.045,.355,1);
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover,
.custom-link:hover::after {
  color: var(--chocolate-dark-color);
}
*/
/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/*
.custom-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);	
  min-width: 100%;
  min-height: 100%;
  width:auto;
  height:auto;
z-index:-1;	
}
*/

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--chocolate-dark-color);
  padding-top: 8px;
  padding-bottom: 8px;
}

.site-header .size{
	width:50%!important;
}
/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 51px;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--linen-color);
}

.navbar {
  background: var(--linen-color);
  z-index: 9;
}

.navbar-brand img.desktop-logo {
  width:190px;
  height:auto;
}

.navbar-brand img.mobile-logo{
	display:none;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px 20px;
}

.navbar-nav{
	margin-right:3rem;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--chocolate-dark-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semi-bold);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

/*.navbar-nav .nav-link.active{
  border-bottom:2px solid var(--khaki-color);
  border-radius: 0!important;
}*/
a.line{
  border-bottom:2px solid var(--khaki-color);
  border-radius: 0!important;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--chocolate-dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--chocolate-dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: calc(100vh - 51px);
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}

/*---------------------------------------
  PORTFOLIO GALLERY       
-----------------------------------------*/
.portfolio{
   padding-top: 80px;
   margin: 0!important;
}

.portfolio-item img {
  width: 100%;
  height: auto;
/*  overflow: hidden;*/
  transition: transform 2s ease; /* Adjust the timing here for the speed of the zoom effect */	
}


.portfolio-item:hover img {
  transform: scale(1.15); /* 115% zoom */
}

.portfolio-item .thumb {
  position: relative;
  overflow: hidden; /* Prevents the image from spilling out of the container on zoom */	
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default to 3 images per row */
    grid-gap: 0; /* No space between */
}

.gallery-grid img {
    width: 100%; /* Make sure images cover the cell */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below images */
}

/****social share****/
.portfolio-item .social-share {
  position: absolute;
  right: 0;
  bottom: 0;
}

.portfolio-item .social-icon {
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(0);
  padding-right: 20px;
  padding-left: 20px;
}

.portfolio-item:hover .social-icon {
  transform: translateY(-100%);
  opacity: 1;
}

.portfolio-item .social-icon-item,
.portfolio-item .social-icon-link {
  display: block;
  margin-bottom: 10px;
  margin-left: auto;
}

.portfolio-item .social-icon-link {
  margin-top: 5px;
  margin-bottom: 5px;
}


.gallery-grid .social-icon {
  margin: 0;
  padding: 0;
}

.gallery-grid .social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align:baseline;
}

.gallery-grid .social-icon-link {
  background: var(--bistre-dark-brown-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--h5-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 45px;
  position: relative;
  bottom:-30px;	
  transition: background 0.2s, color 0.2s;
}

.gallery-grid .social-icon-link:hover {
  background: transparent;
  color: var(--white-color);
}

/* Media queries for gallery */
@media only screen and (max-width: 991px) {
	.portfolio{
   padding-top: 75px;
}
/*
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
*/
}

/* Small devices (phones, less than 576px) */
@media only screen and (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* 1 image per row */
    }
}


/*---------------------------------------
  ABOUT             
-----------------------------------------*/
.middle-bg{
	background-color: var(--linen-color);
}
.about-image,
.team-image {
  width: 100%;
  height: 100%;
  max-height: 635px;
  min-height: 475px;
  object-fit: cover;
}

#about h2{
	color:var(--chocolate-dark-color);
}

.team-thumb {
  background: var(--chocolate-dark-color);
  position: absolute;
  bottom: 0;
  right: 0;
  border-top-left-radius: 2rem;	
  width: 65%;
  padding: 22px 32px 32px 32px;
}

.team-thumb p{
	color: var(--linen-color);
}
.carousel-control-next, 
.carousel-control-prev {
  top: auto;
  bottom: 2.5rem;
}

.carousel-control-prev {
  right: 4rem;
  left: auto;
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
  background-color: var(--chocolate-dark-color);
  background-size: 50% 50%;
  border-radius: 100px;
  width: 3rem;
  height: 3rem;
}



/*---------------------------------------
  BOTTOM CTA               
-----------------------------------------*/
.bottom-cta-section{
	padding-top: 60px;
	padding-bottom:65px;
}

.bottom-cta {
  /*background-color: var(--chocolate-dark-color);*/
  background-image:url("../images/damask.jpg");
  background-attachment: fixed;
  background-position: left top;
  background-repeat: repeat;
	
  border-radius: var(--border-radius-medium);
  color:  var(--khaki-color)!important;
  padding: 80px 45px;
}

.bottom-cta h2{
  font-family: var(--body-font-family);	
  color:  var(--khaki-color);
  font-size: 60px;
  line-height: 76px;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--white-color);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--linen-color);
  padding-top: 30px;
  padding-bottom: 30px;	
}

.copyright-text {
  font-size: var(--copyright-font-size);
  color: var(--chocolate-dark-color);	
  background-color: transparent;	
  border: none;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;		
}

.scroll-top-link{
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  border:1px solid var(--khaki-color);	
  color: var(--khaki-color) !important;
  font-size: var(--p-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 42px;
	position: relative;
	top:20px!important;
	z-index:1;
}

/*---------------------------------------
  MODAL TERNS & CONDITIONS    
-----------------------------------------*/
.terms {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 19;
  top: 0;
  left: 0;
  padding: 5rem 0;
  background-color: rgba(219,217,212, 0.8);
  overflow-x: hidden;
  transition: 0.5s;
}
.terms-content {
  background: var(--white-color);
  border-radius: 5px;
  padding: 4rem 2rem;
  box-shadow: 0px 5px 15px rgba(19,24,20,0.1);
} 
.terms .closebtn {
  position: absolute;
  top: 0.5rem;
  right: 4rem;
  font-size: 4rem;
  color:var(--chocolate-dark-color);
  z-index: 20;
}
.terms .closebtn:hover {
  text-decoration: none;
}
.terms span{
	color:var(--bistre-dark-brown-color);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--chocolate-dark-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color)!important;
  font-size: var(--icon-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
}

.site-header .social-icon-link {
	transition: transform 0.3s ease-in-out; 
}

.portfolio .social-icon-link {
	transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--chocolate-dark-color);
  color: var(--white-color);
}

.site-header .social-icon-link:hover {
	transform: scale(1.2); /* makes the icon 20% larger on hover */
}

.social-icon-link span {
  display: block;
}
/*

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}
*/

/**----------------------------------------------------------------------------------------------------------------------------------------
   WORKSHOP PAGE
-------------------------------------------------------------------------------------------------------------------------------------------*/
.workshop-section {
  background: url('../images/workshop-banner.jpg') top center;
  background-color: var(--chocolate-dark-color);
  background-repeat: no-repeat;
  background-size: cover;
  min-height:100vh;
  height:auto;	
  display: flex;
  align-items:center;
}

.workshop-section .cursive-title{
	color: var(--khaki-color);
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
 }
.quarter-width {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 30px;
	display: flex;
	align-items: flex-end;
 }
.img-width {
    flex: 0 0 75%;
    max-width: 75%;
 }
.img-width img {
    max-width: 100%;
    height: auto;
	border-radius: 1rem;
 }

@media (max-width: 991px) {
   .quarter-width, .img-width {
 	flex: 0 0 100%;
    max-width: 100%;
   }
}
/************Why Workshop**********/
.why-workshop{
	background: var(--linen-color);
}
.reasons-workshop {
  display: flex;
  flex-direction: row;
  }
  
.workshop-reasons {
  width: 33%;
  height: auto;
  background-image:url("../images/damask.jpg");
  background-attachment: fixed;
  background-position: left top;
  background-repeat: repeat;
  color:  var(--linen-color)!important;
  text-align: center;
  font-size: 20px;
  margin-left:20px;
  margin-right:20px;
  padding:40px 10px;	
  border-radius: var(--border-radius-small);
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  z-index:1;
  }
  
.workshop-reasons .custom-icon{
	font-size:32px;
	padding-bottom:10px;
	color: var(--khaki-color);
}

.workshop-reasons h3{
	color: var(--khaki-color);
	text-transform: uppercase;
	font-weight: 400;
}
/********ABOUT AMBER******/
.amber .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px; 
    margin-left: -15px; 
}

.amber .col {
    flex: 1;
    padding: 0 15px; 
}

.amber .image-full-width {
    width: 100%;
    height: auto;
	border-radius: 1rem;
}

@media (min-width: 992px) {
    .amber .col {
        max-width: 33.3333%;
        flex-basis: 33.3333%;
    }
}
@media (max-width: 991px) {
    .amber .col {
        max-width: 100%;
        flex-basis: 100%;
    }
}

/**----------------------------------------------------------------------------------------------------------------------------------------
   ABOUT PAGE
-------------------------------------------------------------------------------------------------------------------------------------------*/
/*-----TEAM MEMBERS    --------------------*/

  .team-member {
    background-color: var(--white-color);
    border-radius: var(--border-radius-small);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .team-member-info {
    padding: 20px 30px 0 30px;
	 min-height:390px;
	  height:100%;
  }

  .team-member-contact-info {
    border-top: 1px solid #e9e9e9;
    padding-top: 1.2em;
    margin-top: 1.5em;
  }

  .team-member-contact-info .fa {
    margin-right: 5px;
    display: inline-block;
  }

  .team-member-contact-info p {
    margin-bottom: 2px;
  }

  .team-member .social-media li {
    font-weight: 500;
	display: inline-block;
    list-style: none;
  }

  .team-member .social-media li a {
    background: #ffffff;
	color: var(--chocolate-dark-brown);
    border-radius: 100px;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 2px 0 2px;
	text-decoration: none;
    text-align: center;
    transition: all 0.4s ease-in-out;
    position: relative;  
  }

  .team-member .social-media {
    opacity: 0;
    transform: translateY(100%);
    transition: 0.5s 0.2s;
    text-align: center;
    position: relative;
	padding: 0;
    margin: 0;  
    top: 0;
  }

  .team-member:hover .social-media {
    opacity: 1;
    transition-delay: 0.3s;
    transform: translateY(0px);
    top: -30em;
  }

  .team-member .social-media li a:hover {
    background: var(--linen-color);
    color: var(--chocolate-dark-brown);
  }

/**----------------------------------------------------------------------------------------------------------------------------------------
   SERTVICES PAGE
-------------------------------------------------------------------------------------------------------------------------------------------*/
.service-section {
  background-image: url('../images/services-banner.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height:100vh;
  height:auto;	
  display: flex;
  align-items:center;
}

.service-section h1{
	color: var(--khaki-color);
}

.light-box{
	background: rgba(219, 217, 212, 0.4);
	padding:40px 20px;
	
}

.beige-bg{
	background:rgba(219,217,212,1);
}

.package{
	position: relative;
}

.package-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 60px;
  right: 0;
  left: 0;
  margin: 25px;
  padding: 25px;
  overflow: hidden;	
	will-change: transform, opacity;
  transition: all 0.5s ease-in-out;
}

.package-text-icon {
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.package-text-info:hover .package-hover, .package-hover.hover{
  position:relative;
  transform: translateY(0);
  transition: all 0.3s ease;
  opacity: 1;
}

.package-hover {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-small);
  border: 1px solid rgba(209, 213, 219, 0.3);
  padding: 20px;
  transition: all 0.3s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
}

.package-hover p {
  color: var(--chocolate-dark-color);
  display: inline-block;
  min-width: 180px;
}


/**----------------------------------------------------------------------------------------------------------------------------------------
   CONTACT PAGE
-------------------------------------------------------------------------------------------------------------------------------------------*/
.contact-us {
  background: url('../images/contact-banner.jpg') top center;
  background-color: var(--chocolate-dark-color);
  background-repeat: no-repeat;
  background-size: cover;
  min-height:100vh;
  height:auto;	
  display: flex;
  align-items:center;
}

.khaki-title{
	color: var(--khaki-color);
}

.coordinates {
  display: flex;
  flex-direction: row;
  }
  
.contact-info {
  width: 33%;
  height: 260px;
  background-color:  var(--linen-color);
  text-align: center;
  color: var(--chocolate-dark-color);
  font-size: 20px;
  margin-top:-80px;
  margin-left:20px;
  margin-right:20px;
  border-radius: var(--border-radius-small);
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  z-index:1;
  }
  
.contact-info .custom-icon{
	font-size:32px;
	padding-bottom:10px;
	color: var(--khaki-color);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--seal-brown-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form .form-control:focus, .custom-form .form-control:active {
  border: 1px solid var(--chocolate-dark-color); 
  outline:none!important;
}

.custom-form button[type="submit"] {
  background: var(--chocolate-dark-color);
  border: 2px solid var(--chocolate-dark-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semi-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--white-color);
  border: 2px solid var(--chocolate-dark-color);
	color:var(--chocolate-dark-color);
}

/****/
.contact-section .tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.contact-section .nav-tabs {
  background-color: var(--linen-color);
  border-radius: var(--border-radius-large);
  padding: 15px;
}

.contact-section .nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.contact-section .nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.contact-section .nav-tabs .nav-item.show .nav-link, 
.contact-section .nav-tabs .nav-link.active,
.contact-section .nav-tabs .nav-link:focus, 
.contact-section .nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--chocolate-dark-color)!important;
}

.contact-section .nav-tabs h5 {
  color: var(--seal-brown-color); 
  margin-bottom: 0;
}

.contact-section .nav-tabs .nav-link.active h5,
.contact-section .nav-tabs .nav-link:focus h5, 
.contact-section .nav-tabs .nav-link:hover h5 {
  color: var(--chocolate-dark-color);
}
/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media only screen and (max-width: 1069px) and (min-width: 576px)  {
  .site-header .container, .navbar .container {
    max-width: 100vw;
  }
  .navbar-nav{
	margin-right:0;
  }	
}

@media (max-width:1199px){
  .who-we-are .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 991px) {
  h2 {
    font-size: 46px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--linen-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }
  
  .intro-section .container, .get-in-touch .container, .why-workshop .container, .skin-care .container {
    max-width: 100vw;
  }	
	
  .skin-care img{
	max-width:100%;
  }	
}

@media screen and (max-width: 767px) {
  .custom-btn, .outline-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
	
  .coordinates{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 70px;	  
  }
	
  .contact-info {
    width:90%;	  
    height: 260px;
    margin-top:30px;
  }

  .reasons-workshop {
    display: flex;
    flex-direction: column;
    align-items: center; 
  }
	
  .workshop-reasons {
    width:90%;
	margin-top:30px;
	}
  
  .column-switch{
	display:flex;
	flex-direction: column-reverse; 
	}
}

@media screen and (max-width:700px){
  .makeup{
  	background-image:url("../images/makeup-services.jpg");
    min-height: 560px;
  	background-position: center top;
  	background-size:cover;
  }
}

@media screen and (max-width:575px){
  .workshop{
    background: var(--radial-gradient)!important;
  }
}

@media screen and (max-width:500px){
  .navbar-brand img.desktop-logo {
	display:none;
  }

  .navbar-brand img.mobile-logo{
    display: block;  
	width:70px;
    height:auto;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 50px;
	line-height: 4rem;  
  }
	
  h1 .cursive-title{
	font-size: 76px;	
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

