/*
Theme Name: GVM
Author: Cloud392
Author URI: https://cloud392.com/
Description: This is a theme for Global Vision Migration
Version: 1.0.0
Text Domain: gvm
*/
:root {
  /*color*/
  --primary-color: #ff9b0b;
  --secondary-color: #323637;
  --light-white-color: #f7f7f7;
  --light-black-color: #333335;
  --light-gray-color: #545454;

  /* fonts size */
  --lg-sz: 52px;
  --md-sz: 32px;
  --sm-sz: 21px;
  --xs-sz: 18px;
  --xxs-sz: 14px;

  /* Font Family */
  --primary-font: "Helvetica";
  --secondary-font: "Poppins", sans-serif;

  /*timer*/
  --transition-2-effect: all 0.3s ease;

  /* Gaps */
  --default-gaps: 100px;
  --sm-default-gaps: 60px;
}

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--secondary-color);
  font-family: var(--primary-font);
}

img {
  max-width: 100%;
}

.img-cover {
  width: 100%;
  height: 100%;
}

a,
button,
input[type="submit"] {
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  cursor: pointer;
}

a,
button,
span {
  display: inline-block;
  outline: none;
}

a,
a:hover {
  text-decoration: none;
}

.header-info ul,
#mega-menu-wrap-primary #mega-menu-primary,
.list-sty-1 ul,
.footer-menu-list ul,
.header-social-links ul,
.list-none {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-font);
  font-weight: 400;
}

/*----------   fonts links css   ----------*/

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.woff2") format("woff2"),
    url("fonts/Poppins-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Bold.woff2") format("woff2"),
    url("fonts/Poppins-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Medium.woff2") format("woff2"),
    url("fonts/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica";
  src: url("fonts/Helvetica.woff2") format("woff2"),
    url("fonts/Helvetica.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "icomoon";
  src: url("fonts/icomoon.eot?dxph4n");
  src: url("fonts/icomoon.eot?dxph4n#iefix") format("embedded-opentype"),
    url("fonts/icomoon.ttf?dxph4n") format("truetype"),
    url("fonts/icomoon.woff?dxph4n") format("woff"),
    url("fonts/icomoon.svg?dxph4n#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="ic-"],
[class*=" ic-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ic-arrow:before {
  content: "\e908";
}
.ic-tick:before {
  content: "\e909";
}
.ic-list-arrow:before {
  content: "\e906";
}
.ic-step:before {
  content: "\e907";
}
.ic-Phone:before {
  content: "\e905";
}
.ic-Right-arrow:before {
  content: "\e900";
}
.ic-Left-arrow:before {
  content: "\e901";
}
.ic-dropdown:before {
  content: "\e902";
}
.ic-Email:before {
  content: "\e903";
}
.ic-Hours:before {
  content: "\e904";
}
.ic-Close:before {
  content: "\e90b";
}

/*----------   End fonts links css   ----------*/

/*----------   Custom CSS sty   ----------*/

.bg-holder {
  background-size: cover;
  background-repeat: no-repeat;
}

.content-wrap {
  max-width: 795px;
  margin: 0 auto;
  float: none !important;
}
.row-10 > * {
  padding-left: 10px;
  padding-right: 10px;
}
.row-10 {
  margin-left: -10px;
  margin-right: -10px;
}

/* Gaps css */

.default-gaps {
  padding: var(--default-gaps) 0;
}
.top-default-gaps {
  padding-top: var(--default-gaps);
}
.bottom-default-gaps {
  padding-bottom: var(--default-gaps);
}

/* End Gaps css */

/* Color css */

.primary-bg {
  background: var(--primary-color);
}

.secondary-bg {
  background: var(--secondary-color);
}

.light-white-bg {
  background: var(--light-white-color);
}

.light-gray-bg {
  background: var(--light-gray-color);
}

.light-black-bg {
  background: var(--light-black-color);
}

.white-bg {
  background: var(--white);
}

.primary-color {
  color: var(--primary-color);
}

.secondary-color {
  color: var(--secondary-color);
}

.light-gray-color {
  color: var(--light-gray-color);
}

.light-white-color {
  color: var(--light-white-color);
}

.light-black-color {
  color: var(--light-black-color);
}

.white-color {
  color: var(--white);
}

/* End Color css */

/* Animation css */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/* End Animation css */

.primary-fonts {
  font-family: var(--primary-font) !important;
}

.secondary-fonts {
  font-family: var(--secondary-font) !important;
}

/* button sty css */
.box-btn .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern,
.box-btn a,
.consulation-page-section .contact-form .cf7mls-btns button,
.consulation-page-section .contact-form #cf7mls-back-btn-cf7mls_step-5,
.consulation-page-section .contact-form .wpcf7-form-control.wpcf7-submit,
.consulation-page-section .contact-form .cf7mls_back,
.booking-btns a.box-btn.transparent-btn,
.banner-slider .caption .button-groups a.box-btn,
.contact-form .box-btn {
  font-size: 16px;
  background: var(--primary-color) !important;
  padding: 12px 30px !important;
  border: 1px solid var(--primary-color) !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  color: #fff !important;
  border-radius: 30px !important;
  min-width: 210px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
}
.site-header .box-btn a {
  padding: 12px 18px !important;
}
.site-header .bottom-header .mega-current_page_item.box-btn a:before,
.site-header .bottom-header .box-btn a:hover:before {
  display: none !important;
}
.booking-btns a.box-btn.transparent-btn {
  padding: 8px 30px !important;
  font-size: 14px;
}
.box-btn .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern i,
.banner-slider .caption .button-groups a.box-btn i,
.box-btn i {
  padding-right: 10px;
}

.box-btn.white .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern,
.box-btn.white a {
  background: var(--white) !important;
  color: var(--primary-color) !important;
}

.box-btn.white .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern,
.box-btn.white a {
  background: var(--white) !important;
  color: var(--primary-color) !important;
  border-color: var(--white) !important;
}
.booking-btns a.box-btn.transparent-btn,
.banner-slider .caption .button-groups a.box-btn.transparent-btn,
.box-btn.transparent-btn a {
  border: 1px solid var(--white) !important;
  background: none !important;
}
.banner-slider .caption .button-groups a.box-btn:hover,
.box-btn .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover,
.consulation-page-section .contact-form #cf7mls-back-btn-cf7mls_step-5:hover,
.consulation-page-section .contact-form .wpcf7-form-control.wpcf7-submit:hover,
.consulation-page-section .contact-form .cf7mls-btns button:hover,
.box-btn a:hover {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #fff !important;
  outline: none;
}
.booking-btns a.box-btn.transparent-btn:hover,
.banner-slider .caption .button-groups a.box-btn.transparent-btn:hover,
.box-btn.transparent-btn a:hover {
  background: var(--white) !important;
  color: var(--secondary-color) !important;
  border-color: var(--white) !important;
}

.text-btn {
  color: var(--secondary-color);
  font-size: 15px;
  text-decoration: underline;
}
.text-btn:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

/* End button sty css */

/* title sty css */

.main-title {
  margin-bottom: 45px;
}

.main-title .title {
  color: var(--secondary-color);
}

.main-title p {
  color: #545454;
}

.main-title p a {
  color: var(--primary-color);
}

.main-title p a:hover {
  text-decoration: underline;
}

.main-title .title.white-color {
  color: var(--white);
}

.line-title {
  padding-bottom: 15px;
  margin-bottom: 25px !important;
  position: relative;
}

.line-title:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
}

.main-title.text-center .line-title:before {
  margin: 0 auto;
}

/* End title sty css */

/* Font size  css */

.lg-sz {
  font-size: var(--lg-sz);
}

.md-sz {
  font-size: var(--md-sz);
}

.sm-sz {
  font-size: var(--sm-sz);
}

.xs-sz {
  font-size: var(--xs-sz);
}

.xxs-sz {
  font-size: var(--xxs-sz);
}

/* End Font size  css */
.section-wrapper {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.vc_section {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/*----------   End Custom CSS sty   ----------*/

/*----------   Header section CSS sty   ----------*/

.site-header {
  background-color: var(--white);
  min-height: 125px !important;
}

.site-header .top-header {
  background-color: var(--light-white-color);
  padding: 10px 0;
}

.header-social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-social-links span {
  padding-right: 20px;
}

.header-social-links ul,
.header-social-links ul {
  margin: 0 -10px;
}

.header-info ul li,
.header-social-links ul li {
  display: inline-block;
  padding: 0 10px;
}
.header-info ul > li:first-child {
  padding-left: 0;
}
.header-info ul > li:last-child {
  padding-right: 0;
}
.header-info ul li {
  padding: 0 25px;
}

.header-social-links ul li a {
  font-size: 14px;
  color: var(--secondary-color);
}
.header-info ul li a:hover,
.header-social-links ul li a:hover {
  color: var(--primary-color);
}

.header-info {
  text-align: right;
}

.header-info ul li a {
  padding-left: 20px;
  position: relative;
  color: var(--secondary-color);
  font-size: 15px;
}
.gm-inner {
  box-shadow: none !important;
}
span.gm-logo__no-logo {
  display: none;
}
.gm-logo a {
  background: #ff9b0b;
  width: 120px;
  height: 120px;
  top: 10px;
  border-radius: 100%;
  box-shadow: rgb(0 0 0 / 19%) 0px 9px 5px;
  flex: none !important;
  position: relative;
}
.gm-mobile-submenu-style-slider .gm-grid-container {
  padding: 10px 15px;
  border-top: 3px solid #ff9b0b;
}
.groovy-header .gm-burger.gm-burger--float {
  background: #ffffff;
  padding: 8px;
}
.gm-navigation-drawer ul.gm-navbar-nav > li {
  margin-bottom: 8px;
}
.sticky {
  position: fixed;
  top: 0;
  z-index: 9999;
  right: 0;
  left: 0;
}
.groovy-header.sticky
  aside.gm-navigation-drawer.gm-navigation-drawer--mobile.gm-mobile-submenu-style-slider.gm-navigation-drawer--right
  .gm-burger {
  top: 60px;
}
.groovy-header.sticky
  aside.gm-navigation-drawer.gm-navigation-drawer--mobile.gm-mobile-submenu-style-slider.gm-navigation-drawer--right
  .gm-burger {
  top: 0px;
}
.groovy-header
  aside.gm-navigation-drawer.gm-navigation-drawer--mobile.gm-mobile-submenu-style-slider.gm-navigation-drawer--right
  .gm-burger {
  top: 65px;
}

.admin-bar #groovy-header {
  top: 46px;
}

.groovy-header .gm-navbar .gm-logo > a img {
  height: 60px;
  position: relative;
  top: 50%;
  margin-top: -34px;
  left: 50%;
  margin-left: -48px;
  width: 96px;
}

@media screen and (max-width: 767px) {
  .gm-menu-btn.gm-burger.hamburger.hamburger--squeeze {
    top: -24px;
    position: relative;
  }
  .single-news-text table td {
    font-size: 12px !important;
    padding: 7px 3px !important;
    word-break: break-word;
    font-weight: 600 !important;
  }
  .gm-navbar .gm-logo {
    flex: none !important;
  }
}
.brand-logo a {
  z-index: 99999 !important;
  position: absolute;
  position: absolute;
  padding: 40px 18px !important;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  width: 150px !important;
  height: 150px !important;
  top: -20px !important;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: 1;
  -webkit-box-shadow: rgb(0 0 0 / 19%) 1px 11px 8px;
  box-shadow: rgb(0 0 0 / 19%) 1px 11px 8px;
}

.header-info ul li a i {
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 12px;
}

.bottom-header {
  padding: 20px 0;
  -webkit-box-shadow: rgb(0 0 0 / 19%) -2px 6px 8px;
  box-shadow: rgb(0 0 0 / 19%) -2px 6px 8px;
  position: relative;
  z-index: 11;
  background: #fff;
}

.site-header .nav {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.fixed-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}
body.menu-active {
  overflow: hidden;
}
.fixed-header .brand-logo a {
  width: 100px;
  height: 100px;
  padding: 6px;
  top: -12px;
}

.mega-menu > li:last-child {
  padding-right: 0;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
  display: inline-block;
  padding: 0 16px;
}
#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item.mega-current-menu-item
  > a.mega-menu-link,
#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item.mega-current-menu-ancestor
  > a.mega-menu-link,
#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item.mega-current-page-ancestor
  > a.mega-menu-link,
#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item
  > a.mega-menu-link,
#mega-menu-wrap-primary {
  background: none;
}

#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item
  > a.mega-menu-link {
  padding: 0;
  color: var(--secondary-color);
  font-size: 14px;
  text-transform: uppercase !important;
}
#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item.mega-toggle-on
  > a.mega-menu-link,
#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item
  > a.mega-menu-link:hover,
#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item.mega-current-menu-item
  > a.mega-menu-link {
  color: var(--secondary-color);
  background: none;
}
#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item.menu-toggle-on
  > a,
#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-megamenu
  > ul.mega-sub-menu
  > li.mega-menu-item
  li.mega-menu-item
  > a.mega-menu-link:hover,
.mega-menu li.current-menu-item > a,
.mega-menu li a:hover {
  color: var(--secondary-color);
}

#mega-menu-wrap-primary
  #mega-menu-primary
  ul.mega-sub-menu
  li.mega-menu-item
  .mega-sub-menu
  > li
  + li {
  margin-top: 4px;
}
#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-megamenu
  > ul.mega-sub-menu
  li.mega-menu-columns-1-of-6
  > .mega-menu-link:hover {
  color: var(--secondary-color) !important;
}
#mega-menu-wrap-primary
  #mega-menu-primary
  li.mega-menu-item-has-children
  > ul.mega-sub-menu
  li
  a.mega-menu-link
  > span.mega-indicator {
  right: 2px !important;
}
#mega-menu-wrap-primary
  #mega-menu-primary
  ul.mega-sub-menu
  li.mega-menu-item
  .mega-sub-menu
  > li
  > a:before {
  display: none !important;
}
/*----------   End Header section CSS sty   ----------*/

/*----------   Banner section CSS sty   ----------*/
.banner-slider .slick-track {
  min-height: calc(100vh - 108px);
}
.banner-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner-slider .bg-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  background-position: 50% 37%;
}

.banner-slider.slick-dotted {
  padding-bottom: 0 !important;
}

.banner-slider.slick-dotted .slick-dots {
  bottom: 50px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  right: 0;
  width: 1286px;
  max-width: 100%;
  margin: 0 auto;
  left: 31px;
}

.banner-slider .slick-arrow {
  right: 125px !important;
  bottom: 50px;
  background: none;
  width: auto;
  height: auto;
  left: auto !important;
  top: auto !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 24px;
}

.banner-slider .slick-arrow.slick-prev {
  right: 165px !important;
}

.banner-slider .slick-arrow:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  color: var(--primary-color);
}

