@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
body{
	font-family: "Poppins", sans-serif;
}
a {
  text-decoration: none;
  display: inline-block;
}
img {
  width: 100%;
  display: block;
}
ul {
  padding: 0;
  margin: 0;
}
p {
   color: var(--c6);
   padding: 0;
   margin: 0;
   line-height: 1.7;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}
:root {
  --c1: #137CAD; 
  --c2: #ffffff; 
  --c3: #222222; 
  --c4: #000000;
  --grd: linear-gradient(180deg,rgba(19, 124, 173, 1) 0%, rgba(97, 173, 206, 1) 100%);
  --f1: "Outfit", sans-serif;
}
::selection {
  background: var(--c1);
  color: var(--c2);
}
::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--c1);
    border-radius: 0;
}

/* HEADER */

.head-nav nav ul {
    display: flex;
    gap: 40px;
    justify-content: center;
}
.head-btn {
    text-align: end;
}
.web-btn {
    padding: 12px 30px;
    background-image: var(--grd);
    border-radius: 6px;
    transition: all .5s;
    color: var(--c2);
	font-weight: 500;
    background-size: 300% 100%;
}
.web-btn:hover {
    background-position: 100% 48px;
    color: var(--c2);
}
.head-logo a {
    display: block;
    width: 130px;
}
.head-nav nav ul li a {
    color: var(--c3);
    transition: all .5s;
    position: relative;
}
.head-nav nav ul li a::before {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    width: 0%;
    height: 1px;
    background-color: var(--c1);
    transition: all .5s;
}
.head-nav nav ul li a:hover::before {
    right: unset;
    left: 0;
    width: 100%;
}
.head-nav nav ul li a:hover {
    color: var(--c1);
}
.header {
    padding-top: 15px;
}

/* SECTION MAIN BANNER */

.main-banner {
    padding: 100px 0px 140px 0px; 
}
.banner-title h1 {
    font-size: 54px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 25px;
}
.banner-title p {
    margin-bottom: 30px;
    font-size: 22px;
}
.banner-title span {
    display: inline-block;
    position: relative;
    font-weight: 600;
    margin-bottom: 30px;
}
.banner-title span::before, .banner-title span::after {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 2px;
    background: var(--grd);
}
.banner-title span::before {
    left: -80px;
}
.banner-title span::after {
    right: -80px;
}
.web-btn-two {
    padding: 11px 30px;
    border-radius: 6px;
    transition: all .5s;
    color: var(--c3);
    border: 1px solid var(--c1);
    font-weight: 500;
}
.web-btn-two:hover {
    background-color: var(--c1);
    color: var(--c2);
}
.banner-btns {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

/* SECTION BETTER PLANS */

.better-plan {
    background: var(--grd);
}
.better-plan-item {
    color: var(--c2);
	padding-right: 100px;
}
.better-plan-item h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}
.better-plan-item p {
    font-size: 22px;
    margin-bottom: 20px;
}
.better-plan-btns {
    margin-top: 50px;
    display: flex;
    gap: 15px;
	flex-wrap: wrap;
}
.better-img {
    transform: scale(1.1) translateY(-19px);
}
.better-plan-btns .web-btn, .all-in-one-btns .web-btn, .small-banner-title .web-btn {
    background: var(--c2);
    color: var(--c1);
}
.better-plan-btns .web-btn-two, .all-in-one-btns .web-btn-two {
    border-color: var(--c2);
    color: var(--c2);
}
.better-plan-btns .web-btn-two:hover, .all-in-one-btns .web-btn-two:hover {
    background-color: var(--c2);
    color: var(--c1);
}
.better-plan-btns .web-btn:hover, .all-in-one-btns .web-btn:hover, .small-banner-title .web-btn:hover {
    background-color: var(--c3);
    color: var(--c2);
}

/* SECTION SERVICES */

