:root {
  --one-color: #fa9f13;
  --two-color: #3b3b3b;
  --three-color: #aa7817;
}

/* activities start */

html {
  scroll-behavior: smooth;
}

.activities {
  padding: 100px 0px;
  background: rgba(255, 255, 255, 0.808);
}

.activities .activities-head {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

.activities .activities-head .title-border {
  /* padding: 5px 5px 0px 0px; */
  border: 2px solid var(--two-color);
  transform: skewX(-25deg);
  border-radius: 10px;
}

.activities .activities-head h3 {
  font-size: 25px;
  color: var(--two-color);
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
  padding: 10px 40px;
  background: var(--one-color);
  margin: 7px 7px -15px -15px;
  border-radius: 10px;
  box-shadow: 10px -10px 10px 0px rgba(0, 0, 0, 0.194);
}

.activities .row {
  display: flex;
  justify-content: center;
}

.activities .swiper .swiper-slide {
  background: white;
  border-radius: 5px;
}

.activities .swiper-button-prev,
.activities .swiper-button-next {
  color: var(--two-color);
  opacity: 0.5;
  transition: 0.3s;
}

.activities .swiper-button-prev:hover,
.activities .swiper-button-next:hover {
  color: var(--one-color);
}

.activities .swiper-button-prev::after,
.activities .swiper-button-next::after {
  font-size: 25px;
  font-weight: 800;
}

/* .activities .swiper .card-img {
  margin-bottom: 30px;
} */

.activities .swiper .card-img img {
  width: 100%;
  border-radius: 5px 5px 0px 0px;
}

.activities .swiper .card-info {
  padding: 25px;
  text-align: center;
}

.activities .swiper .card-info .card-info-top h3 {
  font-size: 22px;
  color: var(--one-color);
  margin-bottom: 20px;
}

.activities .swiper .card-info .card-info-bottom p {
  font-size: 15px;
  opacity: 0.7;
  margin-bottom: 30px;
}

.activities .swiper .card-info .card-info-bottom a {
  text-decoration: none;
  color: white;
  border-radius: 5px;
  border: 2px solid var(--one-color);
  background: var(--one-color);
  padding: 7px 20px;
  padding-right: 50px;
  font-size: 17px;
  font-weight: 500;
  transition: 0.4s;
  position: relative;
}

.activities .swiper .card-info .card-info-bottom a i {
  margin-left: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.activities .swiper .card-info .card-info-bottom a:hover {
  color: var(--one-color);
  background: none;
}

.activities .swiper .card-info .card-info-bottom a:hover > i {
  animation: moving 0.3s infinite alternate;
}

@keyframes moving {
  from {
    right: 20px;
  }

  to {
    right: 10px;
  }
}

@media (max-width: 575px) {
  .activities .activities-head h3 {
    font-size: 18px;
  }
}

/* activities end */

/* project section start */

.projects {
  padding: 100px 0px;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--two-color);
}

.projects .project-head {
  display: flex;
  justify-content: center;
  color: white;
  margin-bottom: 60px;
}

.projects .project-head .title-border {
  border: 2px solid white;
  transform: skewX(-25deg);
  border-radius: 10px;
}

.projects .project-head h3 {
  font-size: 25px;
  color: white;
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
  padding: 10px 40px;
  background: var(--one-color);
  margin: 7px 7px -15px -15px;
  border-radius: 10px;
  box-shadow: 10px -10px 10px 0px rgba(255, 255, 255, 0.194);
}

.projects .row {
  display: flex;
  align-items: center;
}

.projects .row .project-info {
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  margin-bottom: 40px;
  height: 300px;
}

.projects .row .project-info::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.201);
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}

.projects .row .project-info:hover::after {
  background: rgba(0, 0, 0, 0.605);
}

.projects .row img {
  width: 100%;
  height: 100%;
  transition: 0.5s;
}

.projects .row .project-info h4 {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  padding: 15px 10px;
  background: rgba(0, 0, 0, 0.819);
  color: white;
  transition: 0.5s;
  z-index: 10;
}

.projects .row .project-info span {
  position: absolute;
  top: 30px;
  left: 0;
  background: var(--one-color);
  color: white;
  padding: 10px;
  width: 100%;
  font-size: 17px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 10;
}

.projects .row .project-info .zoom {
  position: absolute;
  bottom: -100px;
  right: -100px;
  color: white;
  z-index: 10;
  transition: 0.5s;
  background: var(--one-color);
  padding: 50px 30px 30px 50px;
  border-radius: 100% 0px 0px 0px;
}

.projects .row .project-info .zoom a {
  text-decoration: none;
}

.projects .row .project-info .zoom i {
  font-size: 30px;
  transition: 0.2s;
  visibility: hidden;
  opacity: 0;
  display: flex;
  cursor: pointer;
  color: white;
}

.projects .row .project-info .zoom i:hover {
  color: var(--two-color);
}

