a:hover {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", Sans-serif !important;
  font-weight: 700;
  line-height: 1.2;
  color: #121212;
}

h1 {
  font-size: 40px;
}

h2{
  font-size: 30px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 16px;
  font-family: "Inter", Sans-serif !important;
  line-height: 28px;
  color: #64666C;
}

.tp-icon-list .elementor-icon-list-item .elementor-icon-list-icon {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 7px;
}

.tp-icon-list .elementor-icon-list-item .elementor-icon-list-icon i {
  width: max-content;
}

.tp-icon-list .elementor-icon-list-item > a,
.tp-icon-list .elementor-icon-list-item {
  display: flex
  ;
      align-items: center;
}

.social-footer .elementor-icon-list-item svg {
  max-width: 20px;
  max-height: 20px;
  vertical-align: middle;
}

.tp-title-footer .elementor-heading-title {
  position: relative;
}

.tp-title-footer .elementor-heading-title:after {
  content: '';
  width: 25%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #FCAE42;
}

::-webkit-scrollbar-thumb:hover {
  background: #FCAE42;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Header
-------------------------------------------------------------- */
.header-fixed {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-sticky {
  -webkit-box-shadow: 0 0 65px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 0 65px rgba(0, 0, 0, 0.09);
  -ms-box-shadow: 0 0 65px rgba(0, 0, 0, 0.09);
  -o-box-shadow: 0 0 65px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 65px rgba(0, 0, 0, 0.09);
}

.header-fixed.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -webkit-animation-name: fadeInDown;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 0.8s;
  /* Safari 4.0 - 8.0 */
  animation-name: fadeInDown;
  animation-duration: 0.8s;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

/* comment
-------------------------------------------------------------- */

#comments {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  padding-bottom: 120px;
}

/* animation
-------------------------------------------------------------- */

.tv-animated-column-elementor .elementor-widget-container {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.tv-animated-column-elementor .elementor-widget-container.tvanimated {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  opacity: 1 !important;
  -webkit-transition: opacity 0.8s linear, -webkit-transform 0.8s ease-in-out;
  transition: opacity 0.8s linear, -webkit-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out, opacity 0.8s linear;
  transition: transform 0.8s ease-in-out, opacity 0.8s linear,
    -webkit-transform 0.8s ease-in-out;
}

.circle-zoom {
  -webkit-animation: circle-zoom 4s infinite linear;
  animation: circle-zoom 4s infinite linear;
}

.to-left {
  -webkit-animation: to-left 7s infinite linear;
  animation: to-left 7s infinite linear;
}

.to-right {
  -webkit-animation: to-right 7s infinite linear;
  animation: to-right 7s infinite linear;
}

.to-top {
  -webkit-animation: to-top 7s infinite linear;
  animation: to-top 7s infinite linear;
}

.to-bottom {
  -webkit-animation: to-bottom 7s infinite linear;
  animation: to-bottom 7s infinite linear;
}

.rotate-ani {
  -webkit-animation: rotate-ani 7s infinite linear;
  animation: rotate-ani 7s infinite linear;
}

.ribbon-rotate {
  animation: ribbon-rotate 8s infinite linear;
  -webkit-animation: ribbon-rotate 8s infinite linear;
}

.ani-1 {
  animation: ani-1 25s infinite linear;
  -webkit-animation: ani-1 25s infinite linear;
}

.ani-2 {
  animation: ani-2 10s infinite linear;
  -webkit-animation: ani-2 10s infinite linear;
}

@keyframes circle-zoom {
  0% {
    transform: scale(0.8, 0.8);
  }

  50% {
    transform: scale(1, 1);
  }

  100% {
    transform: scale(0.8, 0.8);
  }
}

@keyframes to-top {

  0%,
  100% {
    transform: translateY(0px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  50% {
    transform: translateY(-30px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

@keyframes to-bottom {

  0%,
  100% {
    transform: translateY(0px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  50% {
    transform: translateY(15px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

@keyframes to-left {

  0%,
  100% {
    transform: translateX(0);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  50% {
    transform: translateX(-30px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

@keyframes to-right {

  0%,
  100% {
    transform: translateX(0);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  50% {
    transform: translateX(15px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

@keyframes rotate-ani {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes ribbon-rotate {

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

  25%,
  75% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  50% {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
}

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

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

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

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

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

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

@keyframes ani-2 {

  0%,
  100% {
    -webkit-transform: translateX(0) translateY(0) rotate(0);
    transform: translateX(0) translateY(0) rotate(0);
  }

  25%,
  75% {
    -webkit-transform: translateX(15px) translateY(20px) rotate(10deg);
    transform: translateX(15px) translateY(20px) rotate(10deg);
  }

  50% {
    -webkit-transform: translateX(60px) translateY(35px) rotate(15deg);
    transform: translateX(60px) translateY(35px) rotate(15deg);
  }
}

/* Form
-------------------------------------------------------------- */

.wpcf7-form .group-form-flex {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: calc(24px * -1);
  flex: 1;
}

.wpcf7-form .group-form-flex .inner.cl-2 {
  width: calc(50% - 24px);
  margin-left: 24px;
}

.wpcf7-form input[type=date],
.wpcf7-form input[type=email],
.wpcf7-form input[type=number],
.wpcf7-form input[type=password],
.wpcf7-form input[type=search],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=text],
.wpcf7-form input[type=url],
.wpcf7-form select,
.wpcf7-form textarea,
#comments input[type=date],
#comments input[type=email],
#comments input[type=number],
#comments input[type=password],
#comments input[type=search],
#comments input[type=tel],
#comments input[type=text],
#comments input[type=url],
#comments select,
#comments textarea {
  border: 1px solid transparent;
  max-width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 14px;
  border-radius: 8px;
  background-color: #F5F5F2;
  color: var(--theme-primary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 15px;
  width: 100%;
}

.wpcf7-form textarea,
#comments textarea {
  height: 150px;
}

.wpcf7-form input[type=submit],
#comments input[type=submit] {
  font-family: "Inter", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  background-color: #FCAE42;
  border: 2px solid #FCAE42;
  color: #fff !important;
  border-radius: 999px 999px 999px 999px;
  padding: 16px 45px 16px 45px;
}

.wpcf7-form input[type=submit]:hover,
#comments input[type=submit]:hover {
  background: transparent;
  color: #FCAE42 !important;
}

.gtranslate_wrapper {
  display: flex;
  gap: 15px;
}
.gtranslate_wrapper a {
  width: 25px;
  height: 25px;
  display: grid;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}
.gtranslate_wrapper a.gt-current-lang {
  border-bottom: 1px solid #082f66;
}

#comments {
  display: none;
}

@media all and (max-width: 991px) {
  .tp-icon-list .elementor-icon-list-item:not(:last-child):after {
    display: none;
}
}