.inner-section:before,
.banner-slider .bg-holder:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.inner-section > div {
  -webkit-box-flex: 0;
  flex: 0 0 100%;
  -ms-flex: 0 0 100%;
}
.banner-slider .bg-holder:before {
  background: rgb(51, 51, 51);
  background: -o-linear-gradient(
    left,
    rgb(51 51 51 / 82%) 0%,
    rgba(51, 51, 51, 0.41220238095238093) 35%,
    rgba(51, 51, 51, 0) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(51 51 51 / 82%)),
    color-stop(35%, rgba(51, 51, 51, 0.41220238095238093)),
    to(rgba(51, 51, 51, 0))
  );
  background: linear-gradient(
    90deg,
    rgb(51 51 51 / 82%) 0%,
    rgba(51, 51, 51, 0.41220238095238093) 35%,
    rgba(51, 51, 51, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#333333",endColorstr="#333333",GradientType=1);
}
.banner-slider .bg-holder .caption {
  padding: 150px 0;
  color: var(--white);
  -webkit-box-flex: 0;
  flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  max-width: 100%;
  position: relative;
}

.banner-slider .caption .title {
  text-transform: uppercase;
  margin-bottom: 50px;
  font-size: var(--lg-sz);
  font-family: var(--secondary-font);
}

.button-groups a + a {
  margin-left: 30px;
}

.banner-slider .caption .title span {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
}

/*----------   End Banner section CSS sty   ----------*/

/*----------   Content section CSS sty   ----------*/

.content-sty-section.bg-holder {
  background-position: center center;
}

.content-sty-section {
  padding: 80px 0;
}

.content-sty-section .title {
  font-size: 36px;
}
.Not-found .button-groups a,
.content-sty-section .button-groups a {
  padding: 10px 25px !important;
}

/*----------   End Content section CSS sty   ----------*/

/*----------   Service section CSS sty   ----------*/

.service-items .item {
  padding: 0px 20px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.service-items .item .vc_btn3-container.wrapper-link a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: none !important;
  border: none;
  font-size: 0 !important;
}
.service-items .item .title.line-title {
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--secondary-color);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.service-items .item:hover .title.line-title {
  color: var(--primary-color);
}

.service-items .item p {
  color: #777777;
  font-size: 16px;
}

.service-items .item .title.line-title:before {
  height: 2px;
}

/*----------   End Service section CSS sty   ----------*/

/*----------   Professional section CSS sty   ----------*/

.professional-items .item {
  margin-bottom: 20px;
}

.professional-items .item .img-prof-sty figure img {
  height: 240px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.professional-items .item .content {
  padding: 30px 20px;
  background: var(--white);
}
.professional-items .item .img-prof-sty {
  position: relative;
  padding: calc(240px + 20px) 20px 20px 20px;
  background: var(--white);
  -webkit-box-shadow: 0 1px 30px 0 rgb(32 33 36 / 13%);
  box-shadow: 0 1px 30px 0 rgb(32 33 36 / 13%);
}
.home .professional-items .item .img-prof-sty {
  padding: 10px;
}

.professional-items .item .img-prof-sty figure a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.professional-items .item .img-prof-sty .wpb_heading.wpb_singleimage_heading {
  margin-bottom: 10px;
  font-size: var(--sm-sz);
}
.professional-items .item .img-prof-sty .vc_figure-caption {
  font-size: 17px;
  color: #777777;
  margin-bottom: 0;
}
.professional-items .wpb_single_image:hover h2 {
  color: #ffb74f !important;
}

.professional-items .wpb_single_image h2 {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
/*----------   End Professional section CSS sty   ----------*/

/*----------   Clients review section CSS sty   ----------*/

.client-review-slider .item .content p {
  font-size: 18px;
  color: #777;
}
.client-review-slider .slick-slide {
  height: auto;
}

.client-review-slider .item .name-info {
  margin-top: 20px;
}

.client-review-slider .item .name-info > span {
  display: block;
  margin-top: 10px;
}

.client-review-slider .item .img-holder img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  margin: 20px auto 0;
}

.client-review-slider .item .name-info .other {
  font-size: 16px;
  color: #777;
}

.client-review-slider .item .name-info .name {
  font-size: 19px;
}

.client-review-slider .item .content {
  max-width: 620px;
  text-align: center;
  margin: 0 auto;
}
.client-review-slider .slick-arrow i {
  line-height: 50px;
}
.slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.slick-arrow {
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 16px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 2em var(--primary-color) inset;
  box-shadow: 0 0 0 2em var(--primary-color) inset;
  color: #fff;
  -webkit-transition: var(--transition-2-effect);
  -o-transition: var(--transition-2-effect);
  transition: var(--transition-2-effect);
  text-align: center;
  z-index: 1;
  cursor: pointer;
}

.slick-arrow:hover {
  -webkit-box-shadow: 0 0 0 0px var(--primary-color) inset;
  box-shadow: 0 0 0 0px var(--primary-color) inset;
  background-color: var(--secondary-color);
  color: #fff;
}

.slick-arrow.slick-next {
  right: 0;
}

.slick-arrow.slick-prev {
  left: 0;
}

.slick-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0;
  margin: 0;
}

.sticky-top {
  z-index: 9;
  top: 100px;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots li {
  display: inline-block;
  padding: 0 7px;
}

.slick-dots li button {
  display: inline-block;
  font-size: 0;
  background: none;
  border: 1px solid #ccc;
  background: #ccc;
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li.slick-active button {
  border-color: var(--primary-color);
  background: var(--primary-color);
}

.slick-dots li button:hover {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}

.slick-dots li button:focus,
.slick-dots li button:hover {
  outline: none;
}

.slick-slider.slick-dotted {
  padding-bottom: 35px;
}

/*----------   End Clients review section CSS sty   ----------*/

/*----------   Contact us section CSS sty   ----------*/

.contact-us-section:before {
  content: "";
  position: absolute;
  background: url(https://gvm.cloud392.com/wp-content/uploads/2021/03/circle-shape.png?id=20)
    no-repeat;
  background-size: cover;
  left: 0;
  top: 30px;
  right: 0;
  bottom: 0;
  opacity: 0.5;
}

.contact-us-section {
  position: relative;
  color: var(--white);
}

.contact-us-section .main-title .title {
  margin-bottom: 16px;
}

.contact-us-section .main-title {
  margin-bottom: 50px;
}

.contact-us-section > .container {
  position: relative;
}

.contact-us-section .content-wrap {
  max-width: 700px;
  z-index: 0;
}

.bottom-footer p {
  font-size: 13px !important;
}
.bottom-footer .middle-side a img {
  width: 36px;
  margin-right: 5px;
}

.bottom-footer .middle-side a {
  color: #a0a0a0;
  position: relative;
}
.bottom-footer .middle-side a span {
  position: relative;
  top: 1px;
}

.contact-form .textarea-field,
.contact-form .file-field,
.contact-form .select-field,
.contact-form .input-field {
  margin-bottom: 30px !important;
  padding: 0px 15px;
}
.contact-form .textarea-field .wpcf7-form-control-wrap,
.contact-form .file-field .wpcf7-form-control-wrap,
.contact-form .input-field .wpcf7-form-control-wrap {
  display: block;
}

.contact-form .submit-field input[type="submit"] {
  padding: 8px 20px !important;
  text-transform: uppercase;
  outline: none;
}
.contact-form .submit-field input[type="submit"]:hover {
  background: #595c5d !important;
  border-color: #595c5d !important;
  color: #ffffff !important;
}
.contact-form .ajax-loader {
  position: absolute;
  margin: 10px 0 0 11px;
}

.contact-form .textarea-field textarea,
.contact-form .input-field input {
  width: 100%;
  display: block;
  padding: 9px 20px;
  border: 1px solid #fff;
  background: #fff;
  font-size: 16px;
  outline: none;
  border-radius: 30px;
}

.contact-form .textarea-field textarea {
  height: 106px;
  padding: 20px 15px;
}

.contact-form.dark .textarea-field textarea,
.contact-form.dark .input-field input {
  color: #000;
  border-color: #777;
  padding: 11px 20px;
}
.contact-form .textarea-field textarea.wpcf7-not-valid,
.contact-form .input-field input.wpcf7-not-valid {
  border-color: #f00 !important;
}
.contact-form .wpcf7-not-valid-tip {
  position: absolute;
  right: 23px;
  font-size: 12px;
  margin-top: 2px;
  text-shadow: 0 0 0 rgb(255 255 255 / 12%);
}
.contact-form .wpcf7-response-output {
  display: none !important;
}
.contact-form .textarea-field textarea:focus,
.contact-form .input-field input:focus {
  border-color: var(--primary-color) !important;
}

.contact-page-section .contact-form form {
  padding: 0 40px;
}
.contact-page-section {
  overflow: visible !important;
}

.contact-page-section .contact-form .submit-field input[type="submit"] {
  min-width: 210px;
  padding: 6px 20px;
}

.contact-page-section .contact-form .main-title .title {
  margin-bottom: 35px;
}

.contact-page-section .contact-form .main-title {
  margin-bottom: 55px;
}

.map-contact-info-section > .d-flex > * {
  -webkit-box-flex: 0;
  flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  max-width: 25%;
}

.contact-info-lists .wpb_text_column.wpb_content_element.title h3 {
  font-size: 19px;
  margin-bottom: 30px;
  font-weight: bold;
}
.contact-info-lists .item .content.wpb_column.vc_column_container.vc_col-sm-8 {
  width: auto;
}

.contact-info-lists .item {
  position: relative;
  color: #333;
  padding: 0 15px;
  margin-bottom: 30px;
}
.contact-info-lists .item > div {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  padding-left: 35px !important;
  position: relative;
}

.map-contact-info-section .contact-info-lists {
  margin-bottom: 0 !important;
}
.contact-info-lists .item .title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 500;
}
.map-contact-info-section .map-sec.pl-lg-2 {
  background: #fff;
}
.map-wrapper iframe {
  height: 400px;
  width: 100%;
}
.map-contact-info-section .section-container.mt-5 {
  margin-top: 40px !important;
}

.contact-info-lists .item .icon-holder {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 20px;
  color: #333;
}
.contact-info-lists .item ul li + li {
  margin-top: 7px;
}

.contact-info-lists .item ul li a:hover {
  color: var(--primary-color);
}

.contact-info-lists .item ul li a,
.contact-info-lists .item ul li {
  font-size: 16px;
  color: #545454;
}
.map-contact-info-section
  .vc_row.wpb_row.vc_row-fluid.section-container.vc_row-no-padding {
  left: 0 !important;
}
.map-contact-info-section .map-sec .title h3,
.map-contact-info-section
  .content-info
  .wpb_text_column.wpb_content_element.title
  h3 {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: bold;
  border-bottom: 2px solid #ccc;
  padding-bottom: 13px;
}

/*----------   End Contact us section CSS sty   ----------*/

/*----------   Partner section CSS sty   ----------*/

.partner-items .item .img-holder img {
  margin: 0 auto;
  filter: grayscale(1);
}

.partner-items .item .img-holder img:hover {
  margin: 0 auto;
  filter: grayscale(0);
}
.partner-items .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.partner-items {
  padding: 0 60px;
}

.partner-items .item .img-holder {
  text-align: center;
  padding: 0 15px;
}

.partner-items .slick-dots {
  bottom: -16px;
}

/*----------   End Partner section CSS sty   ----------*/

/*----------   About page section CSS sty   ----------*/

.inner-section {
  padding-top: 125px !important;
  padding-bottom: 200px;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.inner-section.med {
  padding: 30px 0;
}
.inner-section .content {
  max-width: 995px;
}

.inner-section:before {
  opacity: 0.6;
  background: #000;
}

.inner-section,
.inner-section .container {
  position: relative;
}

.inner-section .content .title {
  margin: 5px 0px;
}
.inner-section .content .sub-title {
  line-height: 1.6;
  font-size: 16px;
}

.contact-page-section .contact-content-wrapper,
.about-page-section .about-content-wrapper {
  margin-top: -130px;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  padding-top: 100px;
  background: #fff;
}

.about-content-wrapper .content-wrap {
  max-width: 895px;
}

.single-news-text p {
  margin-bottom: 18px !important;
}

.single-news-text {
  font-size: 16px;
  color: #777;
}
.single-news-text table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 13px;
}
.single-news-text table td {
  font-size: 15px;
  padding: 10px 12px;
  border-style: solid;
  border-width: 1px;
  border-color: #f9e3c3;
}
.single-news-text table th {
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: left;
  padding: 9px 12px;
  border-style: solid;
  border-width: 1px;
  border-color: #e1e1e1;
}
.bg-primary-theme {
  background: var(--primary-color);
}
.single-news-text,
.single-news-text h1,
.single-news-text h2,
.single-news-text h3,
.single-news-text h4,
.single-news-text h5,
.single-news-text h5 {
  font-family: var(--primary-font) !important;
  margin-bottom: 20px;
}
.single-news-text h1,
.single-news-text h2,
.single-news-text h3,
.single-news-text h4,
.single-news-text h5,
.single-news-text h5 {
  color: var(--primary-color);
  border-bottom: 1px dashed #dddddd;
  font-size: 24px;
  text-transform: capitalize;
  padding-bottom: 5px;
  margin: 25px 0px;
  text-align: left;
}
.single-news-text p em {
  font-style: normal !important;
}

.single-news-text ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 16px;
}

.single-news-text ul {
  margin-bottom: 15px;
  list-style: none;
  padding-left: 15px;
}

.single-news-text ul li:before {
  content: "\e906";
  position: absolute;
  top: 5px;
  left: 5px;
  font-family: "icomoon" !important;
  font-weight: 900;
  font-size: 9px;
  color: var(--secondary-color);
}

.single-news-text blockquote {
  padding: 20px 59px 1px 20px;
  border-left: 4px solid var(--primary-color);
  background: none;
  color: var(--secondary-color);
  font-size: 16px;
  margin: 20px 0;
}
.single-news-text a {
  border-bottom: 1px dotted var(--secondary-color);
  color: var(--secondary-color);
}
.single-news-text a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/*----------   End About page section CSS sty   ----------*/

/*----------   Team section CSS sty   ----------*/

.team-items .item {
  text-align: center;
  margin-bottom: 20px;
}

.team-items .item .content .position {
  color: #545454;
  margin-top: 5px;
}

.team-items .item .img-holder img {
  height: 164px;
  width: auto;
}

.value-items > .d-flex {
  margin: 0 -15px;
}

.value-items .d-flex > .item {
  -webkit-box-flex: 0;
  flex: 0 0 20%;
  -ms-flex: 0 0 20%;
  max-width: 20%;
  padding: 0 15px;
}

.value-items .item {
  margin-top: 20px;
  text-align: center;
}

.value-items .item .title {
  font-size: 19px;
  margin-top: 6px;
  line-height: 1.4;
}

.value-items .item .icon-holder {
  margin-bottom: 20px;
}

.value-items .item .icon-holder img {
  height: 60px;
}
.value-wrapper .main-title {
  margin-bottom: 60px;
}
.list-sty-1 + .list-sty-1 {
  margin-top: 60px;
}

.list-sty-1 ul li {
  color: #777;
  font-size: 18px;
  margin-bottom: 7px;
}

/*----------   End Team section CSS sty   ----------*/

/*----------   Footer section CSS sty   ----------*/

.top-footer {
  padding: 60px 0 90px;
  color: var(--white);
}

.top-footer > .container {
  position: relative;
}
/* .footer-items .row.align-items-end .col-lg-12{
       margin-bottom: -86px;
} */
.footer-items .row.align-items-end .item {
  margin-top: 0;
}

.footer-title > * {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.booking-btns li .box-btn {
  border-color: #a0a0a0;
}

.site-footer .booking-btns .box-btn.transparent-btn:hover {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
}

.footer-menu-list li + li {
  margin-top: 6px;
}

.bottom-footer,
.bottom-footer p,
.footer-menu-list li,
.footer-menu-list li a {
  color: #a0a0a0;
  font-size: 15px;
}

.booking-btns li + li {
  margin-top: 15px;
}

.top-footer .footer-items {
  /*     padding-left: 255px; */
}

.footer-items .item {
  margin-top: 20px;
}

.footer-menu-list.social-links li {
  margin-bottom: 12px;
}

.footer-menu-list.social-links li a {
  padding-left: 30px;
}

.footer-menu-list.social-links li a > i {
  position: absolute;
  left: 0;
  top: 3px;
}

.footer-menu-list.social-links li a {
  position: relative;
}

.footer-menu-list li a:hover {
  color: var(--primary-color);
}

.bottom-footer {
  background: #212121;
  padding: 10px 0;
}

.top-footer .address-title:before {
  content: "\f111";
  position: absolute;
  left: 0;
  top: 4px;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: var(--primary-color);
  font-size: 8px;
}

.top-footer .address-title {
  margin-bottom: 26px;
  padding-left: 20px;
  position: relative;
  font-family: var(--secondary-font);
  margin-top: 8px;
}

.bottom-footer p {
  margin-bottom: 0;
}

.footer-logo {
  position: absolute;
  left: 0;
  top: 30px;
  width: 160px;
  height: 160px;
  padding: 20px;
  overflow: hidden;
}

span.customize-control-title:before {
  font-size: 13px;
}
.customizer-repeater-box-content-hidden > span:nth-child(2):before {
  content: "Phone No";
  font-size: 13px;
}
.customizer-repeater-box-content-hidden > span:nth-child(7),
.customizer-repeater-box-content-hidden > span:nth-child(4) {
  font-size: 0;
}
.customizer-repeater-box-content-hidden > textarea::-webkit-input-placeholder,
.customizer-repeater-box-content-hidden > input::-webkit-input-placeholder {
  /* Edge */
  font-size: 0;
}
.customizer-repeater-box-content-hidden > textarea:-ms-input-placeholder,
.customizer-repeater-box-content-hidden > input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 0;
}
.customizer-repeater-box-content-hidden > textarea::-webkit-input-placeholder,
.customizer-repeater-box-content-hidden > input::-webkit-input-placeholder {
  font-size: 0;
}
.customizer-repeater-box-content-hidden > textarea::-moz-placeholder,
.customizer-repeater-box-content-hidden > input::-moz-placeholder {
  font-size: 0;
}
.customizer-repeater-box-content-hidden > textarea:-ms-input-placeholder,
.customizer-repeater-box-content-hidden > input:-ms-input-placeholder {
  font-size: 0;
}
.customizer-repeater-box-content-hidden > textarea::-ms-input-placeholder,
.customizer-repeater-box-content-hidden > input::-ms-input-placeholder {
  font-size: 0;
}
.customizer-repeater-box-content-hidden > textarea::placeholder,
.customizer-repeater-box-content-hidden > input::placeholder {
  font-size: 0;
}
.customizer-repeater-box-content-hidden > span:nth-child(4):before {
  content: "Phone No:";
}
.customizer-repeater-box-content-hidden > span:nth-child(7):before {
  content: "Email:";
}

a#scrollUp {
  position: fixed;
  right: 29px;
  bottom: 14vh;
  font-size: 20px;
  background: var(--primary-color);
  font-weight: 600;
  width: 55px;
  opacity: 0;
  visibility: hidden;
  height: 55px;
  line-height: 55px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out;
  z-index: 911;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
a#scrollUp i {
  line-height: 55px;
}

a#scrollUp:hover {
  background: #000;
  color: #fff;
}

