@import "pages-css/navbar.css";
@import "pages-css/home-one.css";
@import "pages-css/home-two.css";
@import "pages-css/home-three.css";
@import "pages-css/inner-banner.css";
@import "pages-css/contact.css";
@import "pages-css/faq.css";
@import "pages-css/blog-details.css";
@import "pages-css/service-details.css";
@import "pages-css/project-details.css";
@import "pages-css/team.css";
@import "pages-css/author.css";
@import "pages-css/pagination.css";
@import "pages-css/error.css";
@import "pages-css/coming-soon.css";
@import "pages-css/footer.css";
@import "https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap";
@import "https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap";

:root {
  --headerFonts: "Poppins", sans-serif;
  --bodyFonts: "Roboto", sans-serif;
  --orangeColor: #f85f0a;
  --lightColor: #f88240;
  --greenColor: #0ebc40;
  --titleColor: #00042e;
  --bodyColor: #4e4e4e;
  --whiteColor: #ffffff;
  --fontSize: 16px;
  --transition: 0.5s;
}

body {
  padding: 0;
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
  font-size: var(--fontSize);
  font-family: var(--bodyFonts);
}

p {
  color: var(--bodyColor);
  margin-bottom: 10px;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

a {
  display: inline-block;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

button {
  outline: 0;
}

button:focus {
  outline: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  color: var(--titleColor);
  line-height: 1.4;
  font-family: var(--headerFonts);
}

h3 {
  font-size: 20px;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  display: table-cell;
  vertical-align: middle;
}

img {
  max-width: 100%;
}

.pt-150 {
  padding-top: 150px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-20 {
  padding-top: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pb-10 {
  padding-bottom: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.border-radius-5 {
  border-radius: 5px !important;
}

.border-radius-50 {
  border-radius: 50px !important;
}

.default-btn {
  padding: 10px 30px;
  color: var(--whiteColor);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: capitalize;
  background-color: #c90828;
  border: none;
  outline: none;
}

.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #154185;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.default-btn:hover {
  color: var(--whiteColor);
}

.default-btn:hover::before {
  width: 100%;
  opacity: 1;
}

.default-btn.two {
  background-color: var(--greenColor);
}

.default-btn.two:hover {
  color: var(--whiteColor);
}

.default-btn.two:hover::before {
  background-color: var(--orangeColor);
}

.section-title .sp-title {
  padding-bottom: 22px;
  display: inline-block;
  line-height: 0;
  font-size: 15px;
  color: #ec3f31;
  padding-left: 0;
  position: relative;
  font-weight: 500;
}

.section-title .sp-title::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  height: 2px;
  width: 50px;
  background-color: var(--greenColor);
  display: none;
}

.section-title .sp-title::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 0;
  height: 15px;
  width: 10%;
  background-color: var(--whiteColor);
  -webkit-animation: MOVE-BG 2s linear infinite;
  animation: MOVE-BG 2s linear infinite;
}

.section-title .sp-title2 {
  padding-bottom: 20px;
  line-height: 0;
  font-size: 15px;
  color: var(--lightColor);
  padding-left: 0;
  position: relative;
  font-weight: 500;
  display: inline-block;
}

.section-title .sp-title2::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  height: 2px;
  width: 50px;
  background-color: var(--lightColor);
  display: none;
}

.section-title .sp-title2::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 0;
  height: 15px;
  width: 10%;
  background-color: var(--whiteColor);
  -webkit-animation: MOVE-BG 2s linear infinite;
  animation: MOVE-BG 2s linear infinite;
}

.section-title h2 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 0;
  line-height: 1.2;
  color: var(--titleColor);
  margin-bottom: 0;
}

.section-title p {
  padding-top: 15px;
  margin-bottom: 0;
}

@-webkit-keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(88px);
    transform: translateX(88px);
  }
}

@keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(88px);
    transform: translateX(88px);
  }
}

.work-area::before {
  background-image: url(https://www.usfn.net/food-nutrition-conference/img/b3.jpg);
  background-size: auto;
}

.testimonial-area::before {
  background-image: url(../images/testimonial/testimonial-bg.jpg);
}

.terms-conditions-img {
  margin-bottom: 30px;
}

.single-content {
  margin-bottom: 30px;
}

.single-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 500;
}

.single-content p {
  margin-bottom: 0;
}

.gallery-photo-item {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.gallery-photo-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  opacity: 0.1;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  background-color: var(--titleColor);
}

.gallery-photo-item::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  opacity: 0.1;
  background-color: var(--titleColor);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

.gallery-photo-item .photo-button {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.gallery-photo-item .photo-button h3 {
  color: var(--whiteColor);
  margin-bottom: 20px;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.gallery-photo-item .photo-button .photo-icon {
  width: 40px;
  height: 40px;
  line-height: 45px;
  background-color: var(--whiteColor);
  font-size: 20px;
  color: var(--orangeColor);
  margin-bottom: 0;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}

.gallery-photo-item .photo-button .photo-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--whiteColor);
  -webkit-animation: ripple 2s infinite ease-in-out;
  animation: ripple 2s infinite ease-in-out;
  border-radius: 50px;
}