.projects .row .project-info:hover > span {
  opacity: 1;
  visibility: visible;
}

.projects .row .project-info:hover > img {
  transform: scale(1.2);
}

.projects .row .project-info:hover > h4 {
  opacity: 0;
  visibility: hidden;
}

.projects .row .project-info:hover > .zoom {
  right: 0;
  bottom: 0;
}

.projects .row .project-info .zoom:hover {
  padding: 60px 40px 40px 60px;
}

.projects .row .project-info:hover > .zoom i {
  opacity: 1;
  visibility: visible;
  animation: move 0.4s infinite alternate;
}

@keyframes move {
  from {
    transform: translateX(-10px);
  }
  to {
    transform: translateX(10px);
  }
}

.projects .all {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.projects .all .all-pro {
  text-decoration: none;
  color: white;
  font-size: 22px;
  border: 2px solid var(--one-color);
  background: var(--one-color);
  padding: 5px 25px;
  border-radius: 5px;
  font-weight: 500;
  transition: 0.4s;
}

.projects .all .all-pro i {
  margin-left: 10px;
}

.projects .all .all-pro:hover {
  color: var(--one-color);
  background: none;
}

@media (max-width: 575px) {
  .projects .row {
    display: flex;
    justify-content: center;
  }

  .projects .project-head h3 {
    font-size: 18px;
  }
}

/* project section end */

/* videos section start */

.videos {
  padding: 100px 0px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.739);
}

.videos .videos-head {
  display: flex;
  justify-content: center;
  color: white;
  margin-bottom: 60px;
}

.videos .videos-head .title-border {
  border: 2px solid white;
  transform: skewX(-25deg);
  border-radius: 10px;
}

.videos .videos-head h3 {
  font-size: 25px;
  color: white;
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
  padding: 10px 40px;
  background: var(--one-color);
  margin: 7px 7px -15px -15px;
  border-radius: 10px;
  box-shadow: 10px -10px 10px 0px rgba(255, 255, 255, 0.194);
}

.videos .row .col-video {
  margin-bottom: 30px;
  width: 100%;
  overflow: hidden;
}

.videos .row .col-video iframe {
  width: 100%;
  height: 230px;
}

@media (max-width: 767px) {
  .videos .row {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .videos .videos-head h3 {
    font-size: 18px;
  }
}

/* videos section end */

/* article start */

.article {
  padding: 100px 0px;
  overflow: hidden;
  width: 100%;
  position: relative;
  background: rgba(255, 255, 255, 0.813);
}

.article .row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.article .row .art-img {
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.article .row .art-img img {
  width: 100%;
}

.article .row .img-detail {
  padding: 10px;
}

.article .row .img-detail h2 {
  font-size: 25px;
  font-weight: 500;
  margin-top: 20px;
  color: var(--one-color);
}

.article .row .img-detail p {
  font-size: 20px;
  opacity: 0.7;
  margin-bottom: 10px;
}

.article .row .img-detail h4 {
  font-size: 25px;
  margin-top: 20px;
  font-weight: 600;
  color: var(--one-color);
}

/* article end */

/* statistics start */

.statistics {
  padding: 100px 0px;
  padding-bottom: 70px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--two-color);
}

.statistics .row {
  display: flex;
  justify-content: center;
}

.statistics .row .colom {
  margin-bottom: 30px;
}

/* .statistics .row .colom:nth-child(1),
.statistics .row .colom:nth-child(4) {
  justify-content: flex-end;
}
.statistics .row .colom:nth-child(3),
.statistics .row .colom:nth-child(6) {
  justify-content: flex-start;
} */

.statistics .row .col-info .col-img {
  display: flex;
  justify-content: center;
}

.statistics .row .col-info {
  margin-bottom: 40px;
  background: var(--one-color);
  border: 5px dashed var(--two-color);
  border-radius: 10px;
  padding: 0px 20px;
  width: 100%;
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
}

.statistics .row .col-info .icon {
  padding: 30px;
  margin-right: 25px;
  border-radius: 100%;
  background: var(--two-color);
  border: 5px dashed var(--one-color);
}

.statistics .row .col-info .icon img {
  width: 60px;
  height: 60px;
  filter: invert();
}

.statistics .row .col-info h3 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 600;
  color: white;
}

.statistics .row .col-info p {
  font-size: 18px;
  color: var(--two-color);
  opacity: 0.8;
  font-weight: 600;
  margin-bottom: 0;
}

@media (max-width: 460px) {
  .statistics .row .col-info .icon {
    padding: 22px;
  }

  .statistics .row .col-info .icon img {
    width: 40px;
    height: 40px;
  }

  .statistics .row .col-info h3 {
    font-size: 26px;
  }

  .statistics .row .col-info p {
    font-size: 15px;
    font-weight: 700;
  }
}

/* statistics end */

/* section img start */

.big-img {
  padding: 60px 0px;
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.875);
}

.big-img img {
  width: 100%;
}

/* section img end */