a#scrollUp.visible {
  visibility: visible;
  opacity: 1;
}
/*----------   End footer section CSS sty   ----------*/

/*----------   404 page section CSS sty   ----------*/

.error-content .img-holder {
  margin-bottom: 10px;
}
.error-content .img-holder svg {
  height: 385px;
  max-height: 100%;
}
.error-content .content p {
  font-size: 18px;
  margin-bottom: 20px;
}

/*----------   End 404 page section CSS sty   ----------*/

/*----------   Blog Page section CSS sty   ----------*/

.blog-items .item {
  background: #fff;
}
.blog-items .img-holder a {
  height: 300px;
  width: 100%;
  position: relative;
}
.blog-items .img-holder a .title:before {
  background: var(--primary-color);
}
.blog-items .img-holder a .title {
  position: absolute;
  color: #fff;
  top: 25px;
  left: 25px;
  right: 25px;
  font-size: 24px;
}
.blog-items .item .content .title {
  margin-bottom: 10px;
}

.blog-items .item .content .title a {
  color: var(--secondary-color);
}
.blog-items .item .content .title a:hover {
  color: var(--primary-color);
}
.blog-items .item .content p {
  color: #545454;
  font-size: 14px;
}

.blog-items .item .content {
  padding: 20px;
  position: relative;
}
.blog-items .item .content:before {
  display: none;
  content: "";
  position: absolute;
  left: 30px;
  bottom: 99%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 23px 20px 23px;
  border-color: transparent transparent #ffffff transparent;
}
.blog-items .img-holder a {
  display: block;
}
.blog-items .row > * {
  margin-bottom: 20px;
}
.blog-items.lists-blog-sty .item {
  height: 100%;
  position: relative;
}
.blog-items.lists-blog-sty .item .content:before {
  border-width: 0 14px 14px 14px;
}
.blog-items.lists-blog-sty .item .img-holder a {
  height: 176px;
}
.blog-items.lists-blog-sty .item .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog-items.lists-blog-sty .item .content {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.blog-items.lists-blog-sty .content {
  padding-bottom: 65px;
}
.blog-items.lists-blog-sty .item .button-groups {
  position: absolute;
  left: 25px;
  bottom: 25px;
  right: 25px;
}
ul.page-numbers {
  list-style: none;
  margin: 30px -3px 0;
  padding: 0;
  text-align: center;
}
ul.page-numbers {
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 0 !important;
}
.page-numbers > li {
  display: inline-block;
  padding-left: 3px;
  padding-right: 3px;
}
.page-numbers > li > a,
.page-numbers > li > span {
  position: relative;
  float: left;
  padding: 6px 8px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #777;
  font-size: 18px;
  text-decoration: none;
  border-radius: 50%;
  background: none;
  border: none;
}
.page-numbers > li > a.prev.page-numbers,
.page-numbers > li > a.next.page-numbers {
  color: #fff;
  background: var(--primary-color);
  padding: 0;
  font-size: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.page-numbers > li > a.next.page-numbers:before,
.page-numbers > li > a.prev.page-numbers:before {
  font-family: "icomoon";
  font-size: 16px;
}
.page-numbers > li > a.prev.page-numbers:before {
  content: "\e901";
}
.page-numbers > li > a.next.page-numbers:before {
  content: "\e900";
}
.page-numbers a span {
  padding: 0;
}
.page-numbers > li > a.prev.page-numbers:hover,
.page-numbers > li > a.next.page-numbers:hover {
  background: var(--secondary-color);
  color: #fff;
}
.page-numbers.current,
.page-numbers:hover {
  color: var(--primary-color);
}

ul.page-numbers li a:hover {
  border-color: #323232;
}
.page-numbers:hover {
  text-decoration: none;
}

/*----------   End Blog Page section CSS sty   ----------*/

/*----------   Blog Detail page section CSS sty   ----------*/

.single-blog-page .content-wrap {
  max-width: 1100px;
}
.single-blog-page .single-news-text {
  color: var(--secondary-color);
}
.detail-post-title {
  margin-bottom: 40px;
}
.detail-post-title .title {
  margin-bottom: 20px;
  text-align: center;
}
.detail-post-title .date-other {
  padding: 15px 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid var(--light-white-color);
  border-bottom: 1px solid var(--light-white-color);
  color: #777777;
  font-size: 16px;
  font-family: var(--secondary-font);
}
.detail-post-title .date-other .item {
  padding: 0 40px;
  position: relative;
}
.detail-post-title .date-other .item + .item::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #777777;
  left: 0;
  top: 8px;
  border-radius: 50%;
}
.post-img,
.single-blog-page .content-wrap > .content {
  max-width: 950px;
  margin: 0 auto;
}
.post-img img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
  object-fit: cover;
}
.post-img {
  margin-bottom: 50px;
}
.single-blog-page .content-wrap > .content {
  padding: 0 30px;
}