.spacing {
    padding: 100px 0px;
}
.web-title h2 {
    font-size: 42px;
    font-weight: 600;
	line-height: 1.4;
}
.service-title p {
    font-size: 22px;
}
.title-gap {
    margin-bottom: 50px;
}
.service-item > a {
    display: block;
}
.service-item {
    background-color: #a7a7a7;
    border-radius: 30px;
    position: relative;
    transition: all .5s;
}
.service-vector {
    width: 60%;
    margin: 0 auto -15px auto;
}
.service-content {
    text-align: center;
    padding: 20px 20px;
}
.service-content h3 {
    color: var(--c2);
    font-size: 24px;
    text-transform: uppercase;
}
.service-item .service-item-arrow {
    position: absolute;
    bottom: 10px;
    right: 12px;
    width: 65px;
    height: 65px;
    background-color: #a7a7a7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all .5s;
    color: var(--c3);
    z-index: 2;
}
.service-img {
    position: relative;
    z-index: 1;
}
.service-img::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: var(--c2);
    z-index: -1;
}
.service-item:hover {
    background-color: var(--c1);
}
.service-item:hover .service-item-arrow {
    background-color: var(--c1);
}
.service-item .service-item-arrow i {
    transform: rotate(45deg);
    transition: all .5s;
}
.service-item:hover .service-item-arrow i {
    transform: rotate(90deg);
    color: var(--c2);
}
.cust-gap {
    row-gap: 24px;
}
.web-btn-track {
    margin-top: 50px;
}
.service-arrow-main .service-arrow-btn {
    width: 60px;
    border: 1px solid var(--c1);
    border-radius: 5px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: all .5s;
    color: var(--c1);
}
.service-arrow-main {
    display: flex;
    gap: 10px;
    justify-content: end;
    margin-top: 20px;
}
.service-arrow-main .service-arrow-btn:hover {
    background-color: var(--c1);
    color: var(--c2);
}
.myService .swiper-pagination-services {
    position: relative;
    margin-top: 70px;
}
.myService .swiper-pagination-services span {
    position: absolute;
    height: 4px;
    width: 100%;
    display: inline-block;
    background: var(--c1);
}
.our-services .web-btn-track .web-btn {
    font-size: 20px;
}

/* SECTION ALL IN ONE */

.all-in-one {
    background: var(--grd);
}
.all-in-one-title {
    color: var(--c2);
}
.all-in-one-title span {
    font-size: 26px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}
.all-in-one-title h2 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}
.all-in-one-title p {
    margin-bottom: 20px;
}
.all-in-one-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
.all-in-one-item ul li {
    list-style: disc;
    margin-bottom: 6px;
}
.all-in-one-item ul {
    padding-left: 20px;
}
.all-in-one-item ul li:last-child {
    margin-bottom: 0px;
}
.all-in-one-btns{
	margin-top: 20px;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}
.all-in-one-img {
    transform: scale(1.1);
}

/* SECTION PORTFOLIO */

.web-title .sub-head {
    color: var(--c1);
    margin-bottom: 20px;
    display: inline-block;
    font-size: 20px;
    position: relative;
}
.portfolio-title h2 {
    margin-bottom: 20px;
}
.web-title .sub-head::before, .web-title .sub-head::after {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--c1);
}
.web-title .sub-head::before {
    left: -60px;
}
.web-title .sub-head::after {
    right: -60px;
}
.portolio-btns ul {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 40px 0px 50px 0px;
    border: 0;
}
.portolio-btns ul li button {
    border: 1px solid var(--c1) !important;
    font-weight: 500;
    color: var(--c1);
    border-radius: 6px !important;
    padding: 12px 25px;
}
.portolio-btns ul li button.active {
    background: var(--grd);
    color: var(--c2) !important;
    border-color: transparent !important;
}
.portolio-btns ul li button:hover {
    color: var(--c1);
}
.portfolio-img a {
    display: block;
}
.portolio-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}
.portfolio-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--grd);
    border-radius: 20px 20px 0px 0px;
    transition: all .5s;
}
.portfolio-content a {
    display: block;
    padding: 40px 40px;
    color: var(--c2);
    transition: all .5s;
}
.portfolio-content a h3 {
    font-size: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.portfolio-content a:hover {
    color: var(--c3);
}
.portolio-item:hover .portfolio-content {
    bottom: 0;
}
.web-port .portolio-item .portfolio-content {
    visibility: hidden;
    opacity: 0;
}

/* SECTION VIDEO */

.video-title h2 {
    margin-bottom: 20px;
}
.video-title p {
    margin-bottom: 20px;
}
.video-item-video video {
    width: 100%;
    display: block;
    height: 300px;
    object-fit: cover;
}
.video-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.video-item-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	cursor: pointer;
}
.video-item-icon button {
    border: 0;
    width: 60px;
    height: 60px;
    background: var(--c1);
    border-radius: 50%;
    color: var(
    --c2);
    font-size: 20px;
    transition: all .5s;
}
.video-item-icon button:hover {
    background-color: var(--c3);
}

