@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap');
* {
    padding:0;
    margin:0;
    box-sizing:border-box;
}
/*this body section is added only when trying to make contact part*/
body{
height:100vh;
background-size:cover;
display:flex;
align-items:center;
flex-wrap: wrap;
}

html{
    font-size:10px;
    font-family:'Montserrat', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden; 
}
a:focus{
  outline: auto;
}
a {
	text-decoration: none;
}

.container {
	min-height: 100vh;
	width: 100%;
  display: flex;
	align-items: center;
	justify-content: center;
}
img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
p {
	color: black;
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: .05rem;
}
.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: .2rem;
	text-align: center;
}
.section-title span {
	color: #AE6229;
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid #AE6229;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: .1rem;
	margin-top: 30px;
	transition: .3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: white;
	background-color: #AE6229;
}

.cta:focus{
  outline:auto;
}
.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
}
.brand h1 span {
	color: #AE6229;
}

/* Header section */
#header {
	position: absolute;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}
#header .header {
	min-height: 8vh;
	background-color: black;
	transition: .3s ease background-color;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}
#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(31, 30, 30);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: .5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: .2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: .3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color:#AE6229;
}
#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(.8);
	margin-right: 20px;
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: .3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}
/* End Header section */
a{
    text-decoration:none;
}

.container{
    min-height:100vh;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

/*Hero Section */
#hero{
    background-image: url(/images/professionalwoman.webp);
    background-size:cover;
    width: 100vw;
    background-position:top center;
    position:relative;
    z-index:1;
}
#hero::after{
    content:'';
position:absolute;
left:0;
top:0;
height:100%;
width:100%;
background-color:black;
opacity:.7;
z-index:-1;
}

#hero .hero{
    max-width:1200px;
    margin:0 auto;
    padding: 0 50px;
    justify-content:center;
}

#hero h1{
    display:block;
    width:fit-content;
    font-size:4rem;
    position:relative;
    color:transparent;
    animation:text_reveal .5s ease forwards;
    animation-delay:1s;
}

#hero h1:nth-child(1){
    animation-delay:1s;
}

#hero h1:nth-child(2){
animation-delay:2s;
}

#hero h1:nth-child(3){
    animation:text_reveal_name .5s ease forwards;
animation-delay:3s;
}
#hero h1 span{
position:absolute;
top:0;
left:0;
height:100%;
width:0;
background-color:#AE6229;
animation:text_reveal_box 1s ease;
animation-delay:.3s;
}

#hero h1:nth-child(1) span{
    animation-delay:.5s;
}

#hero h1:nth-child(2) span{
    animation-delay:1.5s;
}

#hero h1:nth-child(3) span{
    animation-delay:2.5s;
}
#hero .cta{
    display:inline-block;
    padding: 10px 30px;
    color:white;
    background-color:transparent;
    border: 2px solid #AE6229;
    font-size:2rem;
    text-transform:uppercase;
    letter-spacing:.1 rem;
    margin-top:30px;
    transition: .3s ease;
    transition-property:background-color, color;
}

#hero .cta:hover{
    color:white;
    background-color:#AE6229;
}
/*End Hero Section */

/*Keyframes*/
@keyframes text_reveal_box{
    50%{
        width:100%;
        left:0;
    }
    100%{
        width:0;
        left:100%;
    }
}

@keyframes text_reveal{
    100%{
        color:white;
    }
}

@keyframes text_reveal_name{
    100%{
        color:#AE6229;
        font-weight:500;
    }
}
/*end of Keyframes*/