.related-events-section {
  background-color: var(--light-white-color);
  padding: 60px 0 40px;
}
.related-events-section .related-events-item .item {
  margin-bottom: 30px;
}
.related-events-section .related-events-item .item .img-holder {
  height: 240px;
}

.related-events-section .related-events-item .item .img-holder a {
  display: block;
}
.related-events-section .related-events-item .item .img-holder img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.related-events-section .related-events-item .item .content {
  padding: 15px 0 0px;
  position: relative;
}
.related-events-section .related-events-item .item .content .title {
  color: var(--secondary-color);
  margin-bottom: 10px;
}
.related-events-section .related-events-item .item .content .title a:hover {
  color: var(--primary-color);
}
.related-events-section .related-events-item .item .content span {
  display: block;
  font-size: 14px;
  font-family: var(--secondary-font);
  color: #777777;
  margin-bottom: 10px;
}
.related-events-section .related-events-item .item .content .button-groups {
  padding-top: 10px;
}

/*----------   End Blog Detail page section CSS sty   ----------*/

/*----------   Event page section CSS sty   ----------*/

.event-items .item {
  margin-bottom: 40px;
}
.event-items .item .img-holder {
  height: 250px;
}
.event-items .item .img-holder a {
  display: block;
}
.event-items .item .content {
  padding: 15px 0 0;
}
.event-items .item .content .title {
  margin-bottom: 10px;
}
.event-items .item .content .title a {
  color: var(--secondary-color);
}
.event-items .item .content .title a:hover {
  color: var(--primary-color);
}
.event-items .item .content .date {
  color: #777;
  font-family: var(--secondary-font);
  font-size: 14px;
  margin-bottom: 10px;
}
.event-items .item .button-groups {
  padding-top: 15px;
}

/*----------   End Event page section CSS sty   ----------*/

/*----------    Service page section CSS sty   ----------*/

