@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap');

:root {
  --primary-color: #C84630;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  line-height: 1.3;
  letter-spacing: 1px;
  font-weight: 300;
}
a {
  text-decoration: none;
  color: #333;
}
img {
  width: 100%;
}

textarea {
  resize: vertical;
}

.bg-dark {
  background-color: #333;
  color: #FFF;
}
.bg-light {
  background-color: #F4F4F4;
  color: #333;
}
.bg-primary {
  background-color: var(--primary-color);
  color: #FFF;
}

.text-primary {
  color: var(--primary-color);
}
.container {
  width: 1100px;
  margin: 0 auto;
}
.page-section {
  padding: 2rem;
}
ul.list {
  padding: 0;
  list-style: none;

}
ul.list > li {
  padding: 10px;
  border-bottom: dotted 1px #555;
}

/******************************************************************
**************************** NAVBAR *******************************
*******************************************************************/

#navbar {
  display: flex;
  justify-content: space-between;
  background: #333;
  padding: 1rem;
  position: sticky;
  top: 0;
}

#navbar .logo {
  max-width: 220px;
}

#navbar ul {
  list-style: none;
  padding: 0;
  display: flex;
}
#navbar ul li a {
  display: inline-block;
  color: #FFF;
  padding: .75rem;
  margin: 0 .5rem;
  border-radius: 5px;
  transition: background 0.5s;
}

#navbar ul li a:hover {
  background-color: var(--primary-color);
  cursor: pointer;
}

/******************************************************************

*******************************************************************/
.showcase {
  height: 100vh;
  
  background: url('./images/showcase.jpg') no-repeat center center;
  background-size: cover;
}
.showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(0, 0,0,0.5);
  text-align: center;
  height: 100%;
}
.showcase-content h2 {
  font-size: 3rem;
  color: #FFF;
  margin-bottom: 1rem;
}
.showcase-content p {
  color: #FFF;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 300;
}




.btn {
  display: inline-block;
  border-radius: 5px;
  padding: 5px 15px;
}
.btn:hover {
  cursor: pointer;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-dark {
  background-color: #333;
  color: #FFF;
}
.btn-primary {
  background-color: var(--primary-color);
  color: #FFF;
}
.btn-dark:hover,
.btn-primary:hover {
  opacity: 0.8;
}


#what h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.items {
  display: flex;
}
.item {
  padding: 1rem;
  transition: all .5s;
  text-align: center;
  border-radius: 5px;
}
.item p {
  font-weight: 300;
}
.item:hover {
  background-color: var(--primary-color);
  color: #FFF;
  cursor: pointer;
}
.item:hover i {
  background-color: #FFF;
  color: var(--primary-color);
  transition: all .5s;
}
#what .item i {
  width: 4rem;
  height: 4rem;
  text-align: center;
  line-height: 4rem;
  border-radius: 100%;
  margin-bottom: 1rem;
}
#what .item h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
#who {
  display: flex;
}
#who h2 {
  margin-bottom: 1rem;
}
#who p {
  margin-bottom: 1rem;
}
#who h4 {
  margin-bottom: 1rem;
}
#who > * {
  flex: 1;
}

.who-bg {
  background: url('./images/people.jpg') no-repeat center center;
  background-size: cover;
}

#clients h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.items > * {
  flex: 1;
}

#contact {
  display: flex;
}
#contact > * {
  flex: 1;
}

#contact form {
  margin-top: 20px;
}
.form-group {
  margin-bottom: 10px;
}
.form-group .form-label,
.form-group .form-control {
  display: block;
  width: 100%;
}

.form-group .form-control {
  padding: .5rem;
}

footer p {
  text-align: center;
}

.text-red {
  color: red;
}


::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 15px;
}
::-webkit-scrollbar-thumb:window-inactive {
  background-color: rgba(200, 70, 48, 0.6);
}

::selection {
  background-color: rgba(200, 70, 48, 0.4);
}