/* SECTION BOOST */

.boost-brand-title h3 {
    margin-bottom: 15px;
    position: relative;
    font-size: 22px;
}
.boost-brand-title p {
    margin-bottom: 20px;
}
.boost-brand-title h3::before {
    position: absolute;
    content: "\f058";
    top: 0;
    left: -34px;
    color: var(--c1);
    font-family: "Font Awesome 5 Pro";
}
.boost-brand-img {
    padding-left: 90px;
}
.boost-brand-title p:last-child {
    margin-bottom: 0px;
}

/* SECTION TESTIMONIAL */

.testi-content {
    background-color: #f0f6fb;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all .5s;
    border: 1px solid transparent;
}
.testi-content:hover{
	border-color: var(--c1);
}
.testi-content ul {
    display: flex;
    gap: 7px;
    margin-bottom: 20px !important;
}
.testi-content ul li {
    color: var(--c1);
}
.testi-content p {
    font-size: 17px;
    margin-bottom: 30px !important;
    height: 130px;
    overflow: auto;
    padding-right: 10px;
}
.testi-content p::-webkit-scrollbar {
    width: 5px;
}
.testi-content h3 {
    font-family: var(--f1);
    font-size: 24px;
	margin-bottom: 4px;
}
.testi-content span {
    display: inline-block;
    font-size: 15px;
}
.testi-img {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}
.testi-img img {
    height: 100%;
    object-fit: cover;
    transition: all .7s;
}
.myTesti .swiper-pagination, .myVideo .video-pagination {
    position: unset;
    transform: unset;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.myTesti .swiper-pagination span, .myVideo .video-pagination span {
    background-color: var(--c1);
    margin: 0px !important;
    width: 10px;
    height: 10px;
}
.myTesti {
    padding-bottom: 32px;
}
.myVideo .video-pagination{
	margin-top: 40px;
}
.testi-content::before {
    position: absolute;
    content: '';
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    background-color: var(--c2);
    visibility: hidden;
}
.testi-reverse .testi-content, .testi-reverse .testi-content::before {
    background-color: rgba(246, 246, 246, 1);
    border-color: rgba(246, 246, 246, 1);
}

/* SECTION SPONSOR */

.sponsor {
    background-color: var(--c3);
    padding: 50px 0px;
}
.sponsor-item img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}
.mySponsor .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* SECTION CONTACT */

.contact-title {
    background: var(--grd);
    color: var(--c2);
    padding: 40px 40px;
    border-radius: 20px;
    height: 100%;
}
.contact-bg {
    padding: 20px;
    border-radius: 20px;
    background-color: var(--c2);
}
.contact-title h2 {
    margin-bottom: 40px;
}
.contact-title h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.contact-title ul li i {
    position: absolute;
    top: 2px;
    left: 0;
    font-size: 17px;
}
.contact-title ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
}
.contact-title ul {
    margin-top: 50px;
}
.contact-title ul li a {
    color: var(--c2);
    transition: all .5s;
}
.contact-title ul li a:hover {
    color: var(--c3);
}
.contact-title ul li:last-child {
    margin-bottom: 0px;
}
.contact-form-item input, .contact-form-item textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #80808094;
    transition: all .5s;
    outline: 0;
    padding: 0px 0px 10px 0px;
}
.contact-form-main form .row {
    row-gap: 40px;
}
.contact-form-item label {
    margin-bottom: 10px;
    color: gray;
}
.contact-form-item input:focus, .contact-form-item textarea:focus {
    border-color: var(--c1);
}
.contact-form-item input::placeholder, .contact-form-item textarea::placeholder {
    transition: all .5s;
}
.contact-form-item input:focus::placeholder, .contact-form-item textarea:focus::placeholder {
    opacity: 0;
}
.contact-form-btn input {
    border: 0;
}
.contact-vector {
    width: 340px;
    margin: -50px 0px 0px auto;
}
.contact-form-main {
    padding: 40px 0px 0px 20px;
}
.bg-prop {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.contact-us {
    background-color: #80808014;
}
.wpcf7-response-output {
    text-align: center;
    font-size: 14px;
	z-index: 9;
    position: relative;
	background-color: var(--c2);
}
.contact-form-item textarea {
    height: 200px;
}

/* FOOTER */

.main-footer {
    padding: 70px 0px;
}
.foot-title span {
    display: inline-block;
    padding-bottom: 20px;
    position: relative;
    color: var(--c2);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
}
.foot-links ul li a {
    color: var(--c2);
    transition: all .5s;
	font-size: 15px;
}
.foot-links ul li a:hover {
    color: var(--c3);
}
.foot-links ul li {
    margin-bottom: 4px;
    position: relative;
	padding-right: 12px;
}
.foot-title span::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--c2);
}
.foot-logo-main p {
    color: var(--c2);
    text-align: center;
    margin-top: 10px;
}
.foot-logo-main {
    text-align: center;
}
.foot-socials ul li a {
    width: 50px;
    height: 50px;
    background: var(--grd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c2);
    font-size: 20px;
    transition: all .5s;
}
.foot-socials ul {
    display: flex;
    gap: 12px;
}
.foot-double-links .foot-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.foot-double-links .foot-links ul li {
    width: 48%;
}
.foot-links ul li::before {
    position: absolute;
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    color: var(--c1);
    left: -18px;
    top: 0;
}
.bottom-footer {
    background: var(--grd);
    padding: 15px 0px;
}
.foot-payment {
    width: 250px;
    margin-left: auto;
}
.copyrights p {
    color: var(--c2);
}
.foot-socials ul li a:hover {
    box-shadow: 0px 0px 10px vaR(--c2);
}