.service-page-section .service-items .item {
  border: 1px solid #ededed;
  margin-bottom: 0;
  padding: 70px 50px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 100%;
}
.service-page-section .service-items .item .title {
  color: var(--secondary-color);
}
.service-page-section .service-items .item .title.line-title:before {
  margin: 0 auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-page-section .service-items .item:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.service-page-section .service-items .item .title,
.service-page-section .service-items .item p {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-page-section .service-items .item p {
  margin-bottom: 0;
}
.service-page-section .service-items .item:hover .title,
.service-page-section .service-items .item:hover p {
  color: #fff;
}
.service-page-section .service-items .item:hover .title:before {
  background-color: #fff;
}
/* .service-page-section .service-items {
    border: 1px solid #ededed;
} */
/*----------    End Service page section CSS sty   ----------*/

/*----------    Service-detail page section CSS sty   ----------*/

service-detail-page-section {
  overflow: hidden;
}
.service-detail-page-section .list-sty-1 > .title {
  font-weight: 500;
  margin-bottom: 20px;
}
.service-detail-page-section .list-sty-1 > p,
.list-wrap {
  margin-bottom: 30px;
}
.service-detail-page-section .list-sty-1 > p {
  color: #777;
  font-size: 16px;
}

.list-wrap .title {
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
}
.list-wrap ul {
  margin-left: 24px;
}
.list-wrap ul li {
  line-height: 1.2;
}
.service-detail-page-section .list-sty-1 .box-btn {
  padding: 8px 45px;
}
.related-service-section {
  border-top: 3px solid #f7f7f7;
}
.related-service-section .title {
  margin-bottom: 30px;
}
.related-service ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.related-service ul li a {
  font-size: 18px;
  color: var(--secondary-color);
  text-transform: uppercase;
  padding: 15px 25px 31px 25px;
  border: 3px solid #f7f7f7;
  margin: 0 15px;
  position: relative;
  margin-bottom: 15px;
}
.related-service ul li a:first-child {
  margin-left: 0;
}
.related-service ul li a:before {
  content: "";
  position: absolute;
  left: 25px;
  bottom: 21px;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.related-service ul li a:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.related-service ul li a:hover::before {
  background-color: #fff;
}
.contact-form .service-select-field select {
  color: #777;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 30px;
}
.service-contact .contact-form .submit-field input[type="submit"] {
  width: 200px;
}
.service-detail-page-section .list-sty-1 ul li {
  font-size: 16px;
}

/*----------    End Service-detail page section CSS sty   ----------*/

/*----------    Information page section CSS sty   ----------*/

.single-news-text.dark {
  color: var(--secondary-color);
}
.information-page-section .consultation-section {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 40px;
}

.information-page-section .video-holder {
  text-align: center;
}
.information-page-section .content .button-group a {
  padding: 7px 21px !important;
  min-width: 183px;
}

.video-holder iframe {
  max-width: 100%;
}
.consultation-section > .title {
  font-size: 24px;
  margin-bottom: 40px;
}
.accordion-sty1 .card-header {
  background: none;
  border: none;
  padding: 0;
}
.accordion-sty1 .card-header .btn.btn-link {
  display: block;
  padding: 10px 55px 10px 30px;
  width: 100%;
  position: relative;
  color: var(--secondary-color);
  border-radius: 8px;
  border: none;
  text-align: left;
  text-decoration: none;
  background: var(--light-white-color);
  font-size: 18px;
  white-space: inherit;
}
.accordion-sty1 {
  max-width: 768px;
  margin: 0 auto;
}

.accordion-sty1 .card-header .btn.btn-link:before {
  content: "\e902";
  position: absolute;
  top: 50%;
  margin-top: 0;
  -webkit-transform: translatey(-50%) rotate(180deg);
  -ms-transform: translatey(-50%) rotate(180deg);
  transform: translatey(-50%) rotate(180deg);
  right: 20px;
  font-family: "icomoon";
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.accordion-sty1 .card-header .btn.btn-link.collapsed:before {
  -webkit-transform: translatey(-50%) rotate(0);
  -ms-transform: translatey(-50%) rotate(0);
  transform: translatey(-50%) rotate(0);
}

.accordion-sty1 .card {
  border: none;
  border-radius: 0;
  background-color: transparent;
  margin-bottom: 15px;
}
.accordion-sty1 .card-body {
  padding: 25px 35px 20px;
  font-size: 16px;
  border: 1px solid var(--light-white-color);
  margin-top: -5px;
  color: var(--light-gray-color);
  border-radius: 0 0 10px 10px;
}

/*----------    End Information page section CSS sty   ----------*/

/*--new-css--*/
.content-sty-section .container > .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.animate-duration {
  -webkit-animation-duration: 1.25s;
  animation-duration: 1.25s;
}
.animate-delay {
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
}

/*----------    Consulation page section CSS sty   ----------*/

.radio-sty-coll .wpcf7-form-control-wrap,
.radio-sty-coll .wpcf7-form-control,
.radio-sty-coll .wpcf7-list-item-label,
.radio-sty-coll .wpcf7-form-control > span > label,
.radio-sty-coll .wpcf7-form-control > span {
  display: block;
}
.contact-form .radio-sty-coll label {
  padding-left: 0;
}
.radio-sty-coll .wpcf7-form-control > span {
  margin-bottom: 15px;
  margin-left: 0;
}
.radio-sty-coll .wpcf7-form-control > span > label .wpcf7-list-item-label {
  background: var(--light-white-color);
  padding: 12px 65px 12px 30px;
  font-size: var(--xs-sz);
  border-radius: 6px;
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-transition: var(--transition-2-effect);
  -o-transition: var(--transition-2-effect);
  transition: var(--transition-2-effect);
}
.radio-sty-coll
  .wpcf7-form-control
  > span
  > label
  .wpcf7-list-item-label:before {
  content: "\e900";
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translatey(-50%);
  -ms-transform: translatey(-50%);
  transform: translatey(-50%);
  font-family: "icomoon" !important;
}
.radio-sty-coll
  .wpcf7-form-control
  > span.wpcf7-list-item
  > label
  input[type="radio"]:checked
  ~ span.wpcf7-list-item-label {
  background: var(--primary-color);
  color: #fff;
}
.radio-sty-coll .wpcf7-form-control > span > label input {
  display: none;
}
.consulation-page-section .contact-form {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
.consulation-page-section .contact-form .button-groups {
  margin-top: 30px;
}
.consulation-page-section .contact-form .select-field select,
.consulation-page-section .contact-form .textarea-field textarea,
.consulation-page-section .contact-form .input-field input {
  border: 1px solid #777;
  border-radius: 0;
}
.consulation-page-section .contact-form .textarea-field textarea {
  padding: 10px 20px;
}
.contact-form .select-field .wpcf7-form-control-wrap,
.consulation-page-section
  .contact-form
  .textarea-field
  .wpcf7-form-control-wrap,
.consulation-page-section .contact-form .input-field .wpcf7-form-control-wrap {
  display: block;
}
.contact-form .input-field > p,
.contact-form .select-field > p {
  display: none;
}
.contact-form .select-field select {
  width: 100%;
  width: 100%;
  border-radius: 30px;
  display: block;
  padding: 9px 34px 9px 20px;
  height: 45px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #777;
  background: none;
  font-size: 16px;
  outline: none;
}
.contact-form label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--secondary-color);
}
.contact-form .select-field .wpcf7-form-control-wrap {
  position: relative;
}
.contact-form .select-field .wpcf7-form-control-wrap:before {
  content: "\e902";
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translatey(-50%);
  -ms-transform: translatey(-50%);
  transform: translatey(-50%);
  font-family: "icomoon" !important;
  color: #777;
  z-index: -1;
  font-size: 15px;
}
.contact-page-section
  .contact-form
  .select-field
  .wpcf7-form-control-wrap:before {
  right: 11px;
}
.check-sty-box .wpcf7-form-control .wpcf7-list-item input[type="checkbox"],
.radio-sty-box .wpcf7-form-control .wpcf7-list-item input[type="radio"] {
  display: none;
}
.check-sty-box .wpcf7-form-control .wpcf7-list-item .wpcf7-list-item-label,
.radio-sty-box .wpcf7-form-control .wpcf7-list-item .wpcf7-list-item-label {
  padding-left: 30px;
  cursor: pointer;
  position: relative;
  margin-bottom: 6px;
}
.radio-sty-box .wpcf7-form-control .wpcf7-list-item {
  margin-left: 40px;
  cursor: pointer;
}
.check-sty-box span.wpcf7-list-item {
  margin-left: 0;
}
.check-sty-box
  .wpcf7-form-control
  .wpcf7-list-item
  .wpcf7-list-item-label:before,
.radio-sty-box
  .wpcf7-form-control
  .wpcf7-list-item
  .wpcf7-list-item-label:before {
  content: "";
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #777;
  position: absolute;
}
.check-sty-box
  .wpcf7-form-control
  .wpcf7-list-item
  .wpcf7-list-item-label:before {
  border-radius: 5px;
}
.check-sty-box
  .wpcf7-form-control
  .wpcf7-list-item
  .wpcf7-list-item-label:after {
  content: "\e909";
  left: 4px;
  top: 5px;
  position: absolute;
  font-family: "icomoon" !important;
  font-size: 9px;
  visibility: hidden;

  color: #fff;
}
.radio-sty-box .wpcf7-form-control {
  margin-left: -40px;
}
.radio-sty-box
  .wpcf7-form-control
  .wpcf7-list-item
  .wpcf7-list-item-label:after {
  content: "";
  left: 4px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #777;
  position: absolute;
  visibility: hidden;
}
.check-sty-box
  .wpcf7-form-control
  .wpcf7-list-item
  input[type="checkbox"]:checked
  ~ .wpcf7-list-item-label:after,
.radio-sty-box
  .wpcf7-form-control
  .wpcf7-list-item
  input[type="radio"]:checked
  ~ .wpcf7-list-item-label:after {
  visibility: visible;
}
.check-sty-box
  .wpcf7-form-control
  .wpcf7-list-item
  input[type="checkbox"]:checked
  ~ .wpcf7-list-item-label:before {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.top-border {
  padding-top: 25px;
  border-top: 1px solid #efeaea;
}
.consulation-page-section .contact-form .cf7mls-btns button,
.consulation-page-section .contact-form #cf7mls-back-btn-cf7mls_step-5,
.consulation-page-section .contact-form .wpcf7-form-control.wpcf7-submit {
  padding: 9px 20px !important;
}

/*----------    End Consulation page section CSS sty   ----------*/

/*----------    Info Process page section CSS sty   ----------*/

.step-tabs-sty {
  max-width: 1000px;
  margin: 0 auto;
}
.step-tabs-sty .nav.nav-tabs {
  -ms-flex-wrap: unset;
  flex-wrap: unset;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.step-tabs-sty .nav.nav-tabs > .nav-item {
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  max-width: inherit;
  text-align: center;
}
.step-tabs-sty .nav-tabs .nav-link span {
  display: block;
  margin-top: 5px;
}
.step-tabs-sty .nav-tabs .nav-link {
  font-size: 21px;
  position: relative;
  color: #777;
}
.step-tabs-sty .tab-content .content {
  padding: 60px;
}
.step-tabs-sty .nav.nav-tabs,
.step-tabs-sty .nav-tabs .nav-link {
  border: none !important;
}
.step-tabs-sty .nav-tabs .nav-link .icon-holder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #777;
  margin: 0 auto;
  -webkit-transform: scale(0.34);
  -ms-transform: scale(0.34);
  transform: scale(0.34);
  -webkit-transition: var(--transition-2-effect);
  -o-transition: var(--transition-2-effect);
  transition: var(--transition-2-effect);
  line-height: 43px;
  position: relative;
  font-size: 20px;
  z-index: 11;
}
.step-tabs-sty .nav-tabs {
  overflow: hidden;
}
.step-tabs-sty .nav-tabs li.nav-item.prev-active .nav-link,
.step-tabs-sty .nav-tabs .nav-link.active {
  color: var(--primary-color);
}
.step-tabs-sty .nav-tabs li.nav-item.prev-active .nav-link .icon-holder,
.step-tabs-sty .nav-tabs .nav-link.active .icon-holder {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  color: #fff;
  background: var(--primary-color);
  position: relative;
}
.step-tabs-sty .nav-tabs .nav-link .icon-holder i {
  display: none;
  line-height: 40px;
}
.step-tabs-sty .nav-tabs .nav-link.active .icon-holder i.ic-step {
  display: block;
}
.step-tabs-sty
  .nav-tabs
  li.nav-item.prev-active
  .nav-link
  .icon-holder
  i.ic-tick {
  display: block;
}
.step-tabs-sty .nav.nav-tabs .nav-item a:before {
  content: "";
  position: absolute;
  right: 46px;
  width: 500%;
  height: 2px;

  top: 27px;
  background: #777;
  /* transform: translateY(-50%); */
}

.step-tabs-sty .nav.nav-tabs > li.nav-item:last-child .icon-holder:after,
.step-tabs-sty .nav.nav-tabs > li.nav-item:first-child .icon-holder:after {
  content: "";
  position: absolute;
  right: 100%;
  width: 800%;
  height: 10px;
  top: 19px;
  background: #fff;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.step-tabs-sty .nav.nav-tabs > li.nav-item:first-child a:before {
  display: none !important;
}
.step-tabs-sty .nav.nav-tabs > li.nav-item:last-child .icon-holder:after {
  right: auto;
  left: 100%;
}
.step-tabs-sty .nav-tabs li.nav-item.prev-active .nav-link:before,
.step-tabs-sty .nav-tabs .nav-link.active:before {
  background: var(--primary-color) !important;
  z-index: 7 !important;
}
.step-tabs-sty .nav-tabs .nav-link.active .icon-holder:after {
  z-index: 11;
}
.step-tabs-sty .nav-tabs .nav-link.active:before {
  z-index: 1;
}
.step-tabs-sty .tab-content .content > .title {
  font-size: 24px;
  margin-bottom: 15px;
}
.single-news-text ul li:before {
  color: var(--primary-color);
}
.single-news-text .ym-gl.ym-g38 {
  margin: 30px 0px;
}

/*----------    End Info Process page section CSS sty   ----------*/

.content-sty-no-gaps > * > * > .wpb_text_column.wpb_content_element {
  margin-bottom: 0;
}

/* Form nav bar */
.form-nav-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 889px;
  margin: 0 auto;
}

.form-nav-bar > div {
  -webkit-box-flex: 1;
  flex: auto;
  -ms-flex: auto;
  max-width: inherit;
  text-align: center;
  color: #777;
  padding: 0 10px 10px;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 2px solid #777;
}
.form-nav-bar .item.active {
  font-weight: 600;
}
.form-nav-bar .item.active,
.form-nav-bar > .item.back-active {
  border-color: var(--primary-color);
  color: var(--secondary-color);
}
.consulation-page-section .contact-form div[data-class="wpcf7cf_group"] {
  padding-left: 0px;
  padding-right: 0px;
  -webkit-box-flex: 0;
  flex: 0 0 100%;
  max-width: 100%;
  -ms-flex: 0 0 100%;
}

/* point calculator page  */

.point-form-sec ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.point-form-sec ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.radio-sty-list label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.4;
  margin-bottom: 15px;
}

.radio-sty-list label input {
  display: inline-block;
  margin-right: 10px;
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}

.radio-sty-list label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.4;
  margin-bottom: 15px;
}

.radio-sty-list label input {
  display: inline-block;
  margin-right: 10px;
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}

span.mark-title {
  text-align: center;
  display: block;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

.mark-radio-sty h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ff9b0b;
}

.point-form-sec h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}
.point-form-sec .item {
  margin-bottom: 40px;
}

