/* Global */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #000000;
  font-size: 20px;
  line-height: 120%;
  font-weight: 400;
}

a {
  color: #85D0F0;
}
a:hover, a:active {
  color: #85D0F0;
}

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

p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}

ul, ol {
  font-size: 16px;
  line-height: 24px;
  padding-left: 18px;
}

.section-ld {
  padding: 100px 0;
}
.section-ld-title {
  font-size: 38px;
  font-weight: 400;
  line-height: 46px;
  margin-bottom: 20px;
}
.section-ld-sub-title {
  font-size: 21px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 20px;
}
.section-ld-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}
.section-ld-50 {
  padding: 50px 0;
}

.logo img {
  max-height: 50px;
}

/* Button */
.btn-base {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: center;
  display: inline-block;
  padding: 16px 35px;
  border-radius: 100px;
  transition: all 0.15s ease-in-out;
}
.btn-base:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .btn-base {
    padding: 12px 25px;
  }
}

.btn-size-md {
  font-size: 16px;
  line-height: 22px;
  padding: 10px 30px;
}

.btn-size-sm {
  padding: 10px 30px;
  font-size: 12px;
  line-height: 15px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-filled-black {
  background-color: #000;
  border: 1px solid #000;
  color: #fff !important;
  text-decoration: none !important;
}

.btn-filled-black:hover, .btn-filled-black:focus, .btn-filled-black:active {
  background-color: #000;
  border-color: #000;
  color: #fff !important;
}

.btn-filled-blue {
  background-color: #85D0F0;
  border: 1px solid #85D0F0;
  color: #000;
}

.btn-filled-blue:hover, .btn-filled-blue:focus, .btn-filled-blue:active {
  background-color: #85D0F0;
  border-color: #85D0F0;
  color: #000;
}

.btn-outlined-black {
  background-color: transparent;
  border: 1px solid #000;
  color: #333333;
}

.btn-outlined-black:hover, .btn-outlined-black:focus, .btn-outlined-black:active {
  background-color: transparent;
  border: 1px solid #000;
  color: #333333;
}

.btn-group-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.btn-group-wrap .btn-base {
  min-width: 150px;
}
@media (max-width: 768px) {
  .btn-group-wrap .btn-base {
    min-width: 130px;
  }
}
@media (max-width: 768px) {
  .btn-group-wrap {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 18px;
  }
  .section-ld {
    padding: 40px 0;
  }
  .section-ld-title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 15px;
  }
  .section-ld-sub-title {
    font-size: 18px;
  }
}
.post-item {
  margin-bottom: 20px;
}

.section-loadmore {
  text-align: center;
}

#mini-cart-count {
  position: fixed;
  right: 0;
  top: 150px;
  background-color: #85D0F0;
  padding: 10px;
  z-index: 100000;
  border-radius: 5px 0 0 5px;
}
#mini-cart-count a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
}
#mini-cart-count a .icon_cart {
  display: inline-block;
  background: url(../images/cart.png) no-repeat center;
  width: 26px;
  height: 22px;
  margin-right: 3px;
}
#mini-cart-count a .amount {
  display: inline-block;
}

.product-detail-section {
  border: 1px solid #E0E0E0;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.product-detail-section-header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.product-detail-section-header-thumb {
  width: 150px;
  flex-shrink: 0;
}
.product-detail-section-header-thumb img {
  max-width: 100%;
  border-radius: 10px;
}
.product-detail-section-header-content {
  width: 100%;
}
.product-detail-section-header-content-name {
  font-size: 21px;
  line-height: 25px;
  margin-bottom: 20px;
}
.product-detail-section-header-content-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.product-detail-section-header-content-middle-price {
  font-size: 38px;
  line-height: 46px;
  color: #EB5757;
}
.product-detail-section-header-content-middle-btn-wrap {
  display: flex;
  gap: 10px;
}