/* PRELOADER */

div#preloader {
  position: fixed;
  z-index: 999999999;
  background: var(--c2);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: var(--c1) #0000;
  animation: s6 1s infinite linear;
}

.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}

.custom-loader::before {
  border-color: var(--c3) #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}

.custom-loader::after {
  margin: 8px;
}

@keyframes s6 {
  100% {
    transform: rotate(1turn);
  }
}

#preloader.remove {
  opacity: 0 !important;
  visibility: hidden !important;
}
.main-warpper {
    overflow: hidden;
}

/* SERVICE BANNER CSS */

.inner-serv-banner .banner-content {
    text-align: left;
    color: var(--c3);
    padding-right: 30px;
}
.inner-serv-banner .banner-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 600;
}
.service-form .web-btn {
    background: var(--c2);
    color: var(--c1);
	border: 0;
    margin-top: 10px;
}
.service-form .web-btn:hover {
    background: var(--c3);
    color: var(--c2);
}
.inner-serv-banner .banner-content ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}
.inner-serv-banner .banner-content ul {
    padding: 0px 0px 20px 0px;
}
.service-form {
    background: var(--grd);
    padding: 30px;
    box-shadow: 0px 0px 3px var(--c2);
    border: 1px solid rgb(35 35 35 / 26%);
    border-radius: 10px;
}
.service-form-item input,
.service-form-item textarea {
    width: 100%;
    height: 50px;
    border: 1px solid var(--c2);
    transition: all .5s;
    border-radius: 5px;
    padding: 12px 20px 12px 50px;
    outline: 0;
}
.service-form-item input:focus,
.service-form-item textarea:focus {
    border-color: var(--c3);
}
.service-form-item input:focus::placeholder,
.service-form-item textarea:focus::placeholder {
    visibility: hidden;
    opacity: 0;
}
.service-form-item input::placeholder,
.service-form-item textarea::placeholder {
    transition: all .5s;
}
.service-form-item {
    position: relative;
}
.service-form-item i {
    position: absolute;
    top: 15px;
    left: 18px;
    font-size: 18px;
    color: var(--c1);
	z-index: 1;
}
.service-form form .row {
    row-gap: 20px;
}
.service-form-item textarea {
    height: 150px;
}
.service-form button {
    margin-top: 15px;
}
.inner-serv-banner {
    padding: 80px 0px;
}
.inner-serv-banner .banner-content ul li::before {
    position: absolute;
    content: "\f0a4";
    font-family: "Font Awesome 5 Pro";
    left: 0;
    top: 1px;
}
.inner-serv-banner .banner-content p {
    margin-bottom: 20px;
}
.inner-serv-banner .circle-1 {
  width: 500px;
  height: 500px;
  left: -60px;
  top: -90px;
  animation: 20s linear infinite alternate nudge1;
}
.inner-serv-banner .circle-2 {
  width: 400px;
  height: 400px;
  top: 166px;
  left: -130px;
  animation: 20s linear infinite alternate nudge2;
}
.inner-serv-banner .circle-4 {
  right: 600px;
  top: 500px;
  width: 120px;
  height: 120px;
  animation: 20s linear infinite alternate nudge2;
}
.inner-serv-banner .circle-3 {
  right: 0;
  top: -28px;
  width: 400px;
  height: 400px;
  animation: 20s linear infinite alternate nudge3;
}
.inner-serv-banner .circle {
  opacity: 0.08;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    circle 800px at 75% -25%,
    var(--c1) 0,
    var(--c1) 100%
  );
}
@keyframes nudge1 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(100px, 0);
  }

  80% {
    transform: translate(-1px, 0);
  }
}
@keyframes nudge2 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 150px);
  }

  80% {
    transform: translate(-150px, 0);
  }
}
@keyframes nudge3 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-100px, 0);
  }

  80% {
    transform: translate(-1px, 0);
  }
}

