@charset "UTF-8";
/**********************
    Google Fonts
***********************/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Raleway:wght@300;400;500;600;700;800&display=swap");
/**************************
    General Style Start
***************************/
::-moz-selection {
  background-color: #65bc7b;
  color: #fff;
}
::selection {
  background-color: #65bc7b;
  color: #fff;
}

html {
  overflow-x: hidden !important;
  height: 100%;
  overflow-y: auto;
}

body, html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  color: #888888;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
  font-weight: 400;
}

.container {
  padding-left: 0;
  padding-right: 0;
}

.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}

.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main {
  position: relative;
  overflow: hidden;
}

img {
  height: auto;
  max-width: 100%;
  border: none;
  outline: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

a, a:focus, a:active, a:link, img {
  outline: none;
  text-decoration: none;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #1f2022;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

a:hover {
  color: #65bc7b;
  text-decoration: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

br {
  font-size: 0;
  line-height: 0;
}

hr {
  margin-bottom: 0px;
  margin-top: 0px;
  border-top: 1px solid #eaeaea;
  border-bottom: none;
  border-left: none;
  border-right: none;
  opacity: 1;
}

ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0;
}

ul.security-list {
  list-style: disc;
  padding-left: 20px;
}

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

.box-shadow {
  -webkit-box-shadow: 0 0 12px rgba(31, 32, 34, 0.15);
          box-shadow: 0 0 12px rgba(31, 32, 34, 0.15);
}

.bg-light {
  background-color: #f6f6f6 !important;
}

.card {
  background: transparent;
  border-color: #eaeaea;
}

.gradient-bg {
  background: radial-gradient(circle, #0f3161 0%, #0c1027 100%);
}

.shape-bg img {
  width: 100%;
  max-width: 100%;
}

.shape-bg.top-bg img {
  margin-top: -1px;
}

.shape-bg.bottom-bg img {
  margin-bottom: -1px;
}

.loader {
  width: 90px;
  height: 60px;
  position: relative;
  display: inline-block;
  --base-color: #ffff;
}
.loader::before {
  content: '';  
  left: 0;
  top: 0;
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #65bc7b;
  background-image: radial-gradient(circle 12px at 27px 27px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 6px at 27px 0px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 6px at 0px 27px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 6px at 54px 27px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 6px at 27px 54px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 6px at 45px 7px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 6px at 45px 7px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 6px at 45px 45px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 6px at 7px 45px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 6px at 7px 7px, var(--base-color) 100%, transparent 0);
  background-repeat: no-repeat;
  box-sizing: border-box;
  animation: rotationBack 3s linear infinite;
}
.loader::after {
  content: '';  
  left: 52px;
  top: 22px;
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #65bc7b;
  background-image: radial-gradient(circle 7.5px at 18px 18px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 3.75px at 18px 0px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 3.75px at 0px 18px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 3.75px at 36px 18px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 3.75px at 18px 36px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 3.75px at 30px 4.5px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 3.75px at 30px 4.5px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 3.75px at 30px 30px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 3.75px at 4.5px 30px, var(--base-color) 100%, transparent 0),
                    radial-gradient(circle 3.75px at 4.5px 4.5px, var(--base-color) 100%, transparent 0);
  background-repeat: no-repeat;
  box-sizing: border-box;
  animation: rotationBack 4s linear infinite reverse;
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/**************************
    Headings Style Start
***************************/
h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #1f2022;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  margin-top: 0px;
  margin-bottom: 10px;
  position: relative;
}

h1 {
  font-size: 45px;
  line-height: 50px;
  font-weight: 600;
}

h2 {
  font-size: 40px;
  line-height: 46px;
  letter-spacing: 0;
  font-weight: 600;
}

h2.section_title {
  margin-bottom: 0;
}

h3 {
  font-size: 28px;
  line-height: 25px;
}

h4 {
  font-size: 20px;
  line-height: 24px;
}

h5 {
  font-size: 16px;
  line-height: 18px;
}

h5.sub-title {
  color: #888888;
}

h6 {
  font-size: 14px;
  line-height: 16px;
}

.dark-bg .section_title, .dark-bg .title, .dark-bg p, .dark-bg span {
  color: #fff;
}

.heading-part span {
  margin-bottom: 10px;
}

/**************************
    Button Style Start
***************************/
.btn, button {
  border: 1px solid transparent;
  padding: 10px 23px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 0;
  white-space: nowrap;
  border-radius: 5px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.btn:focus, button:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-color: transparent;
}

.btn:hover, button:hover {
  border-color: transparent;
}

.btn.btn-lg {
  padding: 13px 30px;
  font-size: 18px;
}

.btn.hover-effect:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: .2;
  position: absolute;
  top: -50px;
  width: 50px;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btn.hover-effect:hover:after {
  left: 120%;
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btn:hover.btn-link .btn-icon img {
  -webkit-filter: invert(69%) sepia(11%) saturate(1530%) hue-rotate(83deg) brightness(94%) contrast(87%);
          filter: invert(69%) sepia(11%) saturate(1530%) hue-rotate(83deg) brightness(94%) contrast(87%);
}

.btn-color {
  color: #fff;
  background: #65bc7b;
}

.btn-color:hover, .btn-color:focus {
  color: #fff;
  background: #24a846;
}

.btn-gray {
  color: #212529;
  background-color: #e9ecef;
  border-color: #e9ecef;
}

.btn-gray:hover, .btn-gray:focus {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-link {
  background: transparent;
  padding: 0;
  color: #1f2022;
  font-weight: 500;
  border: none;
  overflow: visible;
  text-decoration: none;
}

.btn-link:hover, .btn-link:focus {
  color: #65bc7b;
}

.btn-icon {
  margin: 0 6px;
}

.btn-icon:first-child {
  margin-left: 0;
}

.btn-icon:last-child {
  margin-right: 0;
}

.icon-slide-left:hover .btn-icon img {
  -webkit-animation: 0.5s ease slideLeft;
          animation: 0.5s ease slideLeft;
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.icon-slide-right:hover .btn-icon img {
  -webkit-animation: 0.5s ease slideRight;
          animation: 0.5s ease slideRight;
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/**************************
    Button Style End
***************************/
/**************************
    Form Style Start
***************************/
* {
  outline: none !important;
}

input {
  background: transparent;
  padding: 0 15px;
  font-size: 14px;
  width: 100%;
  height: auto;
  border: 1px solid #eaeaea;
  min-height: 40px;
  border-radius: 5px;
}

input:placeholder {
  color: #888888 !important;
}

input:focus {
  border: 1px solid #65bc7b;
  text-shadow: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.main-form input, .main-form textarea {
  background: transparent;
  padding: 0 15px;
  font-size: 14px;
  width: 100%;
  height: auto;
  border: 1px solid #eaeaea;
  min-height: 40px;
  border-radius: 5px;
}

.main-form input:placeholder, .main-form textarea:placeholder {
  color: #888888 !important;
}

.main-form input:focus, .main-form textarea:focus {
  border: 1px solid #65bc7b;
  text-shadow: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.main-form textarea {
  max-width: 100%;
  padding-top: 5px;
}

.input-box label {
  margin-bottom: 5px;
}

.check-box label {
  display: inline;
  font-size: 14px;
  font-weight: 400;
  vertical-align: middle;
}

.check-box input {
  display: none;
}

.select-dropdown {
  position: relative;
  width: 100%;
  display: block;
  height: 40px;
  border: 1px solid #eaeaea;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  border-radius: 5px;
}

.select-dropdown.dropdown-active {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-color: #65bc7b;
}

.select-dropdown .drop-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding: 9px 10px;
  height: 100%;
}

.select-dropdown .drop-option .drop-list .dropdown-arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  color: #888888;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.select-dropdown .drop-option .drop-list .dropdown-arrow img {
  width: 10px;
}

.select-dropdown .drop-option .drop-list.active .dropdown-arrow {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(-35%) rotateX(180deg);
          transform: translateY(-35%) rotateX(180deg);
}

.select-dropdown .drop-option .select-option {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  display: none;
  z-index: 50;
  margin-top: 1px;
  background: #fff;
  padding: 10px 0px;
  min-width: 100px;
  border-top: none;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0px 4px 5px 0px rgba(31, 32, 34, 0.1);
          box-shadow: 0px 4px 5px 0px rgba(31, 32, 34, 0.1);
}

.select-dropdown .drop-option .select-option a {
  display: block;
  float: left;
  position: relative;
  width: 100%;
  text-decoration: none;
  text-align: left;
  line-height: 20px;
  padding: 6px 10px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.select-dropdown .drop-option .select-option a:hover {
  background: #65bc7b;
  color: #fff;
  padding-left: 15px;
}

/* checkbox CSS Start */
label {
  display: inline-block;
  font-weight: 400;
  margin-bottom: 0;
  max-width: 100%;
}

.checkbox + label {
  cursor: pointer;
  line-height: 17px;
  padding-left: 20px;
  position: relative;
}

.checkbox:checked + label::before {
  background: #65bc7b none repeat scroll 0 0;
  border-color: #65bc7b;
}

.checkbox + label::before, .checkbox + label::after {
  content: "";
  height: 15px;
  left: 0;
  position: absolute;
  top: 0;
  width: 15px;
  margin-top: 2px;
}

.checkbox + label::before {
  background: transparent;
  border: 1px solid #65bc7b;
  border-radius: 5px;
}

/**************************
    Form Style End
***************************/
/********************************
    back-to-top Arrow Start
*********************************/
.scroll-top {
  bottom: 10px;
  position: fixed;
  right: 10px;
  z-index: 2;
}

.scroll-top .scrollup {
  position: relative;
  background: #65bc7b;
  display: none;
  cursor: pointer;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 34px;
  border-radius: 5px;
}

.scroll-top .scrollup:before {
  color: #fff;
  content: "";
  background: transparent url(../images/top-arrow.svg) no-repeat center center;
  top: 50%;
  left: 50%;
  position: absolute;
  width: 14px;
  height: 14px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/******************************** 
    back-to-top Arrow End
*********************************/
/*_______________________________________________________
// HEADER  //----------------------------
_______________________________________________________*/
/* - Header Style  //---------------- */
header#header {
  background: transparent;
  top: 0;
  width: 100%;
  border: none;
  z-index: 10;
  padding: 0;
  display: inline-block;
  position: absolute;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

header#header.navbar {
  margin-bottom: 0;
  border-radius: 0px;
}

.logo .navbar-brand {
  height: auto;
  padding: 0;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
}

/* Navigation Menu Style */
ul.navbar-nav > li.level {
  margin: 0 20px;
  position: relative;
}

ul.navbar-nav > li.level > a {
  color: #fff;
  width: 100%;
  padding: 25px 0 25px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.offcanvas-lg{
  transition: right 0.3s ease-in-out;
}

ul.navbar-nav > li.level > a.active {
  color: #65bc7b;
}

ul.navbar-nav > li.level > a.active:before {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

ul.navbar-nav > li.level > a:focus {
  color: #65bc7b;
}

ul.navbar-nav > li.level > a:before {
  background: #65bc7b;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  -webkit-transform: scale3d(0, 1, 1);
          transform: scale3d(0, 1, 1);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

ul.navbar-nav > li.level:hover > a {
  color: #65bc7b;
}

ul.navbar-nav > li.level:hover > a:before {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.side-toggle {
  display: none;
}

.get-in-touch .modal-content {
  padding: 20px 15px;
}

.get-in-touch .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
}

/* - Header Style End  //---------------- */
/*_______________________________________________________
// CONTANT  //----------------------------
_______________________________________________________*/
/* - Bread Crumb Style Start  //---------------- */
.bread.bread-banner {
  background: url(../images/bread-banner.jpg) no-repeat scroll center center;
  background-size: cover;
  padding-top: 125px;
}

.bread.bread-banner .bread-detail {
  display: inline-block;
  position: relative;
  left: 0;
  top: 0 !important;
  width: 100%;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.bread.bread-banner .bread-detail .bread-title {
  color: #65bc7b;
}

.bread.bread-banner .bread-detail h1 {
  max-width: 600px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto;
}

.bread.bread-banner .bread-detail .bread-crumb ul li a {
  color: #888888;
}

.bread.bread-banner .bread-detail .bread-crumb ul li a:hover {
  color: #65bc7b;
}

.bread.bread-banner .bread-detail .bread-crumb ul li.active a {
  color: #fff;
  cursor: default;
}

.bread.bread-banner .bread-detail .bread-crumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}

.bread.bread-banner .bread-detail .bread-crumb .breadcrumb-item + .breadcrumb-item:before {
  display: inline-block;
  padding-right: 12px;
  padding-left: 12px;
  color: #888888;
  content: "/";
}

/* - Bread Crumb Style End  //---------------- */
/* - Banner Style Start  //---------------- */
.banner-bg {
  padding: 150px 0 300px;
  position: relative;
  z-index: 0;
  background: radial-gradient(circle, #000925 0%, #001e48 50%, #000925 100%);
}

.banner-bg:after {
  background: transparent url("../images/particles.png") no-repeat scroll center center;
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: calc(100% - 150px);
  z-index: -1;
}

.banner-detail .banner-detail-inner .banner-title {
  color: #fff;
  font-size: 45px;
  font-weight: 600;
  line-height: 50px;
  margin: 0;
}

.banner-detail .banner-detail-inner > p {
  margin-bottom: 30px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.banner-img {
  -webkit-animation: MoveUpDown 2s linear infinite;
          animation: MoveUpDown 2s linear infinite;
  position: relative;
  mask-image: linear-gradient(rgba(0, 0, 0, 1) 80%, transparent);
}

@-webkit-keyframes MoveUpDown {
  0%, 100% {
    top: 0;
  }
  50% {
    top: 10px;
  }
}

@keyframes MoveUpDown {
  0%, 100% {
    top: 0;
  }
  50% {
    top: 10px;
  }
}

.wave-content {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0px;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.wave-content .wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: url("../images/wave.svg");
}

.wave-content .wave.wave1 {
  background: url("../images/wave.svg");
  -webkit-animation: animate 30s linear infinite;
          animation: animate 30s linear infinite;
  z-index: 1000;
  opacity: 1;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  bottom: 0;
  height: 118px;
}

.wave-content .wave.wave2 {
  background: url("../images/wave-1.svg");
  -webkit-animation: animate2 20s linear infinite;
          animation: animate2 20s linear infinite;
  z-index: 999;
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  bottom: 0;
  height: 265px;
}

.wave-content .wave.wave3 {
  background: url("../images/wave-2.svg");
  -webkit-animation: animate 18s linear infinite;
          animation: animate 18s linear infinite;
  z-index: 998;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  bottom: 0;
  height: 265px;
}

.wave-content .wave.wave4 {
  background: url("../images/wave-3.svg");
  -webkit-animation: animate2 25s linear infinite;
          animation: animate2 25s linear infinite;
  z-index: 997;
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  bottom: 0;
  height: 163px;
}

@-webkit-keyframes animate {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1920px;
  }
}

@keyframes animate {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1920px;
  }
}

@-webkit-keyframes animate2 {
  0% {
    background-position-x: 1920px;
  }
  100% {
    background-position-x: 0;
  }
}

@keyframes animate2 {
  0% {
    background-position-x: 1920px;
  }
  100% {
    background-position-x: 0;
  }
}

/* - Banner Style End  //---------------- */
/* - Our Services Style Start //---------------- */
.service-box {
  height: auto;
  min-height: 330px;
  padding: 50px 20px;
  color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
}

.service-box:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  top: 20%;
  background: transparent;
  border-radius: 50%;
  left: 50%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-box.service-box-1:after {
  background-color: #e2210b;
}

.service-box.service-box-2:after {
  background-color: #65bc7b;
}

.service-box.service-box-3:after {
  background-color: #00bbddff;
}

.service-box .service-icon {
  transition: all 0.4s ease-in-out;
  animation: pulseIcon 3s infinite ease-in-out;
}

@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.service-box:hover .service-icon {
  animation-play-state: paused;
  transform: scale(1.1);
}

.service-box.service-box-1 .service-icon {
  animation-delay: 0s;
}
.service-box.service-box-2 .service-icon {
  animation-delay: 0.5s;
}
.service-box.service-box-3 .service-icon {
  animation-delay: 1s;
}

.service-box .service-inner {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  width: 100%;
  transform: scale(1.1);
}

.service-box .service-detail {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  width: 100%;
}

.service-box h4 {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-box p {
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
  white-space: normal !important;
  margin-bottom: 1rem;
}

.service-box:hover {
  justify-content: flex-start;
}

.service-box:hover .service-inner {
  transform: scale(1);
  margin-top: 0;
}

.service-box:hover .service-detail {
  visibility: visible;
  opacity: 1;
  max-height: 500px;
}

.service-box:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.service-box:hover h4 {
  color: #fff;
}

.service-box .btn.btn-link {
  color: #fff;
}

.service-box .btn.btn-link:hover {
  color: #fff;
}

.service-box .btn .btn-icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.service-box .btn:hover .btn-icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.service-box:hover:after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  top: 0;
  left: 0;
  opacity: 1 !important;
}

/* - Our Services Style End //---------------- */
/* - Our Services Details Style start //---------------- */
.service-single-detail {
  margin-bottom: 50px;
}

.service-single-detail .icon {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  float: left;
}

.feature-icon {
  width: 30px;
}

.service-single-detail .icon i {
  font-size: 48px;
  color: #65bc7b;
}

.service-single-detail .icon img {
  width: 44px;
  height: 44px;
}

.service-detail-content {
  margin-left: 110px;
}

.single-detail-title {
  font-size: 22px;
  font-weight: 500;
}

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

/* - Our Services Details End //---------------- */
/* - Technology Style Start //---------------- */
.bg-img {
  background: url(../images/footer-bg.jpg) no-repeat scroll center center;
  background-size: cover;
}

.technology-box .icon {
  height: 50px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.technology-box .technology-title a {
  font-size: 16px;
  color: #fff;
}

.technology-box .technology-title a:hover {
  color: #65bc7b;
}

.technology-box .technology-title a[aria-disabled="true"] {
  cursor: default;
}

/* - Technology Style End //---------------- */
/* - Counter Style Start //---------------- */
.success-year .year-info h2 {
  font-weight: 400;
}

.success-year .year-info span {
  color: #65bc7b;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

.counter-area .counters-item {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 60px 20px;
}

.counter-area .counters-item .count-number {
  color: #65bc7b;
  font-size: 44px;
  line-height: 44px;
  font-weight: 800;
}

.counter-area .counters-item .count-title {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

.counter-area [class*="col-"]:last-child .counters-item {
  border-right: none;
}

/* - Counter Style End //---------------- */

/* - Our Partners Style End //---------------- */
.partner-logo .logo {
  padding: 20px 20px;
  border-right: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

/* - Our Partners Style End //---------------- */

/* - Our Skills Style Start //---------------- */
.progress-skills {
  overflow: hidden;
}

.progress-skills .skill-title {
  color: #1f2022;
}

.progress-skills .progress {
  height: 25px;
  background-color: rgba(101, 188, 123, 0.4);
  overflow: visible;
}

.progress-skills .progress .progress-bar {
  background-color: #65bc7b;
  border-radius: 5px;
  position: relative;
  overflow: visible;
}

.progress-skills .progress .progress-bar:after {
  content: attr(data-value);
  position: absolute;
  top: -26px;
  right: 0;
  color: #1f2022;
}

/* - Our Skills Style End //---------------- */

/* - Login Register Style Start //---------------- */

.input-box {
  position: relative;
}

/* - Login Register Css End //---------------- */
/* - Element Css Strat //---------------- */
/* - Accordion CSS Start //---------------- */
.accordion {
  z-index: 0;
  position: relative;
}

.accordion .accordion-item {
  border-bottom: 1px solid #eaeaea !important;
}

.accordion .accordion-item .accordion-body {
  color: #888888;
  text-align: justify;
}

.accordion .accordion-header {
  display: inline-block;
  position: relative;
  color: #1f2022;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.accordion-button {
  white-space: unset;
  padding-right: 40px;
}

.accordion-button:not(.collapsed) {
  color: #65bc7b;
  background-color: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.accordion-button:not(.collapsed):after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.accordion-button:hover {
  color: #65bc7b;
  background-color: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.accordion-button:focus {
  z-index: 3;
  border-color: unset;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.accordion-button:after {
  background-image: none !important;
  content: "";
  width: 2px;
  height: 16px;
  position: absolute;
  top: 18px;
  right: 28px;
  background: #1f2022;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.accordion-button:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: #1f2022;
  top: 25px;
  right: 21px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.accordion-body {
  padding-top: 0;
}

/* - Accordion CSS End //---------------- */
/* - pagination CSS Start //---------------- */

.progress-bar {
  background-color: #65bc7b;
}

/* - pagination CSS End //---------------- */
/* - Alert CSS End //---------------- */

.alert {
  padding: 8px 15px !important;
  margin-top: 5px;
}

/* - Alert CSS End //---------------- */
/* - Typography CSS End //---------------- */

.list > li {
  position: relative;
  padding: 5px 0 5px 15px;
}

.list > li:before {
  content: "";
  background: rgba(0, 0, 0, 0) url(../images/right-arrow.svg) no-repeat center center;
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
}

.list .list {
  padding-left: 10px;
}

/* - Typography CSS End //---------------- */
/*_______________________________________________________
// Footer Style Start  //----------------------------
_______________________________________________________*/
.footer {
  background: url(../images/footer-bg.jpg) no-repeat scroll center center;
  background-size: cover;
  position: relative;
  color: #fff;
  z-index: 0;
  letter-spacing: 0.5;
}

.footer a {
  color: #fff;
}

.footer a:hover {
  color: #65bc7b;
}

.footer hr {
  border-top: 1px solid #fff;
  opacity: 0.2;
}

.footer-static-block .title {
  margin-bottom: 25px;
  font-size: 25px;
  font-weight: 500;
  color: #fff;
}

.footer-static-block .footer-block-contant p {
  margin-bottom: 0;
}

.footer-static-block .footer-block-contant ul li {
  padding: 8px 0;
}

.footer-static-block .footer-block-contant ul li:first-child {
  padding-top: 0;
}

.footer-static-block .footer-block-contant ul li:last-child {
  padding-bottom: 0;
}

.footer-static-block .footer-block-contant ul li:last-child p {
  margin-bottom: 0;
}

.footer-static-block .footer-block-contant ul.link li a:hover {
  padding-left: 10px;
}

.footer-map {
  position: relative;
  width: 50%;
  left: 25%;
}

.footer-map .map-point {
  position: absolute;
  width: 75%;
  max-width: 381px;
  height: 75%;
  left: 0;
  top: 0;
}

.footer-map .map-point .dots {
  position: absolute;
}

.footer-map .map-point .dots.dots-1 {
  left: 49.0%;
  top: 39.0%;
}

.footer-map .map-point .dots.dots-2 {
  left: 55.3%;
  top: 7.73%;
}

.footer-map .map-point .dots.dots-3 {
  left: 61.5%;
  top: 105.09%;
}

.footer-map .map-point .dots.dots-4 {
  left: 68.0%;
  top: 42.73%;
}

.footer-map .map-point .dots.dots-5 {
  left: 75.3%;
  top: 108.73%;
}

.footer-map .map-point .dots.dots-6 {
  left: 65.5%;
  top: 70.0%;
}

.footer-map .map-point .dots.dots-7 {
  left: 47.2%;
  top: 93.64%;
}

.footer-map .map-point .dots.dots-8 {
  left: 33.2%;
  top: 57.0%;
}

.footer-map .map-point .dots.dots-9 {
  left: 61.5%;
  top: 109.09%;
}

.footer-map .map-point .dots.dots-10 {
  left: 53.8%;
  top: 3.00%;
}

.footer-map .map-point .dots.dots-11 {
  left: 48.0%;
  top: 38.0%;
}

.footer-map .map-point .dots.dots-12 {
  left: 53.8%;
  top: 4.00%;
}

.footer-map .map-point .dots.dots-13 {
  left: 55.3%;
  top: 18.73%;
}

.footer-map .map-point .dots.dots-14 {
  left: 59.5%;
  top: 104.09%;
}

.footer-map .map-point .dots.dots-15 {
  left: 55.3%;
  top: 40.73%;
}

.footer-map .map-point .dots.dots-16 {
  left: 89.1%;
  top: 56.27%;
}

.footer-map .map-point .dots.dots-17 {
  left: 36.3%;
  top: 80.64%;
}

.footer-map .map-point .dots.dots-1:not(:hover):before {
  -webkit-animation-delay: 0.02s;
          animation-delay: 0.02s;
}

.footer-map .map-point .dots.dots-2:not(:hover):before {
  -webkit-animation-delay: 1.14s;
          animation-delay: 1.14s;
}

.footer-map .map-point .dots.dots-3:not(:hover):before {
  -webkit-animation-delay: 0.56s;
          animation-delay: 0.56s;
}

.footer-map .map-point .dots.dots-4:not(:hover):before {
  -webkit-animation-delay: 1.18s;
          animation-delay: 1.18s;
}

.footer-map .map-point .dots.dots-5:not(:hover):before {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.footer-map .map-point .dots.dots-6:not(:hover):before {
  -webkit-animation-delay: 0.62s;
          animation-delay: 0.62s;
}

.footer-map .map-point .dots.dots-7:not(:hover):before {
  -webkit-animation-delay: 0.14s;
          animation-delay: 0.14s;
}

.footer-map .map-point .dots.dots-8:not(:hover):before {
  -webkit-animation-delay: 0.96s;
          animation-delay: 0.96s;
}

.footer-map .map-point .dots.dots-9:not(:hover):before {
  -webkit-animation-delay: 1.48s;
          animation-delay: 1.48s;
}

.footer-map .map-point .dots.dots-10:not(:hover):before {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.footer-map .map-point .dots.dots-11:not(:hover):before {
  -webkit-animation-delay: 0.22s;
          animation-delay: 0.22s;
}

.footer-map .map-point .dots.dots-12:not(:hover):before {
  -webkit-animation-delay: 1.74s;
          animation-delay: 1.74s;
}

.footer-map .map-point .dots.dots-13:not(:hover):before {
  -webkit-animation-delay: 0.26s;
          animation-delay: 0.26s;
}

.footer-map .map-point .dots.dots-14:not(:hover):before {
  -webkit-animation-delay: 0.88s;
          animation-delay: 0.88s;
}

.footer-map .map-point .dots.dots-15:not(:hover):before {
  -webkit-animation-delay: 1.10s;
          animation-delay: 1.10s;
}

.footer-map .map-point .dots.dots-16:not(:hover):before {
  -webkit-animation-delay: 1.32s;
          animation-delay: 1.32s;
}

.footer-map .map-point .dots.dots-17:not(:hover):before {
  -webkit-animation-delay: 2.04s;
          animation-delay: 2.04s;
}

.footer-map .map-point .dots:not(:hover):before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #65bc7b;
  border-radius: 50%;
  -webkit-animation: zooming 2s infinite;
          animation: zooming 2s infinite;
}

.footer-map .map-point .dots .city {
  background: #fff;
  color: #1f2022;
  padding: 3px 20px;
  position: absolute;
  top: 17px;
  left: 50%;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(15%);
          transform: translateX(-50%) translateY(15%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.footer-map .map-point .dots .city:before {
  border-color: transparent transparent #fff;
  border-style: solid;
  border-width: 5px;
  content: "";
  left: 50%;
  top: -10px;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.footer-map .map-point .dots .hotspot {
  width: 9px;
  height: 9px;
  background: #65bc7b;
  border-radius: 50%;
  position: relative;
  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;
}

@-webkit-keyframes zooming {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(3);
            transform: scale(3);
  }
}

@keyframes zooming {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(3);
            transform: scale(3);
  }
}

.copy-right a {
  color: #65bc7b;
}

/* - Social Icon Style Start //---------------- */
ul.social-icon li {
  padding-right: 10px;
}

ul.social-icon li:last-child {
  padding-right: 0;
}

ul.social-icon li a {
  color: #1f2022;
  border: 1px solid #1f2022;
  font-size: 20px;
  width: 40px;
  height: 40px;
  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;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-radius: 50%;
}

ul.social-icon li a:hover {
  color: #65bc7b;
  border: 1px solid #65bc7b;
}

.footer ul.social-icon li a {
  color: #fff;
  border: 1px solid #fff;
}

.footer ul.social-icon li a:hover {
  color: #65bc7b;
  border: 1px solid #65bc7b;
}

/* - Social Icon Style End //---------------- */
/* - Footer Style End //---------------- */

.checkbox-wrapper-19 {
  box-sizing: border-box;
  --background-color: #fff;
  --checkbox-height: 25px;
  display: flex;
  align-items: center;
}
.check-box-label {
  text-justify: auto;
  margin-left: 12px;
  font-size: 12px;
  line-height: 1.4;
}

.check-box {
  flex-shrink: 0;
}

@-moz-keyframes dothabottomcheck-19 {
  0% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) / 2);
  }
}

@-webkit-keyframes dothabottomcheck-19 {
  0% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) / 2);
  }
}

@keyframes dothabottomcheck-19 {
  0% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) / 2);
  }
}

@keyframes dothatopcheck-19 {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) * 1.2);
  }
}

@-webkit-keyframes dothatopcheck-19 {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) * 1.2);
  }
}

@-moz-keyframes dothatopcheck-19 {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) * 1.2);
  }
}

.checkbox-wrapper-19 input[type=checkbox] {
  display: none;
}

.checkbox-wrapper-19 .check-box {
  height: var(--checkbox-height);
  width: var(--checkbox-height);
  background-color: transparent;
  border: calc(var(--checkbox-height) * .1) solid;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: border-color ease 0.2s;
  -o-transition: border-color ease 0.2s;
  -webkit-transition: border-color ease 0.2s;
  transition: border-color ease 0.2s;
  cursor: pointer;
}
.checkbox-wrapper-19 .check-box::before,
.checkbox-wrapper-19 .check-box::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: 0;
  width: calc(var(--checkbox-height) * .2);
  background-color: #34b93d;
  display: inline-block;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 5px;
  content: " ";
  -webkit-transition: opacity ease 0.5;
  -moz-transition: opacity ease 0.5;
  transition: opacity ease 0.5;
}
.checkbox-wrapper-19 .check-box::before {
  top: calc(var(--checkbox-height) * .72);
  left: calc(var(--checkbox-height) * .41);
  box-shadow: 0 0 0 calc(var(--checkbox-height) * .05) var(--background-color);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.checkbox-wrapper-19 .check-box::after {
  top: calc(var(--checkbox-height) * .37);
  left: calc(var(--checkbox-height) * .05);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.checkbox-wrapper-19 input[type=checkbox]:checked + .check-box,
.checkbox-wrapper-19 .check-box.checked {
  border-color: #34b93d;
}
.checkbox-wrapper-19 input[type=checkbox]:checked + .check-box::after,
.checkbox-wrapper-19 .check-box.checked::after {
  height: calc(var(--checkbox-height) / 2);
  -moz-animation: dothabottomcheck-19 0.2s ease 0s forwards;
  -o-animation: dothabottomcheck-19 0.2s ease 0s forwards;
  -webkit-animation: dothabottomcheck-19 0.2s ease 0s forwards;
  animation: dothabottomcheck-19 0.2s ease 0s forwards;
}
.checkbox-wrapper-19 input[type=checkbox]:checked + .check-box::before,
.checkbox-wrapper-19 .check-box.checked::before {
  height: calc(var(--checkbox-height) * 1.2);
  -moz-animation: dothatopcheck-19 0.4s ease 0s forwards;
  -o-animation: dothatopcheck-19 0.4s ease 0s forwards;
  -webkit-animation: dothatopcheck-19 0.4s ease 0s forwards;
  animation: dothatopcheck-19 0.4s ease 0s forwards;
}

.ul-list-policy{
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 10px;
}

.a4-paper-style {
  width: 210mm;
  padding: 20mm;
  margin: auto;
  background-color: white;
  color: black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: "Open Sans", sans-serif;
  font-size: 12pt;
  line-height: 1.5;
}

.a4-paper-style h1, .a4-paper-style h2, .a4-paper-style h3, .a4-paper-style h4, .a4-paper-style h5 {
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  margin-top: 24pt;
  margin-bottom: 8pt;
}

.a4-paper-style h2 {
 font-size: 14pt !important;
}

.a4-paper-style p {
  margin-bottom: 12pt;
}

.a4-paper-style ul {
  margin-left: 36pt;
  margin-bottom: 12pt;
}

.check-icon {
  color: #65bc7b;
  font-size: 1.7rem;
}

/* - Module cards CSS End //---------------- */

.module-card {
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding: 30px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 28, 68, 0.1);
  border-color: #65bc7b;
}

.module-card.selected {
  background: linear-gradient(135deg, #65bc7b 0%, #65bc7b 100%);
  border-color: #65bc7b;
  box-shadow: 0 10px 30px rgba(0, 28, 68, 0.3);
}

.module-card.selected .module-title {
  color: #fff;
}

.module-card.selected .module-icon i {
  color: #fff;
}

.module-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.module-icon i {
  font-size: 36px;
  color: #65bc7b;
  transition: all 0.3s ease;
}

.module-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2022;
  margin: 0;
  transition: all 0.3s ease;
  text-align: center;
}

#contact-modules-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#contact-modules-btn:disabled:hover {
  transform: none;
}

.module-description-box {
  background: #f6f6f6;
  border-left: 4px solid #65bc7b;
  border-radius: 8px;
  padding: 25px 30px;
  text-align: left;
  animation: fadeInUp 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 28, 68, 0.08);
}

.module-description-box .module-desc-inner h4 {
  color: #1f2022;
  font-size: 20px;
  font-weight: 600;
}

.module-description-box .module-desc-inner p {
  color: #1f2022;
  line-height: 1.6;
  font-size: 15px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.checkbox-wrapper-20 {
  box-sizing: border-box;
  --background-color: #65bc7b;
  --checkbox-height: 25px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 10px;
}
.check-box-label {
  text-justify: auto;
  margin-left: 12px;
  font-size: 12px;
  line-height: 1.4;
}

.check-box {
  flex-shrink: 0;
}

@-moz-keyframes dothabottomcheck-20 {
  0% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) / 2);
  }
}

