:root {
  --dark-text: #353535;
  --red: #902323;

}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  font-family: 'Assistant', sans-serif;
  color: var(--dark-text);
}

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

.text-right {
  text-align: right !important;
}

.clear {
  clear: both;
}

.col-4 {
  float:left;
  width: 33.3%;
}

.col-6 {
  float: left;
  width: 50%;
}

.col-8 {
  float:left;
  width: 66.6%;
}

header {
  width: 100%;
  background-color: white;
  padding: 0px 30px;
  box-sizing: border-box;
}

.logo img {
  float: left;
  height: 80px;
  padding: 10px 0px;
}

.nav {
  float:right;
}

a {
  text-decoration: none;
  color: var(--red);
}

.nav a {
  height: 100px;
  line-height: 100px;
  padding: 0px 20px;
  text-decoration: none;
  color: var(--dark-text);
  display: block;
  float: left;
}

.nav .active {
  background-color: #EEEEEE;
}

.nav a:hover {
  background-color: #F2F2F2;
}

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

.banner {
  width: 100%;
  background-image: url("../img/rose.jpg");
  background-color: var(--red);
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center -60px;
  color: white;
  text-align: center;
  padding: 100px 10px;
  box-sizing: border-box;
}

.banner h1 {
  font-weight: 200;
  margin: 0px;
  font-size: 65px;
}

.banner p {
  font-size: 20px;
  margin: 40px 0px;
}

.banner .button {
  background-color: white;
  text-decoration: none;
  font-size: 18px;
  color: var(--red);
  padding: 12px;
  border-radius: 50px;
  margin: 70px auto;
  display:block;
  width: 300px;
}

.main {
  background-color: #F2F2F2;
  padding: 60px 150px;
  z-index: 2;
  position: relative;
}

.main-container {
  max-width: 1050px;
  margin: 0px auto;

}

.card {
  background-color: white;
  margin: 20px;
  padding: 15px 35px;
}

.card-about {
  background-image: url("../img/hills.jpg");
  background-size: cover;
  color: white;
}

.card-about p {
  margin: 170px 0px 0px 0px;
}

.card-about a {
  color: white !important;
}

.card-contact p {
  padding: 36px 0px 46px 0px;
}

.card-testimonials {
  background-color: white;
}

.card h2 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
}

.card-link {
  text-transform: uppercase;
  text-align: right;
  text-decoration: none;
  display: inherit;
  font-weight: 700;
  margin: 30px 0px;
  color: var(--red);
}

.card-image {
  margin-top: -5px;
}

.team-image {
  padding: 20px;
  padding-bottom: 0px;
  box-sizing: border-box;
  width: 100%
}

.text-team {
  font-weight: 200 !important;
  text-transform: none !important;
  margin: 5px;
}

.card-profile {
  margin-top: -50px;
  padding-top: 65px
}

.profile-image {
  padding-bottom: 0px;
  margin: 0px auto;
  display: block;
  box-sizing: border-box;
  width: 100px;
  border-radius: 90px;
  border: 3px solid white;
}

.services {
  background-color: white;
  width:100%;
  padding: 60px 170px;
  box-sizing: border-box;
  color: var(--dark-text);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  z-index:1;
  position: relative;
}

.services h2 {
  text-align: center;
  text-transform: uppercase;
  margin: 0px 0px 50px 0px;
  font-size: 30px;
}

.service {
  width: 20%;
  float: left;
  text-align: center;
  box-sizing: border-box;
}

.service img {
  width: 70px;
}

.service h3 {
  font-weight: 200;
  font-size: 30px;
  margin-bottom:0px;
  padding: 0px 10px;
}


footer {
  background-color: #F2F2F2;
  z-index: 0;
  position: relative;
}

footer img {
  height: 150px;
  padding: 75px 50px;
}

footer a {
  text-decoration: none;
  color: var(--red);
}

.footer-right{
  line-height: 300px;
  height: 300px;
  text-align: right;
  box-sizing: border-box;
  padding: 0px 50px 0px 150px;
}

.footer-right p {

  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
}

@media only screen and (max-width: 1200px) {
  .main {
    padding: 60px 60px;
  }

  .services {
    padding: 60px 100px;
  }
}

@media only screen and (max-width: 1000px) {
  .main {
    padding: 60px 30px;
  }

  .card {
    margin: 10px;
  }

  .services{
    padding: 60px 10px;
  }

  .banner {
    background-position: center;
  }

}

@media only screen and (max-width: 800px) {
  .main {
    padding: 0px;
  }

  .card {
    margin: 0px;
  }

  .card-testimonials {
    background-color: #F2F2F2;
  }

  .col-4 {
    width: 100%;
  }

  .col-6 {
    width: 100%;
  }

  .col-8 {
    width: 100%;
  }

  footer img {
    width: 100%;
    height:auto;
    padding: 30px;
    box-sizing: border-box;
  }

  .footer-right{
    line-height: normal;
    text-align: center;
    padding: 0px 10px;
  }

  .service {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .nav {
    float: none;
  }
  
  .nav a {
    height: 60px;
    line-height: 60px;
    float: none;
    text-align: center;
  }
  
  .logo img {
    float: none;
    display: block;
    margin: 0px auto;
  }
  
  .logo .nav {
    margin: 0px auto;
    display: block;
  }
  
  header {
    padding: 0px;
  }
}
