body {
  margin: 0;
  padding: 0;
}

.websites {
  width: 100%;
  height: 100vh;
  display: flex;
}
@media screen and (max-width: 1100px) {
  .websites {
    flex-direction: column;
    height: unset;
  }
}
@media screen and (max-width: 1024px) {
  .websites {
    height: 150vh;
  }
}
@media screen and (max-width: 660px) {
  .websites {
    height: unset;
  }
}
.websites .website {
  overflow: hidden;
  width: 33%;
  height: 100%;
  background: #36487E;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
@media screen and (max-width: 1100px) {
  .websites .website {
    width: 100% !important;
    clip-path: none;
    padding: 60px;
  }
}
@media screen and (max-width: 660px) {
  .websites .website {
    height: unset;
  }
}
.websites .website:nth-child(1) {
  background: hsl(225deg, 40%, 41%);
}
.websites .website:nth-child(2) {
  width: 34%;
  background: hsl(225deg, 40%, 38%);
}
.websites .website:nth-child(3) {
  background: hsl(225deg, 40%, 35%);
}
.websites .website .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  letter-spacing: 0;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  opacity: 0.05;
  transition: all 0.3s ease-in-out;
  z-index: 0;
}
@media screen and (max-width: 1400px) {
  .websites .website .bg {
    background-size: cover;
    background-position: center;
  }
}
.websites .website:hover .bg {
  opacity: 0.4;
}
.websites .website:hover .logo {
  box-shadow: 0 0 0 10px rgba(242, 242, 242, 0.5), 0 0 0 20px rgba(242, 242, 242, 0.4);
}
.websites .website .wrapper {
  position: relative;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 576px) {
  .websites .website .wrapper {
    top: 45%;
  }
}
@media screen and (max-width: 480px) {
  .websites .website .wrapper {
    top: 40%;
  }
}
.websites .website .logo {
  z-index: 2;
  width: 338px;
  height: 338px;
  border-radius: 100%;
  background: #F2F2F2;
  display: flex;
  padding: 40px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 1100px) {
  .websites .website .logo {
    width: 240px;
    height: 240px;
  }
}
.websites .website .logo img {
  max-width: 100%;
}
.websites .website .website-title {
  font-weight: 700;
  font-size: 28px;
  color: #002e2f;
}
@media screen and (max-width: 576px) {
  .websites .website .website-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .websites .website .website-title {
    font-size: 21px;
  }
}
.websites .website .go-website {
  font-size: 18px;
  color: #9f9f9f;
}
@media screen and (max-width: 576px) {
  .websites .website .go-website {
    font-size: 15px;
  }
}
.websites .website .go-website a {
  color: #1CABCD;
  font-weight: bold;
}
.websites .cat-wrapper {
  width: 100%;
  display: flex;
  z-index: 2;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 130px;
}
@media screen and (max-width: 1100px) {
  .websites .cat-wrapper {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1100px) and (max-width: 1024px) {
  .websites .cat-wrapper {
    margin-top: 80px;
  }
}
.websites .cat-wrapper.ch a {
  color: #9F9F9F;
}
.websites .cat-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 380px) {
  .websites .cat-wrapper ul {
    flex-direction: column;
    align-items: center;
  }
}
.websites .cat-wrapper ul li a {
  margin: 0 10px;
  transition: all 0.2s ease;
}
.websites .cat-wrapper ul li a:hover {
  color: #36487E;
}