.services-section{
  width: 100vw;
    background-color:#AE6229;
    background-size: cover;
    padding: 60px 0;
  }
  .inner-width{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    overflow: hidden;
  }
  .section-title{
    text-align: center;
    color: #ddd;
    text-transform: uppercase;
    font-size: 30px;
  }
  .border{
    width: 160px;
    height: 2px;
    background: #C0E6DE;
    margin: 40px auto;
  }
  .services-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .service-box{
    max-width: 33.33%;
    padding: 10px;
    text-align: center;
    color: white;
    cursor: pointer;
  }
  
  .service-icon{
    display: inline-block;
    width: 70px;
    height: 70px;
    border: 3px solid white;
    color: white;
    transform: rotate(45deg);
    margin-bottom: 30px;
    margin-top: 16px;
    transition: 0.3s linear;
  }
  .service-icon i{
    line-height: 70px;
    transform: rotate(-45deg);
    font-size: 26px;
  }
  .service-box:hover .service-icon{
    background: black;
    color: #ddd;
    border:none;
  }
  .service-title{
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .service-desc{
    font-size: 22px;
    text-align:center;
  }
  
  .states{
list-style-type:none;
  }
  .contact-main{
    background-image:url("images/phone-5820261_640.jpg");
    background-size:cover;
    background-position: center center;
  width:100vw;
  min-height:100vh;
  padding: 20px;
  display: flex;
 align-items: center;
 justify-content: center;
  }
  .hire-contact {
    text-align:center;
    margin: 80px 10px;
    font-size: 1.5rem;
    background: black;
    padding: 20px;
    color: white;
  }

  #contact-call{
    color:#AE6229;
    text-decoration:underline;
  }
  /*.contact-main h1{
    display:flex;
    flex-direction:column;
    margin-top:50px;
    text-align:center;
    font-size:10em;
    color:#AE6229;
  }
  .contact-main h2{
    font-size:6em;
    color:#AE6229;
    text-align:center;
  }*/
 .contact-info{
  background-color:#487E67;
   width:100%;
   display:flex;
   justify-content:center;
   flex-wrap:wrap;
 }
 .card{
  position: relative;
  flex: 1;
  max-width: 300px;
  height: 140px;
  /*background-color: #444;*/
  background-color:transparent;
  margin: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon{
  font-size: 32px;
  color:white;
  transition: .3s linear;
}

.card:hover .icon, .card:focus .icon{
  transform: scale(4);
  opacity: 0;
}

.card-content h3,
.card-content span{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  opacity: 0;
}

.card-content h3{
  top: 20px;
  text-transform: uppercase;
  color: white;
}

.card-content span{
  bottom: 20px;
  color: #fff;
  font-weight: 500;
}

.card:hover h3, .card:focus h3{
  opacity: 1;
  top: 46px;
  transition: .3s linear .3s;
}

.card:hover span, .card:focus span{
  opacity: 1;
  bottom: 46px;
  transition: .3s linear .3s;
}
.main-services{
  display:block;
  text-align:center;
  margin-bottom:20px;
  color:#AE6229;
  font-size:2em;
}
.my-services-container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
  background-color:white;
}
.timeline {
  width: 80%;
  height: auto;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline ul {
  list-style: none;
}
.timeline ul li {
  padding: 20px;
  background-color:black;
  color: white;
  border-radius: 10px;
  margin-bottom: 20px;
}
.timeline ul li:last-child {
  margin-bottom: 0;
}
.timeline-content h1 {
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 10px;
}
.timeline-content p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  color:white;
}
.timeline-content .date {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
@media only screen and (min-width: 768px) {
  .timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color:black;
  }
  .timeline ul li {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .timeline ul li:nth-child(odd) {
    float: left;
    clear: right;
    transform: translateX(-30px);
    border-radius: 20px 0px 20px 20px;
  }
  .timeline ul li:nth-child(even) {
    float: right;
    clear: left;
    transform: translateX(30px);
    border-radius: 0px 20px 20px 20px;
  }
  .timeline ul li::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color:black;
    top: 0px;
  }
  .timeline ul li:nth-child(odd)::before {
    transform: translate(50%, -50%);
    right: -30px;
  }
  .timeline ul li:nth-child(even)::before {
    transform: translate(-50%, -50%);
    left: -30px;
  }
  .timeline-content .date {
    position: absolute;
    top: -30px;
  }
  .timeline ul li:hover::before {
    background-color:#AE6229;
  }
}

.meeting{
  background-image:url("images/coffee-5447420_1280.jpg");
  background-size:cover;
  width:100vw;
  min-height:100vh;
  padding: 20px;
}
.custom-packages{
  color:white;
  margin-top: 100px;
  text-align:center;
  font-size:5em;
}
.coffee{
  color:white;
  font-size:3em;
  line-height: 40px;
  text-align:center;
  max-width: 650px;
  margin: 0 auto;
}
.coffee-space{
  margin-top:20px;
}

.blog-container{
  display:flex;
  flex-direction:column;
  color:#AE6229;
  text-align:center;
  align-items:center;
  margin: 0 auto;
}
.blog-title{
  margin-top:80px;
  text-align:center;
  font-size:3.5em;
}

.blog-info{
  text-align:center;
  align-items:center;
  color:#AE6229;
  font-size: 26.25px;
}

.keyboard{
  margin-bottom:20px;
  margin-top:20px;
}
@media (min-width:681px){
  .blog-container{
    width:70%;
  }
}

.container-about {
  display: flex;
}
.about-body{
  background:white;
  color: #AE6229;
}

.image-about img{
  margin-top:80px;
  min-width: 300px;
}

@media(max-width:900px){
  /* .image-about{
    min-width: 300px;
    /* width:100%;
    height:300px; */
    /* object-fit:cover;
    object-position:right; */
    /*display:flex;
    flex-wrap:wrap;*/
  } */
.container-about {
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.about-p{
  color:#AE6229;
  text-align:center;
  font-size:.75em;
  margin-bottom: 20px;
}
.my-info{
  display:flex;
  flex-direction:column;
  font-size:3.5em;
  text-align:center;
  padding: 2em;
}
.my-info h2{
  font-size: 2.5rem;
  margin-bottom: 20px;
  margin-top: 20px;
}

.btn{
  display:inline-block;
  padding:2.7rem 2.7rem;
  background-color:#AE6229;
  color:#ddd;
}
.btn:focus{
  outline:auto;
}
@media screen and (max-width:900px){
  .card{
      flex: 100%;
      max-width: 500px;
  }
}
  @media screen and (max-width:960px) {
    .service-box{
      max-width: 45%;
    }
  }
  
  @media screen and (max-width:768px) {
    .service-box{
      max-width: 50%;
    }
  }
  @media(max-width:700px){
    .image-about{
      display:none;
    }
    .container-about{
      background-image:url("images/chocolatecan.png");
      background-size: cover;
      background-position: 50% 50%;
  color:white;
    }
    .my-info {
      margin: 90px auto;
      padding: 0;
    }
    .btn {
      margin: 20px auto;
      width: 50%;
      padding: 0;
    }
    .about-p{
      margin: 0;
      padding: 0;
      color: white;
      font-size: 1em;
      line-height:100%;
      /*padding:.5em;
      margin: 20px;*/
    }
  }
  @media screen and (max-width:480px) {
    .service-box{
      max-width: 100%;
    }
    
}
@media only screen and (min-width: 1200px) {
	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
  }
}
@media only screen and (min-width: 768px) {
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}
	h1.section-title {
		font-size: 6rem;
	}

	/* Hero */
	#hero h1 {
		font-size: 7rem;
	}
	/* End Hero */
}