.top-bar .contact-summary li {
  font-size: 13px;
}

.top-bar .contact-summary li:last-child {
  background-color: #f4730e;
  padding: 4px 10px;
  border-radius: 3px;
  animation: change-bg 1s linear infinite;
  transition: all 0.5s ease-in-out;
}

.top-bar .contact-summary li:last-child i,
.top-bar .contact-summary li:last-child a {
  color: #fff;
}

.top-bar .social-links li i {
  font-size: 18px;
}

@keyframes change-bg {
  0% {
    background-color: #f4730e;
  }

  50% {
    background-color: #00a74f;
  }

  100% {
    background-color: #050505;
  }
}

.header-section .logo {
  width: calc(8% - 25px);
  margin-right: 25px;
}

.header-section .nav {
  width: calc(64% - 10px);
  margin-right: 10px;
}

.header-section .nav ul {
  display: flex;
  gap: 25px;
}

.header-section .nav ul li {
  position: relative;
  padding-bottom: 8px;
}

.header-section .nav ul li:last-child {
  padding-right: 0;
}

.header-section .nav ul li a {
  color: #050505;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.header-section .nav ul li a:hover {
  color: #f4730e;
}

.header-section .nav ul li::before {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #050505;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  content: "";
  transition: all 0.5s ease-in-out;
}

.header-section .nav ul li:hover::before {
  transform: scaleX(1);
  background-color: #00a74f;
}

.header-section .search-group {
  width: 20%;
  
}

.header-section .buttons {
  width: 8%;
}

.about-section .col-4 {
  overflow: hidden;
}

.about-section .col-4 img {
  height: 507px;
}