/* SECTION SERVICE CONTENT BASE */

.serv-cont-img {
    padding-right: 60px;
}
.serv-cont-list-item h3 {
    position: relative;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 12px;
}
.serv-cont-list-item h3::before {
    position: absolute;
    content: "\f336";
    top: 0;
    left: -32px;
    font-family: "Font Awesome 5 Pro";
    color: var(--c1);
}
.serv-cont-list-main .serv-cont-list-item {
    margin-bottom: 30px;
}
.serv-cont-list-main .serv-cont-list-item:last-child {
    margin-bottom: 0px;
}
.cust-bg {
    background-color: #137cad0d;
}

/* SECTION SERVICE PORTFOLIO */

.web-port .portolio-item .portfolio-img img {
    height: 500px;
    object-fit: cover;
    object-position: top;
    transition: all 3s;
}
.web-port .portolio-item:hover .portfolio-img img {
    object-position: bottom;
}

/* SECTION PACKAGES */

.package-item {
    padding: 28px 20px;
    background-color: var(--c2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.batch-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.batch-main i {
    font-size: 20px;
}
.package-head span {
    padding: 7px 9px;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    line-height: 19px;
    letter-spacing: 0.435em;
}
.package-head p {
    color: #808692;
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.package-head h3 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.035em;
}
.package-head h3 sub {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: -0.035em;
}
.package-head {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ffffff36;
}
.package-body {
    margin-bottom: 30px;
    height: 210px;
    overflow-y: auto;
}
.package-body ul li {
    margin-bottom: 12px;
    font-weight: 400;
}
.package-body ul li:first-letter {
    font-weight: 800;
}
.package-body ul li:last-child{
    margin: 0px;
}
.package-btn a {
    width: 77%;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    line-height: 23px;
    transition: all .5s;
    text-transform: capitalize;
    letter-spacing: 0em;
    padding: 18px 11px;
    background: var(--c1);
    border-radius: 10px;
    color: var(--c2);
}
.package-btn {
    text-align: center;
}
.package-body ul li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    line-height: 22px;
    text-align: center;
    font-size: 11px;
    margin-right: 10px;
}
.package-item:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://megatechcreative.uk/wp-content/uploads/2026/01/Vector.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    z-index: -1;
}
.package-head, .package-body {
    transition: all .5s;
}
.package-item:hover:before {
    visibility: visible;
    opacity: 1;
}
.package-item:hover .package-head, .package-item:hover .package-body {
    color: var(--c2);
}
.package-item:hover .package-head span, .package-item:hover .package-body ul li i {
    background-color: #ffffff52;
}
.package-item:hover .package-head p, .package-item:hover .package-head span, .package-item:hover .package-body ul li i {
    color: var(--c2);
}
.package-item:hover .package-btn a{
    background-color: var(--c2);
}
.package-body::-webkit-scrollbar {
    width: 5px;
    background-color: rgb(231, 225, 225);
    border-radius: 50px;
}
.package-body::-webkit-scrollbar-thumb {
    border-radius: 50px;
}
.package-item.active .package-body::-webkit-scrollbar-thumb {
    background-color: var(--c2);
}
.package-item.active .package-body::-webkit-scrollbar{
    background-color: #00000062;
}
.package-item.active:before {
    visibility: visible;
    opacity: 1;
}
.package-item.active .package-btn a{
    background-color: var(--c2);
}
.package-item.active .package-head p, .package-item.active .package-head span, .package-item.active .package-body ul li i{
    color: var(--c2);
}
.package-item.active .package-head, .package-item.active .package-body {
    color: var(--c2);
}
.package-item.active .package-head span, .package-item.active .package-body ul li i {
    background-color: #ffffff52;
}
.package-head span, .package-head p, .package-body ul li i {
    transition: all .5s;
}
.package-head span, .blue .package-body ul li i {
    background: #f3f8fb;
    color: var(--c1);
}
.package-item:before{
    background-color: var(--c1);
}
.package-item.active .package-btn a{
    color: var(--c1);
}
.package-item:hover .package-btn a{
    color: var(--c1);
}
.package-body::-webkit-scrollbar-thumb {
    background: var(--c1);
}
.package-item:hover .package-body::-webkit-scrollbar-thumb{
    background-color: #fff;
}
.package-item:hover .package-body::-webkit-scrollbar{
    background-color: #00000062;
}