.radio-sty-list span span {
  color: #ff9b0b;
  display: inline-block;
  margin-bottom: 10px;
}

.radio-sty-list ul li {
  padding-bottom: 10px;
}
.total-se button {
  padding: 10px 35px;
  border: none;
  background: #ff9b0b;
  color: #fff;
  border-radius: 5px;
}
.point-form-sec {
  padding-top: 60px;
  margin: auto;
  max-width: 1000px;
}
.score-wrap input {
  padding: 5px 10px;
  border: 1px solid #ddd;
}
.score-input {
  border: none;
  font-weight: bold;
  font-size: 20px;
  outline: none;
}
.mark-radio-sty h3 {
  position: relative;
}
.point-form-sec .points,
.canberra_matrix-calculator-sec .points {
  width: 150px;
  background: #333;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 7px;
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 15px;
}
.point-form-sec .score-input,
.canberra_matrix-calculator-sec .score-input {
  background: none;
  width: 40px;
  color: #fff;
  text-align: center;
}

.mark-radio-sty h3:before {
  border-bottom: 1px solid #ff9b0b !important;
  content: "";
  width: 100%;
  height: 1px !important;
  position: absolute;
  top: 15px;
  /* background-color: #9e0072 !important; */
  margin-left: 60px !important;
  right: 0;
  z-index: -1;
}

.mark-radio-sty span {
  display: inline-block;
  background: #fff;
}

.mark-radio-sty h3 span {
  display: inline-block;
  background: #fff;
  z-index: 111;
  padding-right: 30px;
}
#calculate-popup thead {
  border-top: 0;
  background: #f1f1f1;
}

.modal-body {
}

.modal-header {
  padding: 0;
}

.modal-header button {
  position: absolute;
  top: -16px;
  right: -25px;
  height: 40px;
  width: 40px;
  background: #fff;
  opacity: 1;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
}

#point-Total {
  border: 0;
  font-weight: bold;
}
.table th,
.table td {
  border: 0;
}

.modal .table tr:last-child {
  border-top: 1px solid #ddd;
}

.table th {
  font-size: 14px;
}

.remark {
  font-size: 14px;
  padding: 10px 20px 10px;
  background: #f7f1f1;
  margin-top: 30px;
}
.remark.fail {
  border-left: 4px solid #f00;
}
.remark.pass {
  border-left: 4px solid #1ede18;
}
#calculate-popup .modal-body {
  padding: 40px;
}

.points-calculator-section-page .container .main-title {
  max-width: 965px;
  margin: auto;
}
.close:hover,
.close:focus {
  opacity: 1;
}

.popupbtn {
  padding-top: 20px;
  text-align: center;
}
.ti-widget.ti-goog .ti-review-content .ti-review-text {
  min-height: auto !important;
}
.c-message_kit__gutter .ti-rating-text {
  margin-top: 10px;
  /* margin-bottom: 39px !important; */
}
.ti-widget.ti-goog .ti-widget-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ti-widget.ti-goog .ti-widget-container > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.ti-widget.ti-goog .ti-widget-container > .ti-reviews-container {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.ti-widget.ti-goog .ti-widget-container > .ti-header.source-Google {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-top: 30px;
  margin-bottom: 0;
}
body .ti-widget.ti-goog .ti-review-content {
  /*  height:200px !important; */
}
.c-message_kit__gutter .ti-rating-text {
  margin-top: 10px;
}
.bottom-footer .middle-side a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #fff;
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: color 0s, -webkit-transform 0.2s ease-out;
  transition: color 0s, -webkit-transform 0.2s ease-out;
  -o-transition: color 0s, transform 0.2s ease-out;
  transition: color 0s, transform 0.2s ease-out;
  transition: color 0s, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.bottom-footer .middle-side a:hover {
  color: #fff;
}
.bottom-footer .middle-side a:hover:before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.float-none {
  float: none;
}
.vc_row.wpb_row.vc_row-fluid {
  margin: 0;
}

.line-title:before {
  margin: auto;
}
.mb-30 {
  margin-bottom: 30px;
}

.teamrow .wpb_text_column {
  background: #f6f6f6;
  padding: 60px;
  margin-bottom: 0;
}

.teamrow .vc_col-sm-6 .vc_column-inner {
  padding: 0;
  margin-bottom: 0 !important;
}
.vc_column-inner.vc_custom_1627360986297 {
  padding-bottom: 0 !important;
}
.team-title {
  font-weight: 600;
}

.teamemail {
  font-style: italic;
  display: inline-block;
  padding-bottom: 9px;
  text-transform: lowercase;
  color: #323637;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.teamemail:hover {
  color: #ff9b0b;
}

#content ul.teamlisting {
  padding-left: 15px;
  margin-bottom: 10px;
}

.teamrow .wpb_text_column p {
  margin-bottom: 5px;
}

ul.teamlisting li {
  padding-bottom: 5px;
}

.teamrow .textwrap {
  line-height: 1.6;
}
.h-100 .vc_figure {
  padding: 40px 30px;
}

.teamrow .wpb_button,
.wpb_content_element,
ul.wpb_thumbnails-fluid > li {
  margin-bottom: 0 !important;
}
.teamrow .wpb_text_column div {
  margin-bottom: 10px;
}
.teamrow .post {
  display: inline-block;
  line-height: 1.3;
  font-weight: 600;
}

.team-wrapper .vc_single_image-wrapper {
  max-width: 250px !important;
  margin: auto auto 15px;
}

.wpb_text_column.wpb_content_element.teammember-name h3 a {
  color: #323637;
  display: block;
  margin-bottom: 5px;
}

.team-designation p a {
  color: #323637;
}

.team-wrapper .wpb_wrapper .team-designation p a:hover,
.team-wrapper .wpb_wrapper h3 a:hover {
  color: #ff9b0b;
}
.float-none .vc_column-inner {
  padding-bottom: 0 !important;
}
.viewmore-btn a {
  display: inline-block;
  color: #222;
  text-transform: capitalize;
  font-size: 16px;
  background: #343434;
  color: #fff;
  padding: 10px 35px;
  border-radius: 30px;
  margin-top: 15px;
}
.viewmore-btn {
  margin-top: 15px;
}
.viewmore-btn a:hover {
  background: #ff9b0b;
}
.contact-us-section .contact-form {
  margin-top: 35px !important;
}

body .partner-section {
  padding-top: 70px !important;
  padding-bottom: 65px !important;
}
section.information-page-section.default-gaps {
  padding-bottom: 80px !important;
}
.wpb_text_column.wpb_content_element.teammember-name {
  min-height: 80px;
}
#cf7s_container .cf7-square-field {
  margin-bottom: 20px;
}
.book-a-consultant-popup {
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  opacity: 0;
  z-index: 999999;
  visibility: hidden;

  -webkit-transition: all 0.5s;

  -o-transition: all 0.5s;

  transition: all 0.5s;
}
html.overflow-hidden {
  overflow: hidden;
}
span.close-popup-btn {
  position: absolute;
  right: 40px;
  top: 0;
  font-size: 26px;
  color: #777;
  cursor: pointer;
  text-align: right;
  display: block;

  padding: 19px 10px 10px;
}
.book-a-consultant-popup > div {
  height: 100%;
  overflow-y: auto;
}
span.close-popup-btn i {
  cursor: pointer;
}

span.close-popup-btn:hover {
  color: #333;
}
.book-a-consultant-popup.show-popup {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.md-content-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 991px;
}
.professional-items .item .img-prof-sty figure a .title {
  font-size: 0;
  overflow: hidden;
  width: 100%;
}

.professional-items .item .img-prof-sty:hover figure img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
div.cf7sr-g-recaptcha > div {
  margin: 0 auto 30px;
}
.contact-form .screen-reader-response {
  position: absolute;
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 12px;
  bottom: 53px;
  width: auto;
  height: auto;
  clip: auto;
}

.contact-form .screen-reader-response ul li {
  display: none !important;
}
.screen-reader-response ul li#wpcf7-f109-o1-ve-cf7sr-g-recaptcha-invalid,
.screen-reader-response ul li#wpcf7-f496-o1-ve-cf7sr-g-recaptcha-invalid {
  display: block !important;
  text-shadow: 0 0 0 rgb(255 255 255 / 12%);
  color: #dc3232;
}

.contact-form .screen-reader-response p {
  display: none;
}

.contact-form .screen-reader-response ul {
  margin: 0;
  padding: 0;
}
.information-page-section .single-news-text {
  text-align: justify;
}
span.nowrap {
  font-size: 13px;
}

.ti-rating-text {
  text-align: center;
}

.google-reviews {
  position: fixed;
  display: none;
  left: 25px;
  bottom: 43px;
  text-align: center;
  background: #fff;
  padding: 12px 10px;
  z-index: 13;
  border-radius: 15px;
  -webkit-box-shadow: rgb(0 0 0 / 24%) 0px 3px 10px;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 10px;
}
.google-reviews .star-lg .ti-star {
  width: 15px;
  height: 15px;
}
.google-reviews .star-lg .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Google/star/f.svg");
  background-size: contain;
}

.canberra_matrix-calculator-sec .item .row {
  -ms-flex-line-pack: center;
  align-content: center;
}

.canberra_matrix-calculator-sec .item .right-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-left: 1px solid #f1f1f1;
  text-align: center;
}
.canberra_matrix-calculator-sec .item .right-side > div {
  padding: 0 4em 2em;
}
.canberra_matrix-calculator-sec .item .col-md-6.left-side > div {
  padding-right: 2em;
}
.point-form-sec > .item,
.canberra_matrix-calculator-sec > .item {
  padding: 30px 20px;
  border: 4px solid #333;
  margin-bottom: 25px;
}

.canberra_matrix-calculator-sec .item .right-side > div h3 {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 21px;
}
.canberra_matrix-calculator-sec .item .radio-sty-list label {
  line-height: 1.4;
  margin-bottom: 15px;
  cursor: pointer;
  /* text-align: center; */
  border: 2px solid #333;
  padding: 8px 12px;
  display: block;
  border-radius: 30px;
}
.canberra_matrix-calculator-sec .item .radio-sty-list label input {
  margin-right: 0;
  margin-bottom: 8px;
}
.canberra_matrix-calculator-sec .item .radio-sty-list label span {
  display: block;
  font-weight: bold;
}

/* consultation top css */
#consultationTop img {
  width: 70px;
}
#consultationTop {
  position: fixed;
  top: -110%;
  left: 0px;
  right: 0;
  background-color: #f4f4f4;
  text-align: center;
  z-index: 9;
  padding: 15px 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
#consultationTop.sticky {
  top: 81px;
}
#consultationTop p {
  font-size: 14px;
  max-width: 1029px;
  margin: 0 auto;
}