.gallery-photo-item .photo-button .photo-icon:hover {
  background-color: var(--orangeColor);
  color: var(--whiteColor);
  border-radius: 50px;
}

.gallery-photo-item .photo-button .photo-icon:hover::before {
  border-color: var(--orangeColor);
}

.gallery-photo-item:hover::before {
  opacity: 0.8;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.gallery-photo-item:hover::after {
  opacity: 0.8;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.gallery-photo-item:hover .photo-button h3 {
  opacity: 1;
}

.gallery-photo-item:hover .photo-button .photo-icon {
  opacity: 1;
}

.categories-title {
  margin-bottom: 30px;
}

.categories-title h3 {
  font-size: 24px;
  color: var(--titleColor);
}

.categories-title h3 span {
  color: var(--bodyColor);
  font-size: 17px;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: var(--orangeColor);
}

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 100px auto;
}

.double-bounce1 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--whiteColor);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--whiteColor);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-bounce {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.go-top {
  position: fixed;
  top: 70%;
  right: 3%;
  opacity: 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--whiteColor);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  background: var(--orangeColor);
  border-radius: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top i {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  vertical-align: middle;
}

.go-top:hover {
  background-color: var(--titleColor);
}

.go-top:hover i {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.go-top.active {
  top: 95%;
  -webkit-transform: translateY(-95%);
  transform: translateY(-95%);
  opacity: 1;
  visibility: visible;
}

.buy-now-btn {
  right: 20px;
  z-index: 99;
  top: 50%;
  position: fixed;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: var(--whiteColor);
  background-color: #82b440;
  padding: 10px 20px 10px 42px;
  -webkit-box-shadow: 0 1px 20px 1px #82b440;
  box-shadow: 0 1px 20px 1px #82b440;
  font-size: 13px;
  font-weight: 600;
}

.buy-now-btn img {
  top: 50%;
  left: 20px;
  width: 15px;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.buy-now-btn:hover {
  color: var(--whiteColor);
  background-color: #94be5d;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes help-animation {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(30px, 0);
    transform: translate(30px, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes help-animation {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(30px, 0);
    transform: translate(30px, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
    transform: translate(73px, -1px) rotate(36deg);
  }

  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
    transform: translate(141px, 72px) rotate(72deg);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
    transform: translate(83px, 122px) rotate(108deg);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
    transform: translate(-40px, 72px) rotate(144deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
    transform: translate(73px, -1px) rotate(36deg);
  }

  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
    transform: translate(141px, 72px) rotate(72deg);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
    transform: translate(83px, 122px) rotate(108deg);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
    transform: translate(-40px, 72px) rotate(144deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}

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

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

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

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

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

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

@-webkit-keyframes move-to {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(-50px, 0);
    transform: translate(-50px, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes move-to {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(50px, 0);
    transform: translate(50px, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes running-in {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(-10px, 150px);
    transform: translate(-10px, 150px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes running-in {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(-10px, 150px);
    transform: translate(-10px, 150px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes sk-bounce {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-bounce {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes leaves {
  0% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@keyframes leaves {
  0% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@keyframes leaves {
  0% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@keyframes waving-line {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -200px 0;
  }
}

@-webkit-keyframes waving-line {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -200px 0;
  }
}

@-webkit-keyframes rotated360 {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

@keyframes rotated360 {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .ptb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .pt-100 {
    padding-top: 50px;
  }

  .ptb-70 {
    padding-top: 50px;
    padding-bottom: 20px;
  }

  .pb-100 {
    padding-bottom: 50px !important;
  }

  .pt-70 {
    padding-top: 50px;
  }

  .pb-70 {
    padding-bottom: 20px;
  }

  .pt-45 {
    padding-top: 30px;
  }

  .pb-10 {
    padding-bottom: 0;
  }

  .pl-20 {
    padding-left: 0;
  }

  .pr-20 {
    padding-right: 0;
  }

  .ml-20 {
    margin-left: 20px;
  }

  .default-btn {
    padding: 8px 20px;
  }

  .section-title span {
    font-size: 12px;
  }

  .section-title .sp-title {
    font-size: 14px;
    padding-left: 0;
    display: block;
    padding-bottom: 15px;
  }

  .section-title .sp-title::before {
    display: none;
  }

  .section-title .sp-title::after {
    display: none;
  }

  .section-title .sp-title2 {
    font-size: 14px;
    padding-left: 0;
    display: block;
    padding-bottom: 15px;
  }

  .section-title .sp-title2::before {
    display: none;
  }

  .section-title .sp-title2::after {
    display: none;
  }

  .section-title h2 {
    font-size: 25px;
  }

  .section-title p {
    padding-top: 10px;
  }

  .ps-2 {
    padding-left: 0 !important;
  }

  .ps-3 {
    padding-left: 0 !important;
  }

  .ps-5 {
    padding-left: 0 !important;
  }

  .ps-0 {
    padding-left: 15px !important;
  }

  .pe-0 {
    padding-right: 15px !important;
  }

  .p-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .go-top .active {
    top: 85%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area .container-fluid {
    width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .banner-area-two .container-fluid {
    width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .banner-area-three .container-fluid {
    width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body {
    font-size: 15px;
  }

  .ptb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .pt-100 {
    padding-top: 50px;
  }

  .ptb-70 {
    padding-top: 50px;
    padding-bottom: 20px;
  }

  .pb-100 {
    padding-bottom: 50px !important;
  }

  .pt-70 {
    padding-top: 50px;
  }

  .pb-70 {
    padding-bottom: 20px;
  }

  .pt-45 {
    padding-top: 30px;
  }

  .pb-10 {
    padding-bottom: 0;
  }

  .pl-20 {
    padding-left: 0;
  }

  .pr-20 {
    padding-right: 0;
  }

  .ml-20 {
    margin-left: 20px;
  }

  .default-btn {
    padding: 8px 20px;
  }

  .section-title span {
    font-size: 12px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .section-title p {
    padding-top: 10px;
  }

  .ps-2 {
    padding-left: 0 !important;
  }

  .ps-3 {
    padding-left: 0 !important;
  }

  .ps-5 {
    padding-left: 0 !important;
  }

  .ps-0 {
    padding-left: 15px !important;
  }

  .pe-0 {
    padding-right: 15px !important;
  }

  .p-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ps-2 {
    padding-left: 0 !important;
  }

  .ps-3 {
    padding-left: 0 !important;
  }

  .ps-5 {
    padding-left: 0 !important;
  }

  .section-title h2 {
    font-size: 32px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1299px) {
  .ps-2 {
    padding-left: 0 !important;
  }

  .ps-3 {
    padding-left: 0 !important;
  }

  .ps-5 {
    padding-left: 0 !important;
  }

  .container-fluid {
    width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .desktop-nav .navbar .navbar-nav .nav-item a {
    margin-right: 6px !important;
  }

  .default-btn {
    padding: 10px 13px !important;
    font-size: 15px !important;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1299px) {
  .carousel-item .item {
    height: 550px !important;
  }

  .desktop-nav .navbar .navbar-nav .nav-item a {
    font-size: 15px;
  }

  .content-1 {
    top: 41%;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 1400px) {
  .carousel-item .item {
    height: 600px !important;
  }

  .desktop-nav .navbar .navbar-nav .nav-item a {
    font-size: 15px;
  }
}

@media only screen and (min-width: 1350px) and (max-width: 1439px) {
  .container-fluid {
    width: 1320px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .banner-slider .owl-nav {
    margin-top: 0;
    width: 1320px !important;
    position: absolute;
  }
}

@media only screen and (min-width: 1440px) and (max-width: 1799px) {
  .container-fluid {
    width: 95%;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .banner-slider .owl-nav {
    margin-top: 0;
    width: 1460px !important;
    position: absolute;
  }
}

@media only screen and (min-width: 1550px) and (max-width: 1799px) {
  .carousel-item .item {
    height: 680px !important;
  }

  .content-1 {
    top: 48% !important;
  }
}

@media only screen and (min-width: 1300px) {
  .container {
    max-width: 100%;
  }

  .default-btn {
    padding: 10px 13px !important;
    font-size: 15px !important;
  }
}

@media only screen and (min-width: 1800px) {
  .container-fluid {
    width: 1640px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .banner-slider .owl-nav {
    margin-top: 0;
    width: 1760px !important;
    position: absolute;
  }

  .carousel-item .item {
    height: 830px !important;
  }

  .content-1 {
    top: 50% !important;
  }
}

.cmt-page-title-row {
  background-image: linear-gradient(#10427600, #10427600),
    url(https://icakmrets.com/img/about-img.jpg) !important;
  width: 100%;
  position: relative;
  z-index: 2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cmt-page-title-row-inner {
  /*background-color: rgb(0 0 0 / 46%);*/
  background-image: linear-gradient(#10427600, #10427600),
    url(https://icakmrets.com/img/about-img.jpg) !important;
}

.cmt-page-title-row-inner {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /*    background-color: rgb(0 0 0 / 67%);*/
  margin-bottom: 27px;
  padding-top: 75px;
}

.page-title-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.page-title-heading h2 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 33px;
  line-height: 68px;
  margin-bottom: 3px;
  color: #ae1010;
  letter-spacing: -0.1px;
}

.page-title-heading .page-title-desc {
  color: var(--base-dark);
  font-weight: bolder;
  text-align: center;
  line-height: 24px;
  font-size: 19px;
  margin-bottom: 0px;
}

.title {
  color: #fff;
  margin-bottom: 60px;
  text-align: center;
  font-size: 27px;
}

.page-title-heading span {
  background: #eee;
  padding: 10px 20px;
  border-radius: 0;
  background: #001136;
}

.page-title {
  color: #000000;
  margin-top: 42px;
  margin-bottom: 13px;
  text-transform: initial;
  font-size: 24px;
  font-weight: 600;
}

.page-title span {
  background: linear-gradient(150deg, #183a7f 0%, #de1100 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt .container {
  width: 85%;
}

.abt p {
  text-align: justify;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.blogg .content {
  padding: 0px 17px;
  background: #fff;
  border: 1px solid #00000061;
}

.blogg .content .title a {
  font-size: 18px !important;
  color: #000;
  line-height: 25px;
  font-family: "Roboto";
  font-weight: 600;
  padding-top: 17px;
}

.blogg .content .title {
  color: #fff;
  margin-bottom: 0;
  text-align: left;
  font-size: 27px;
}

.blogg .read-more-btn a {
  color: #f63028;
  padding-bottom: 14px;
}

.session-number {
  width: 30px;
  height: 17px;
  margin-right: 10px;
  background: #03a84e;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  font-size: 12px;
}

html,
body {
  overflow-x: hidden;
}

.footer-area-bg-two {
  padding-top: 50px;
}

@media only screen and (max-width: 991px) {
  .mobile-responsive-nav .mean-container a.meanmenu-reveal {
    padding: 0;
    width: 35px;
    height: 30px;
    padding-top: 27px !important;
    color: var(--orangeColor);
  }
}

.aca-img {
  display: flex;
  justify-content: center;
  column-gap: 53px;
}

.card {
  margin: 0 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;

}

.linee {
  width: 35px;
  height: 5px;
  background: #ee3173;
  text-align: center;
  margin-top: 6px;
  margin-left: 25px;
  margin-bottom: 14px;
}

.textfy {
  text-align: justify;
}



.side-menu {
  width: 14em;
  height: auto;
  margin: 4em auto 0;
  font-size: 1em;
  line-height: 2em;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10em;
}

.side-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-menu ul li {
  display: block;
  background-color: #333;
  height: 2em;
  padding: 1em 1.5em;
  position: relative;
  -webkit-transition: -webkit-transform 0.5s, background-color .5s, color .5s;
  transition: transform .5s, background-color .5s, color .5s;
}

/*the colors of the different columns*/
.side-menu ul li:nth-child(1) {
  background-color: #00aced;
}

.side-menu ul li:nth-child(2) {
  background-color: #3b5998;
}

.side-menu ul li:nth-child(3) {
  background-color: #00a300;
}

.side-menu ul li:nth-child(4) {
  background-color: #1e7145;
}

.side-menu ul li:nth-child(5) {
  background-color: #ffc40d;
}

.side-menu ul li:nth-child(6) {
  background-color: #cb2027;
}

.side-menu ul li:hover {
  background-color: #339966;
  /*you can make different colors depending on the nth-child like above*/
  -webkit-transform: translateX(10em);
  transform: translateX(10em);
  /*equal to left in the .side-menu*/
}

.side-menu ul li a {
  display: block;
  color: #FFF;
  text-decoration: none;
}

.side-menu ul li span {
  display: block;
  position: absolute;
  font-size: 1em;
  line-height: 2em;
  height: 2em;
  top: 0;
  bottom: 0;
  margin: 0 auto;
  padding: 1em 1.5em;
  right: 0.16666666666667em;
  color: #F8F6FF;
}


.sticky-icon {
  z-index: 1;
  position: fixed;
  top: 50%;
  right: 0%;
  width: ;
  display: flex;
  flex-direction: column;
}

.sticky-icon a {
  transform: translate(160px, 0px);
  border-radius: 50px 0px 0px 50px;
  text-align: left;
  margin: 2px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  font-size: 22px;
  font-family: 'Oswald', sans-serif;
  transition: all 0.8s;
}

.sticky-icon a:hover {
  color: #FFF;
  transform: translate(0px, 0px);
}

.sticky-icon a:hover i {
  transform: rotate(360deg);
}

/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/
.Facebook {
  background-color: #2C80D3;
  color: #FFF;
}

.Youtube {
  background-color: #fa0910;
  color: #FFF;
}

.Twitter {
  background-color: #1154a9;
  color: #FFF;
}

.Instagram {
  background-color: #FD1D1D;
  color: #FFF;
}

.Google {
  background-color: #d34836;
  color: #FFF;
}

.sticky-icon a i {
  background-color: #47eb7f;
  height: 40px;
  width: 40px;
  color: #000;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.5s;
}

.sticky-icon a i.fa-facebook-f {
  background-color: #FFF;
  color: #2C80D3;
}

.sticky-icon a i.fa-google-plus-g {
  background-color: #FFF;
  color: #d34836;
}

.sticky-icon a i.fa-instagram {
  background-color: #FFF;
  color: #FD1D1D;
}

.sticky-icon a i.fa-youtube {
  background-color: #FFF;
  color: #fa0910;
}

.sticky-icon a i.fa-twitter {
  background-color: #FFF;
  color: #53c5ff;
}

.fas fa-shopping-cart {
  background-color: #FFF;
}

#myBtn {
  height: 50px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  text-align: center;
  padding: 10px;
  text-align: center;
  line-height: 40px;
  border: none;
  outline: none;
  background-color: #1e88e5;
  color: white;
  cursor: pointer;
  border-radius: 50%;
}

.fa-arrow-circle-up {
  font-size: 30px;
}

#myBtn:hover {
  background-color: #555;
}


/*fun fact*/
.fun-fact-wrap-v2 {
  margin-top: 0;
  background: -webkit-linear-gradient(40deg, #0088b0, #1a377c);
  border-radius: 30px;
  padding: 14px 20px 35px;
  text-align: center;
  /* background-image: url(../img/home2/fact-bg.png); */
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
  /* background-position: center; */
  /* background-attachment: fixed; */
}

.fun-fact-wrap-v2 .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #b0d5ee;
  line-height: 100px;
  margin: auto;
  box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 36%);
}

.fun-fact-wrap-v2 .icon img {
  vertical-align: middle;
}

.fun-fact-wrap-v2 .cont {
  padding-top: 10px;
}

.fun-fact-wrap-v2 .cont h2 {
  color: #fff;
  font-size: 32px;
  text-shadow: 1px 1px #df2422;
}

.fun-fact-wrap-v2 .cont p {
  font-size: 20px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
}

@media (max-width:767px) {
  .fun-fact-wrap-v2 {
    margin-top: 0px;
    margin-bottom: 50px;
  }

  section.event-campaign-sec.pt-4 {
    padding-top: 10px !important;
  }

  .work-area {
    padding-bottom: 0px;
  }

  .fun-fact-wrap-v2 h4 {
    font-size: 24px !important;
  }
}

/*fun fact*/
ul#countdown li {
  width: auto;
}

ul#countdown li {
  /*                padding: 11px 24px;*/
  margin-bottom: 10px;
  text-align: center;
  margin-right: 20px;
}

ul#countdown li span {
  font-size: 22px;
}

ul#countdown li p.timeRefDays,
ul#countdown li p.timeRefHours,
ul#countdown li p.timeRefMinutes,
ul#countdown li p.timeRefSeconds {
  font-size: 15px;
}

.timer-section .inner-container.margin-top {
  margin-bottom: 48px;
}


ul#countdown li {
  display: inline-block;
  background: #ffffff url(../images/timer-piece.png) no-repeat left top;
  width: auto;
  margin-bottom: 0;
  text-align: center;
  /* box-shadow: 0 0 6px rgb(255 255 255); */
  margin-top: 3px;
  /* border: 1px dashed #333; */
  border-radius: 10px;
  padding: 10px 0 0;
}

.button--antiman.button--inverted-alt::before {
  border-color: #e66d6d;
  background: linear-gradient(90deg, #e94086 0%, #e5925a 100%);
}

.button--antiman.button--inverted-alt::after {
  background: transparent;
  border: 2px solid #e66d6d;
}

ul#countdown li span {
  font-size: 32px;
  font-weight: bold;
  color: #ed1c24;
  height: 108px;
  text-shadow: 0.4px 0.5px #fff;
  position: relative;
  text-shadow: 0.5px 0.5px #ffffff;
  text-align: center;
  padding: 28px;
}

ul#countdown li span::before {
  /* content: ''; */
  /* width: 100%; */
  /* height: 1px; */
  /* border-top: 1px solid white; */
  /* position: absolute; */
  /* top: 31px; */
}

ul#countdown li p.timeRefDays,
ul#countdown li p.timeRefHours,
ul#countdown li p.timeRefMinutes,
ul#countdown li p.timeRefSeconds {
  margin-top: 0px;
  margin-bottom: 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  background: #068cd8;
  padding: 5px;
}



.form-group {
  margin-bottom: 18px;
}

.control-label {
  font-weight: 600;
}

.pro-card {
  margin-bottom: 10px;
  padding: 31px 17px 17px;
  text-align: center;
  border: 1px solid #b6c7d6;
  box-shadow: 0 0 9px rgb(203 236 255);
}

.pro-card h4 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}

.pro-card h5 {
  font-size: 14px;
  color: #eb5a0a;
  margin-bottom: 5px;
  font-weight: 600;
}

.pro-card p {
  text-align: center;
  margin-bottom: 0px;
  color: #000;
  font-weight: 500;
  font-size: 14px;
}

.pro-card img {
  margin-bottom: 15px;
  box-shadow: rgb(0 30 47 / 49%) 5px 0 1.25rem;
  width: 150px;
  height: 150px;
}

h5.pro-title {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 13px;
}

.m-banner {
  display: none;
}


@media (max-width: 768px) {
  .spkk .col-sm-3 {
    flex: 0 0 auto;
    width: 50% !important;
    padding: 5px !important;
  }

  .pro-cnt {
    padding: 13px !important;
  }

  .pro-cnt h2 {
    margin-bottom: 15px !important;
    margin-top: 12px !important;
  }

  .pro-cnt p {
    text-align: center;
    font-weight: 600;
    font-size: 17px !important;
    width: 100% !important;
    padding-top: 15px !important;
    padding-bottom: 10px !important;
  }


  .services-item .content .top {
    display: none;
  }

  .dte .card {
    padding: 18px 20px 10px;
    margin-bottom: 14px;
  }

  .m-txt {
    text-align: center;
    margin-bottom: 40px;
  }

  .about-area {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0px;
    margin-bottom: 5px !important;
  }

  .m-banner {
    display: block;
  }

  .carousel-inner {
    display: none;
  }


  .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .carousel-item .item {
    height: 170px !important;
  }

  ul#countdown li p.timeRefDays,
  ul#countdown li p.timeRefHours,
  ul#countdown li p.timeRefMinutes,
  ul#countdown li p.timeRefSeconds {
    font-size: 10px !important;
    padding: 1px;
    color: #000;
    background: #fff;
  }

  ul#countdown li span {
    font-size: 14px !important;
    padding: 6px;
  }

  .content-1 {
    top: 1% !important;
    left: 0% !important;
  }

  .content-2 {
    top: 1% !important;
    left: 43% !important;
  }

  ul#countdown li {
    padding: 1px 3px !important;
    margin-bottom: 10px !important;
    margin-right: 1px !important;
    line-height: 16px !important;
    padding-top: 8px !important;
  }

  .content-1 .e-time {
    padding-left: 16px !important;
  }

  .carousel-control-next,
  .carousel-control-prev {
    width: 7% !important;
  }

}



.speakers-member .member-img img {
  -webkit-transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
  padding: 5px;
  border-radius: 10px;
  /* border-radius: 100%; */
  /* border: 2px dashed #ff1d1d; */
  /* margin-top: 25px; */
  background: #fff;
  padding: 5px;
  /* border: 1px dashed #292f58; */
}

.speakers-member .member-desc h3 {
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 600;
  margin-bottom: 0;
  /* color: #13659e; */
  text-shadow: 0.1px 0.1px #000;
  font-family: 'Roboto';
}

.speakers-member .member-desc h5 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #cd0027;
  font-weight: 500;
  width: 98%;
  font-family: 'Roboto';
  margin-top: 5px;
}

.speakers-member .member-desc p {
  margin-bottom: 4px;
  text-align: center;
  font-size: 14px;
  line-height: 21px !important;
  color: #000;
  font-weight: 500;
}

.speakers-member {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  text-align: center;
  margin-bottom: 0px;
  padding-bottom: 10px;
  margin-top: 10px;
  padding-top: 15px;
  z-index: 99;
  -webkit-transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
  background: #fcfcfd !important;
  box-shadow: rgb(18 18 18 / 7%) 5px 0 1.25rem;
  height: 360px;
}

.member-img img {
  background: linear-gradient(to right, #ff1300, #008ffe) !important;
  padding: 4px !important;
}

.p-name {
  padding: 9px 0;
  font-size: 17px;
  font-weight: 500;
  background: #1b4180;
  color: #fff;
  background: linear-gradient(to right, #254dbf, #1679bf, #4867c0);
}

.member-img img {
  width: 150px;
  height: 150px;
  border-radius: 100px !important;
}

.spkk .col-sm-3 {
  flex: 0 0 auto;
  width: 20%;
  padding: 5px;
}

.agen h6 span {
  background: -webkit-linear-gradient(304deg, #006aff, #ff0b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  position: relative;
  top: -6px;
  font-weight: 600;
}

.spk-d h5 b {
  font-weight: 700;
  color: #000;
  font-size: 15px;
}

.spk-d h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
  color: #164283;
}

.spk-d p {
  font-size: 15px;
  color: #000;
  padding-top: 0;
  margin-bottom: 4px;
  text-align: left;
  line-height: 24px !important;
  margin-top: 6px !important;
}

.agen {
  border-bottom: 1px dashed #969393;
  padding-top: 15px;
  padding-bottom: 10px;
}

.bor-l {
  border-left: 1px dashed #8f8989;
  padding-left: 36px;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

.video__banner {
  margin-bottom: 20px;
}



.inside h4 {
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 40px;
  line-height: 45px;
}

.inside h3 span {
  color: #fff;
  padding: 2px 4px 0 4px;
  display: block;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.ttm-fid-border .inside {
  margin-bottom: 0;
  padding-top: 29px;
  padding-bottom: 25px;
  padding-left: 29px;
  border-right: 1px solid #fff;
}

.inside {
  text-align: center;
  position: relative;
  padding: 29px 15px 21px 15px;
  margin-bottom: 30px;
}




#news-slider {
  margin-top: 80px;
}

.post-slide {
  background: #fff;
  margin: 20px 15px 20px;
  border-radius: 15px;
  padding-top: 1px;
  box-shadow: 0px 14px 22px -9px #bbcbd8;
}

.post-slide .post-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: -12px 15px 8px 15px;
  margin-left: -10px;
}

.post-slide .post-img img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: transform 0.2s linear;
}

.post-slide:hover .post-img img {
  transform: scale(1.1, 1.1);
}

.post-slide .over-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: linear-gradient(-45deg, rgba(6, 190, 244, 0.75) 0%, rgba(45, 112, 253, 0.6) 100%);
  transition: all 0.50s linear;
}

.post-slide:hover .over-layer {
  opacity: 1;
  text-decoration: none;
}

.post-slide .over-layer i {
  position: relative;
  top: 45%;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 25px;
}

.post-slide .post-content {
  background: #fff;
  padding: 2px 20px 40px;
  border-radius: 15px;
}

.post-slide .post-title a {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

.post-slide .post-title a:hover {
  text-decoration: none;
  color: #3498db;
}

.post-slide .post-description {
  line-height: 24px;
  color: #808080;
  margin-bottom: 25px;
}

.post-slide .post-date {
  color: #a9a9a9;
  font-size: 14px;
}

.post-slide .post-date i {
  font-size: 20px;
  margin-right: 8px;
  color: #CFDACE;
}

.post-slide .read-more {
  padding: 7px 20px;
  float: right;
  font-size: 12px;
  background: #2196F3;
  color: #ffffff;
  box-shadow: 0px 10px 20px -10px #1376c5;
  border-radius: 25px;
  text-transform: uppercase;
}

.post-slide .read-more:hover {
  background: #3498db;
  text-decoration: none;
  color: #fff;
}

.owl-controls .owl-buttons {
  text-align: center;
  margin-top: 20px;
}

.owl-controls .owl-buttons .owl-prev {
  background: #fff;
  position: absolute;
  top: -13%;
  left: 15px;
  padding: 0 18px 0 15px;
  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-next {
  background: #fff;
  position: absolute;
  top: -13%;
  right: 15px;
  padding: 0 15px 0 18px;
  border-radius: 50px;
  box-shadow: -3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #333;
  font-size: 30px;
}

.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}

@media only screen and (max-width:1280px) {
  .post-slide .post-content {
    padding: 0px 15px 25px 15px;
  }
}

h5.v-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}

.p-cong p {
  margin-bottom: 0px;
  font-size: 15px;
  color: #000;
  line-height: 30px;
}

.p-cong p b {
  font-weight: 500;
}


.ck-button-three:hover {
  color: #fff;
}

.ck-button-five:hover,
.p-button--quinary:hover {
  background: #ffac62;
  color: #fff;
}

a[class*="ck-button"] {
  padding: 6px 20px !important;
  position: relative;
  display: inline-flex;
  letter-spacing: 0;
  font-size: 14px;
}

.m-exhibitor-entry--default .m-exhibitor-entry__item__body__contacts__additional__button__rapport:after,
a[class*="ck-button"]:after {
  content: "\f0da";
  display: block;
  color: white;
  line-height: 1;
  font-family: 'FontAwesome' !important;
  margin-left: 0.6rem;
  font-weight: bold;
  position: absolute;
  right: 0px;
  position: relative;
  transform: translateY(0px);
  font-size: inherit;
  line-height: inherit;
  transition: all .3s ease;
}

.ck-button-three,
.p-button--tertiary {
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 5px;
  transition: background 0.5s ease-in, border 0.5s ease-in, color 0.5s ease-in;
  display: inline-block;
  padding: 12px !important;
  color: #fff;
  background: #d82121;
  font-size: .91666667rem;
  line-height: 1.63;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ck-button-five,
.p-button--quinary {
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 5px;
  transition: background 0.5s ease-in, border 0.5s ease-in, color 0.5s ease-in;
  display: inline-block;
  padding: 12px !important;
  color: #fff;
  background: #056cb2;
  font-size: .91666667rem;
  line-height: 1.63;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ck-button-one,
.ck-button-two,
.ck-button-three,
.ck-button-four,
.ck-button-five {
  clip-path: polygon(0% 0%, 100% 0, 100% calc(100% - 10px), calc(100% - 15px) 100%, 0% 100%);
  font-weight: 600;
}


@media (max-width: 767px) {
  .carousel-inner .carousel-item>div {
    display: none;
  }

  .carousel-inner .carousel-item>div:first-child {
    display: block;
  }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

  .carousel-inner .carousel-item-end.active,
  .carousel-inner .carousel-item-next {
    transform: translateX(25%);
  }

  .carousel-inner .carousel-item-start.active,
  .carousel-inner .carousel-item-prev {
    transform: translateX(-25%);
  }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
  transform: translateX(0);
}

p.font-weight-light.mb-3 {
  color: #000;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0 !important;
}

.card.card-shadow {
  border: 1px solid #00000021 !important;
  margin-right: 10px;
  box-shadow: rgb(18 18 18 / 12%) 5px 0 1.25rem;
  height: 93%;
}

h6.mb-0.customer {
  margin-top: 10px;
  margin-bottom: 6px !important;
  color: #021e69;
  font-size: 15px;
  font-weight: 600;
}

.card-shadow img {
  height: 140px;
  width: 100%;
}


.eligibility {
  border: 1px solid #afafafb3;
  text-align: center;
  padding: 2px 0;
  box-shadow: 2px 2px 0px #aabfc6;
  margin-bottom: 1px;
}

.eligibility p {
  padding: 6px 4px 0;
  font-size: 17px !important;
  text-align: left;
  margin-bottom: 8px !important;
  /* display: flex; */
  font-family: 'Roboto';
  font-weight: 600;
  color: #102339;
  line-height: 20px !important;
  text-align: center;
}

.eligibility img {
  width: 80px;
  height: 80px;
  background: #ffffff;
  /* border-radius: 100px; */
  /* box-shadow: rgb(218 218 218) 5px 0 1.2rem; */
  padding: 3px;
  /* background: linear-gradient(to right, #159daa, #3e751a) !important; */
  padding: 2px !important;
}

.dte .card {
  padding: 15px 10px;

}

.spk-pro .card {
  background: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.spk-bg h3 {
  background: linear-gradient(174deg, #05a1da 31.99%, #2a61b3 66%) !important;
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.spk-pro h4 {
  font-size: 15px;
  margin-top: 12px;
  margin-bottom: 4px;
  color: #d42673;
}

.spk-bg h4 {
  color: #cd0027;
  margin-bottom: 4px;
  margin-top: 3px;
  font-size: 14px;
}

.spk-pro img {
  width: 140px;
  height: 140px;
  margin: auto;
  box-shadow: 2px 1px 10px 0px rgb(0 0 0 / 50%);
  border-radius: 14px;
}

.spk-pro h5 {
  margin-bottom: 0px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 14px;
  color: #002c5b;
  text-transform: uppercase;
}

.spk-pro p {
  line-height: 21px;
  font-size: 14px;
  margin-bottom: 6px;
  color: #000;
}

.dte .card h4 {
  margin-bottom: 0px;
}

.bio {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  background: #164283;
  padding: 5px 6px;
  border-radius: 5px;
  position: relative;
  top: 3px;
  line-height: 18px;
}

.bio:hover {
  color: #fff;
}

.modal p {
  color: #000;
}

 /* </style><script>(function(w, d, s, l, i) {
    w[l]=w[l] || [];

    w[l].push({
      'gtm.start': new Date().getTime(),
      event: 'gtm.js'
    });
  var f=d.getElementsByTagName(s)[0],
  j=d.createElement(s),
  dl=l !='dataLayer' ? '&l=' + l : '';
  j.async=true;
  j.src='https://www.googletagmanager.com/gtm.js?id=' + i + dl;
  f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-K442NPC');
</script>< !-- End Google Tag Manager --></head><body>< !-- Google Tag Manager (noscript) --><noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-K442NPC"

height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>< !-- End Google Tag Manager (noscript) --><style>.form-group {
  margin-bottom: 18px;
}  */

.control-label {
  font-weight: 600;
}

@media (max-width: 768px) {

  .bor-l img {
    height: auto !important;
  }

  .mobile-nav-area .mobile-btn .default-btn {
    padding: 8px 10px;
    font-size: 12px;
    margin-right: 12px;
    margin-top: 2px;
  }

  .abt .container {
    width: 95%;
  }
}

@keyframes blinkingBackground {
  0% {
    opacity: 0.1;
  }

  25% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}



@media only screen and (min-width: 1550px) and (max-width: 2000px) {
  .container {
    max-width: 73% !important;
  }
}

.cmt-page-title-row {
  background-image: linear-gradient(#10427600, #10427600), url(Green-bN.jpg) !important;
  width: 100%;
  position: relative;
  z-index: 2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.dropdown-toggle::after {
  display: none;
}

/* Sticky Telegram Icon */
.telegram-icon {
  position: fixed;
  bottom: 100px;
  /* Adjust the bottom if you want it to stack with WhatsApp */
  left: 20px;
  z-index: 1000;
  background-color: #0088cc;
  border-radius: 50%;
  padding: 10px;
}

.telegram-icon img {
  width: 30px;
  height: 30px;
  box-shadow: none !important;
}

/* Sticky LINE Icon */
.line-icon {
  position: fixed;
  bottom: 159px;
  /* Adjust to stack with WhatsApp and Telegram */
  left: 20px;
  z-index: 1000;
  background-color: #06c755;
  /* LINE's brand color */
  border-radius: 50%;
  padding: 10px;
}

.line-icon img {
  width: 30px;
  height: 30px;
  box-shadow: none !important;
}

/* Sticky WhatsApp Icon */
.whatsapp-icon {
  position: fixed;
  bottom: 40px;
  left: 20px;
  z-index: 1000;
  background-color: #25D366;
  border-radius: 50%;
  padding: 10px;
}

.whatsapp-icon img {
  width: 30px;
  height: 30px;
  box-shadow: none !important;
}

















