html {
  font-family: poppins, sans-serif;
  font-weight: 200;
  font-style: normal;
  scroll-behavior: smooth;
}

:root {
  --turquoise-color: #5bb4ac;
  --dkblue-color: #0a3142;
  --peach-color: #f5b388;
  --light-gray-color: #f7f7f7;
}


::selection {
    background: var(--peach-color);
    color: #fff;
}

body {
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-style: normal;
}

div {
  display: block;
}

h1 {
  font-family: karmina, serif;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  padding: 0;
  color: var(--turquoise-color);
}

h2 {
  font-family: poppins, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1em;
}

h3 {
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: .9em;
}

.text-center {
  text-align: center;
}

.justify-content-end {
  display: flex;
  justify-content: flex-end;
}

.section-title {
  padding-bottom: 40px;
}

.justify-content-between {
  display: flex;
  justify-content: space-between;
}

.justify-content-around {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.justify-content-center {
  display: flex;
  justify-content: center;
}

a {
  text-decoration: none;
}

.logo img {
  width: 50px;
  height: 50px;
}

/*CURSOR FUN*/
.cursor-wrap {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
}
.cursor {
  position: fixed;
  top: -30px;
  left: -30px;
}

/*BUTTON FUN*/

.animated-button {
  width: 120px;
  height: 40px;
  border-radius: 30px;
  border: 1px solid var(--turquoise-color);
  background-color: transparent;
  color: var(--turquoise-color);
  transition: background 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  margin: 0 auto;
}

.animated-button:hover {
  background-color: var(--turquoise-color);
  color: white;
}

.animated-button.magnet {
  border: 2px solid #FFE700
}
.circle {
  transform: scale(.8);
  transition: all .2s ease-in-out;
}

/*BUTTON 2*/

#test-section {
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-1 {
  color: white;
  border: 0;
  border-radius: 10px;
  padding: 10px;
}

.btn-1:hover {
    animation: hover-peach-btn .25s ease-out 1;
    animation-fill-mode: forwards;
    cursor: pointer;
    text-decoration: none;
}

#contact-form-btn {
  color: white;
  background-color: var(--turquoise-color);
}


@keyframes hover-peach-btn {
  0% {
    background-color: var(--turquoise-color);
  }
  100% {
    background-color: var(--peach-color);
  }
}

/*MAIN NAVIGATION BAR*/

nav {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: white;
  box-shadow: 0 10px 100px 0 rgba(0,0,0,.2);
  padding: 20px;
  top: 0;
}

.navspacer {
  padding-top: 100px;
}

.responsive {
  color: var(--turquoise-color);
  font-size: 25px;
  display: none;
}

#main-nav .container {
  width: 100%;
  margin: 0 auto;
  top: 0;
  display: block;
}

#main-nav .row {
  justify-content: space-between;
}

.nav-links {
  display: block;
  float: right;
  line-height: 32px;
  margin-bottom: 0;
  padding-top: 10px;
}

nav a, .tab-nav li{
  color: gray;
}

nav ul li {

  margin-left: 30px;
  display: inline-block;
}

li {
  display: list-item;
}



@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    padding-top: 20px;
    background-color: white;
    top: 8vh;
    right: 0;
    width: 100%;
  }
  .nav-links li {
    text-align: center;
    margin: 0 auto;
    padding: 20px;
  }
  nav ul li {
    float: none;
    display: block;
  }
  .responsive {
    display: flex;
    align-items: center;
  }
  .hover-underline-animation {
    display: none;
  }
  .hover-underline-animation:after {
    display: none;
  }
}

nav a:hover, .tab-nav li:hover{
  animation: hover-peach-text .25s ease-out 1;
  animation-fill-mode: forwards;
  cursor: pointer;
  text-decoration: none;
}


@keyframes hover-peach-text{
  0% {
    color: #999999;
  }

  100% {
    color: var(--peach-color);
  }
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
}


.hover-underline-animation:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--peach-color);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


/*HERO SECTION*/

