/* @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Montserrat:ital,wght@0,400;0,500;0,700;0,800;0,900;1,400;1,500;1,700;1,800;1,900&display=swap');
body {
  /* font-family: 'Lato', sans-serif; */
  font-family: 'Montserrat', sans-serif;
  color: #4a4a4a;
}
.color-back {
  background-color: #007dba;
}
.color-font {
  color: #007dba;
}
.avatar {
  height: 100px;
  width: 100px;
  border-radius: 50%;
}
.main-logo {
  position: absolute;
  margin-top: -40px;
  height: 220px;
  width: 220px;
}
.img-150 {
  width: 150px;
}
.img-130 {
  width: 130px;
}
.box {
  border: #2b7db9 solid 2px;
}
.text-bold {
  font-weight: 700;
}
.w-fit {
  width: fit-content;
}
.text-blue {
  color: #2b7db9;
}
.text-h-dn:hover {
  text-decoration: none;
}
.text-gray {
  color: #4a4a4a;
}
.sub-title {
  color: #2b7db9;
  font-weight: bold;
}
.main-link:hover {
  color: #2b7db9;
  text-decoration-color: #2b7db9;
}
.main-link {
  font-weight: bold;
  transition: all .5s;
  color:#2b7db9;
  text-decoration: underline;
  text-decoration-color: #a9a9a9;
}
.hide-mobile{
  display: block;
}
.show-mobile{
  display: none;
}
@media (max-width: 991.98px) {
  .main-logo {
    margin-top: -50px;
    height: 70px;
    width: 70px;
  }
}
@media (max-width: 500px) {
  .mobile-hidden img {
    display: none;
  }
  .show-mobile{
    display: block;
  }
  .hide-mobile{
    display: none;
  }
  .img-150 {
    width: 120px;
  }
  .img-130 {
    width: 60px;
  }
}