#consultationTop .button-groups.box-btn a {
  font-size: 14px;
  padding: 8px 10px !important;
}
#consultationTop .button-groups.box-btn {
  margin-top: 10px;
}
.total-score-section {
  text-align: center;
}
.total-score-section .total-num {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 12px;
}
.score-compare span {
  display: block;
  margin: 0 5em 20px;
  background: var(--primary-color) !important;
  padding: 10px 20px;
  border-radius: 37px;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.score-compare span:hover {
  -webkit-box-shadow: inset -3px -3px 7px #ffffff73,
    inset 3px 3px 5px rgb(94 104 121 / 29%);
  box-shadow: inset -3px -3px 7px #ffffff73,
    inset 3px 3px 5px rgb(94 104 121 / 29%);
}
#hiddenInvi {
  display: none;
}
div#hiddenInvi .table th {
  font-size: 15px;
  font-weight: bold;
  background-color: #ccc;
}

div#hiddenInvi .table td {
  font-size: 14px;
}
.disclaimer-content h2.title {
  font-size: 22px;
  font-weight: 900;
}
.disclaimer-content .content {
  font-size: 14px;
  padding: 0 20px;
}
.disclaimer-content .content a {
  color: var(--primary-color);
}
.disclaimer-content .content a:hover {
  text-decoration: underline;
}
.canberra_matrix-calculator-sec .item .col-md-6.left-side ul {
  list-style: disc;
  padding-left: 23px;
}
.canberra_matrix-calculator-sec .total-score-section {
  margin-bottom: 0;
}

