@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
:root {
  --primary-color: #05046a;
  --secondary-color: #8ab936;
  --text-color: #1a1818;
  --main-font: "Inter", sans-serif;
  --off-white: #f5f7f7;
}
* {
  box-sizing: border-box;
}
html,
body {
  padding: 0;
  margin: 0;
}
.container {
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--main-font);
}
.small_container {
  max-width: 1140px;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.left_align {
  text-align: left !important;
}
.text_center {
  text-align: center;
}
.mt_60 {
  margin-top: 60px
}
.pt-0 {
  padding-top: 0 !important;
}
.gap-20 {
  row-gap: 20px;
}
.col-20 {
column-gap: 20px;
}
.custom_logo img {
  max-width: 140px;
}
.site-header.stickyHeader {
  position: sticky;
  animation: headerAnim 0.3s linear;
  top: 0;
}
.toggle_menu {
  display: none;
}
.main_menu .menu-item {
  padding: 10px;
}
.main_menu .menu-item a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
}
.main_menu .menu-item:hover a {
  color: var(--secondary-color);
}
#masthead {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  z-index: 999;
}
.home_banner {
  width: 100%;
  height: calc(100vh - 100px);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.home_banner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.home_banner .row,
.home_banner .container {
  height: 100%;
}
.banner_content {
  display: flex;
  align-items: center;
}
.banner_content_wrap h3 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.banner_content_wrap h1 {
  font-size: 82px;
  line-height: 92px;
  margin: 0;
  color: #fff;
}

.about_img_col {
  width: calc(50% - 30px);
}

.about_content_col {
  width: calc(50% - 30px);
  margin-left: 60px;
}

.about_us {
  padding: 100px 0;
}

.about_img_col img {
  border-radius: 20px;
  box-shadow: 0 64px 200px rgba(0, 0, 0, 0.3);
}
.about_content_col p {
  font-size: 20px;
  line-height: 36px;
  color: var(--text-color);
}
.btn_primary {
  text-decoration: none;
  background: var(--primary-color);
  color: #fff;
  padding: 16px 50px;
  border-radius: 40px;
  transition: all 0.3s;
  border: 1px solid var(--primary-color);
  display: inline-block;
}

.btn_primary:visited {
  color: #fff;
}

.btn_primary:hover {
  background: #fff;
  color: var(--primary-color);
}

.btn_secondary {
  text-decoration: none;
  background:#fff;
  color: var(--primary-color);
  padding: 16px 50px;
  border-radius: 40px;
  transition: all 0.3s;
  border: 1px solid var(--primary-color);
  display: inline-block;
}

.btn_secondary:hover {
  background: var(--primary-color);
  color: #fff;
}


.single_course {
  width: calc(33.33% - 15px);
}
.single_course_qrap {
  display: block;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.single_course_content {
  padding: 40px 20px;
}
.single_course_content h3 {
  margin-top: 0;
}

.single_course_img {
  display: block;
  height: 300px;
  overflow: hidden;
}

.single_course_content h3 a {
    color: inherit;
    text-decoration: none;
}

.single_course_content h3 a:hover {
  color: var(--secondary-color);
}

.single_course_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.courses {
  padding: 100px 0;
  background-color: var(--off-white);
}

.courses .row {
  margin-top: 60px;
}

.section_title {
  text-align: center;
  font-size: 44px;
  line-height: 120%;
  margin-top: 0;
  margin-bottom: 40px;
}

.why_sec {
    padding: 100px 0;
    background: var(--off-white);
}

.why_us_single {
  width: calc(25% - 20px);
  background: var(--primary-color);
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: inset 18px 18px 36px #2e2c6a, inset -18px -18px 36px #5654c8;
  transition: all .3s;
}

.why_us_single:hover {
    box-shadow: inset -18px -18px 36px #2e2c6a, inset 18px 18px 36px #5654c8;
}

.why_us_single img {
  max-width: 120px;
}

.why_us_single h3 {
  color: #fff;
  font-size: 22px;
}

.we_offers_sec {
  padding: 120px 0;
}

.offers_col {
  width: calc(50% - 20px);
}

.sub_heading {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 2.1em;
}

.offers_col .section_title {
  line-height: 1em;
  font-size: 2.941em;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--text-color);
}

.offers_col p {
  font-size: 17px;
  padding: 0 11% 0 0;
  line-height: 1.8;
  letter-spacing: 0.5px;
  color: var(--text-color);
}

.single_offer_block {
  padding: 73px 15px;
  text-align: center;
  color: var(--text-color);
  border: 1px solid #DADEDF;
  position: relative;
  transition: all .3s;
}

.single_offer_block:hover {
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.offers_list_block {
  padding: 0 15px;
}

.offers_inner_col {
  width: 50%;
}

.single_offer_block + .single_offer_block {
  margin-top: 30px;
}

.offers_inner_col.first .offers_list_block {
  margin-top: 30px;
}

.single_offer_block img {
  width: 4em;
}

.single_offer_block h3 {
  margin-top: 1.3em;
  font-size: 1.294em;
  line-height: 1.2em;
  font-weight: 600;
}

section.cta_sec {
  padding: 100px 0;
}

.cta_sub_heading {
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 1px;
  margin-top: 0;
  position: relative;
}

.cta_sub_heading:before {
  content: '';
  position: absolute;
  width: 200px;
  height: 4px;
  background: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.cta_heading {
  margin-top: 0;
  margin-bottom: 60px;
  font-size: 48px;
  color: var(--text-color);
  font-weight: 500;
}

.site_footer {
  background-color: var(--primary-color);
  padding: 20px 0;
}

.page {
  margin: 0;
}

.site_footer h4 {
  color: #fff;
  font-weight: 500;
}

.archive_banner {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.archive_banner h1 {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 32px;
    line-height: 130%;
    z-index: 1;
    font-weight: 500;
}

.archive_banner:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

section.contact_sc {
  padding: 100px 0;
}

.single_contact_info_wrap {
  width: 33.33%;
  padding-right: 20px;
  min-height: 325px;
}

.single_contact_info {
  padding: 30px;
  border: 1px solid #DADEDF;
  text-align: center;
  height: 100%;
}

.social_icon i {
  font-size: 50px;
  color: var(--text-color);
}

.social_info h3 {
  font-size: 1.588em;
  line-height: 1.2em;
  font-weight: 600;
  color: var(--text-color);
}

.social_info h4 {
  font-size: 17px;
  line-height: 1.6em;
  color: #6C6F73;
  font-weight: 400;
}

.social_info a {
  text-decoration: none;
  font-size: 17px;
  line-height: 1.6em;
  color: #6C6F73;
  font-weight: 400;
}
.contact_col {
  width: 50%;
}
.bg_col {
  background: #F2F6F7;
  padding: 40px;
}
.wpcf7-form-control-wrap input, .wpcf7-form-control-wrap textarea {
  padding: 12px 30px;
  line-height: 1.5em;
  border: 1px solid #e2e2e2;
  border-radius: 26px;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
  text-decoration: none;
  background: var(--primary-color);
  color: #fff;
  padding: 16px 50px;
  border-radius: 40px;
  transition: all 0.3s;
  border: 1px solid var(--primary-color);
  display: inline-block;
  cursor: pointer;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  background: #fff;
  color: var(--primary-color);
}

.whatsapp_btn {
  position: fixed;
  bottom: 120px;
  right: 20px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.whatsapp_btn a {
  color: inherit;
  font-size: 40px;
}

.verify_sec {
  min-height: calc(100vh - 607px);
}

.certificate_form label {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-color);
}

.certificate_form {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
}

.certificate_form form {
  width: 100%;
}

.number_row input {
  width: 100%;
  position: relative;
  height: 45px;
}

.number_row button {
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  padding: 0;
  color: #fff;
  background: var(--primary-color);
  border: none;
}

.number_row {
  position: relative;
  margin-top: 10px;
}

.single_certificate_result {
  display: flex;
  border: 1px solid var(--text-color);
  flex-wrap: wrap;
}

.student_info {
  width: 30%;
}

.student_certificate {
  width: 70%;
}
.student_certificate img {
  height: 100%;
  object-fit: contain;
}

.student_info {
  padding: 20px;
}

.certificate_wrapper {
  margin-top: 50px;
  border: 1px solid var(--primary-color);
}

.certificate_wrapper h2 {
  text-align: center;
  margin: 0;
  padding: 20px;
  background: var(--primary-color);
  color: #fff;
}

.certificate_details {
  padding: 20px;
}

.certificate_details p {
  border-bottom: 1px solid var(--primary-color);
  margin: 10px 0;
  padding: 10px;
}

.certificate_view_btn {
  margin-top: 20px;
}

.solution-home-banner {
  height: 760px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.solution-home-banner:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--primary-color);
  opacity: 0.6;
  z-index: 0;
}

.solution-home-banner .container {
  width: 100%;
}

.solution-home-banner .banner-content {
  z-index: 1;
  position: relative;
}

.solution-home-banner .banner-content h1 {
  font-size: 72px;
  color: #fff;
  line-height: 120%;
  margin: 0;
}

.solution-home-banner .banner-content p {
  font-size: 32px;
  line-height: 120%;
  margin-bottom: 0;
  color: #fff;
}

.top-selling-products {
  padding: 100px 0;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.single-product {
  background: #fff;
  border: 1px solid var(--secondary-color);
  border-radius: 20px;
  overflow: hidden;
}

.single.single-product {
    overflow: unset;
}

.product-meta {
  padding: 20px;
  height: 100%;
  background: var(--secondary-color);
}

.section-title.shop-title {
  font-size: 34px;
  line-height: 130%;
  color: var(--secondary-color);
}

.section-title.shop-title.light {
  color: var(--off-white);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-image {
  height: 240px;
  padding: 15px;
}

.product-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--primary-color);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.product-price {
  display: block;
  font-size: 16px;
  color: var(--primary-color);
  font-weight: bold;
}

.product-link {
  text-decoration: none;
}

.add-to-cart {
  margin-top: 10px;
}

.product-cat-sec {
  padding: 100px 0;
  /* background: #f5f5f5; */
}

/* .product-categories {
  display: grid;
  grid-template-columns: repeat(5, minmax(250px, 1fr));
} */

.woocommerce span.onsale {
    min-width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
}

.woocommerce div.product form.cart .button {
    background-color: var(--primary-color);
    height: 45px;
    padding-left: 30px;
    padding-right: 30px;
}

.woocommerce div.product form.cart {
    display: flex;
    align-items: center;
}

.woocommerce div.product form.cart div.quantity {
    height: 45px;
}

.woocommerce div.product form.cart div.quantity input {
    height: 100%;
}

.single-category {
  display: block;
  text-decoration: none;
  text-align: center;
}

.single-category .category-img {
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 50%;
  padding: 40px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-category .category-title {
  color: var(--primary-color);
  margin-bottom: 0;
  font-size: 20px;
  line-height: 130%;
}

.services-sec {
  background-color: var(--primary-color);
  padding: 100px 0;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.single-service {
  width: calc(25% - 23px);
  background: var(--off-white);
  border-radius: 20px;
  border: 5px solid var(--off-white);
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
}

.single-service .service-img {
  height: 230px;
  width: 100%;
  overflow: hidden;
}

.single-service .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.single-service .services-meta {
  padding: 40px 20px 20px;
  position: relative;
}

.single-service .services-meta h3 {
  margin: 0;
  font-size: 20px;
}

.single-service:hover .service-img img {
  transform: scale(1.04);
}

.arrow {
  width: 40px;
  height: 40px;
  display: flex
;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pb-40 {
  padding-bottom: 60px;
}

.service-details {
    padding: 100px 0;
}

.services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-left-col {
    width: 370px;
    position: sticky;
    top: 100px;
    height: 100%;
}

.service-right-col {
    width: 100%;
    max-width: 1180px;
}

.service-left-col ul {
    padding: 0;
    margin: 0;
}

.service-left-col ul li {
    list-style: none;
    background: #fafafa;
    border: 1px solid var(--primary-color);
}

.service-left-col ul li a {
    text-decoration: none;
    color: var(--primary-color);
    padding: 7px 10px;
    display: block;
}

.service-left-col ul li:not(:last-of-type) {
    margin-bottom: 10px;
}

.service-left-col ul li.active {
    background: var(--primary-color);
}

.service-left-col ul li.active a {
    color: #fff;
}

.service-img {
    width: 100%;
    height: 460px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content ul, .service-content ol {
    margin: 0;
}

#shop-products.loading {
    opacity: 0.5;
    pointer-events: none;
}

section.main-product-wrapper {
    padding: 60px 0;
}

mark, ins {
    background: transparent;
}

.ajax-pagination-wrap {
    text-align: center;
    margin-top: 40px;
}

.ajax-pagination-wrap .page-numbers {
    display: flex;
    padding: 10px 16px;
    margin: 0 5px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #05046a;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.ajax-pagination-wrap .page-numbers li {
  list-style: none;
}

/* .ajax-pagination-wrap .page-numbers:hover {
    background-color: #05046a;
    color: #fff;
} */

.ajax-pagination-wrap .page-numbers.current {
    background-color: #8ab936;
    color: #fff;
    border-color: #8ab936;
    cursor: default;
}

.ajax-pagination-wrap .page-numbers.prev,
.ajax-pagination-wrap .page-numbers.next {
    font-weight: 600;
    background-color: #1A1818;
    color: #fff;
    border-color: #1A1818;
}

.ajax-pagination-wrap .page-numbers.prev:hover,
.ajax-pagination-wrap .page-numbers.next:hover {
    background-color: #8ab936;
    border-color: #8ab936;
}
.slider-arrows {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.slider-arrows .nav-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}

.slider-arrows .nav-arrow i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrows .nav-arrow.slick-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.product-categories .slick-dots {
    margin: 30px 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-categories .slick-dots li button {
    font-size: 0;
    border: none;
}

.product-categories .slick-dots li {
    display: inline-flex;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    transition: all .3s;
    cursor: pointer;
}

.product-categories .slick-dots li.slick-active {
    background: var(--primary-color);
}

.insta a {
  color: var(--text-color);
  font-size: 30px;
}

a.popmake-299.btn_primary.pum-trigger {
    margin-bottom: 20px;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    color: var(--primary-color);
}

.woocommerce div.product .product_title {
    color: var(--text-color);
}

.common-sec {
  padding: 100px 0;
  min-height: 100vh;
}

.wc-block-cart .wc-block-cart__submit-container a.wc-block-components-button {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

.wc-block-components-sidebar-layout .wc-block-components-main table {
    border: 1px solid #ddd;
}

.wc-block-components-sidebar-layout .wc-block-components-main table tr.wc-block-cart-items__header th {
  background: #f9fafb !important;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  text-transform: none;
  font-size: 16px;
}

table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-product {
    visibility: visible;
    font-size: 0 !important;
}

.wp-block-woocommerce-cart-order-summary-block {
    border: 1px solid #ddd;
}

.wp-block-woocommerce-cart-order-summary-block .wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title {
    background: #f9fafb !important;
    padding: 20px;
    font-size: 20px;
    font-family: var(--main-font);
    text-transform: none;
}

.insta-wrapper {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.insta-wrapper .header-cart .cart-contents {
    position: relative;
}

.insta-wrapper .header-cart .cart-contents svg {
    width: 32px;
}

.insta-wrapper .header-cart .cart-contents  .cart-count {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    position: absolute;
    font-size: 10px;
    top: -10px;
    right: -10px;
}

form.wc-block-components-form.wc-block-checkout__form {
    border: 1px solid #ddd;
}

form.wc-block-components-form.wc-block-checkout__form .screen-reader-text {
}

.wc-block-components-form .wc-block-components-checkout-step .wc-block-components-checkout-step__heading {
    margin: 0;
    padding: 16px;
    background: #f9fafb;
}

.wc-block-components-checkout-step__container {
    padding: 16px;
}

.wc-block-components-form .wc-block-components-checkout-step {
    margin: 0 !important;
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {
    margin: 0;
    padding: 16px;
    background: #f9fafb;
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title p {
    margin: 0 !important;
}

.wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
    margin: 0;
    padding: 16px;
}

.is-large .wc-block-checkout__sidebar {
    margin-top: 0;
}

.wc-block-components-checkout-return-to-cart-button {
    color: var(--text-color);
    margin-left: 16px;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    background: var(--primary-color);
    color: #fff;
}

@keyframes headerAnim {
  0% {
    top: -100px;
  }
  100% {
    top: 0;
  }
}

@media (max-width: 767px) {
  .column {
    flex: 1 1 100%;
  }
  .custom_logo img {
    max-width: 180px;
  }
  .toggle_menu {
    display: block;
  }
  .main_menu {
    position: fixed;
    background: #fff;
    width: 100%;
    height: calc(100vh - 93px);
    top: 93px;
    left: -100%;
    z-index: 9999;
    padding: 40px;
    border-top: 4px solid var(--primary-color);
    transition: all .4s ease-in-out;
}

.main_menu.navbar_activated {
  left: 0;
}

.main-navigation ul {
    display: inline-block;
}
.navbar_collapsed {
  overflow: hidden;
}
.menu-toggle {
  display: none !important;
}
.banner_content_wrap {
  text-align: center;
}
.banner_content_wrap h3 {
  font-size: 20px;
}
.banner_content_wrap h1 {
  font-size: 40px;
  line-height: 140%;
}
.offers_col {
  width: 100%;
  text-align: center;
}
.offers_col .section_title {
  font-size: 2em;
}
.section_title.left_align {
  text-align: center !important;
}
.offers_col p {
  font-size: 16px;
  padding: 0;
}
.single_offer_block {
  padding: 40px 15px;
}
.offers_inner_col {
  width: 100%;
}
.we_offers_sec {
  padding: 50px 0;
}
.offers_list_block {
  margin-top: 30px;
}
section.courses {
  padding: 50px 0;
}
.section_title {
  font-size: 28px;
}
.single_course {
  width: 100%;
}
.single_course:not(:first-child) {
  margin-top: 20px;
}
.about_us {
  padding: 50px 0;
}
.about_img_col {
  width: 100%;
}
.about_content_col {
  width: 100%;
  margin-left: 0;
  text-align: center;
}
.why_us_single {
  width: 100%;
}
.why_us_single:not(:first-child) {
  margin-top: 20px;
}
.about_content_col p {
  font-size: 16px;
  line-height: 150%;
  text-align: center;
}
.btn_primary, .btn_secondary{
  padding: 8px 25px;
  font-size: 14px;
}
.why_sec {
  padding: 50px 0;
}
.why_us_single img {
  max-width: 75px;
}
.why_us_single h3 {
  font-size: 20px;
}
section.cta_sec {
  padding: 50px 0;
}
.cta_sub_heading {
  font-size: 20px;
}
.cta_heading {
  font-size: 28px;
  margin-bottom: 30px;
}
.single_contact_info_wrap {
  width: 100%;
  padding-right: 0;
}
.single_contact_info_wrap + .single_contact_info_wrap, .single_contact_info_wrap {
  margin-top: 20px;
  min-height: max-content;
}
.single_contact_info {
  padding: 20px;
}
.contact_col {
  width: 100%;
}
.archive_banner h1 {
font-size: 24px;
width: calc(100% - 40px);
}
.service-right-col {
    width: 100%;
}

.service-left-col {
    position: relative;
    top: 0;
    margin-bottom: 40px;
}

.service-img {
    height: 230px;
}
.service-details {
  padding: 40px 0;
}
.single-category {
    width: calc(50% - 20px);
}

.product-categories {
	row-gap: 20px;
}
.solution-home-banner .banner-content h1 {
    font-size: 42px;
}

.solution-home-banner .banner-content p {
    font-size: 22px;
}

.solution-home-banner {
    height: auto;
    padding: 70px 20px;
}
.product-cat-sec {
    padding: 40px 0;
}
.single-service {
    width: 100%;
}
.single-category .category-img {
    width: 100px;
    height: 100px;
    padding: 30px;
}
.slider-arrows {
  margin-bottom: 20px;
}
.product-cat-sec .section-title.shop-title {
    margin-top: 0;
}
.section-title.shop-title {
    font-size: 26px;
}
.woocommerce div.product .product_title {
    overflow-wrap: break-word;
    font-size: 24px;
}
.woocommerce-product-details__short-description ul {
    margin: 0;
}
.insta a {
  font-size: 20px;
}
.common-sec {
  padding: 50px 0;
}
}