.woocommerce div.product .product-detail-section .woocommerce-tabs ul.tabs {
  padding: 0;
  margin: 0 0 10px 0;
}
.woocommerce div.product .product-detail-section .woocommerce-tabs ul.tabs li {
  border: none;
  padding: 0;
  background-color: transparent;
  margin: 0;
}
.woocommerce div.product .product-detail-section .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .product-detail-section .woocommerce-tabs ul.tabs li::after {
  content: none !important;
}
.woocommerce div.product .product-detail-section .woocommerce-tabs ul.tabs li a {
  padding: 15px 10px;
  font-weight: 400;
}
.woocommerce div.product .product-detail-section .woocommerce-tabs ul.tabs li.active a {
  font-weight: 700;
  line-height: 24px;
  border-bottom: 2px solid #000;
}
.woocommerce div.product .product-detail-section .woocommerce-tabs ul.tabs::before, .woocommerce div.product .product-detail-section .woocommerce-tabs ul.tabs::after {
  content: none !important;
}

.widget-area {
  margin-bottom: 30px;
}
.widget-area-box-wrap {
  border: 1px solid #E0E0E0;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
}
.widget-area-box-wrap .payments-list {
  justify-content: flex-start;
}
.widget-area-box-wrap .payments-list-item img {
  max-height: 45px;
}

#aboutSlider .about-slider-item {
  margin-bottom: 20px;
}
#aboutSlider .about-slider-item .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#aboutSlider .about-slider-item .about-logo {
  margin-bottom: 15px;
}
#aboutSlider .slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex !important;
  justify-content: center;
}
#aboutSlider .slick-dots li {
  margin: 0 7.5px;
}
#aboutSlider .slick-dots li button {
  background: transparent;
  padding: 0;
  box-shadow: none;
  width: 16px;
  height: 16px;
}
#aboutSlider .slick-dots li button::before {
  content: "";
  display: block;
  background: #3C3C3C;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  opacity: 1;
}
#aboutSlider .slick-dots li.slick-active button:before {
  background: #00E4D3;
}
#aboutSlider > .about-slider-item + .about-slider-item {
  display: none;
}

.contact-address {
  position: relative;
  padding-left: 36px;
  background-position: 2px 4px;
  background-repeat: no-repeat;
}
.contact-address.vn-address {
  background-image: url(https://moosocial.com/wp-content/themes/mooblogs/img/flag-vn.jpg);
}
.contact-address.en-address {
  background-image: url(https://moosocial.com/wp-content/themes/mooblogs/img/flag-en.jpg);
}

.single-product .section-single-title,
.single-product .section-single-thumbnail {
  display: none;
}

.row-404 {
  background-color: #85D0F0;
  border-radius: 10px;
}

/* Header */
#header {
  background-color: #000000;
}
#header.headerScrolling {
  top: -100px !important;
}
#header .header-cont {
  height: 80px;
  justify-content: center;
  display: flex;
  align-items: center;
}
#header .header-cont .header-menu-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
#header .header-cont .header-menu-list li.menu-item {
  position: relative;
  display: block;
  width: 100%;
}
#header .header-cont .header-menu-list li.menu-item a {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}
#header .header-cont .header-menu-list li.menu-item.current-menu-item > a, #header .header-cont .header-menu-list li.menu-item.current-menu-parent > a, #header .header-cont .header-menu-list li.menu-item:hover > a {
  border-radius: 10px;
  background-color: #85D0F0;
  color: #000;
}
#header .header-cont .header-menu-list li.menu-item.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
#header .menu-mobile {
  z-index: 9999;
  position: fixed;
  background-color: rgba(50, 50, 50, 0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
#header .menu-mobile .mobile-cont {
  display: block;
  width: 320px;
  background-color: #000;
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  z-index: 9999;
  padding: 15px 20px;
  left: -320px;
  transition: all 0.3s ease-in-out;
  overflow: auto;
}
#header .menu-mobile .mobile-cont .header-menu .main-header-menu {
  display: block;
  width: 100%;
  height: inherit;
}
#header .menu-mobile .mobile-cont .header-menu .main-header-menu .header-menu-list {
  flex-direction: column;
  align-items: unset;
}
#header .menu-mobile .mobile-cont .header-menu .main-header-menu .header-menu-list li.menu-item {
  padding-top: 15px;
  padding-bottom: 15px;
}
#header .menu-mobile.show {
  opacity: 1;
  visibility: inherit;
}
#header .menu-mobile.show .mobile-cont {
  left: 0;
}
#header .menu-mobile-btn {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}
#header .menu-mobile-btn .line {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  margin-bottom: 6px;
}
#header .menu-mobile .logo {
  display: block;
  margin-bottom: 20px;
}
#header .menu-mobile .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: black;
  font-size: 30px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#header .menu-mobile .header-menu-list {
  flex-direction: column;
  flex-direction: column;
  align-items: flex-start;
}
#header .header-menu-list .sub-menu li.menu-item.current-menu-item a, #header .header-menu-list .sub-menu li.menu-item:hover a {
  border-radius: 0;
}
@media (min-width: 992px) {
  #header .header-menu-list .sub-menu {
    margin: 0;
    padding: 0;
    position: absolute;
    min-width: 250px;
    top: calc(100% + 10px);
    right: 0;
    background-color: #000;
    box-shadow: 0 4px 6px -1px #eee, 0 2px 4px -2px #eee;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    list-style: none;
  }
  #header .header-menu-list .sub-menu::before {
    content: "";
    position: absolute;
    display: block;
    bottom: 100%;
    width: 100%;
    height: 10px;
  }
}
@media (max-width: 991px) {
  #header .header-menu-list .sub-menu li.menu-item.current-menu-item a, #header .header-menu-list .sub-menu li.menu-item:hover a {
    border-radius: 10px;
  }
}