.top-footer .shape {
  position: absolute;
  right: 0;

  bottom: -70px;
  opacity: 0.5;
}
.footer-items .row {
  position: relative;
  z-index: 1;
}
.sponsor-lists ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.sponsor-lists ul li {
  padding-left: 5px;
  padding-right: 5px;
}
.sponsor-lists ul li a {
  width: 120px;
  position: relative;
  height: 120px;
  padding: 10px;
  display: block;
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  -webkit-transition-property: transform, border;
  -webkit-transition-property: border, -webkit-transform;
  transition-property: border, -webkit-transform;
  -o-transition-property: transform, border;
  transition-property: transform, border;
  transition-property: transform, border, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.sponsor-lists ul li a:hover {
  border: solid 2px var(--primary-color);
  -ms-transform: scale(1.3);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.sponsor-lists {
  border-bottom: 1px solid #868282;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.sponsor-lists ul li a img {
  width: 108px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*     -o-object-fit: cover;
       object-fit: cover; */
}

/* New css for form */

.gsm-profile-form-sec .form-wrapper.wpb_column {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  float: none;
}
.form-sty-detail.contact-form .field-group .field,
.form-sty-detail .item {
  margin-bottom: 30px !important;
}
.form-sty-detail.contact-form span.tip-text {
  font-size: 13px;
}
.form-sty-detail .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.form-sty-detail .item .m-title {
  font-size: 22px;
  color: var(--primary-color);
  font-weight: bolder;
  text-transform: uppercase;
}
.form-sty-detail .item.mb-0 {
  margin-bottom: 0 !important;
}
.form-sty-detail .item h3.title {
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.form-notice {
  font-size: 14px;
  margin-top: 20px;
}

.form-sty-detail span.title,
.form-sty-detail label.title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--secondary-color);
  display: block;
  font-family: var(--primary-fonts);
}

.form-sty-detail.contact-form .field p,
.form-sty-detail.contact-form .item br {
  display: none;
}
.form-sty-detail.contact-form .select-field select,
.form-sty-detail.contact-form .textarea-field textarea,
.form-sty-detail.contact-form .input-field input {
  border: 1px solid #dddddd;
  border-radius: 0;
}

.form-sty-detail.contact-form .check-sty-box .wpcf7-form-control > *,
.form-sty-detail.contact-form .radio-sty-box span.wpcf7-form-control > * {
  margin: 0;
  padding-left: 10px;
  padding-right: 10px;
}
.form-sty-detail.contact-form .check-sty-box.full .wpcf7-form-control > *,
.form-sty-detail.contact-form .radio-sty-box.full span.wpcf7-form-control > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.form-sty-detail.contact-form .check-sty-box .wpcf7-form-control,
.form-sty-detail.contact-form .radio-sty-box span.wpcf7-form-control {
  margin-left: -10px;
  margin-right: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.form-sty-detail.contact-form
  .check-sty-box
  .wpcf7-form-control
  .wpcf7-list-item
  .wpcf7-list-item-label,
.form-sty-detail.contact-form
  .radio-sty-box
  .wpcf7-form-control
  .wpcf7-list-item
  .wpcf7-list-item-label {
  padding-left: 25px;
}
.form-sty-detail.contact-form
  .check-sty-box
  .wpcf7-form-control
  .wpcf7-list-item
  .wpcf7-list-item-label:before,
.form-sty-detail.contact-form
  .radio-sty-box
  .wpcf7-form-control
  .wpcf7-list-item
  .wpcf7-list-item-label:before {
  top: 1px;
}
.form-sty-detail.contact-form
  .check-sty-box
  .wpcf7-form-control
  .wpcf7-list-item
  .wpcf7-list-item-label:after {
  top: 4px;
}
.form-sty-detail.contact-form
  .radio-sty-box
  .wpcf7-form-control
  .wpcf7-list-item
  .wpcf7-list-item-label:after {
  top: 5px;
}
.w-60 {
  width: 60px;
}
.top-header .right-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.top-header .right-side .box-btn {
  padding-left: 25px;
}
.top-header .right-side .box-btn a {
  font-size: 14 !important;
  padding: 9px 18px !important;
  min-width: auto;
  height: 40px;
  text-transform: uppercase;
}

.table-sty-field {
  display: table;
  border-bottom: 1px solid rgb(66 61 61 / 58%);
  border-collapse: collapse;
}
.table-sty-field .wpcf7-field-groups > *,
.table-sty-field .table-row {
  display: table-row;
  width: 100%;
}
.table-sty-field .table-item {
  display: table-cell;
}

.table-sty-field {
  width: 100%;
}

.table-sty-field .table-item input {
  width: 100%;
  font-size: 13px;
  display: block;
  height: 34px;
  padding: 0 5px;
  border: none;
  outline: none;
}
.table-sty-field .table-item {
  vertical-align: middle;
  text-align: center;
}
.table-sty-field .table-item.w-60 {
  width: 60px;
}
.table-sty-field .table-item.w-80,
.table-field table.table.table-striped .w-80 {
  width: 80px;
}
.gsm-profile-form-sec
  .form-sty-detail.contact-form
  .submit-btn
  input.wpcf7-form-control.wpcf7-submit {
  padding: 9px 20px;
  border: none;
  background: var(--primary-color);
  color: #fff;
  border-radius: 30px;
  min-width: 210px;
}
.gsm-profile-form-sec
  .form-sty-detail.contact-form
  .submit-btn
  input.wpcf7-form-control.wpcf7-submit:hover {
  background: var(--secondary-color);
}

.table-sty-field .table-item {
  padding: 8px 5px;
  border-left: 1px solid rgb(66 61 61 / 58%);
  border-right: 1px solid rgb(66 61 61 / 58%);
  border-bottom: 1px solid rgb(66 61 61 / 58%);
}
.table-sty-field .wpcf7-field-group p {
  position: absolute;
  left: 100%;
  top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 7px;
}
.table-sty-field .wpcf7-field-group p button {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  border: none;
  background: var(--secondary-color);
  padding: 0;
  color: #fff;
  margin: 0 2px;
}
.table-sty-field .wpcf7-field-group p button.wpcf7-field-group-remove {
  font-size: 0;
  background: red !important;
}
.table-sty-field .wpcf7-field-group p button.wpcf7-field-group-remove:before {
  content: "\f2ed";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
}
.table-sty-field .group-index {
  display: block;
  text-align: center;
  font-size: 14px;
}

.fill-field span.wpcf7-form-control-wrap {
  display: inline-block;
  width: auto;
  width: 42px;
}

.fill-field span.wpcf7-form-control-wrap input {
  width: 100%;
  font-size: 15px;
  border: none;
  padding: 5px;
  outline: none;
  border-bottom: 1px solid #777;
}
.table-field table.table.table-striped {
  margin-bottom: -2px;
}

.table-sty-field .wpcf7-field-group {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.table-sty-field .table-row {
  border-top: 1px solid #ccc;
  border-collapse: collapse;
  border-right: 1px solid #ccc;
}

.table-sty-field span.table-item {
  border-left: 1px solid #ccc;
}
.fill-field .text-fill {
  padding: 0 5px;
  font-weight: bold;
}

.fill-field span.wpcf7-form-control-wrap.overall-score {
  width: 50px;
}
.fill-field span.wpcf7-form-control-wrap.exam-date {
  width: 154px;
}

.form-sty-detail.contact-form
  .previous-australia-history
  .field-group
  .left-side
  .field {
  margin-bottom: 6px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.form-sty-detail.contact-form
  .previous-australia-history
  .right-side
  .input-field {
  padding-left: 4em;
  margin-bottom: 0 !important;
}
.form-sty-detail.contact-form div[data-id="previousaustralia"] {
  margin-top: 24px;
  padding: 1.4em 1.4em 0;
  border: 1px solid #cbc8c8;
}
.fill-field .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.previous-australia-checkbox .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.gsm-profile-form-sec .contact-form .wpcf7-not-valid-tip {
  right: 2px;
}
.fill-field .content span.wpcf7-not-valid-tip {
  display: none !important;
}
.fill-field span.wpcf7-form-control-wrap input.wpcf7-not-valid {
  border-color: #dc3232;
}
.gsm-profile-form-sec
  > .form-wrapper.wpb_column.vc_column_container.vc_col-sm-12
  > div {
  padding-left: 0;
  padding-right: 0;
}
.previous-australia-checkbox .field .left-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.gsm-profile-evaluation-section
  .form-sty-detail.contact-form
  .field-group
  .previous-australia-checkbox
  > .field {
  margin-bottom: 6px !important;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}
.gsm-profile-evaluation-section
  .form-sty-detail.contact-form
  .field-group
  .previous-australia-checkbox
  > .field.no-border {
  border-bottom: none;
  padding-bottom: 0;
}
.table-sty-field .wpcf7-field-groups {
  display: table-row-group;
}

.table-sty-field .thead .table-item {
  font-size: 14px;

  font-weight: bold;
}
.table-sty-field .thead {
  display: table-header-group;
}
.ti-no-logo.ti-goog .ti-rating-text {
  margin-top: 7px;
}

/* End New css for form */

.google-reviews {
  padding: 6px;
}

.ti-rating-text span {
  font-size: 12px;
}

.ti-v-center img {
  max-width: 60px;
}
.submit-field.text-center {
  position: relative;
}

.submit-field.text-center .wpcf7-spinner {
  position: absolute;
  right: 20%;
  top: 8px;
}
.contact-info-lists .item ul li a,
.contact-info-lists .item ul li {
  word-break: break-all;
}
.translate-middle {
  transform: translate(-50%, -50%) !important;
}
.start-50 {
  left: 50% !important;
}
.start-0 {
  left: 0 !important;
}
.top-100 {
  top: 100% !important;
}
.text-primary-theme {
  color: #fd9a0b !important;
}
.text-black {
  color: #000 !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.blog-items ul.post-categories li {
  text-decoration: none;
  list-style-type: none;
  margin: 0px;
}
.blog-items ul.post-categories {
  padding: 0px;
  margin: 0px !important;
}
a {
  color: #fe9a0b;
}
.btn-primary-theme {
  background: #fd9a0b !important;
}
.bg-primary-theme-4-light {
  background: #f5f5f5 !important;
}
.rounded-10 {
  border-radius: 0.6rem !important;
}
.rounded-top-10 {
  border-top-left-radius: 0.6rem !important;
  border-top-right-radius: 0.6rem !important;
}
.partner-items.slick-slider .slick-slide.item {
  margin: 5px 20px;
  width: 20% !important;
}
.my-post-grid .vc_gitem-zone-mini {
  padding: 5px 5px;
}
.my-post-grid .vc_gitem-post-data.vc_gitem-post-data-source-post_title h4 {
  color: #ff9b0b;
  text-transform: capitalize;
  font-size: 20px !important;
  line-height: 30px;
}
.my-post-grid .vc_gitem-post-data.vc_gitem-post-data-source-post_excerpt {
  font-size: 14px;
  margin-bottom: 20px;
}
.my-post-grid .vc_gitem-post-data.vc_gitem-post-data-source-post_excerpt {
  font-size: 14px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.my-post-grid
  a.vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded.vc_btn3-style-flat.vc_btn3-color-juicy-pink {
  padding: 10px 15px;
  border-radius: 0px;
  margin: 5px 0px 0px;
}
.my-post-grid
  .vc_gitem-zone.vc_gitem-zone-a.vc-gitem-zone-height-mode-auto.vc_gitem-is-link {
  height: 200px;
  background-size: cover;
}
.widget .widgettitle {
  background: #ff9b0b;
  color: #ffffff;
  padding: 8px 15px;
  font-size: 22px;
  margin-top: 0px;
  border-radius: 5px 5px 0px 0px;
  text-transform: capitalize;
}
.widget-title .widget.widget_nav_menu {
  background: #f5f5f5;
  padding-bottom: 20px;
}
.widget-title .widget.widget_nav_menu li.menu-item {
  font-size: 14px;
  margin: 0px 0px 10px;
  text-decoration: none;
}
section.information-page-section.default-gaps {
  padding: 40px 0px 30px !important;
}

@media screen and (min-width: 900px) {
  .consulation-page-section .contact-form.evaluation-form,
  .consulation-page-section .contact-form.evaluation-form .contact-form {
    max-width: 80% !important;
  }
  body.archive.category section {
    padding: 80px 0px;
  }
  /*  #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu {
        max-height: 70vh;
        overflow: scroll; display:block !important;
        padding: 0px 0px 50px !important;
    } */
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-flyout
    ul.mega-sub-menu
    li.mega-menu-item
    ul.mega-sub-menu
    li.mega-menu-item
    ul.mega-sub-menu
    li.mega-menu-item
    ul.mega-sub-menu {
    /*      left: 0;
        position: relative; */
  }
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-flyout
    ul.mega-sub-menu {
    left: -300px;
  }
}

/* #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
    overflow: auto;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
    z-index: 99999;
}
#mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu li.mega-menu-item.mega-menu-columns-1-of-5 ul.mega-sub-menu li ul.mega-sub-menu {
    overflow: hidden;
} */
#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item.mega-current-menu-ancestor
  > a.mega-menu-link {
  background: none !important;
  color: #ff9b0b !important;
}
#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item
  > a.mega-menu-link {
  background: #ffffff !important;
  color: #333333 !important;
}
.contact-form .input-field select {
  width: 100%;
  display: block;
  padding: 9px 20px;
  border: 1px solid #fff;
  background: #fff;
  font-size: 16px;
  outline: none;
  border-radius: 30px;
}
.contact-form .input-field select {
  color: #000;
  border-color: #777;
  padding: 11px 20px;
}
.gm-main-menu-wrapper .gm-menu-item__link {
  font-size: 13px !important;
}
.gm-navbar:not(.gm-navbar-sticky-toggle)
  .gm-navbar-nav
  > li.current-menu-item.box-btn
  > .gm-anchor {
  color: #ffffff !important;
}

.consulation-page-section
  .contact-form.evaluation-form
  .form-sty-detail.contact-form
  .table-sty-field,
.consulation-page-section
  .contact-form.evaluation-form
  .form-sty-detail.contact-form
  .table-sty-field
  .wpcf7-field-group
  p {
  table-layout: fixed;
}
.consulation-page-section
  .contact-form.evaluation-form
  .form-sty-detail.contact-form
  .table-sty-field
  .wpcf7-field-group
  p {
  position: relative;
  left: 0;
  top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
  margin-left: 20px;
}
.consulation-page-section
  .contact-form.evaluation-form
  .form-sty-detail.contact-form
  .table-sty-field {
  border-collapse: separate !important;
  border-bottom: 0px;
}
.consulation-page-section
  .contact-form.evaluation-form
  form
  .form-sty-detail.contact-form {
  box-shadow: 0 3px 6px rgb(0 0 0 / 20%);
  padding: 30px 15px;
  margin: 10px auto;
}
.consulation-page-section
  .contact-form.evaluation-form
  .form-sty-detail.contact-form
  .check-sty-box
  .wpcf7-form-control
  .wpcf7-list-item
  .wpcf7-list-item-label {
  font-weight: 500 !important;
  font-size: 14px;
}

.inq_form small {
  display: none;
}
fieldset {
  min-width: auto;

  padding: inherit;

  margin: auto;

  border: solid 1px #e78a05;

  border-radius: 6px;
  transition: all 0.3s;
}
.btn,
.btn-warning2 {
  font-weight: 500;
}
.btn-warning2 {
  background: #e78a05;
  color: white;
}
fieldset:hover {
  border-radius: 10px;
  border-left: solid 4px #e78a05;
}

legend {
  width: auto;

  padding: 0 4px;

  float: inherit;

  color: #e78a05;

  font-size: 1.3rem;
}

.score1 {
  background-color: #ffbb5a;

  height: 45px;

  width: 45px;

  border-radius: 50%;

  text-align: center;

  font-size: 24px;

  color: black;

  line-height: 42px;
}

.score2 {
  margin: auto;

  background-color: #ffb142;

  height: 180px;

  width: 180px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  text-align: center;

  font-size: 24px;

  color: #38270e;
  border: 4px dotted #b57e2f;
  /* box-shadow: 8px 8px 14px #ccc; */
  box-shadow: 4px 4px 14px #ccc;
  animation: scale 1s alternate infinite linear both;
}

@keyframes scale {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

.score2 b {
  font-family: sans-serif;
  -webkit-text-stroke: 1px;
}

.form-check {
  display: block;

  min-height: 1.5rem;

  box-shadow: 0 0 6px #ccc;

  border-radius: 4px;

  margin-bottom: 10px;

  padding: 4px 6px;

  padding-left: 35px;

  color: #666666;
}

.form-check-label {
  cursor: pointer;
  transition: all 0.3s;
}

.form-check-label:hover {
  letter-spacing: 0.1px;
  color: black;
}

.detail_text {
  font-size: 95%;
  color: #6c757d !important;
}

.custom_scroll::-webkit-scrollbar {
  width: 6px;

  background-color: #f5f5f5;
}

.custom_scroll::-webkit-scrollbar-thumb {
  background-color: #8e8e8e;
}

.custom_scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);

  background-color: #f5f5f5;
}

.form-check {
  font-size: 95%;
}

.sticky_score {
  position: -webkit-sticky;
  position: sticky;
  top: 17px;
}

/*Request a call*/
.site-footer.light-black-bg {
  padding-bottom: 69px;
}

.request_call .title {
  flex: auto;
  width: 20%;
}

.request_call .form_wrap {
  max-width: 80%;
  display: flex;
  align-items: center;
  width: 100%;
}

.request_call .form_wrap .form_group_wrap {
  display: flex;
}

.request_call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ff6060;
  padding: 10px;
  z-index: 9;
}
.information-page-section .wpb_wrapper .avia_textblock h4 + p {
  position: inherit;
  width: 100%;
  background-color: transparent !important;
  top: 0;
  height: inherit;
  text-align: left;
  line-height: 1.5;
}

.request_call .form_action {
  position: relative;
}

.request_call .form_action .wpcf7-spinner {
  position: absolute;
  bottom: 0;
  margin: 0;
}

.request_call .form_wrap .form_group_wrap .form_group .form_control {
  padding: 10px;
  outline: none;
  max-width: 200px;
  border: 1px solid #000;
  height: 48px;
  border-radius: 7px;
}

.request_call .form_wrap .form_group_wrap .form_group {
  padding: 0 5px;
}

.request_call
  .form_wrap
  .form_group_wrap
  .form_group
  select.form-control:not([size]):not([multiple]) {
  height: 48px !important;
  border: 1px solid #000;
  border-radius: 7px;
  outline: none;
}

.wpcf7-form {
  margin: 0;
}

.request_call .d-flex {
  align-items: center;
}

.request_call .title h5 {
  margin: 0;
  color: #fff;
}

.request_call .form_wrap .wpcf7-response-output {
  margin: 0;
}

.request_call .form_wrap .form_group_wrap .form_group .wpcf7-not-valid-tip {
  color: #fff;
}

.request_call .form_action .btn-submit {
  padding: 10px 20px;
  background-color: #ff9b0b;
  border: 1px solid #fff;
  border-radius: 27px;
  font-weight: 600;
  transition: all 0.5s ease;
}

.request_call .form_action .btn-submit:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.request_call .form_wrap .form_group_wrap .form-control:focus {
  box-shadow: none;
}
.request_call .form_wrap .rct-mobile {
  flex: 0 0 100%;
  text-align: center;
  margin-bottom: 20px;
  display: none;
}

.request_call .form_wrap .btn-close {
  display: none;
}

@media (max-width: 1200px) {
  .request_call .form_wrap .form_group_wrap .form_group .form_control {
    max-width: 180px;
  }
}

@media (max-width: 1024px) {
  .request_call .form_wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    width: 100%;
    display: flex;
    padding: 0;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: all 0.8s ease;
  }

  .request_call .form_wrap.modal-open {
    transform: translate(0);
  }

  .request_call .title h5 {
    text-align: center;
  }

  .request_call .form_wrap form {
    flex-wrap: wrap;
    align-items: center;
  }

  .request_call .form_wrap .btn-close {
    position: absolute;
    top: 30px;
    right: 30px;
    display: block;
  }

  .request_call .form_wrap .form_group_wrap {
    flex-direction: column;
  }

  .request_call .form_wrap .form_group_wrap .form_group .form_control {
    max-width: 100%;
    display: block;
  }

  .request_call .form_wrap form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    justify-content: center;
  }

  .request_call
    .form_wrap
    .form_group_wrap
    .form_group
    .wpcf7-form-control-wrap {
    display: block;
  }

  .request_call {
    z-index: 99999;
  }

  .request_call .form_action {
    padding-top: 10px;
    text-align: right;
  }

  .request_call .form_wrap .form_group_wrap .form_group {
    padding: 5px;
  }

  .request_call .form_action .btn-submit {
    display: block;
    width: 100%;
  }

  .request_call .title {
    width: 100%;
    text-align: center;
    padding: 10px;
    cursor: pointer;
  }

  .request_call {
    padding: 0;
  }
}
