@charset "UTF-8";

:root {
  /* default */
  --white: #fff;
  --black: #000;

  /* new-var */
  --primary: #a7ff00;
  --secondary: #0482bc;
  --dark: #434443;

  --font-primary: 'Inter', -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans', 'Liberation Sans';

  --h1: 88px;
  --h2: 50px;
  --h3: 30px;
  --h4: 24px;
  --h5: 20px;
  --h6: 18px;

  --base: 22px;
  --text-md: 32px;

  --transition: all 0.3s ease-in-out;
}

/* CSS Document */

/*==============================================================
	Common Styles Initials
==============================================================*/

html {
  -webkit-text-size-adjust: none;
  /* Prevent font scaling in landscape */
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: inherit !important;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: break-word;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-size: var(--base);
  line-height: 1.666;
  color: var(--dark);
  font-weight: 400;
  background: var(--white);
  width: 100%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scrollbar-color: var(--white) var(--primary);
  scrollbar-width: thin;
}

body.pause {
  overflow: hidden;
}

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

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: var(--primary);
}

a {
  outline: none;
  text-decoration: none;
  color: var(--black);
}

a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}

.btn:focus {
  color: var(--black);
  box-shadow: none;
}

input,
textarea,
select {
  outline: none;
  resize: none;
}

a,
input,
button {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: var(--secondary);
  font-family: var(--font-primary);
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

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

p {
  margin: 0;
}

p+p {
  padding-top: 15px;
}

input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-dropdown input {
  -webkit-appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


/*==============================================================
	Bootstrap Hack
==============================================================*/

.form-control::-webkit-input-placeholder {
  opacity: 1;
  color: var(--secondary);
}

.form-control:-moz-placeholder {
  opacity: 1;
  color: var(--secondary);
}

.form-control::-moz-placeholder {
  opacity: 1;
  color: var(--secondary);
}

.form-control:-ms-input-placeholder {
  opacity: 1;
  color: var(--secondary);
}

input::-webkit-input-placeholder {
  opacity: 1;
}

input:-moz-placeholder {
  opacity: 1;
}

input::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder {
  opacity: 1;
}

.row {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 0;
}

/*==============================================================
	Custom Style
==============================================================*/

.section {
  position: relative;
}

.container {
  max-width: 1430px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.h1 {
  font-size: var(--h1);
  line-height: 1.1;
}

.h2 {
  font-size: var(--h2);
  line-height: 1.5;
}

.h3 {
  font-size: var(--h3);
  line-height: 2.6;
}

.h4 {
  font-size: var(--h4);
  line-height: 1.3;
}

.h5 {
  font-size: var(--h5);
  line-height: 1.1;
}

.h6 {
  font-size: var(--h6);
  line-height: 1.1;
}

.text-base {
  font-size: var(--base);
  line-height: 1.4;
}

.text-md {
  font-size: var(--text-md);
  line-height: 1.8;
}

/* space */

.row-gap-30 {
  row-gap: 30px;
}

/* space */

:is(.img-cover, .img-contain) {
  position: relative;
  padding-bottom: 100%;
}

:is(.img-cover, .img-contain) :is(img, video, iframe) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain :is(img, video, iframe) {
  object-fit: contain;
}

.bullet>ul li {
  padding-left: 25px;
  position: relative;
}

.bullet>ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  border-radius: 100%;
  left: 5px;
  top: 10px;
  background: var(--secondary);
}

.bullet>ol {
  counter-reset: item 0;
}

.bullet>ol li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}

.bullet>ol li:before {
  content: counters(item, ".") ". ";
  counter-increment: item 1;
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  color: var(--secondary);
}

.bullet>ol li ol {
  margin-top: 12px;
}

.bullet>ol li ol li {
  padding-left: 0;
}

.bullet>ol li ol li:before {
  position: relative;
  display: inline;
}

.bullet>ol li ol ol {
  padding-left: 20px;
}

/*==============================================================
	Button Style
==============================================================*/
.btn {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: var(--dark);
  display: inline-flex;
  background: var(--primary);
  border-radius: 100px;
  padding: 28px 75px;
  transition: var(--transition);
  box-shadow: none;
  outline: none;
  border: 2px solid transparent;
}

.btn:is(:hover, :focus, :active) {
  color: var(--dark);
  background: var(--white);
}

/*==============================================================
	Common Css 
==============================================================*/

/* === BANNER === */
.hero-banner {
  text-align: center;
  padding: 80px 0 100px;
}

.hero-banner .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-banner .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(-90deg, #9bc947 0%, #9bc947 20%, #0382bd 100%);
  opacity: 0.87;
}

.hero-banner .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner .container {
  position: relative;
  z-index: 1;
}

.hero-banner .head-logo {
  display: inline-flex;
  margin: 0 auto;
}

.hero-banner .head-logo a {
  display: inline-block;
  transition: var(--transition);
}

.hero-banner .banner-info {
  font-size: var(--text-md);
  color: var(--white);
  padding-top: 80px;
  max-width: 1051px;
  margin: 0 auto;
}

.hero-banner .bannar-title {
  color: var(--white);
  padding-bottom: 50px;
}

.hero-banner .bannar-title strong {
  font-weight: 700;
  font-size: 150%;
  color: var(--primary);
}

.hero-banner .bannar-title span {
  font-size: 62.5%;
}

.hero-banner .btn-wrap {
  padding-top: 30px;
}

/* === BANNER === */

/* === about-wrap start ===*/

.about-wrap {
  overflow: hidden;
  padding: 130px 0;
}

.about-wrap .about-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -30px;
}