/* Header Mobile*/
@media (min-width: 992px) {
  #header .menu-mobile-btn {
    display: none;
  }
}
@media (max-width: 991px) {
  #header .main-header-menu-desktop {
    display: none;
  }
  #header .header-menu-list .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 1;
    visibility: visible;
    padding-top: 10px;
  }
}
/* Footer */
.footer-main {
  background-color: #F2F2F2;
}
.footer-main-container {
  border-bottom: 1px solid #333333;
  padding-bottom: 20px;
}
.footer-main .col-footer .footer-title {
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 30px;
}
.footer-main .col-footer .menu-sub-menu-footer-container {
  margin-bottom: 5px;
}
.footer-main .col-footer .social-menu-list {
  display: flex;
  gap: 10px;
}
.footer-main .col-footer .contacts-list {
  display: flex;
  gap: 10px;
}
.footer-main .menu-footer-list {
  margin-bottom: 5px;
}
.footer-main .menu-footer-list li a {
  font-size: 16px;
  line-height: 30px;
  color: #000;
}
.footer-main .sub-menu-footer .container {
  padding-top: 20px;
}
.footer-main .sub-menu-footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 5px;
}
.footer-main .sub-menu-footer-list li {
  padding: 0 8px;
  position: relative;
}
.footer-main .sub-menu-footer-list li a {
  font-size: 16px;
  line-height: 30px;
  color: #000;
}
.footer-main .sub-menu-footer-list li:not(:last-child)::after {
  content: ".";
  position: absolute;
  right: -2.5px;
  bottom: 4px;
}

.form-custom .wpcf7 form .wpcf7-response-output {
  margin: 15px 0;
}

.form-custom form span.wpcf7-not-valid-tip {
  bottom: -22px;
  left: 0;
}

.form-custom input, .form-custom select {
  width: 100%;
  height: 50px;
  background: #FFFFFF;
  border: 1px solid #CACDCF;
  padding: 5px 10px;
}

.form-custom textarea {
  border: 1px solid #CACDCF;
  width: 100%;
}

