body {
  font-family: "Nunito", sans-serif;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1300px;
  }
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

header {
  padding: 15px 0;
  position: relative;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container .logo {
  display: flex;
  align-items: flex-end;
}
header .container .logo h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  color: #2d465e;
}

header .container .logo span {
  color: #f75815;
  font-size: 28px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  line-height: 1.1;
}

header .container .content {
  display: flex;
  align-items: center;
}

header .container .content .links {
  margin-right: 1.5em;
}

header .container .content .links a {
  padding: 0 8px;
  color: #2d465e;
  font-size: 18px;
  display: inline-block;
  transition: 0.3s;
}

header .container .content .links a:hover {
  color: #f75815;
}

header .container .content .links a i {
  transition: 0.3s;
}
header .container .content .links a:hover i {
  transform: scale(1.2);
}

header .container .content form {
  width: 200px;
  position: relative;
  display: flex;
  align-items: center;
}
header .container .content form input {
  padding: 7px 40px 7px 15px;
  outline: none;
  border: 1px solid color-mix(in srgb, #212529, transparent 90%);
  background-color: transparent;
  font-size: 14px;
  width: 100%;
  transition: 0.3s;
  border-radius: 6px;
}
header .container .content form input:focus {
  border: 1px solid #f75815;
}
header .container .content form i {
  position: absolute;
  right: 0;
  color: #2d465e;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 15px;
  transition: 0.3s;
  cursor: pointer;
}
header .container .content form i:hover {
  color: #f75815;
}
header .container .content .icon-burger {
  display: none;
  font-size: 25px;
  color: #2d465e;
  background-color: #eee;
  padding: 5px;
  cursor: pointer;
}
@media (max-width: 1199.9px) {
  header .container .content form {
    display: none;
  }
  header .container .content .icon-burger {
    display: block;
  }
}
header .nav-wrap {
  display: none;
}
@media (min-width: 1200px) {
  header .nav-wrap {
    display: flex;
    margin: 10px 0 0;
    background-color: color-mix(in srgb, #212529, transparent 96%);
  }
  header .nav-wrap .container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .nav-wrap .container nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
  }
  header .nav-wrap .container nav ul a {
    padding: 18px 15px;
    display: block;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    position: relative;
    color: #2d465e;
    transition: 0.3s;
  }
  header .nav-wrap .container nav ul a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #f75815;
    transition: 0.5s;
  }
  header .nav-wrap .container nav ul a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 3px;
    background-color: #f75815;
    transition: 0.5s;
  }
  header .nav-wrap .container nav ul a:hover:before {
    width: 100%;
  }
  header .nav-wrap .container nav ul a:hover:after {
    width: 100%;
  }
  header .nav-wrap .container nav ul a:hover,
  header .nav-wrap .container nav ul a.active {
    color: #f75815;
  }
}
.blog-flex {
  padding: 20px 0 60px;
}
.blog-flex .container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  /* justify-content: center; */
  gap: 24px;
}
.blog-flex .container .blog-content:nth-child(1) {
  flex-basis: 66%;
}
.blog-flex .container .blog-content:nth-child(2) {
  width: 32%;
}
.blog-flex .container .blog-content:nth-child(3) {
  width: calc(96% / 3);
}
.blog-flex .container .blog-content:nth-child(4) {
  width: calc(96% / 3);
}
.blog-flex .container .blog-content:nth-child(5) {
  width: calc(96% / 3);
}
.blog-flex .blog-content {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .blog-flex .container {
    flex-direction: column;
  }
  .blog-flex .container .blog-content {
    width: 100% !important;
  }
  .blog-flex .container .content h2 {
    font-size: 20px !important;
  }
  .blog-flex .container .content h3 {
    font-size: 18px !important;
  }
  .blog-flex .container .content {
    width: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 991.9px) {
  .blog-flex .container .blog-content:nth-child(1) {
    flex-basis: 100% !important;
  }
  .blog-flex .container .blog-content:nth-child(2) {
    width: calc(96% / 2) !important;
  }
  .blog-flex .container .blog-content:nth-child(3) {
    width: calc(96% / 2) !important;
  }
  .blog-flex .container .blog-content:nth-child(4) {
    width: calc(96% / 2) !important;
  }
  .blog-flex .container .blog-content:nth-child(5) {
    width: calc(96% / 2) !important;
  }
}
@media (max-width: 1999.9px) {
  .blog-flex .container .blog-content:nth-child(1) {
    flex-basis: 65%;
  }
  .blog-flex .container .blog-content:nth-child(3) {
    width: calc(95% / 3);
  }
  .blog-flex .container .blog-content:nth-child(4) {
    width: calc(95% / 3);
  }
  .blog-flex .container .blog-content:nth-child(5) {
    width: calc(95% / 3);
  }
}

.blog-flex .container .image {
  width: fit-content;
  height: 100%;
  overflow: hidden;
}
.blog-flex .container .blog-content .image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: 0.3s;
}
.blog-flex .container .blog-content:hover .image img {
  transform: scale(1.1);
}
.blog-flex .container .content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 32px;
  color: white;
  background: linear-gradient(
    0deg,
    color-mix(in srgb, #212529, transparent 20%) 0%,
    transparent 100%
  );
  transition: 0.3s;
}
.blog-flex .container .blog-content:hover .content {
  background: linear-gradient(
    0deg,
    color-mix(in srgb, #212529, transparent 10%) 0%,
    transparent 100%
  );
}

.blog-flex .container .content .post-meta {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  font-size: 0.875rem;
  gap: 1rem;
}
.blog-flex .container .content .post-meta i {
  margin-right: 10px;
}
.blog-flex .container .content h2 {
  font-size: 2rem;
}

.blog-flex .container .content h3 {
  font-size: 1.5rem;
}

.feature-post {
  padding: 40px 0;
}
.feature-post .container .header {
  padding-bottom: 40px;
}
.feature-post .container .header p {
  font-size: 14px;
  color: color-mix(in srgb, #212529, transparent 50%);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  line-height: 1px;
  padding: 0;
  position: relative;
}
.feature-post .container .header p::after {
  content: "";
  display: inline-block;
  width: 120px;
  height: 1px;
  background-color: #f75815;
  margin-left: 10px;
  margin-top: 4px;
  margin-bottom: 4px;
}
.feature-post .container .header div {
  font-size: 28px;
  text-transform: uppercase;
  color: #2d465e;
  font-weight: 700;
  margin-top: 3px;
}
.feature-post .container .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.feature-post .container .blog-post {
  width: 32%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0px 0px 15px 0px #ccc;
  position: relative;
}
@media (max-width: 1170px) {
  .feature-post .container .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .feature-post .container .blog-post {
    width: 48%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
  }
  .feature-post .container .blog-post:nth-child(3) {
    width: 48%;
    margin-top: 4%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
  }
}
.feature-post .container .blog-post::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    color-mix(in srgb, #212529, transparent 20%) 0%,
    transparent 100%
  );
}

.feature-post .container .blog-post img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.feature-post .container .blog-post .post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 30px;
}
.feature-post .container .blog-post .post-media {
  color: white;
  margin-bottom: 15px;
}
.feature-post .container .blog-post .post-media span {
  margin-right: 20px;
  font-size: 14px;
}
.feature-post .container .blog-post .post-media span:last-child {
  display: inline-block;
  margin-top: 5px;
}
.feature-post .container .blog-post .post-media i {
  margin: 0 10px 0;
  transition: 0.3s;
}
.feature-post .container .blog-post .post-media i:hover {
  color: #f75815;
  transform: scale(1.3);
}
.feature-post .container .post-content h2 {
  margin-bottom: 20px;
}
.feature-post .container .post-content h2 a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  transition: 0.3s;
}
.feature-post .container .post-content h2:hover a {
  color: #f75815;
}
.feature-post .container .post-content p {
  font-size: 15px;
  margin-bottom: 20px;
  color: white;
}
.feature-post .container .post-content .link {
  text-decoration: none;
  color: white;
  font-weight: 800;
  display: inline-flex;
  align-items: flex-end;
  transition: 0.3s;
}