@-webkit-keyframes dothabottomcheck-20 {
  0% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) / 2);
  }
}

@keyframes dothabottomcheck-20 {
  0% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) / 2);
  }
}

@keyframes dothatopcheck-20 {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) * 1.2);
  }
}

@-webkit-keyframes dothatopcheck-20 {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) * 1.2);
  }
}

@-moz-keyframes dothatopcheck-20 {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) * 1.2);
  }
}

.checkbox-wrapper-20 input[type=checkbox] {
  display: none;
}

.checkbox-wrapper-20 .check-box {
  height: var(--checkbox-height);
  width: var(--checkbox-height);
  background-color: transparent;
  border: calc(var(--checkbox-height) * .1) solid #65bc7b;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: border-color ease 0.2s;
  -o-transition: border-color ease 0.2s;
  -webkit-transition: border-color ease 0.2s;
  transition: border-color ease 0.2s;
  cursor: pointer;
}
.checkbox-wrapper-20 .check-box::before,
.checkbox-wrapper-20 .check-box::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: 0;
  width: calc(var(--checkbox-height) * .2);
  background-color: #ffff;
  display: inline-block;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 5px;
  content: " ";
  -webkit-transition: opacity ease 0.5;
  -moz-transition: opacity ease 0.5;
  transition: opacity ease 0.5;
}
.checkbox-wrapper-20 .check-box::before {
  top: calc(var(--checkbox-height) * .72);
  left: calc(var(--checkbox-height) * .41);

  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.checkbox-wrapper-20 .check-box::after {
  top: calc(var(--checkbox-height) * .37);
  left: calc(var(--checkbox-height) * .05);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.checkbox-wrapper-20 input[type=checkbox]:checked + .check-box,
.checkbox-wrapper-20 .check-box.checked {
  border-color: #ffff;
}
.checkbox-wrapper-20 input[type=checkbox]:checked + .check-box::after,
.checkbox-wrapper-20 .check-box.checked::after {
  height: calc(var(--checkbox-height) / 2);
  -moz-animation: dothabottomcheck-20 0.2s ease 0s forwards;
  -o-animation: dothabottomcheck-20 0.2s ease 0s forwards;
  -webkit-animation: dothabottomcheck-20 0.2s ease 0s forwards;
  animation: dothabottomcheck-20 0.2s ease 0s forwards;
}
.checkbox-wrapper-20 input[type=checkbox]:checked + .check-box::before,
.checkbox-wrapper-20 .check-box.checked::before {
  height: calc(var(--checkbox-height) * 1.2);
  -moz-animation: dothatopcheck-20 0.4s ease 0s forwards;
  -o-animation: dothatopcheck-20 0.4s ease 0s forwards;
  -webkit-animation: dothatopcheck-20 0.4s ease 0s forwards;
  animation: dothatopcheck-20 0.4s ease 0s forwards;
}

/* - Module cards CSS End //---------------- */

/* - Blog CSS Start //---------------- */

.feed-wrap {
  max-width: 680px;
  margin: 0 auto; 
  border: 1px solid #e6ecf0; 
  background:#fff; 
}

.post {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #e6ecf0;
}

.post:hover {
  background: #fafafa;
}

.avatar { flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.content {
  flex: 1;
  min-width: 0;
}

.meta { display:flex;
  align-items:center;
  gap:6px;
  color:#536471;
  font-size: 14px;
}

.meta .username {
  color:#0f1419;
  font-weight: 700;
}

.dot {
  width:3px;
  height:3px;
  background:#536471;
  border-radius:50%;
  display:inline-block;
}

.content .title {
  margin: 2px 0 6px;
  font-size: 16px;
  font-weight: 600;
  color:#0f1419;
  line-height: 1.3;
}

.excerpt {
  margin: 0;
  font-size: 15px;
  color:#0f1419;
}

.actions {
  margin-top: 8px;
  display:flex;
  gap: 18px;
  color:#536471;
  font-size: 14px;
}

.actions i {
  font-size: 16px;
}

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

.empty {
  padding: 40px 16px;
  text-align:center;
  color:#536471;
}

.share-actions {
  display:flex;
  align-items:center;
  gap:14px;
}

.share-actions a {
  color:#536471;
  text-decoration:none;
}

.share-actions a:hover {
  color:#0f1419;
}

.toast-notification {
  position: fixed;
  bottom: 60px;
  right: 10px;
  background: #28a745;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-notification i {
  font-size: 16px;
}

.badge-new {
  display:inline-block; background:#28a745; color:#fff;
  font-size:11px; letter-spacing:.5px; font-weight:600;
  padding:3px 8px; border-radius:20px; margin-left:6px;
}


#blog-new-content-toast {
  position: fixed;
  left: 10px;
  bottom: -220px;
  width: 320px;
  max-width: calc(100% - 40px);
  background: #001c44;
  color: #fff;
  border-radius: 14px;
  padding: 18px 18px 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  font-size: 14px;
  line-height: 1.4;
  z-index: 999;
  transition: bottom .6s cubic-bezier(.19,1,.22,1);
}

#blog-new-content-toast.show {
  bottom: 10px;
}

#blog-new-content-toast button.close-toast {
  position:absolute; top:8px; right:10px;
  background:transparent; border:0; color:#fff;
  font-size:18px; line-height:1; cursor:pointer;
}