/* SECTION FAQ'S */

.serv-faqs .accordion-item {
    margin-bottom: 20px;
	border: 0;
}
.serv-faqs .accordion-item .accordion-button {
    box-shadow: unset;
    background-color: var(--c2);
    color: var(--c3);
    font-size: 22px;
    padding: 30px;
    font-weight: 500;
}
.serv-faqs .accordion-item .accordion-button:not(.collapsed) {
    background-color: var(--c1);
	color: var(--c2);
}
.serv-faqs .accordion-item .accordion-button::after {
    background-image: unset;
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    transform: unset;
}
.serv-faqs .accordion-item .accordion-button:not(.collapsed)::after {
    content: "\f068";
}

/* SECTION CTA */

.small-banner-bg {
    background: var(--grd);
    padding: 50px 0px;
    border-radius: 20px;
}
.small-banner-title h3 {
    color: var(--c2);
    font-size: 34px;
    margin-bottom: 25px;
}
.small-banner-title p {
    margin-bottom: 25px;
    color: var(--c2);
}

/* SHAPE CSS */

.shape-main {
    position: relative;
}
.shape-top-right {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 100px;
    animation: up-down 5s infinite linear;
}
.shape-bottom-left {
    position: absolute;
    bottom: -20px;
    left: 40px;
    width: 100px;
    animation: up-down 5s infinite linear;
}

@keyframes up-down {
    0% {
        transform: translateY(0);
    }

    33% {
        transform: translateY(20px);
    }

    60% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* SECTION CARDS */

.cust-choose-item {
    background-color: #137cad0d;
    border-radius: 20px;
    text-align: center;
    padding: 35px 25px 35px 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.cust-choose-item-icon {
    width: 85px;
    margin: 0 auto 25px auto;
    height: 85px;
    background-color: var(--c2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 4px 4px 0px var(--c1);
}
.cust-choose-item-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}
.cust-choose-item-icon img {
    width: 50%;
}
.cust-choose-item::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--c1);
    transition: all .5s;
    transform: scaleX(0);
}
.cust-choose-item:hover::before {
    transform: scaleX(1);
}
.cust-choose-item-icon span {
    font-size: 34px;
    font-weight: 600;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--c1);
}

/* SECTION SERVICE CONTENT TWO */

.serv-cont-img-two {
    padding-left: 60px;
}
.web-title .sub-head-two {
    padding: 6px 25px;
    display: inline-block;
    background: var(--grd);
    border-radius: 50px;
    color: var(--c2);
    margin-bottom: 15px;
    font-size: 16px;
}
.serv-cont-box h2 {
    margin-bottom: 20px;
}
.serv-cont-box p {
    margin-bottom: 15px;
}

/* SECTION MAP */

.loc-map-main iframe {
    display: block;
    width: 100%;
    height: 350px;
}
.loc-map-main {
    border-radius: 20px;
    overflow: hidden;
}

/* SECTION SIMPLE PAGE BANNER */

.simple-page-banner {
    background: var(--grd);
    padding: 100px 0px;
    margin-top: 15px;
}
.simple-page-banner-title h1 {
    color: var(--c2);
    font-weight: 600;
    font-size: 50px;
    text-align: center;
}

/* SECTION DESCRIPTIVE */

.instruction-sec-content p {
    margin-bottom: 20px;
}
.instruction-sec-content h2 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 28px;
}
.instruction-sec-content p a {
    color: var(--c1);
    font-weight: 500;
}
.instruction-sec-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}
.instruction-sec-content ul li {
    margin-bottom: 8px;
    list-style: disc;
}

/* INNER ABOUT US SECTION */

