@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  display: block;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
  margin: 0;
}

.card {
  background-color: #f6f6f6;
  padding: 50px 0;
  border-radius: 12px;
  /* width: 80%; */
  margin-bottom: 25px;
}

.card-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-img img {
  background-position: center;
  background-size: cover;
  height: 22rem;
  width: 20rem;
  border-bottom: 1px solid #777;
  margin-bottom: 15px;
}

.card-title {
  margin: 15px 25px;
  font-size: 25px;
  font-weight: 700;
}

.card-content {
  margin: 0 25px;
  text-align: justify;
  letter-spacing: 1.5px;
  line-height: 1.7rem;
}

.btn {
  background-color: #025955;
  color: #fff;
  padding: 10px 40px;
  font-family: inherit;
  border: 1.5px solid #f6f6f6;
  margin: 0 25px;
  cursor: pointer;
}

.btn:focus {
  outline: 0;
}

.pill {
  border-radius: 25px;
}

/* Colors */

.red {
  background-color: #860127;
}

.red-light-1 {
  background-color: #d80843;
}

.red-light-2 {
  background-color: #f11c58;
}

.red-light-3 {
  background-color: #ff7099;
}

.red-text {
  color: #860127;
}

.orange {
  background-color: #ff7b54;
}

.orange-light-1 {
  background-color: #f78f6f;
}

.orange-light-2 {
  background-color: #fdb6a0;
}

.orange-light-3 {
  background-color: #f7c2b3;
}

.orange-text {
  color: #ff7b54;
}

.blue {
  background-color: #1a508b;
}

.blue-light-1 {
  background-color: #256db9;
}

.blue-light-2 {
  background-color: #3070b4;
}

.blue-light-3 {
  background-color: #3e97f5;
}

.blue-text {
  color: #1a508b;
}

.black {
  background-color: #000;
}

.black-text {
  color: #000;
}

.teal {
  background-color: #025955;
}

.teal-light-1 {
  background-color: #045753;
}

.teal-light-2 {
  background-color: #078079;
}

.teal-light-3 {
  background-color: #08afa7;
}

.teal-text {
  color: #025955;
}

.shadow-1 {
  box-shadow: 1px 1px rgba(0, 0, 0, 0.35);
}

.shadow-2 {
  box-shadow: 1px 1px rgba(0, 0, 0, 0.35), 1px 2px rgba(0, 0, 0, 0.25);
}

.shadow-3 {
  box-shadow: 2px 2px rgba(34, 34, 34, 0.35), 1px 2px rgba(34, 34, 34, 0.25);
}

.rounded {
  border: none;
  border-radius: 4%;
}

.circle {
  border: none;
  border-radius: 50%;
  padding: 10px 8px;
}

.bullet {
  border: none;
  border-radius: 0 25px 25px 0;
}

.row {
  display: flex;
  /* flex-direction: row; */
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  margin: 0;
  flex-wrap: wrap;
}

/* .row > div {
  width: 25%;
  margin: 10px;
  line-height: 50px;
  flex: 1 1 150px;
} */

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.left {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  margin-left: 0;
}

.right {
  display: flexbox;
  justify-content: right;
  align-items: flex-end;
  margin-right: 0;
}

/* Padding */

/* All round padding */

/* Padding: (p-1: 10px), (p-2: 15px), (p-3: 25px), (p-4: 40px), (p-5: 50px) */

.p-1 {
  padding: 10px;
}

.p-2 {
  padding: 15px;
}

.p-3 {
  padding: 25px;
}

.p-4 {
  padding: 40px;
}

.p-5 {
  padding: 50px;
}

/* Padding-top/bottom: (py-1: 5px), (py-2: 15px), (py-3: 25px), (py-4: 40px), (py-5: 50px) */
.py-1 {
  padding: 5px 0;
}

.py-2 {
  padding: 15px 0;
}

.py-3 {
  padding: 25px 0;
}

.py-4 {
  padding: 40px 0;
}

.py-5 {
  padding: 50px 0;
}

/* Padding-left/right: (px-1: 5px), (px-2: 15px), (px-3: 25px), (px-4: 40px), (px-5: 50px) */
.mx-1 {
  padding: 0 5px;
}

.px-2 {
  padding: 0 15px;
}

.px-3 {
  padding: 0 25px;
}

.px-4 {
  padding: 0 40px;
}

.px-5 {
  padding: 0 50px;
}

/* margin */

/* All round margin */

/* margin: (p-1: 10px), (p-2: 15px), (p-3: 25px), (p-4: 40px), (p-5: 50px) */

.m-1 {
  margin: 10px;
}