.about-section .col-4 .content {
  position: absolute;
  top: 20%;
  left: 19px;
  width: 89%;
  height: 61%;
  background-color: rgba(244, 115, 14, 0.6509803922);
  padding: 15px 0px;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.about-section .col-4 .content .social-links {
  transform: translateX(-100%);
  transition: all 0.5s ease-in-out;
}

.about-section .col-4 .content .social-links ul {
  background-color: #fff;
  width: 100px;
  padding: 5px 8px;
  border-radius: 0px 50px 50px 0px;
}

.about-section .col-4 .content .social-links ul li {
  width: 35px;
  height: 35px;
  line-height: 39px;
  text-align: center;
  border-radius: 50%;
}

.about-section .col-4 .content .social-links ul li a i {
  font-size: 20px;
}

.about-section .col-4 .content:hover .social-links {
  transform: translateX(0);
}

.about-section .col-4:hover .content {
  transform: scale(1);
}

.about-section .col {
  width: calc(50% - 40px);
  margin: 0px 20px;
}

.about-section .col ul {
  width: 604px;
}

.about-section .col ul li img {
  width: 45px;
}

.agenda-section .box {
  position: relative;
  border: 1px solid #00a74f;
}

.agenda-section .box span {
  width: 50px;
  height: 50px;
  position: absolute;
  text-align: center;
  padding-top: 7px;
  top: -27px;
  left: 100px;
  border-radius: 50%;
  background-color: #00a74f;
}

.agenda-section .box span img {
  width: 35px;
}

.agenda-section .box .content {
  padding: 0px 10px;
}

.agenda-section .box .content h4 {
  font-size: 1rem;
  padding-top: 20px;
}

.team-section .col-5 {
  border: 1px solid #f3f6f9;
  overflow: hidden;
}

.team-section .col-5 .img img {
  height: 250px;
}

.team-section .col-5 .img .shaded-layer {
  position: absolute;
  top: 0px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 98%;
  padding: 0px 20px;
  transform: translateY(-100%);
  transition: all 0.5s ease-in-out;
}

.team-section .col-5 .img .shaded-layer i {
  color: #fff;
  font-size: 35px;
}

.team-section .col-5 .img .shaded-layer p {
  color: #fff;
  border-bottom: 1px solid rgba(243, 246, 249, 0.1803921569);
}

.team-section .col-5 .img .shaded-layer .social-links ul li i {
  font-size: 20px;
  padding-right: 10px;
}

.team-section .col-5 .img:hover .shaded-layer {
  transform: translateY(0);
}

.counter-section .left {
  width: calc(70% - 20px);
  margin-right: 20px;
}

.counter-section .right {
  width: 30%;
}

.counter-section .right span {
  position: absolute;
  top: 49%;
  right: 34%;
  background-color: #fff;
  border-radius: 3px;
  font-size: 13px;
  text-align: center;
  font-weight: 700;
  padding: 5px 15px;
  animation: up-down 2s linear infinite;
  width: 120px;
}

.counter-section .right span::after {
  position: absolute;
  top: 18px;
  left: 50px;
  width: 20px;
  height: 20px;
  content: "";
  background-color: #fff;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

@keyframes up-down {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.important-days .col-4 {
  overflow: hidden;
  height: 449px;
}

.important-days .col-4 img {
  height: 100%;
}

.important-days .col-4 .about {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 77%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px 15px;
  transition: all 0.3s ease-in-out;
  transform: translateY(-100%);
}

.important-days .col-4 .about p {
  color: #fff;
  font-size: 12px;
}

.important-days .col-4 .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 23%;
  background-color: rgba(0, 0, 0, 0.8);
  padding-top: 14px;
  transition: all 0.5s ease-in-out;
  transform: translateY(100%);
}

.important-days .col-4 .content p {
  color: #fff;
}

.important-days .col-4 .content h5 {
  font-size: 12px;
}

.important-days .col-4:hover .about {
  transform: translateY(0);
}

.important-days .col-4:hover .content {
  transform: translateY(0);
}

.idols-section .col-2 img {
  height: 350px;
}

.idols-section .col-2 .content {
  position: absolute;
  top: 35%;
  left: 30px;
}

.message-section .col-5 img {
  height: 350px;
}

.contact-section .col-3 .content p span {
  font-weight: 700;
}

.form-section .left {
  background-color: #fff;
  padding: 15px 15px 0px 20px;
  border-radius: 3px;
  box-shadow: 0px 0px 10px #f3f6f9;
}

.footer-section {
  padding-top: 50px;
  background-color: #00a74f;
  position: relative;
}

.footer-section .about {
  width: calc(35% - 20px);
  margin-right: 20px;
}

.footer-section .about .footer-logo {
  position: absolute;
  top: -53px;
  left: 47%;
  background-color: #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  padding: 17px;
}

.footer-section .about p {
  color: #fff;
  line-height: 20px;
}

.footer-section .about .social-links ul li a i {
  font-size: 18px;
}

.footer-section .links {
  width: calc(25% - 20px);
  margin-right: 20px;
}

.footer-section .links ul li {
  line-height: 30px;
}

.footer-section .links ul li a {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.8px;
  color: #fff;
  transition: all 0.2s ease-in-out;
}

.footer-section .links ul li a:hover {
  color: #f4730e;
}

.footer-section .links ul li i {
  padding-right: 10px;
  color: #050505;
  font-size: 6px;
}

.footer-section h4 {
  font-weight: 700;
  letter-spacing: 0.5px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f3f6f9;
  display: inline-block;
}

.footer-section .business {
  width: calc(16% - 20px);
  margin-right: 20px;
}

.footer-section .contact {
  width: 24%;
}

.footer-section .contact .box p {
  color: #fff;
}

.footer-section .copyright {
  background-color: #f4730e;
}

.footer-section .copyright p {
  color: #fff;
}

.footer-section .copyright p a {
  font-weight: 800;
  color: #fff;
}

.footer-section .copyright .box span i {
  font-size: 13px;
}

#idol .col-2 .content{
    position: absolute;
    top: 26%;
    left: 30px;
    width: 50%;
}

@media screen and (max-width: 767px) {
  .header-section .logo {
    width: calc(20% - 20px);
  }

  .header-section .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    z-index: 2;
    background-color: #f4730e;
  }
  
  #idol .col-2 .content {
        position: absolute;
        top: 6%;
        left: 17px;
        width: 55%;
    }

  .header-section .nav ul.flex-row {
    display: block;
  }

  .header-section .nav ul li {
    border-bottom: 1px solid rgba(221, 221, 221, 0.1019607843);
    line-height: 35px;
    padding-right: 0;
    padding-bottom: 0;
  }

  .header-section .nav ul li::before {
    display: none;
  }

  .header-section .nav ul li a {
    color: #fff;
    padding: 13px 15px;
    font-size: 12px;
  }

  .header-section .nav ul li a:hover {
    color: #fff;
  }

  .header-section .nav ul li:last-child {
    border-bottom: none;
  }

  .header-section .search-group {
    width: 100%;
    margin-right: 0;
    order: 1;
  }

  .header-section .buttons {
    width: 60%;
    justify-content: end;
  }

  .about-section .col {
    width: 100%;
    margin: 0;
    padding: 15px 0px;
  }

  .about-section .col ul {
    width: 100%;
  }

  .about-section .col ul li img {
    width: 27px;
  }

  .about-section .col ul li.pl-20 {
    padding-left: 0;
  }

  .about-section .col ul li .content h4 {
    font-size: 12px;
  }

  .about-section .col ul li .content p {
    font-size: 10px;
  }

  .about-section .col ul li.col-2 {
    width: calc(61% - 10px);
    margin-right: 10px;
  }

  .about-section .col ul li.col-2:last-child {
    width: 39%;
    margin-right: 0;
  }

  .about-section .col-4 .content {
    top: 26%;
    height: 48%;
  }

  .important-days .col-4 {
    height: 448px;
  }

  .important-days .col-4 .content p {
    text-align: center;
  }

  .agenda-section .box {
    margin-bottom: 37px;
  }

  .agenda-section .box span {
    left: 161px;
  }

  .counter-section .left {
    width: 100%;
    margin-right: 0;
  }

  .counter-section .left ul li {
    padding-bottom: 10px;
  }

  .counter-section .left ul li.col-4 {
    width: calc(50% - 10px);
    margin-right: 10px;
  }

  .counter-section .left ul li.pl-20 {
    padding-left: 0;
  }

  .counter-section .right {
    width: 100%;
  }

  .team-section .col-5 {
    width: calc(50% - 10px);
    margin-right: 10px;
    margin-bottom: 5px;
  }

  .team-section .col-5:nth-child(2n+2) {
    width: 50%;
    margin-right: 0;
  }

  .team-section .col-5 .content p {
    text-align: center;
    font-weight: 600;
  }

  .team-section .col-5 .img img {
    height: 185px;
  }

  .team-section .col-5 .img .shaded-layer {
    padding: 0px 4px;
  }

  .team-section .col-5 .img .shaded-layer p {
    text-align: center;
  }

  .team-section .col-5 .img .shaded-layer i {
    font-size: 23px;
  }

  .team-section .col-5 .img .shaded-layer h5 {
    font-size: 11px;
  }

  .team-section .col-5 .img .shaded-layer h6 {
    font-size: 10px;
  }

  .team-section .col-5 .img .shaded-layer .social-links ul li i {
    font-size: 16px;
    padding-right: 5px;
  }

  .idols-section .col-2 img {
    height: 200px;
  }

  .idols-section .col-2 .content {
    top: 25%;
    left: 16px;
    width: 54%;
  }

  .idols-section .col-2 .content h3 {
    font-size: 15px;
  }

  .idols-section .col-2 .content p {
    font-size: 10px;
  }

  .idols-section .col-2 .content h5 {
    font-size: 11px;
  }

  .gallery-section .col-5 {
    width: calc(50% - 10px);
    margin-right: 10px;
  }

  .gallery-section .col-5:nth-child(2n+2) {
    width: 50%;
    margin-right: 0;
  }

  .message-section .col-5 {
    width: calc(50% - 10px);
    margin-right: 10px;
  }

  .message-section .col-5:nth-child(2n+2) {
    width: 50%;
    margin-right: 0;
  }

  .message-section .col-5 img {
    height: 240px;
  }

  .contact-section.section-2 {
    padding: 20px 0px;
  }

  .footer-section {
    padding-top: 32px;
  }

  .footer-section .about {
    width: 100%;
    margin-right: 0;
  }

  .footer-section .about .footer-logo {
    left: 41%;
    width: 80px;
    height: 80px;
    top: -42px;
  }

  .footer-section .about .social-links ul li {
    margin-right: 10px;
  }

  .footer-section .about .social-links ul li a i {
    font-size: 15px;
  }

  .footer-section .links {
    width: 100%;
    margin-right: 0px;
  }

  .footer-section .links ul {
    width: calc(50% - 10px);
    margin-right: 10px;
  }

  .footer-section .business,
  .footer-section .contact {
    width: 100%;
    margin-right: 0;
  }

  .footer-section .copyright p {
    text-align: center;
  }

  .footer-section h4 {
    font-size: 13px;
  }

  .common-section .banner .content h1 {
    font-size: 13px !important;
  }
}