.form-custom input[type=submit] {
  max-width: 125px;
  padding: 12px 35px;
  font-size: 16px;
  line-height: 24px;
  background-color: #FFFFFF;
  border: 1px solid #FF473E;
  color: #FF473E;
  text-align: center;
  display: inline-block;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.form-custom input[type=submit]:hover {
  background-color: #FF473E;
  color: #fff;
}

.form-footer input[type=email] {
  max-width: 250px;
  float: left;
}

.form-footer .your-email {
  float: left;
  margin-right: 10px;
}

.platforms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 50px;
  justify-content: center;
}
.platforms-list-item img {
  max-height: 32px;
}
@media (max-width: 575px) {
  .platforms-list-item img {
    max-height: 25px;
  }
}

.technologies-top-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .technologies-top-list {
    flex-direction: column;
  }
}

.technologies-bottom-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.technologies-bottom-list-item {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 10px;
}
.technologies-bottom-list-item-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #E0E0E0;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
}
.technologies-bottom-list-item-wrap-img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.technologies-bottom-list-item-wrap-img img {
  max-width: 100%;
  max-height: 100%;
}
.technologies-bottom-list-item-wrap-name {
  font-size: 21px;
  line-height: 25px;
  letter-spacing: 0em;
  word-break: break-word;
}
@media (max-width: 1199px) {
  .technologies-bottom-list-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .technologies-bottom-list-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.features-list-item {
  text-align: center;
  margin-top: 40px;
}
.features-list-item-wrap {
  padding: 0 15px;
}
.features-list-item-wrap-img {
  background: linear-gradient(90deg, #ECE9E6 0%, #FFFFFF 100%);
  border-radius: 100%;
  margin: 0 auto 15px;
  width: 88px;
  height: 88px;
  line-height: 88px;
}
.features-list-item-wrap-img img {
  max-width: 48px;
  width: 100%;
}
.features-list-item-wrap-title {
  font-weight: 700;
  line-height: 19px;
  margin-bottom: 10px;
}
.features-list-item-wrap-desc {
  margin: 0;
  color: #333;
}
@media (max-width: 768px) {
  .features-list-item {
    margin-top: 30px;
  }
}

.free-trial-section {
  padding: 100px 20px;
  border-radius: 20px;
  background: linear-gradient(90deg, #232526 0%, #414345 100%);
}
.free-trial-section-bottom {
  display: flex;
  gap: 10px 40px;
  justify-content: center;
}
.free-trial-section-bottom-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
@media (max-width: 768px) {
  .free-trial-section-bottom {
    flex-direction: column;
    align-items: center;
  }
}
.free-trial-section .btn-filled-blue {
  background-color: #66C7F4;
  border-color: #66C7F4;
}
.free-trial-section .btn-filled-blue:hover {
  background-color: #66C7F4;
  border-color: #66C7F4;
}

.talking-about-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.talking-about-list-item {
  flex: 1;
}
.talking-about-list-item-wrap {
  background-color: #F6F6F6;
  color: #333;
  padding: 50px;
  border-radius: 10px;
  height: 100%;
}
.talking-about-list-item-wrap-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.talking-about-list-item-wrap-desc {
  margin-bottom: 20px;
}
.talking-about-list-item-wrap-desc, .talking-about-list-item-wrap-review {
  font-size: 15px;
  line-height: 20px;
}
@media (max-width: 768px) {
  .talking-about-list {
    flex-direction: column;
  }
}

.faqs-list {
  padding-top: 20px;
}
.faqs-list-item {
  border-bottom: 1px solid #BDBDBD;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.faqs-list-item-question {
  color: #000;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.faqs-list-item-question:hover {
  color: #000;
  text-decoration: none;
}
.faqs-list-item-answer {
  font-size: 16px;
  margin-top: 10px;
  color: #333;
}

.package-list.row {
  margin-bottom: 60px;
  margin: 0 -15px;
}
.package-list.row .package-item {
  padding: 0 15px;
  display: flex;
  text-align: left;
}
.package-list.row .package-item .package-item-wrapper {
  background-color: #E0F5FF;
  color: #000;
  border-radius: 20px;
  padding: 40px 40px 120px;
  width: 100%;
  margin-bottom: 20px;
}
.package-list.row .package-item .package-item-wrapper .package-item-name {
  margin-bottom: 15px;
  font-weight: bold;
}
.package-list.row .package-item .package-item-wrapper .package-item-name a {
  color: #000;
}
.package-list.row .package-item .package-item-wrapper .package-item-price {
  display: inline-block;
  font-weight: bold;
  font-size: 60px;
  line-height: 73px;
  margin: 0;
}
.package-list.row .package-item .package-item-wrapper .price-tag {
  font-size: 16px;
  line-height: 19px;
}
.package-list.row .package-item .package-item-wrapper .package-item-desc {
  margin-top: 20px;
}
.package-list.row .package-item .package-item-wrapper .package-item-desc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.package-list.row .package-item .package-item-wrapper .package-item-desc ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
}
.package-list.row .package-item .package-item-wrapper .package-item-desc ul li::before {
  content: "";
  background-image: url(../images/icons/shaunsocial-black-check.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  left: 0;
}
.package-list.row .package-item .package-item-wrapper .package-item-desc > * {
  font-size: 20px;
}
.package-list.row .package-item .package-item-wrapper .package-item-btn {
  padding: 10px 35px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 120px);
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}
.package-list.row .package-item .package-item-wrapper .package-item-btn:hover {
  text-decoration: none;
}

.multi-channel-support-section {
  background-color: #F4F4F4;
  padding: 70px 50px;
  border-radius: 20px;
}
.multi-channel-support-section-badge {
  background-color: #219653;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  border-radius: 5px;
  padding: 10px;
  display: inline-block;
  margin-bottom: 10px;
}

.payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.demos-list {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}
.demos-list-item {
  flex: 1;
}
.demos-list-item-wrap {
  background-color: #fff;
  border: 1px solid #E0E0E0;
  padding: 20px;
  border-radius: 10px;
}

.section-demo {
  position: relative;
}
.section-demo::after {
  content: "";
  background: #85D0F0;
  position: absolute;
  width: 100%;
  height: 38%;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 575px) {
  .section-demo::after {
    height: 25%;
  }
}

.apps-list {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.apps-list-item {
  max-height: 75px;
}
.apps-list-item img {
  max-height: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .apps-list {
    gap: 10px;
  }
}

.feature-tabs.nav-tabs {
  border: none;
  justify-content: center;
  gap: 20px;
}
.feature-tabs.nav-tabs .nav-link {
  background-color: transparent;
  border: 1px solid #000;
  color: #333;
  border-radius: 100px;
  font-size: 16px;
  line-height: 24px;
  padding: 15px 40px;
  text-align: center;
  min-width: 150px;
}
.feature-tabs.nav-tabs .nav-link.active {
  background-color: #000;
  color: #fff;
}
@media (max-width: 768px) {
  .feature-tabs.nav-tabs .nav-link {
    padding: 12px 25px;
    min-width: 130px;
  }
}
@media (max-width: 768px) {
  .feature-tabs.nav-tabs {
    gap: 10px;
  }
}

.feature-tabs-list-item {
  margin: 50px 0;
}
.feature-tabs-list-item-title {
  margin-top: 30px;
  margin-bottom: 10px;
}
.feature-tabs-list-item-desc {
  font-size: 15px;
  line-height: 20px;
  color: #333;
}
@media (max-width: 768px) {
  .feature-tabs-list-item {
    margin-bottom: 30px;
  }
}

.teams-list-item {
  display: flex;
  align-items: center;
  margin-top: 100px;
}
.teams-list-item-avatar {
  width: 200px;
  flex-shrink: 0;
}
.teams-list-item-avatar img {
  max-width: 100%;
  border-radius: 100%;
}
.teams-list-item-body {
  padding: 0 15px 0 50px;
}
.teams-list-item-body-name {
  font-size: 38px;
  line-height: 46px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .teams-list-item-body-name {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 10px;
  }
}
.teams-list-item-body-position {
  font-size: 21px;
  line-height: 25px;
  color: #EB5757;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .teams-list-item-body-position {
    margin-bottom: 10px;
  }
}
.teams-list-item-body-desc {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .teams-list-item-body {
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .teams-list-item {
    flex-direction: column;
    text-align: center;
    margin-top: 30px;
  }
}

.affordable-rate-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  color: #fff;
  border-radius: 20px;
  padding: 50px;
  gap: 50px;
}

.services-list {
  margin-left: -10px;
  margin-right: -10px;
}
.services-list-item {
  padding-left: 10px;
  padding-right: 10px;
}
.services-list-item-wrap {
  border: 1px solid #E0E0E0;
  border-radius: 20px;
  padding: 10px;
  height: 100%;
}

.note-section {
  background-color: #FFF8E4;
  border-radius: 20px;
  padding: 20px;
}

.section-ld .woocommerce-MyAccount-navigation {
  width: 250px;
}
.section-ld .woocommerce-MyAccount-navigation .my-account-wrap {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.section-ld .woocommerce-MyAccount-navigation .my-account-wrap .my-account-nav li {
  margin-bottom: 10px;
}
.section-ld .woocommerce-MyAccount-navigation .my-account-wrap .my-account-nav li a {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  text-decoration: none;
}
.section-ld .woocommerce-MyAccount-navigation .my-account-wrap .my-account-nav li.is-active a {
  font-weight: 700;
}
@media (max-width: 768px) {
  .section-ld .woocommerce-MyAccount-navigation {
    width: 100%;
  }
}
.section-ld .woocommerce-MyAccount-content {
  width: calc(100% - 270px);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 20px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 24px;
  color: #333;
}
.section-ld .woocommerce-MyAccount-content a {
  color: #333;
  text-decoration: underline;
}
.section-ld .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .btn-base {
  margin-right: 5px;
}
@media (max-width: 768px) {
  .section-ld .woocommerce-MyAccount-content {
    width: 100%;
  }
}
.section-ld form .form-row label {
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}
.section-ld form .form-group {
  margin-bottom: 10px;
}
.section-ld table {
  color: #000;
  border-collapse: collapse !important;
  border: none !important;
  margin: 0;
  border-radius: 0;
}
.section-ld table thead th {
  border: none;
  background-color: #F2F2F2;
}
.section-ld table td, .section-ld table th {
  padding: 10px !important;
  border-top: none !important;
  border-bottom: 1px solid #000000;
  font-weight: 400;
}
.section-ld table td a, .section-ld table th a {
  text-decoration: none;
  font-weight: 700;
}
.section-ld .woocommerce-address-fields, .section-ld .woocommerce-billing-fields, .section-ld .woocommerce-additional-fields, .section-ld .woocommerce-shipping-fields {
  display: flex;
  flex-wrap: wrap;
}
.section-ld .woocommerce-address-fields__field-wrapper, .section-ld .woocommerce-billing-fields__field-wrapper, .section-ld .woocommerce-additional-fields__field-wrapper, .section-ld .woocommerce-shipping-fields__field-wrapper {
  width: 100%;
  margin-right: -5px;
  margin-left: -5px;
}
.section-ld .woocommerce-address-fields .form-row, .section-ld .woocommerce-billing-fields .form-row, .section-ld .woocommerce-additional-fields .form-row, .section-ld .woocommerce-shipping-fields .form-row {
  padding: 0 5px !important;
  margin-bottom: 10px;
  width: 100% !important;
}
.section-ld .woocommerce-address-fields .form-row-first, .section-ld .woocommerce-address-fields .form-row-last, .section-ld .woocommerce-billing-fields .form-row-first, .section-ld .woocommerce-billing-fields .form-row-last, .section-ld .woocommerce-additional-fields .form-row-first, .section-ld .woocommerce-additional-fields .form-row-last, .section-ld .woocommerce-shipping-fields .form-row-first, .section-ld .woocommerce-shipping-fields .form-row-last {
  width: 50% !important;
}
.section-ld .woocommerce-address-fields .form-row .woocommerce-input-wrapper, .section-ld .woocommerce-billing-fields .form-row .woocommerce-input-wrapper, .section-ld .woocommerce-additional-fields .form-row .woocommerce-input-wrapper, .section-ld .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper {
  display: block;
  width: 100%;
}
.section-ld .woocommerce-address-fields .form-row .woocommerce-input-wrapper input, .section-ld .woocommerce-billing-fields .form-row .woocommerce-input-wrapper input, .section-ld .woocommerce-additional-fields .form-row .woocommerce-input-wrapper input, .section-ld .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper input {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.section-ld .woocommerce-address-fields .form-row .woocommerce-input-wrapper textarea, .section-ld .woocommerce-billing-fields .form-row .woocommerce-input-wrapper textarea, .section-ld .woocommerce-additional-fields .form-row .woocommerce-input-wrapper textarea, .section-ld .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper textarea {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.section-ld .woocommerce-address-fields .form-row .woocommerce-input-wrapper .select2-container--default, .section-ld .woocommerce-billing-fields .form-row .woocommerce-input-wrapper .select2-container--default, .section-ld .woocommerce-additional-fields .form-row .woocommerce-input-wrapper .select2-container--default, .section-ld .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper .select2-container--default {
  vertical-align: unset;
}
.section-ld .woocommerce-address-fields .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single, .section-ld .woocommerce-billing-fields .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single, .section-ld .woocommerce-additional-fields .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single, .section-ld .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 4px 10px 4px 4px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.section-ld .woocommerce-address-fields .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow, .section-ld .woocommerce-billing-fields .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow, .section-ld .woocommerce-additional-fields .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow, .section-ld .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 5px;
}
.section-ld .woocommerce-address-fields .screen-reader-text, .section-ld .woocommerce-billing-fields .screen-reader-text, .section-ld .woocommerce-additional-fields .screen-reader-text, .section-ld .woocommerce-shipping-fields .screen-reader-text {
  height: auto;
  position: unset !important;
  width: 100%;
  clip: unset;
  overflow: auto;
  margin: 0 0 5px 0;
  clip-path: unset;
}
@media (max-width: 768px) {
  .section-ld {
    width: 100%;
  }
}

.section-form-page {
  border: 1px solid #E0E0E0;
  padding: 30px;
  border-radius: 10px;
  background-color: #ffffff;
  max-width: 768px;
  margin: auto;
  font-size: 16px;
  color: #000000;
  font-weight: normal;
}
.section-form-page-head {
  font-size: 20px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 10px;
}
.section-form-page-title {
  padding: 10px;
  background-color: #F2F2F2;
}

.cloud-checkout-box {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 20px;
  border-radius: 10px;
}

.addons-list {
  margin: 0 -10px;
}
.addons-list-item {
  padding: 10px;
}
.addons-list-item-wrapper {
  display: flex;
  padding: 20px;
  border-radius: 10px;
  gap: 20px;
  border: 1px solid #DDDDDD;
  height: 100%;
}
.addons-list-item-wrapper-thumb {
  width: 150px;
  flex-shrink: 0;
}
.addons-list-item-wrapper-thumb img {
  max-width: 100%;
  border-radius: 10px;
}
@media (max-width: 1200px) {
  .addons-list-item-wrapper-thumb {
    width: 150px;
  }
}
.addons-list-item-wrapper-content {
  color: #000;
  width: 100%;
}
.addons-list-item-wrapper-content-name {
  font-size: 21px;
  line-height: 25px;
  color: #000;
  margin-bottom: 20px;
  display: block;
}
.addons-list-item-wrapper-content-name:hover {
  color: #000;
}
.addons-list-item-wrapper-content-desc {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.addons-list-item-wrapper-content-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.addons-list-item-wrapper-content-footer-price {
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
  color: #EB5757;
}

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