#blog-new-content-toast .badge-new {
  display:inline-block; background:#28a745; color:#fff;
  font-size:11px; letter-spacing:.5px; font-weight:600;
  padding:3px 8px; border-radius:20px; margin-left:6px;
}

/* - Blog CSS End //---------------- */

/* - R2 Modules CSS Start //---------------- */

.text-success {
 color: #28a745 !important;
}

#r2-modules-toast {
  position: fixed;
  left: 10px;
  bottom: -220px;
  width: 280px;
  max-width: calc(100% - 40px);
  background: #001c44;
  color: #fff;
  border-radius: 14px;
  padding: 18px 18px 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  font-size: 14px;
  line-height: 1.4;
  z-index: 999;
  transition: bottom .6s cubic-bezier(.19,1,.22,1);
}
#r2-modules-toast.show { bottom: 10px; }
#r2-modules-toast button.close-toast {
  position:absolute;
  top:8px; right:10px;
  background:transparent;
  border:0; color:#fff;
  font-size:18px; line-height:1;
  cursor:pointer;
}
#r2-modules-toast .badge-new {
  display:inline-block; background:#28a745; color:#fff;
  font-size:11px; letter-spacing:.5px; font-weight:600;
  padding:3px 8px; border-radius:20px; margin-left:6px;
}

