@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --e-global-color-primary: #00443B;
  --e-global-color-shadow: #185349;
  --e-global-color-secondary: #FF4800;
  --e-global-color-accent: #9BE042;
  --e-global-color-white: #FFFFFF;
  --e-global-color-41fa304: #FAFAFA;
  --e-global-color-f875600: #F0EACB;
  --e-global-color-1bb7294: #008000;
  --e-global-color-e0fc440: #0E101A;
  --e-global-color-d8fafc1: #F7F3E6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #00443B !important;
}

.col-about h1 {
  color: #FAFAFA;
  line-height: 90px;
  font-size: 70px;
}

.col-about h3 {
  color: #FF4800;
  margin: 1rem 0;
  font-size: 26px;
  line-height: 40px;
}

.col-about p {
  color: #F0EACB;
  font-size: 16px;
  line-height: 30px;
  margin: 1rem 0;
}

.col-about button {
  border: none;
  outline: none;
  background: #FF4800;
  padding: .7rem;
  width: 140px;
  transition: .5s;
  cursor: pointer;
  margin: 1rem 0;
}

.col-about button a {
  text-decoration: none;
  color: #F7F3E6;
  font-weight: 600;
}

.card {
  border-radius: 0;
  background: #F0EACB;
  box-shadow: 3px 3px 10px rgba(231, 231, 231, 0.212);
  transition: .5s;
}

.card:hover {
  background: #FF4800;
  color: #FAFAFA;
}

.card-title {
  font-size: 30px;
  padding: 1rem;
  text-align: center;
  color: #00443B;
}

.card:hover .card-title {
  color: #FAFAFA;
}

.card-text {
  font-size: 16px;
  line-height: 30px;
  padding: .5rem;
}

.about-btn {
  text-decoration: none;
  text-align: center;
  display: block;
  width: 160px;
  padding: .7rem;
  background: #FF4800;
  color: #FAFAFA;
  margin: 1rem auto;
  transition: .5s;
}

.card:hover .about-btn {
  background: #185349;
  color: #FAFAFA;
}

@media screen and (max-width:768px) {
  .col-about h1 {
    font-size: 40px;
    line-height: 60px;
  }

  .col-about h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .col-about p {
    font-size: 14px;
    line-height: 25px;
  }
}