.suchnaPat .event_cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.suchnaPat .event_cards .event_card {
  padding: 2px;
  border: 1px solid rgba(0, 0, 0, 0.103);
}

.suchnaPat .event_cards .event_card figure {
  position: relative;
}

.suchnaPat .event_cards .event_card figure img {
  display: block;
  width: 100%;
  height: 100%;
}

.suchnaPat .event_cards .event_card figure .date {
  background-color: rgb(0, 0, 0);
  padding: 0.2rem 0.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-weight: 600;
  font-size: 0.7rem;
  position: absolute;
  top: 100%;
  color: #fff;
  letter-spacing: 0.5px;
  transform: translateY(-100%);
  border-top-right-radius: 10px;
  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.253);
}

.suchnaPat .event_cards .event_card .content {
  padding: 0 0.7rem 0.7rem 0.7rem;
}

.suchnaPat .event_cards .event_card .content .title {
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  margin: 0.5rem 0;
}

.suchnaPat .event_cards .event_card .content .download-btn {
  border: 1px solid black;
  border-radius: 50%;
  padding: 5px 8px;
  margin-bottom: 0.5rem;
  float: right;
}

.idols-section .col-2 img {
  -o-object-fit: cover;
  object-fit: cover;
}

/*# sourceMappingURL=style.css.map */