.inner-about-sec .container .row:nth-child(even) {
    flex-direction: row-reverse;
}
.inner-about-sec .container .row:nth-child(even) .serv-cont-img-two {
    padding-left: 0px;
    padding-right: 60px;
}
.inner-about-sec .container .row {
    margin-bottom: 40px;
}
.inner-about-sec .container .row:last-child {
    margin-bottom: 0px;
}

/* SECTION COUNTER */

.counter-item h2 {
    font-weight: 800;
    font-size: 60px;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-stroke: 2px var(--c1);
    margin-bottom: 20px;
}
.counter-item {
    text-align: center;
	position: relative;
}
.counter-item h3 {
    font-size: 20px;
}
.counter-item::before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #66666626;
    height: 120%;
    right: -10px;
}
.counter-sec .row .col-lg-3:last-child .counter-item::before {
    visibility: hidden;
    opacity: 0;
}

/* MEGA MENU CSS */

.head-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--c2);
    border: 1px solid #2222221a;
    padding: 30px;
    transform: scaleY(0);
    transform-origin: top;
    transition: all .5s;
	z-index: 99;
}
.header .container {
    position: relative;
}
.head-mega-links ul {
    flex-direction: column;
    gap: 10px !important;
}
.head-mega-box-title {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}
.head-mega-box-title img {
    width: 70px;
}
.head-mega-box {
    background: var(--grd);
    padding: 30px;
    border-radius: 15px;
    color: var(--c2);
	height: 100%;
}
.head-mega-box-body p {
    margin-bottom: 15px;
}
.head-mega-box-body a {
    font-weight: 600;
    color: var(--c2) !important;
}
.head-mega-box-body a:hover {
    color: var(--c3) !important;
}
.head-nav nav ul li:hover .head-mega-menu {
    transform: scaleY(1);
}
.head-mega-box-title span {
    font-weight: 600;
}
.head-nav > nav > ul > li {
    padding: 30px 0px;
}
.head-nav > nav > ul > li:hover i {
    transform: rotate(180deg);
    transition: all .5s;
}
.head-nav > nav > ul > li i {
    font-size: 14px;
    margin-left: 5px;
}

/* RESPONSIVE MENU CSS */

.responsive-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
    z-index: 99999;
    transition: all .5s;
}
.responsive-menu-inner {
    height: 100%;
    padding: 20px 20px;
    position: relative;
    width: 80%;
    background-color: var(--c2);
    left: -100%;
}
.responsive-logo-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.respon-cross a,
.respon-cross a i {
    display: block;
}
.respon-cross a {
    width: 42px;
    height: 42px;
    border: 1px solid var(--c1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--c1);
    transition: all .5s;
}
.respon-cross a:hover {
    transform: rotate(90deg);
    color: var(--c1);
    border-color: var(--c1);
}
.respon-logo a {
    display: block;
}
.respon-logo {
    width: 110px;
}
.responsive-links ul li a {
    color: var(--c3);
    transition: all .5s;
    font-size: 20px;
    font-weight: 600;
    display: block;
    border-bottom: 1px solid #80808047;
    padding: 10px 0px;
}
.responsive-links {
    margin-top: 40px;
    overflow-y: auto;
    height: calc(100vh - 232px);
}
.responsive-links ul li ul {
    display: none;
}
.responsive-links ul li a:hover {
    color: var(--c1);
}
.responsive-links ul li ul li a {
    padding-left: 40px;
    font-size: 16px;
}
.responsive-links ul li:has(ul)::before {
    position: absolute;
    content: "\f067";
    top: 12px;
    right: 0;
    font-family: "Font Awesome 5 Pro";
    font-size: 18px;
    color: var(--c3);
}
.responsive-links ul li {
    position: relative;
}
.responsive-links ul li.active::before {
    content: "\f068";
    color: var(--c1);
}
.responsive-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--c1);
    padding: 12px 0px;
}
.responsive-socials ul {
    display: flex;
    gap: 30px;
    justify-content: center;
}
.responsive-socials ul li a {
    color: var(--c2);
    font-size: 20px;
}
.responsive-menu.active {
    left: 0;
}
.responsive-menu.active .responsive-menu-inner {
    left: 0;
    transition-delay: .3s !important;
    transition: all .7s;
}
body.stop-scroll {
    overflow-y: hidden;
}
.ham-menu-btn {
    font-size: 28px;
    color: var(--c3);
}
.header .head-btn {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}