.m-2 {
  margin: 15px;
}

.m-3 {
  margin: 25px;
}

.m-4 {
  margin: 40px;
}

.m-5 {
  margin: 50px;
}

/* margin-top/bottom: (py-1: 5px), (py-2: 15px), (py-3: 25px), (py-4: 40px), (py-5: 50px) */
.my-1 {
  margin: 5px 0;
}

.my-2 {
  margin: 15px 0;
}

.my-3 {
  margin: 25px 0;
}

.my-4 {
  margin: 40px 0;
}

.my-5 {
  margin: 50px 0;
}

/* margin-left/right: (px-1: 5px), (px-2: 15px), (px-3: 25px), (px-4: 40px), (px-5: 50px) */
.mx-1 {
  margin: 0 5px;
}

.mx-2 {
  margin: 0 15px;
}

.mx-3 {
  margin: 0 25px;
}

.mx-4 {
  margin: 0 40px;
}

.mx-5 {
  margin: 0 50px;
}

/* Columns Grid */
.col-1 {
  width: 8.33%;
}
.col-2 {
  width: 16.66%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.33%;
}
.col-5 {
  width: 41.66%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.33%;
}
.col-8 {
  width: 66.66%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.33%;
}
.col-11 {
  width: 91.66%;
}
.col-12 {
  width: 100%;
}

/* Large Screen */

@media (min-width: 1600px) and (max-width: 2200px) and (-webkit-min-device-pixel-ratio: 1) {
  .row > div {
    width: 25%;
    margin: 10px;
    line-height: 50px;
    flex: 1 1 150px;
  }

  .card {
    width: 60%;
  }

  .card-img img {
    height: 50vh;
    width: 75%;
  }

  .row .card .card-img img {
    height: 50vh;
    width: 100%;
  }

  .card-title {
    margin: 15px 25px;
    font-size: 25px;
    font-weight: 700;
  }

  .card-content {
    margin: 0 25px;
    text-align: justify;
    letter-spacing: 1.4px;
    line-height: 1.7rem;
  }
}

@media screen and (min-width: 1322px) and (max-width: 1600px) {
  .card-img img {
    height: 50vh;
    width: 35vw;
  }

  .row > div {
    width: 25%;
    margin: 10px;
    line-height: 50px;
    flex: 1 1 280px;
  }

  /* .row > div:last-child {
    flex-grow: 1;
  } */

  .row .card .card-img img {
    height: 50vh;
    width: 100%;
  }
}

@media screen and (min-width: 1037px) and (max-width: 1321px) {
  .card-img img {
    height: 50vh;
    width: 55vw;
    transition: all 0.2s ease;
  }

  .row > div {
    width: 33.33%;
    margin: 10px;
    line-height: 50px;
    flex: 1 1 300px;
    transition: all 0.2s ease;
  }
  .row > div:last-child {
    flex-grow: 1;
  }
}

@media screen and (min-width: 756px) and (max-width: 1036px) {
  .card-img img {
    height: 50vh;
    width: 60vw;
    transition: all 0.2s ease;
  }

  .row > div {
    width: 50%;
    margin: 10px;
    line-height: 50px;
    flex: 1 1 320px;
    transition: all 0.2s ease;
  }

  .row .card .card-img img {
    height: 45vh;
    width: 100%;
    transition: all 0.2s ease;
  }
}

@media screen and (max-width: 755px) {
  .row > div {
    width: 100%;
    margin: 10px;
    line-height: 50px;
    flex: 1 1 350px;
    transition: all 0.2s ease;
  }

  .row .card .card-img img {
    height: 45vh;
    width: 75%;
    transition: all 0.2s ease;
  }

  .card {
    padding: 30px 0;
    border-radius: 12px;
    width: 100%;
  }

  .card-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card-img img {
    height: 48vh;
    width: 75%;
    transition: all 0.2s ease;
  }

  .card-title {
    margin: 15px 25px;
    font-size: 22px;
    font-weight: 700;
  }

  .card-content {
    margin: 0 25px;
    text-align: justify;
    letter-spacing: 1.5px;
    line-height: 1.7rem;
  }
}

@media (max-width: 480px) {
  .card-img img {
    height: 30vh;
    width: 80vw;
    transition: all 0.2s ease;
  }

  .row .card .card-img img {
    height: 30vh;
    width: 80vw;
    transition: all 0.2s ease;
  }
}

/* @media (max-width: 600px) {
  .row > div {
    width: 100%;
    margin: 10px;
    line-height: 50px;
    flex: 1 1 350px;
  }

  .row .card .card-img img {
    height: 30vh;
    width: 100%;
  }
} */