.feature-post .container .post-content .link i {
  margin-left: 8px;
  transition: 0.3s;
}

.feature-post .container .post-content .link:hover i {
  padding-left: 5px;
}

.feature-post .container .post-content .link:hover {
  color: #b0b4b8;
}

@media (max-width: 767.9px) {
  .feature-post .container .wrap {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
  }
  .feature-post .container .blog-post {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
  }
  .feature-post .container .blog-post:nth-child(2) {
    margin-top: 4%;
  }
  .feature-post .container .blog-post:nth-child(3) {
    width: 100%;
    margin-top: 4%;
    /* margin-left: auto; */
    /* margin-right: auto; */
    overflow: hidden;
    border-radius: 20px;
    position: relative;
  }
}

.section {
  padding: 70px 0;
  position: relative;
}

.section .container .heading {
  padding: 0 0 40px;
}

.section .container .heading h2 {
  font-size: 14px;
  color: color-mix(in srgb, #212529, transparent 50%);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  line-height: 1px;
  padding: 0;
  position: relative;
}

.section .container .heading h2::after {
  content: "";
  display: inline-block;
  width: 120px;
  height: 1px;
  background-color: #f75815;
  margin-left: 10px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.section .container .heading p {
  font-size: 28px;
  text-transform: uppercase;
  color: #2d465e;
  font-weight: 700;
  margin-top: 3px;
}
.section .container .flex-sec {
  display: flex;
}
.section .container .wrap-section {
  width: 33.333333333333%;
  padding: 0 12px;
}

.section .container .wrap-section .main-pic {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 10px;
  margin-bottom: 20px;
}

.section .container .wrap-section .sec-pic {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}
.section .container .wrap-section .category-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.section .container .wrap-section .category-meta .post-category {
  font-size: 13px;
  color: #f75815;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.section .container .wrap-section .category-meta .author-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.section .container .wrap-section .category-meta .author-meta .author-name {
  font-size: 14px;
  color: #2d465e;
  font-weight: 500;
}

.section .container .wrap-section .category-meta .author-meta .author-date {
  font-size: 14px;
  color: #2d465e;
}

.section .container .wrap-section p {
  font-size: 20px;
  color: #2d465e;
  cursor: pointer;
  transition: 0.3s;
}

.section .container .wrap-section p:hover {
  color: #f75815;
}

@media (max-width: 991.9px) {
  .section .container .flex-sec {
    display: flex;
    flex-direction: column;
  }
  .section .container .wrap-section {
    width: 100%;
    padding: 0;
    margin-top: 60px;
  }
}

.game-row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 60px;
  position: relative;
}

.game-row .game-box {
  display: flex;
  padding: 0 8px;
  flex: 0 0 auto;
  gap: 20px;
  width: 33.333333333333%;
  margin-bottom: 25px;
}
@media (max-width: 991.9px) {
  .game-row {
    display: flex;
    flex-direction: column;
  }
  .game-row .game-box {
    width: 100%;
    padding: 0;
  }
  .game-row .game-box .content-game .time::after {
    content: "•";
    margin: 0 4px !important;
  }
}
.game-row .game-box img {
  width: 100px;
  flex: 0 0 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.game-row .game-box .ga {
  color: #f75815;
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.game-row .game-box p {
  color: #2d465e;
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.5;
  cursor: pointer;
  transition: 0.3s;
}
.game-row .game-box p:hover {
  color: #f75815;
}

.game-row .game-box .content-game {
  color: color-mix(in srgb, #2d465e, transparent 40%);
  font-size: 13px;
}

.game-row .game-box .content-game .time {
  position: relative;
}
.game-row .game-box .content-game .time::after {
  content: "•";
  margin: 0 8px;
}

.growth-rate {
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
}
.growth-rate .wrap-growth {
  display: flex;
  gap: 20px;
}
.growth-rate .container .wrap-growth .content-growth .miss {
  width: fit-content;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, #f75815, transparent 90%);
  color: #f75815;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.growth-rate .container .wrap-growth .content-growth h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #2d465e;
  font-weight: 700;
  line-height: 1.5;
}

.growth-rate .container .wrap-growth .content-growth p {
  color: #212529;
  opacity: 0.9;
  line-height: 1.6;
  margin: 24px 0;
  font-size: 1.125rem;
}

.growth-rate .container .wrap-growth .content-growth .features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 25px;
}
.growth-rate .container .wrap-growth .content-growth .features .feature-item {
  padding: 0.5rem 1rem;
  color: #212529;
  font-family: roboto, sans-serif;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  background-color: white;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: 0.3s ease;
}
.growth-rate
  .container
  .wrap-growth
  .content-growth
  .features
  .feature-item:hover {
  transform: translateY(-3px);
}
.growth-rate .container .wrap-growth .content-growth .features .feature-item i {
  color: #f75815;
  font-size: 20px;
}
.growth-rate .container .wrap-growth .content-growth .btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.growth-rate .container .wrap-growth .content-growth .btn .free {
  padding: 12px 24px;
  color: white;
  background-color: #f75815;
  border-radius: 0.5rem;
  width: fit-content;
  cursor: pointer;
  transition: 0.3s ease;
}

.growth-rate .container .wrap-growth .content-growth .btn .free:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, #f75815, transparent 15%);
}

.growth-rate .container .wrap-growth .content-growth .btn .more {
  padding: 12px 24px;
  color: #f75815;
  background-color: white;
  border-radius: 0.5rem;
  width: fit-content;
  cursor: pointer;
  border: 1px solid #f75815;
  transition: 0.3s ease;
}

.growth-rate .container .wrap-growth .content-growth .btn .more:hover {
  background-color: #f75815;
  color: white;
}

.growth-image .imag {
  position: relative;
  max-width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.growth-image .imag img {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.growth-image .img-content {
  display: flex;
  align-items: center;
  padding: 16px;
  background-color: white;
  gap: 1rem;
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 3s ease infinite;
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.growth-image .img-content i {
  color: #f75815;
  background-color: color-mix(in srgb, #f75815, transparent 80%);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-size: 20px;
}
.growth-image .img-content .text {
  display: flex;
  flex-direction: column;
}
.growth-image .img-content .num {
  color: #f75815;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}

.growth-image .img-content .growth {
  font-size: 0.875rem;
  opacity: 0.8;
}

@media (max-width: 991.9px) {
  .growth-rate .container .wrap-growth {
    flex-direction: column;
  }
  .growth-image .img-content {
    display: flex;
    align-items: center;
    padding: 16px;
    background-color: white;
    gap: 1rem;
    width: 100%;
    position: absolute;
    right: 0rem;
    bottom: -1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease infinite;
  }
}

.latest {
  padding: 60px 0;
}

.latest .header {
  margin-bottom: 30px;
}
.latest .header p {
  font-size: 13px;
  color: color-mix(in srgb, #212529, transparent 50%);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  position: relative;
}
.latest .header p::after {
  content: "";
  position: absolute;
  width: 120px;
  margin-left: 10px;
  height: 1px;
  background-color: #f75815;
  margin: 4px 0;
}

.latest .header div {
  color: #2d465e;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 3px;
}
.latest .wrap-latest {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.latest .box-latest {
  width: 32%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 20px;
  margin-top: 15px;
}
.latest .box-latest .fir-im {
  max-width: 100%;
  display: block;
  object-fit: cover;
  margin: 0px 0px 15px;
}
.latest .box-latest .content {
  padding: 0 30px 30px;
}
.latest .box-latest .content .sub {
  color: color-mix(in srgb, #212529, transparent 50%);
  margin-bottom: 10px;
}
.latest .box-latest .content p {
  color: color-mix(in srgb, #2d465e, transparent 0%);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.latest .box-latest .content p:hover {
  color: #f75815;
}
.latest .box-latest .content .prof {
  display: flex;
  align-items: center;
  gap: 15px;
}
.latest .box-latest .content img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.latest .box-latest .content .prof .text {
  /* display: flex; */
  flex-direction: column;
}

.latest .box-latest .content .prof .text .name {
  color: #212529;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
.latest .box-latest .content .prof .text .date {
  color: color-mix(in srgb, #212529, transparent 50%);
  font-size: 14px;
}

@media (max-width: 991.9px) {
  .latest .wrap-latest {
    display: flex;
    flex-direction: column;
  }
  .latest .box-latest {
    width: 100%;
  }
}
.subscribe {
  padding: 60px 0;
}
.subscribe .container {
  background: color-mix(in srgb, #212529, transparent 96%);
  padding: 25px 15px 0;
}
.subscribe .content {
  text-align: center;
}
.subscribe .content h2 {
  color: #2d465e;
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.subscribe .content p {
  color: #212529;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.subscribe .content form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.subscribe .content form input {
  height: 50px;
  padding: 6px 12px 6px 20px;
  outline: none;
  border: 1px solid #f75815;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  border-radius: 25px 0 0 25px;
  font-weight: 400;
  line-height: 1.5;
  caret-color: #f75815;
}

.subscribe .content form button {
  padding: 0 15px;
  background-color: #f75815;
  color: white;
  border: none;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
}

.subscribe .img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
}

@media (min-width: 992px) {
  .subscribe .container {
    padding: 80px 80px 0;
  }
  .subscribe .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .subscribe .content {
    flex: 0 0 auto;
    width: 50%;
    text-align: start;
  }
  .subscribe .img {
    flex: 0 0 auto;
    width: 33.333333333333%;
  }
}

footer {
  padding: 30px 0;
}

footer .container {
  border: 1px solid color-mix(in srgb, #212529, transparent 90%);
  border-left: none;
  border-right: none;
  padding: 40px 15px;
  text-align: center;
}

footer .row .col .logo {
  color: #212529;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 25px;
  display: block;
}
footer .row .col .footer-content p {
  font-size: 14px;
  color: color-mix(in srgb, #212529);
  margin-bottom: 5px;
}

footer .row .col .footer-content p:nth-child(3) {
  margin-top: 20px;
}
footer .row .col .footer-content p:nth-child(4) {
  margin-bottom: 20px;
}
footer .row .col .links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
footer .row .col .links i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #212529;
  color: #212529;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
footer .row .col .links i:hover {
  border-color: #f75815;
  color: #f75815;
}

footer .row .col-1 .useful {
  color: #212529;
  font-weight: 800;
  padding-bottom: 12px;
  margin-bottom: 8px;
  margin-top: 30px;
}

footer .row .col-1 .link {
  display: flex;
  flex-direction: column;
}

footer .row .col-1 .link span {
  padding: 10px 0;
  font-size: 14px;
  color: color-mix(in srgb, #212529, transparent 30%);
  transition: 0.3s;
}
footer .row .col-1 .link span:hover {
  color: #f75815;
  padding-left: 7px;
}

@media (min-width: 992px) {
  footer .container {
    text-align: start;
  }
  footer .row {
    display: flex;
    flex-wrap: wrap;
  }
  footer .row .col {
    width: 33.333333333333%;
    flex: 0 0 auto;
  }
  footer .row .col-1 {
    width: 16.666666666666%;
    flex: 0 0 auto;
  }
  footer .row .col-1 .useful {
    margin-top: 0;
  }
  footer .row .col .links {
    justify-content: flex-start;
  }
}

.footer {
  padding: 60px 0 20px;
  text-align: center;
}
.footer p {
  margin-bottom: 8px;
}
.footer div {
  font-size: 14px;
}
.footer div > span {
  color: #f75815;
}