.laptop-slideshow-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
  width: 100%;
}

.laptop-frame {
  width: 100%;
  display: block;
  position: relative;
  z-index: 5;
}

.laptop-screen {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.05);
}

.screen-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.screen-slide.active {
  opacity: 1;
  z-index: 1;
}

.module-card input[type="checkbox"],
.module-card .check-box {
  pointer-events: none;
}

.module-description-box {
  position: relative;
}

.close-module-desc {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: #666;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}

.close-module-desc:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
  transform: rotate(90deg);
}

.close-module-desc:active {
  transform: rotate(90deg) scale(0.9);
}

#contact-modules-btn{
  opacity: 0;
  transform: translateY(12px) scale(.98);
  visibility: hidden;
  pointer-events: none;
  transition: opacity .36s cubic-bezier(.19,1,.22,1), transform .36s cubic-bezier(.19,1,.22,1);
  will-change: opacity, transform;
  margin-top: 20px;
}

@keyframes pulseBtn {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(0) scale(1.06);
    opacity: 1;
  }
}

#contact-modules-btn.visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;

  animation: pulseBtn 3s infinite cubic-bezier(.19,1,.22,1);
  transform-origin: center;
  will-change: transform, opacity;
}

#contact-modules-btn.visible:hover {
  animation-play-state: paused;
  cursor: pointer;
}