#hero {
  width: 100%;
  height: 100vh;
  text-align: left;
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-image: url(https://www.coatesmedia.co/images/coverphoto-01.png);
  background-position: center;
  background-size: auto 100vh;
  background-repeat: no-repeat;
}

@media (min-width: 1200px) {
  #hero {
    background-image: url(https://www.coatesmedia.co/images/coverphoto-02-01.png);
  }
}


.hero-content {
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: absolute;
  margin-bottom: 175px;
  text-align: center;
}

@media (max-width: 992px) {
  .hero-content {
    margin-bottom: 10px;
  }
}

.hero-content h1 {
  color: white;
  padding-bottom: 10px;
}

.sm-links ul{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.sm-links li {
  padding: 10px 10px 0 10px;
  font-size: 20px;
}

.sm-links li a {
  color: white;
}

.sm-links a:hover {
  color: var(--peach-color);
}

/*ABOUT SECTION BAR*/

#about {
  width: 100%;
  background: var(--light-gray-color);
  padding-top: 100px;

}

.about-image {
  width: 300px;
  height: auto;
  margin-bottom: 20px;

}


@media (max-width: 992px) {
  .about-content h1{
    text-align: center;
    padding-bottom: 15px;
  }
}

/*SERVICES SECTION*/

#services {
  background-color: var(--light-gray-color);
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;

}

.services-section {
  padding: 10px;
  margin: 10px;
}

.icon, .title, .desc {
  display: flex;
  justify-content: center;
  align-items: center;

}

.services, .contact {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.icon i {
  color: var(--peach-color);
  font-size: 1.5em;
}

.title {
  height: 30px;
  padding-top: 10px;
  padding-bottom: 20px;
}


/*PORTFOLIO SECTION*/
#portfolio {
  padding-top: 100px;
  padding-bottom: 50px;
}

.tab-nav {
  width: 100%;
  padding-bottom: 25px;
  display: inline-block;

}

.tab-nav ul{
  display: flex;
  justify-content: space-around;
  padding: 0;
  margin: 0;
}

.portfolio-container {
  width: 100%;
  margin: 0 auto;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.portfolio-thumbnail img{
  padding-bottom: 20px;
  width: 100%;
  margin: 0 auto;
}


/*CONTACT SECTION*/
#contact {
  background-color: var(--light-gray-color);
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 15px;
  padding-right: 15px;
}

.contact-block {
  width: 100%;
}

.margin {
  margin-bottom: 10px;
}

    /*Form Styles*/

#contact-form {
  padding-bottom: 20px;
}

.form-control {
  margin-bottom: 10px;
}

.form-control:focus {
  border-color: var(--peach-color);
  box-shadow: 0 0 0 .2rem rgba(245, 179, 136, 0.25);
}

@media (max-width: 767.9px) {
  #getintouch {
    text-align: center;
  }
}


footer {
  background-color: var(--turquoise-color);
  position: static;
  color: white;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}


/*FOOTER SECTION*/

#footer-content {
  width: 100%;
  border: solid rgba(255, 255, 255, 0.3);
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0 auto;
}

@media (max-width: 575.98px) {
  .sm-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

/*TEST PORTFOLIO PAGE*/
 #portfolio-page {
   margin-top: 100px;

 }


.acc_trigger a {
  text-decoration: none;
  display: block;
  color: gray;
}

.acc_trigger a:hover {
  animation: hover-peach-text .25s ease-out 1;
  animation-fill-mode: forwards;
  cursor: pointer;
  text-decoration: none;

}

.acc_container .block {
  padding-top: 20px;
}

.acc_trigger {
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
}

.acc_trigger.active {
  border-bottom: 2px solid var(--peach-color);
}

.acc_container {
  padding-bottom: 20px;
  display: none;
  overflow: hidden;
  border-bottom: 2px solid pink;
}

.slider-text {
  float: left;
  width: 250px;
  padding-right: 20px;
}

.slider-img {
  float: right;
}

/*TEST SECTION*/



#test {
  margin-top: 150px;
}