.about-wrap .about-list>div {
  width: 100%;
  padding: 0 30px;
}

.about-wrap .about-list .col-left img {
  max-width: 100%;
  height: auto;
  display: block;
}

.about-wrap .content-box .title-wrap {
  padding-bottom: 20px;
}

.about-wrap .content-box p+ :is(ol, ul) {
  padding-top: 15px;
}

.about-wrap .content-box strong {
  font-weight: 700;
}

.about-wrap .bullet>ul li:before {
  top: 17px;
}

/* === about-wrap end ===*/

/* === snapshot-wrap start === */
.snapshot-wrap {
  padding-bottom: 130px;
  background: transparent;
}

.snapshot-wrap .title-wrap {
  text-align: center;
  padding-bottom: 55px;
}

.table-packages {
  overflow: auto;
}

.table-packages table {
  min-width: 630px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 25px;
  overflow: hidden;
  background-color: #f8f8f8;
}

.table-packages table :is(th, td) {
  text-align: center;
}

.table-packages table th {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: var(--dark);
  padding: 55px 20px;
}

.table-packages table td {
  font-size: var(--base);
  line-height: 1.3;
  color: var(--dark);
  padding: 36px 20px;
}

.table-packages table td strong {
  font-weight: 600;
}

.table-packages table td+td,
.table-packages table th+th {
  border-left: 2px solid rgba(67, 67, 67, 0.1);
}

.table-packages table tbody tr td {
  border-top: 2px solid rgba(67, 67, 67, 0.1);
}

.table-packages table tbody td:first-child,
.table-packages table tbody td:last-child,
.table-packages table tbody th:first-child,
.table-packages table tbody th:last-child {
  width: 317px;
  background: #f4f4f4;
}

/* === snapshot-wrap end === */

/* ===  Services-wrap start === */

.services-wrap {
  padding: 135px 0 150px;
  position: relative;
  overflow: hidden;
}

.services-wrap .service-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.services-wrap .service-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #232423;
  opacity: 0.91;
}

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

.services-wrap .container {
  position: relative;
  z-index: 1;
}

.services-wrap .title-wrap {
  text-align: center;
  padding-bottom: 80px;
}

.services-wrap .title-wrap h2 {
  color: var(--white);
}

.services-wrap .services-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -80px;
  row-gap: 80px;
}

.services-wrap .services-list ul li {
  width: 33.333%;
  padding: 0 80px;
}

.services-wrap .services-list ul li .service-box a {
  display: inline-block;
  text-decoration: underline;
  color: var(--white);
}

.services-wrap .services-list ul li .service-box a h3 {
  line-height: 1.4;
  color: var(--white);
  padding-top: 30px;
}

.services-wrap .services-list ul li .service-box a .service-icon {
  width: 101px;
  height: auto;
  display: inline-flex;
  transition: var(--transition);
}

.services-wrap .services-list ul li .service-box a .service-icon img {
  width: 100%;
  height: auto;
}

/* ===  Services-wrap end === */
/* === why-wrap start === */
.why-choose-wrap {
  overflow: hidden;
  padding: 100px 0;
  background: transparent;
}

.why-choose-wrap .title-wrap {
  padding-bottom: 35px;
}

.why-choose-wrap .why-choose-left img {
  max-width: 100%;
  height: auto;
}

.why-choose-wrap .content-box.bullet ul {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.why-choose-wrap .content-box.bullet ul li {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 500;
  padding-left: 62px;
  position: relative;
}

.why-choose-wrap .content-box.bullet ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border-radius: 0;
  background: url(../images/check-icon.png) no-repeat center /contain;
}

.why-choose-wrap .why-choose {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -64px;
  row-gap: 30px;
}

.why-choose-wrap .why-choose-left {
  padding: 0 64px;
  width: 60%;
}

.why-choose-wrap .why-choose-right {
  padding: 0 64px;
  width: 40%;
  text-align: center;
}

/* === why-wrap end === */

/* === grow-wrap start === */

.book-call {
  padding: 110px 0 115px 0;
  text-align: center;
  background-image: linear-gradient(-90deg, #9bc947 0%, #9bc947 20%, #0382bd 100%);
}

.book-call .title-wrap h2 {
  color: var(--white);
}

.book-call .btn-wrap {
  padding-top: 45px;
}

/* === grow-wrap end === */

/* === FOOTER === */
/* === FOOTER === */