/* Policy page enhancements */
.policy-update-date {
  font-size: 10pt;
  color: #555;
}

.policy-list {
  list-style: disc;
  margin-left: 22px;
  margin-bottom: 12pt;
  padding-left: 4px;
}

.policy-list li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16pt 0 24pt;
  font-size: 11pt;
}

.policy-table th,
.policy-table td {
  border: 1px solid #dcdcdc;
  padding: 8px 12px;
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  background: #f6f6f6;
  font-weight: 600;
  font-size: 11pt;
}

.policy-table tbody tr:hover {
  background: #fafafa;
}

@media (max-width: 767px) {
  .a4-paper-style {
    width: 100%;
    padding: 20px 16px;
  }

  .policy-table,
  .policy-table thead,
  .policy-table tbody,
  .policy-table tr,
  .policy-table th,
  .policy-table td {
    display: block;
  }

  .policy-table thead tr {
    display: none;
  }

  .policy-table tbody tr {
    margin-bottom: 10px;
    border: 1px solid #eaeaea;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
  }

  .policy-table tbody td {
    border: none;
    border-bottom: 1px solid #eee;
    padding: 8px 12px;
    display: flex;
    gap: 12px;
  }

  .policy-table tbody td:before {
    content: attr(data-label);
    flex: 0 0 140px;
    font-weight: 600;
    color: #1f2022;
  }

  .policy-table tbody tr:last-child td:last-child {
    border-bottom: none;
  }
}
/* Stats Section */
.stat-box {
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-box.green-bg {
  background: linear-gradient(135deg, #65bc7b 0%, #4cae64 100%);
}

.stat-number {
  font-family: 'Raleway', sans-serif;
  line-height: 1.2;
}

.stat-label {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.opacity-75 {
  opacity: 0.75;
}

/* Stats Section - Bars */
.text-green {
  color: #65bc7b !important;
}

.bg-green {
  background: linear-gradient(to top, #65bc7b, #4cae64);
}

.stat-bar {
  width: 80px; /* Fixed width */
  border-radius: 15px 15px 0 0;
  box-shadow: 0 -5px 20px rgba(101, 188, 123, 0.3);
}

.stat-content {
  margin-bottom: 15px;
}

/* Responsive Stats Section */
.stat-bar {
  /* Default (Desktop) */
  width: 80px;
  height: 0; /* Start at 0 */
  height: var(--bar-size, 0px);
  transition: height 2s cubic-bezier(0.22, 1, 0.36, 1), width 2s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 991px) {
  .stats-section .row {
    min-height: auto !important;
    display: block; /* Stack items */
  }
  
  .stats-section .col-lg-4 {
    margin-bottom: 40px;
  }

  .stat-bar-wrapper {
    flex-direction: column;
    align-items: flex-start !important; /* Align left */
    width: 100%;
  }

  .stat-bar {
    width: 0; /* Start at 0 */
    width: var(--bar-size, 0px);
    height: 25px !important; /* Fixed height on mobile */
    border-radius: 0 15px 15px 0;
    box-shadow: 5px 5px 15px rgba(101, 188, 123, 0.2);
  }
  
  .stat-content {
    text-align: left !important;
    margin-bottom: 10px;
    padding-left: 5px;
  }
  
  /* Adjust font sizes for mobile */
  .stat-number.display-5 {
    font-size: 2.5rem;
  }
}

/* Stats Row Desktop Height */
@media (min-width: 992px) {
  .stats-row {
    min-height: 400px;
  }
}

/* Static Doughnut Chart */
.chart-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  min-height: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.doughnut-chart {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: conic-gradient(
    #32bbc0 0deg 60deg,
    #001c44 60deg 120deg,
    #f39c12 120deg 180deg,
    #8e44ad 180deg 240deg,
    #2980b9 240deg 300deg,
    #c0392b 300deg 360deg
  );
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.chart-label {
  position: absolute;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  white-space: nowrap;
  z-index: 2;
}

.chart-label .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 10px;
}

/* Positioning Labels */

/* Right side labels (1, 2, 3) - Dot Text */
/* Position left edge near the chart */
.label-1, .label-2, .label-3 {
  left: calc(50% + 200px);
  justify-content: flex-start;
}

/* Left side labels (4, 5, 6) - Text Dot */
/* Position right edge near the chart */
.label-4, .label-5, .label-6 {
  right: calc(50% + 200px);
  justify-content: flex-end;
}

/* 1. Porządek w pracy (Top Right) */
.label-1 {
  top: 10%;
}

/* 2. Oszczędność czasu (Right) */
.label-2 {
  top: 50%;
  transform: translateY(-50%);
}

/* 3. Bezpieczeństwo danych (Bottom Right) */
.label-3 {
  bottom: 10%;
}

/* 4. Wszystko w jednym miejscu (Bottom Left) */
.label-4 {
  bottom: 10%;
}

/* 5. Praca bez błędów (Left) */
.label-5 {
  top: 50%;
  transform: translateY(-50%);
}

/* 6. Zawsze aktualne i bezpieczne (Top Left) */
.label-6 {
  top: 10%;
}

@media (max-width: 991px) {
  .chart-container {
    max-width: 100%;
    min-height: auto;
    flex-direction: column;
    padding: 40px 0;
  }

  .doughnut-chart {
    margin-bottom: 40px;
  }

  .chart-label {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
    justify-content: flex-start;
  }

  .chart-label .dot {
    order: -1;
    margin-left: 0;
    margin-right: 15px;
  }
}

/* Connecting lines */
.chart-label::before {
  content: "";
  position: absolute;
  height: 2px; /* Thicker lines */
  z-index: -1;
  opacity: 1;
}

/* Line Colors matching dots */
.label-1::before { background-color: #32bbc0; }
.label-2::before { background-color: #001c44; }
.label-3::before { background-color: #f39c12; }
.label-4::before { background-color: #8e44ad; }
.label-5::before { background-color: #2980b9; }
.label-6::before { background-color: #c0392b; }

/* Right side labels (1, 2, 3) */
.label-1::before, .label-2::before, .label-3::before {
  right: 100%;
  margin-right: 15px;
  transform-origin: right center;
}

/* Left side labels (4, 5, 6) */
.label-4::before, .label-5::before, .label-6::before {
  left: 100%;
  margin-left: 15px;
  transform-origin: left center;
}

/* 1. Top Right - Line Down */
.label-1::before {
  top: 50%;
  width: 130px;
  transform: rotate(-35deg);
}

/* 2. Middle Right - Horizontal */
.label-2::before {
  top: 50%;
  width: 70px;
  transform: translateY(-50%);
}

/* 3. Bottom Right - Line Up */
.label-3::before {
  top: 50%;
  width: 130px;
  transform: rotate(35deg);
}

/* 4. Bottom Left - Line Up */
.label-4::before {
  top: 50%;
  width: 130px;
  transform: rotate(-35deg);
}

/* 5. Middle Left - Horizontal */
.label-5::before {
  top: 50%;
  width: 70px;
  transform: translateY(-50%);
}

/* 6. Top Left - Line Down */
.label-6::before {
  top: 50%;
  width: 130px;
  transform: rotate(35deg);
}

/* Mobile - Hide lines */
@media (max-width: 991px) {
  .chart-label::before {
    display: none;
  }

  .chart-labels-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
  }

  .chart-label {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: auto;
    max-width: none;
    margin-bottom: 0;
    justify-content: center;
  }

  .chart-label .dot {
    order: -1;
    margin-left: 0;
    margin-right: 10px;
  }
}

.doughnut-chart::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  background: #fff;
  border-radius: 50%;
}

.center-logo {
  position: absolute;
  z-index: 10;
  width: 25%;
  height: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-logo-green {
    width: 100%;
    height: 100%;
    background-color: #24221cff;
    -webkit-mask: url(../images/favicon.svg) no-repeat center;
    mask: url(../images/favicon.svg) no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.legend-item {
  display: flex;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #888888;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .doughnut-chart {
    width: 250px;
    height: 250px;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #001c44;
  color: #fff;
  padding: 15px 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  font-family: "Open Sans", sans-serif;
}

.cookie-banner p {
  font-size: 14px;
  margin-bottom: 0;
  color: #fff;
}

.cookie-banner a {
  color: #65bc7b;
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: #fff;
  text-decoration: none;
}

.cookie-banner .btn {
  min-width: 180px;
}

/**************************
    Company Details Table (Premium Design)
***************************/
.company-details-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15, 49, 97, 0.1);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.company-details-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #65bc7b;
}

.company-details-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(15, 49, 97, 0.15);
}

.company-table {
  width: 100%;
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.company-table th,
.company-table td {
  padding: 25px 40px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  transition: background-color 0.3s ease;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

.company-table th {
  background-color: #fff;
  color: #0f3161;
  font-weight: 700;
  width: 40%;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-right: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

.company-table th i {
  color: #65bc7b;
  margin-right: 15px;
  font-size: 18px;
  vertical-align: middle;
  width: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.company-table tr:hover th i {
  transform: scale(1.2);
}

.company-table td {
  color: #4a4a4a;
  font-size: 17px;
  font-weight: 500;
  background-color: #fff;
  font-family: "Open Sans", sans-serif;
}

.company-table tr:hover td {
  background-color: #fcfcfc;
  color: #0f3161;
}

.company-table tr:hover th {
  background-color: #fcfcfc;
}

@media (max-width: 767px) {
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    border-right: none;
    padding: 20px 25px;
  }
  
  .company-table th {
    background-color: #f8f9fa;
    color: #0f3161;
    border-bottom: none;
    padding-bottom: 10px;
    font-size: 13px;
  }
  
  .company-table td {
    padding-top: 5px;
    border-bottom: 1px solid #eaeaea;
    font-size: 16px;
  }
  
  .company-details-card {
    border-radius: 15px;
  }
}

/* Blog post content lists styling */
.post-content ul,
.post-content ol {
  list-style: revert;
  padding-left: 2em;
  margin-bottom: 1em;
  margin-top: 1em;
}

.post-content ul {
  list-style-type: disc;
}

.post-content ol {
  list-style-type: decimal;
}

.post-content li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

.post-content ul ul {
  list-style-type: circle;
  margin-top: 0.5em;
}

.post-content ul ul ul {
  list-style-type: square;
}
