@import url("https://fonts.googleapis.com/css2?family=Anybody:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  font-family: "Anybody", serif;
  background-color: #fff;
}

.like-btn {
  background: #FFAD5B;
  color: #000 !important;
  border-radius: 5px;
  padding: 10px !important;
  margin: 0;
}

.wrapper {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}
.wrapper .swiper {
  height: 300px;
}
.wrapper .swiper .swiper-wrapper {
  display: flex;
}
.wrapper .swiper .swiper-wrapper .swiper-slide {
  padding: 20px;
  border: 1px solid #ddd;
}
.wrapper .swiper .swiper-wrapper .swiper-slide .speaker-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrapper .swiper .swiper-wrapper .swiper-slide .speaker-info .spk-image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 50%;
}
.wrapper .swiper .swiper-wrapper .swiper-slide .speaker-info .spk-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrapper .swiper .swiper-wrapper .swiper-slide .speaker-info .spk-info h4 {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}
.wrapper .swiper .swiper-wrapper .swiper-slide .speaker-info .spk-info p {
  margin: 0;
  font-size: 12px;
  color: #888;
  text-align: center;
}
.wrapper .swiper .swiper-scrollbar {
  display: none !important;
}
.wrapper .header {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrapper .hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.wrapper .hero-section h4 {
  font-size: 25px;
  color: #333;
}
.wrapper .hero-section h2 {
  color: #0365CD;
  font-size: 40px;
  font-weight: 600;
}
.wrapper .hero-section p {
  font-size: 14px;
}
.wrapper .hero-section img {
  width: 80%;
  object-fit: contain;
}
.wrapper .strip {
  display: flex;
  flex-wrap: wrap;
}
.wrapper .strip .left {
  padding: 25px;
  background: #0365CD;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.wrapper .strip .left .content {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.wrapper .strip .left .content h1 {
  font-size: 45px;
  font-weight: 700;
  color: #fff;
}
.wrapper .strip .left .content h4 {
  color: #fff;
  position: relative;
}
.wrapper .strip .left .content h4::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -200px;
  width: 160px;
  height: 2px;
  background-color: #fff;
}
.wrapper .strip .left .content h3 {
  color: #fff;
}
.wrapper .strip .right {
  flex: 1;
  padding: 25px;
}
.wrapper .strip .right .content {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.wrapper .strip .right .content h1 {
  font-size: 35px;
  font-weight: 700;
}
.wrapper .strip .right .content h4 {
  position: relative;
}
.wrapper .strip .right .content h4::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -200px;
  width: 160px;
  height: 2px;
  background-color: #000;
}
.wrapper .strip_in_yellow {
  background-color: #FFAD5B;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .strip_in_yellow p {
  margin: 0;
  text-align: center;
  width: 60%;
}
.wrapper .strip_in_yellow p span {
  font-weight: 900;
}
.wrapper section {
  margin: 50px 0;
}
.wrapper section .title h3 {
  font-weight: 500;
  font-size: 35px;
}
.wrapper section .title h5 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
.wrapper section.KeyHighlights .content {
  margin: 50px 0 0;
}
.wrapper section.KeyHighlights .content ul {
  list-style: none;
}
.wrapper section.KeyHighlights .content ul li {
  padding: 20px;
  margin-bottom: 20px;
}
.wrapper section.KeyHighlights .content ul li:nth-child(odd) {
  border-left: 30px solid #0365CD;
}
.wrapper section.KeyHighlights .content ul li:nth-child(even) {
  border-left: 30px solid #ddd;
}
.wrapper section.KeyHighlights .content .col-md-6:last-child ul {
  list-style: none;
}
.wrapper section.KeyHighlights .content .col-md-6:last-child ul li {
  padding: 20px;
  margin-bottom: 20px;
}
.wrapper section.KeyHighlights .content .col-md-6:last-child ul li:nth-child(odd) {
  border-left: 30px solid #FFAD5B;
}
.wrapper section.KeyHighlights .content .col-md-6:last-child ul li:nth-child(even) {
  border-left: 30px solid #ddd;
}
@keyframes animateCards {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes animateHoverEffect {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0);
  }
}
.wrapper section.focus .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wrapper section.focus .content .product-blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f2f2f2;
  padding: 30px;
  border-radius: 20px;
  transition: 1s ease-in-out;
  margin: 10px;
  width: 300px;
}
.wrapper section.focus .content .product-blocks img {
  width: 60%;
  object-fit: contain;
  display: block;
  margin-bottom: 20px;
}
.wrapper section.focus .content .product-blocks h3 {
  font-size: 20px;
}
.wrapper section.focus .content .product-blocks:hover {
  animation: animateCards 0.35s ease-in-out;
}
.wrapper section.Programme .content {
  background-color: #0365CD;
  padding: 20px;
  margin-top: 30px;
}
.wrapper section.Programme .content ul {
  list-style: disc;
}
.wrapper section.Programme .content ul li {
  color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #fff;
  font-size: 20px;
}
.wrapper section.Programme .content ul li small {
  display: block;
  font-weight: bold;
  font-size: 13px;
  margin: 10px 0;
}
.wrapper section.Programme .content ul li ul li {
  border-bottom: none;
  padding: 5px 0;
  font-size: 14px;
}
.wrapper section.Programme .content ul li:last-child {
  border-bottom: none;
}
.wrapper section.Contact .content .contactCards {
  background: #EEF6FF;
  padding: 40px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60%;
  margin-bottom: 10px;
}
.wrapper section.Contact .content .contactCards .profileImage img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.wrapper section.Contact .content .contactCards .profileDetails h3 {
  font-size: 20px;
}
.wrapper section.Contact .content .contactCards .profileDetails p {
  margin: 0;
}
.wrapper section.Contact .content .col-md-6:last-child > img {
  width: 80%;
  object-fit: contain;
  animation: animateHoverEffect 2s linear infinite;
}
.wrapper section.Contact .content .col-md-6:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrapper section.registrationCharges {
  background-color: #eaf4ff;
  padding: 10px 0;
  margin: 0;
}
.wrapper section.registrationCharges .custom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  width: 80%;
  margin: 0 auto;
}
.wrapper section.registrationCharges .custom-container .left {
  flex: 1;
}
.wrapper section.registrationCharges .custom-container .left .custom-title h2 {
  color: #0365CD;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 40px;
}
.wrapper section.registrationCharges .custom-container .left a {
  text-decoration: none;
  padding: 10px 30px;
  text-transform: uppercase;
  color: #fff;
  background: #0365CD;
  display: inline-block;
  margin-top: 10px;
}
.wrapper section.registrationCharges .custom-container .right {
  flex: 1;
}
.wrapper section.registrationCharges .custom-container .right p {
  color: #0365CD;
}
.wrapper .footer {
  padding: 50px 20px;
  background-color: #0365CD;
}
.wrapper .footer h4 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.wrapper .footer h2 {
  color: #fff;
  font-weight: 600;
  font-size: 30px;
}
.wrapper .footer ul {
  list-style: none;
}
.wrapper .footer ul li a {
  display: block;
  padding: 10px 10px 5px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  position: relative;
  transition: 1s ease;
}
.wrapper .footer ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}
.wrapper .footer ul li a:hover::after {
  width: 100%;
}
.wrapper .footer .socialLinks {
  display: flex;
  flex-wrap: wrap;
}
.wrapper .footer .socialLinks a {
  text-decoration: none;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
}
.wrapper .footer .socialLinks a img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

@media screen and (max-width: 800px) {
  .header {
    justify-content: center !important;
  }
  .header img {
    display: none !important;
  }
  .header img:last-child {
    display: block !important;
  }

  .hero-section {
    text-align: center !important;
  }

  .strip {
    flex-direction: column !important;
  }
  .strip .left {
    justify-content: center !important;
  }
  .strip .left .content {
    width: 100% !important;
  }
  .strip .right {
    justify-content: center !important;
  }
  .strip .right .content {
    width: 100% !important;
  }

  .strip_in_yellow p {
    font-size: 14px !important;
    width: 100% !important;
  }

  .registrationCharges .custom-container {
    width: 90% !important;
    flex-direction: column !important;
  }
  .registrationCharges .custom-container .left {
    text-align: center !important;
  }
  .registrationCharges .custom-container .right {
    width: 100% !important;
    margin-top: 20px !important;
  }

  .Contact .title {
    text-align: center !important;
  }

  .Contact .content .contactCards {
    width: 80% !important;
  }
}