@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
@import url("https://fonts.googleapis.com/css?family=Lora&display=swap");

:root {
--nav-background: #024e7a;
--light-blue: #5386e4;
--darker-blue: #4471c5;
--coral: #78c0e0;
--darker-coral: #54b1dc;
--white: #ffffff;
--main-fonts: "Lato", serif;
--sec-font: "Cormorant Garamond", serif;
}

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
font-style: normal;
height: 100vh;
margin: 0;
padding: 0;
}

/* Navbar */

header {
width: 100%;
height: auto;
background: var(--nav-background);
background-size: cover;
position: relative;
z-index: 9999;
overflow: hidden;
}

.navbar {
overflow: hidden;
margin-bottom: -20px;
font-size: 18px;
border: 1px solid rgba(0, 0, 0, 0.2);
}

.main-nav {
list-style-type: none;
display: none;
line-height: 30px;
margin-top: -10px;
font-weight: 900;
}
.logo {
font-size: 30px;
padding: 0 10px;
color: var(--white);
font-family: var(--main-fonts);
font-weight: 300;
text-decoration: none;
display: inline-block;
margin-top: 10px;
margin-left: 10px;
}
.logo span {
color: rgb(0, 187, 255);
font-family: var(--main-fonts);
}

.nav-links {
font-family: var(--sec-font);
text-decoration: none;
color: #fff;
}

.main-nav li {
text-align: center;
margin: 15px auto;
}

.navbar-toggle {
position: absolute;
top: 10px;
right: 20px;
cursor: pointer;
color: rgba(255, 255, 255, 0.8);
font-size: 24px;
}

#chkToggle {
display: none;
}

#chkToggle:checked + ul.main-nav {
display: block;
}

/* nav animation */
nav ul li {
transform: translateX(100rem);
animation: slideIn 0.2s forwards;
}

nav ul li a:nth-child(1) {
animation-delay: 0s;
}

nav ul li a:nth-child(2) {
animation-delay: 0.3s;
}

nav ul li a:nth-child(3) {
animation-delay: 0.4s;
}

nav ul li a:nth-child(4) {
animation-delay: 0.5s;
}

nav ul li a:nth-child(5) {
animation-delay: 0.6s;
}

nav ul li a:nth-child(6) {
animation-delay: 0.7s;
}

nav ul li a:nth-child(7) {
animation-delay: 0.8s;
}

nav ul li a:nth-child(8) {
animation-delay: 0.9s;
}

nav ul li a:nth-child(9) {
animation-delay: 1s;
}

nav ul li a {
padding: 5px 0;
margin: 0 3rem;
position: relative;
}

nav ul li a:last-child {
margin-right: 0;
}

nav ul li a::before,
nav ul li a::after {
content: "";
position: absolute;
width: 100%;
height: 2px;
background-color: rgb(0, 187, 255);
left: 0;
transform: scaleX(0);
transition: all 0.5s;
}

nav ul li a::before {
top: 0;
transform-origin: left;
}

nav ul li a::after {
bottom: 0;
transform-origin: right;
}

.overlay {
background-color: black;
position: fixed;
right: 0;
left: 0;
top: 0;
bottom: 0;
transition: opacity 650ms;
transform: scale(0);
opacity: 0;
display: none;
}

nav ul li a:hover::before,
nav ul li a:hover::after {
transform: scaleX(1);
}

@keyframes slideIn {
from {
}

to {
transform: translateX(0);
}
}
/* nav animation */

/* nav Media  */

@media screen and (min-width: 320px) {
.main-nav li {
text-align: center;
margin: 10px auto;
}
.navbar {
justify-content: center;
}
}

@media screen and (min-width: 375px) {
.main-nav li {
text-align: center;
margin: 10px auto;
}
.navbar {
justify-content: center;
}
}
@media screen and (min-width: 425px) {
.logo {
margin-right: 70px;
}
.main-nav li {
text-align: center;
margin: 6px auto;
}
}
@media screen and (min-width: 768px) {
.navbar {
display: flex;
justify-content: space-between;
padding-bottom: 0;
height: auto;
align-items: center;
}

#chkToggle:checked + ul.main-nav {
display: flex;
}

.main-nav {
display: flex;
margin-right: 30px;
flex-direction: row;
justify-content: flex-end;
}

.nav-links {
font-size: 11px;
padding-left: 25px;
width: 90%;
margin: 0 auto;
}

.logo {
padding: 5px 0;
margin: 0 auto;
}

.navbar-toggle {
display: none;
}

.logo:hover,
.nav-links:hover {
color: rgba(255, 255, 255, 1);
text-decoration: none;
}
}
@media screen and (min-width: 1024px) {
.nav-links {
margin-left: 5px;
font-size: 16px;
}
}
/* nav Media  */

/* Navbar */

/* main-Slider  */

.slider-container {
position: relative;
overflow: hidden;
width: 100%;
height: 100vh;
}

.left-slide {
height: 100%;
width: 35%;
position: absolute;
top: 0;
left: 0;
transition: transform 0.5s ease-in-out;
}

.left-slide > div {
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #fff;
}

.left-slide h1 {
font-size: 50px;
margin-bottom: 10px;
text-align: center;
margin-top: -30px;
}
.left-slide h2 {
font-size: 25px;
text-align: center;
margin-bottom: 10px;
margin-top: -30px;
}

.left-slide p {
width: 80%;
text-align: center;
}

.right-slide {
height: 100%;
position: absolute;
top: 0;
left: 35%;
width: 65%;
transition: transform 0.5s ease-in-out;
}

.right-slide > div {
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
height: 100%;
width: 100%;
}

button {
background-color: #fff;
border: none;
color: #aaa;
cursor: pointer;
font-size: 16px;
padding: 15px;
}

button:hover {
color: #222;
}

button:focus {
outline: none;
}

.slider-container .action-buttons button {
position: absolute;
left: 35%;
top: 50%;
z-index: 100;
}

.slider-container .action-buttons .down-button {
transform: translateX(-100%);
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}

.slider-container .action-buttons .up-button {
transform: translateY(-100%);
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
/* Slider media */
@media (max-width: 1024px) {
.left-slide p {
font-size: 12px;
}
.left-slide h1 {
font-size: 35px;
}
.left-slide h2 {
font-size: 26px;
}
}
@media (max-width: 768px) {
.left-slide p {
font-size: 8px;
}
.left-slide h1 {
font-size: 26px;
text-align: center;
}
.left-slide h2 {
font-size: 18px;
text-align: center;
}
.right-slide > div {
background-position: inherit;
}
}
@media (max-width: 480px) {
.left-slide p {
font-size: 5px;
}
.left-slide h1 {
font-size: 14px;
text-align: center;
}
.left-slide h2 {
font-size: 14px;
text-align: center;
}
.right-slide > div {
background-position: inherit;
}
}
@media (max-width: 375px) {
.left-slide h2 {
text-align: center;
margin: 0 auto;
}
.left-slide h1 {
text-align: center;
}
}
@media (max-width: 320px) {
.left-slide h2 {
text-align: center;
font-size: 9px;
}
.left-slide h1 {
text-align: center;
font-size: 13px;
}
}
/* Slider media */

/* main-Slider  */

/*  Paying  */

#Paying {
min-width: 100%;
max-width: 984px;
margin: 0 auto;
font-family: "Lato", serif;
background-color: #c9c4c4;
margin-top: 60px;
}

.places__place {
margin: 0;
display: grid;
align-items: end;
grid-column: minmax(min-content, max-content) minmax(min-content, max-content);
gap: 48px 40px;
grid-template-areas:
"title website"
"image paragraph"
"image paragraph";
}

.places__title {
margin: 0;
font-family: "Lato", serif;
font-style: normal;
font-weight: bold;
font-size: 42px;
line-height: 76px;
grid-area: title;
}

.places__link {
margin: 0;
width: 456px;
height: 22px;
font-family: "Lato", serif;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 22px;
text-decoration-line: underline;
color: #ffffff;
}

.places__image {
width: 460px;
margin-top: 110px;
margin-bottom: 40px;
height: 460px;
grid-area: image;
border: 1px solid #e0e0e0;
}

.places__paragraph {
margin-left: 20px;
font-family: "Lato", serif;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 163%;
padding-bottom: 26px;
grid-area: paragraph;
align-self: start;
}

.places__paragraph h3 {
letter-spacing: 7px;
color: #000000;
margin-bottom: 50px;
margin-top: 60px;
font-size: 30px;
}

.places__paragraph h4 {
margin: 40px 0;
text-align: left;
padding-left: 10px;
color: #000;
letter-spacing: 1px;
border-left: 2px solid #428cc6;
}

.places__paragraph:last-of-type {
padding-bottom: 0;
}

.para-box {
border-left: 2px solid #428cc6;
margin: 40px 0;
font-size: 13px;
color: #000;
padding-left: 10px;
}

.para-box p {
color: #000;
padding: 10px;
text-align: left;
}

.para-box:hover {
color: #fff;
background-color: #6dbaf5;
transform: translateX(1rem);
animation: slideIn 2.5s forwards;
border-left: 2px solid #fff;
}
/* Pating Media */

@media (max-width: 768px) {
.places__image {
width: 245px;
}
.para-box p {
padding: 0;
}
}
@media (max-width: 425px) {
.places__image {
margin: 0 auto;
margin: 30px;
}
}

/*  Paying  */

/*  Card  */
#cards_landscape_wrap-2 {
text-align: center;
padding: 30px 0;
background: #f7f7f7;
}

#cards_landscape_wrap-2 .container {
padding-bottom: 50px;
}

#cards_landscape_wrap-2 a {
text-decoration: none;
outline: none;
}

#cards_landscape_wrap-2 .card-flyer {
border-radius: 5px;
}

#cards_landscape_wrap-2 .card-flyer .image-box {
background: #ffffff;
overflow: hidden;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
border-radius: 5px;
}

#cards_landscape_wrap-2 .card-flyer .image-box img {
-webkit-transition: all 0.9s ease;
-moz-transition: all 0.9s ease;
-o-transition: all 0.9s ease;
-ms-transition: all 0.9s ease;
width: 100%;
height: 200px;
}

#cards_landscape_wrap-2 .card-flyer:hover .image-box img {
opacity: 0.7;
-webkit-transform: scale(1.15);
-moz-transform: scale(1.15);
-ms-transform: scale(1.15);
-o-transform: scale(1.15);
transform: scale(1.15);
}

#cards_landscape_wrap-2 .card-flyer .image-icon img {
-webkit-transition: all 0.9s ease;
-moz-transition: all 0.9s ease;
-o-transition: all 0.9s ease;
-ms-transition: all 0.9s ease;
width: 20%;
height: 100px;
padding: 20px 0;
}

#cards_landscape_wrap-2 .card-flyer .text-box {
text-align: center;
}

#cards_landscape_wrap-2 .card-flyer .text-box .text-container {
padding: 30px 18px;
height: 180px;
}

#cards_landscape_wrap-2 .card-flyer {
background: #ffffff;
margin-top: 50px;
-webkit-transition: all 0.2s ease-in;
-moz-transition: all 0.2s ease-in;
-ms-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.4);
}

#cards_landscape_wrap-2 .card-flyer:hover {
background: #fff;
box-shadow: 0px 15px 26px rgba(0, 0, 0, 0.5);
-webkit-transition: all 0.2s ease-in;
-moz-transition: all 0.2s ease-in;
-ms-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
margin-top: 50px;
}

#cards_landscape_wrap-2 .card-flyer .text-box p {
margin-top: 10px;
margin-bottom: 0px;
padding-bottom: 0px;
font-size: 14px;
letter-spacing: 1px;
color: #000000;
}

#cards_landscape_wrap-2 .card-flyer .text-box h6 {
margin-top: 0px;
margin-bottom: 4px;
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
font-family: "Lato", serif;
color: #00acc1;
}

.cards_heading p {
color: #000000;
font-size: 17px;
}
.cards_heading h2 {
color: #333;
font-size: 46px;
margin: 1.3rem 0;
text-align: center;
}

/*----  Card  ----*/

/*----  Services  ----*/

.serve {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 30px 0;
}

.serve h3 {
color: #333;
font-size: 46px;
margin: 1.3rem 0;
text-align: center;
}

.serve p {
font-size: 15px;
text-align: center;
}

.serve a {
text-decoration: none;
margin: 1rem 0;
font-weight: 600;
text-transform: uppercase;
font-size: 0.8125rem;
letter-spacing: 1px;
}

.section-lead {
max-width: 600px;
color: #000;
margin: 1rem auto 1.5rem;
}

.service a {
color: #5b7abb;
display: block;
}

.service h4 {
font-family: "Lato", serif;
font-weight: 600;
color: #56ceba;
font-size: 20px;
margin: 1rem 0 0.6rem;
}

.services-grid {
display: -webkit-box;
display: flex;
-webkit-box-align: center;
align-items: center;
}

.service {
background: #fff;
margin: 10px;
height: 290px;
padding: 10px 20px;
border-radius: 4px;
text-align: center;
-webkit-box-flex: 1;
flex: 1;
display: -webkit-box;
display: flex;
flex-wrap: wrap;
border: 2px solid #e7e7e7;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
transition: all 0.3s ease;
}

.service p {
color: #000;
}

.service:hover {
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.service i {
font-size: 3.45rem;
margin: 10px 0;
}

.service1 i,
.service1 h4,
.service1 .cta {
color: #42b7ca;
}

.service1:hover {
border: 2px solid #42b7ca;
}

.service2 i,
.service2 h4,
.service2 .cta {
color: #425fca;
}

.service2:hover {
border: 2px solid #425fca;
}

.service3 i,
.service3 h4,
.service3 .cta {
color: #9c42ca;
}

.service3:hover {
border: 2px solid #9c42ca;
}

.service4 i,
.service4 h4,
.service4 .cta {
color: #425fca;
}

.service4:hover {
border: 2px solid #425fca;
}

.service .cta span {
font-size: 0.6rem;
}

.service > * {
flex: 1 1 100%;
}

.service .cta {
align-self: flex-end;
}

@media all and (max-width: 900px) {
.services-grid {
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
}
}

/* Icon Animation */

.icon1 {
padding: 10px 20px;
}

.icon2 {
padding: 10px 20px;
}

.icon3 {
padding: 10px 20px;
}

.icon4 {
padding: 10px 20px;
}

.fa-gear {
animation: rotate-animation 2s linear infinite;
}

.fa-heart-pulse {
animation: hearbeat 1.75s linear infinite;
}

.fa-ghost {
animation: ghost-hover 2s linear alternate infinite;
}

.fa-paper-plane {
transform: rotate(-5deg);
animation: send 2s linear alternate infinite;
}

/*
  * spin/full rotate animation
  */
@keyframes rotate-animation {
0% {
transform: rotate(0deg);
}

100% {
transform: rotate(360deg);
}
}

/*
  * heart pulse animation
  */
@keyframes hearbeat {
0% {
transform: scale(1);
}

25% {
transform: scale(1.25);
}

35% {
transform: scale(1);
}

45% {
transform: scale(1.25);
}

55% {
transform: scale(1);
}
}

/*
  * hover/slow bounce animation
  */
@keyframes ghost-hover {
0% {
transform: translate(0%, -20%);
}

100% {
translate: (0%, 0%);
}
}

/*
  * based on easeInElastic easing function: https://easings.net/#easeInElastic
  */
@keyframes send {
0% {
transform: translate(0%, 0%);
}

40% {
transform: translate(1.56%, -1.56%);
}

56% {
transform: translate(-4.63%, 4.63%);
}

72% {
transform: translate(9.12%, -9.12%);
}

86% {
transform: translate(-15.06%, 15.06%);
}
}

/* Icon Animation */

.card-box {
box-shadow: 0px 15px 26px rgba(0, 0, 0, 0.5);
padding: 40px 0;
margin: 20px;
}

/*----  Services  ----*/

/* Pricing */

.price-boxes-container {
display: flex;
flex-wrap: wrap;
}

.price-box {
height: auto;
border: none;
margin: 5px 10px;
border-radius: 4px;
background-color: #fff;
box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.45);
transition: ease-in-out 0.5s;
}

.price-box:hover {
transform: scale(1.025);
}

.price-discount-corner {
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
background-color: var(--light-blue);
color: #fff;
width: 180px;
height: 90px;
transform: rotate(-45deg) translateY(-90px) translateX(-30px);

padding: 5px;

box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.4);
}
#Price {
width: 80%;
}

.price-box-header,
.signup-button {
background: linear-gradient(to right, var(--coral), var(--darker-coral));
}

.price-box-header {
color: #fff;
padding: 40px 10px;
}

.price-number {
color: var(--light-blue);
font-size: 2em;
padding-top: 5px;
}

.price-box-header,
.price-number {
text-align: center;
}

.price-title {
font-size: 25px;
font-family: "Lato", serif;
}

.price-box-body {
display: flex;
flex-direction: column;
justify-content: center;
}

.price-box-body ul {
list-style-type: none;
}

.price-box-body li {
font-size: 13px;
padding: 5px;
}

.list i {
padding: 5px;
color: var(--coral);
}

.signup-button {
border: none;

color: #fff;

padding: 14px;

font-size: 1.5em;

cursor: pointer;
}

.price-box-premium {
transform: scale(1.025);
}

.price-box-premium:hover {
transform: scale(1.05);
}

.premium-header,
.premium-button {
background: linear-gradient(to right, var(--light-blue), var(--darker-blue));
}

.premium-discount {
background-color: var(--coral);
}

.premium-number {
color: var(--coral);
}

.premium-list i {
color: var(--light-blue);
}

.Pricing-bg {
background-image: url(../Image/price-bg.jpg);
padding-bottom: 20px;
}
.Pricing-bg h2 {
color: #fff;
text-align: center;
}
.Pricing-bg p {
color: #fff;
text-align: center;
}

#Price_heading h2 {
color: #ffffff;
text-align: center;
font-weight: 600;
font-size: 46px;
}

#Price_heading p {
width: 70%;
padding: 20px 0;
margin: 0 auto;
color: #ffffff;
font-size: 12px;
text-align: center;
}
@media screen and (max-width: 426px) {
.price-box {
width: 440px;
text-align: center;
}
}

@media screen and (max-width: 1024px) {
.price-boxes-container {
flex-direction: wrap;
}
.price-box {
width: 343px;
text-align: center;
}
}

/* Pricing */

/* Sponsor  */

.sponsor {
padding: 20px 0;
}

.card-block .btn-outline-primary {
width: 100%;
border-top-left-radius: 0;
border-top-right-radius: 0;
bottom: 0;
left: 0;
position: absolute;
}

.card-container {
perspective: 700px;
}

.Flip {
margin: 8px;
}

.Flip-box {
display: flex;
margin: 20px auto;
justify-content: center;
align-items: center;
background-color: transparent;
}

.flip-box {
height: 200px;
border: 2px solid #f1f1f1;
border-radius: 10px;
perspective: 1000px;
text-align: center;
background-color: #f7f7f7;
}

.flip-box-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.8s;
transform-style: preserve-3d;
display: flex;
justify-content: center;
align-items: center;
}

.flip-box:hover .flip-box-inner {
transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;

display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}

.flip-box-front {
background-color: #fff;
color: black;
border-radius: 8px;
}

.flip-box-front img {
width: 150px;
}

.flip-box-back {
background-color: #f7f7f7;
color: #000;
transform: rotateY(180deg);
border-radius: 10px;
}

.flip-box-back p {
font-size: 9px;
padding: 0 20px;
color: #000;
}

.flip-box-back h3 {
font-size: 13px;
color: #1da1f2;
}

@media screen and (max-width: 76px) {
.Flip-box {
width: 208px;
}
}

/* sponsor */

/* contact-info */
.contact-info {
display: inline-block;
margin-top: 10px;
width: 100%;
text-align: center;
border: 1px solid #ffffff;
box-shadow: 0px 3px 17px #ffffff;
}

.contact-info-icon {
margin-bottom: 15px;
}

.contact-info-item {
background: #024e7a;
padding: 30px 0px;
height: 180px;
}

.contact-page-sec {
background-image: url(../Image/Background-Form.jpg);
padding: 40px 0;
}

.contact-page-sec img {
background-repeat: none;
}

.contact-page-map {
border: 1px solid #428cc6;
box-shadow: 0px 2px 15px #428cc6;
}

.contact-page-form {
display: inline-block;
width: 100%;
background-color: #fff;
margin-bottom: 30px;
border: 1px solid #428cc6;
box-shadow: 0px 2px 15px #428cc6;
}
.contact-page-form span {
color: #428cc6;
}

.contact-page-form form {
padding: 20px 15px 0;
}

.contact-page-sec .contact-page-form h2 {
color: #000000;
text-transform: capitalize;
font-size: 30px;
font-weight: 700;
margin: 15px 30px;
}

.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
padding-left: 0;
}

.contact-page-form.contact-form input {
margin-bottom: 5px;
}

.contact-page-form.contact-form textarea {
height: 110px;
}

.contact-page-form.contact-form input[type="submit"] {
background: #ffffff;
width: 150px;
border-color: #428cc6;
}

.contact-info-icon i {
font-size: 48px;
color: #fda40b;
}

.contact-info-text p {
color: #fff;
font-size: 12px;
text-transform: capitalize;
font-weight: 600;
margin-bottom: 10px;
padding: 10px 20px;
}

.contact-page-form input {
background: #f0f0f1 none repeat scroll 0 0;
border: 1px solid #f9f9f9;
margin-bottom: 20px;
padding: 12px 16px;
width: 100%;
border-radius: 4px;
}

.contact-page-form .message-input {
display: inline-block;
width: 100%;
padding-left: 0;
}

.single-input-field textarea {
background: #f0f0f1 none repeat scroll 0 0;
border: 1px solid #f9f9f9;
width: 100%;
height: 120px;
padding: 12px 16px;
border-radius: 4px;
}

.single-input-fieldsbtn input[type="submit"] {
background: #428cc6 none repeat scroll 0 0;
color: #fff;
display: inline-block;
font-weight: 600;
padding: 10px 0;
text-transform: capitalize;
width: 150px;
margin-top: 20px;
font-size: 16px;
}

.single-input-fieldsbtn input[type="submit"]:hover {
background: #071c34;
transition: all 0.4s ease-in-out 0s;
border-color: #071c34;
}

.single-input-field h4 {
color: #428cc6;
text-transform: capitalize;
font-size: 14px;
}
/* contact-info */

/* Footer */

.second-logo {
font-size: 30px;
padding: 0 10px;
color: #fff;
font-weight: 300;
text-decoration: none;
display: inline-block;
}
.second-logo span {
color: rgb(0, 187, 255);
}

.footer-area {
width: 100%;
color: #fff;
background-image: linear-gradient(
to bottom,
#000000,
#00042a,
#000533,
#000533,
#071a29
);
background-repeat: no-repeat, repeat;
position: relative;
z-index: 1;
font-size: 13px;
overflow: hidden;
}
.footer-area img {
max-width: 100%;
}

.list-style {
list-style-type: none !important;
text-decoration: none;
cursor: pointer;
float: left;
}
.list-style li {
padding-bottom: 15px;
}

.copy-right {
font-size: 14px;
}
.Analyst {
width: 87.7px;
height: 23.7px;
margin: 10.7px 0 5.2px 10.2px;
color: #fff;
}
.heading-3 {
font-size: 12px;
padding-bottom: 20px;
text-decoration: none;
margin-bottom: 10px;
color: var(--white);
}
.Footer-heading {
font-size: 29px;
}
.Footer-para {
font-size: 14px;
margin-top: 10px;
}
.logo {
margin-bottom: 20px;
}
.lines {
left: 0;
right: 0;
margin: auto;
width: 100%;
z-index: -1;
}

/* social media icon  */
.link {
text-decoration: none;
color: #b7b7b7;
margin: 10px;
width: 30px;
height: 30px;
display: flex;
justify-content: center;
align-items: center;
background: rgb(28, 28, 28);
border-radius: 10px;
position: relative;
transition: 0.4s;
float: left;
}

.link:hover {
transform: rotate(45deg);
}

.link::before {
content: " ";
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
background: #373737;
border-radius: 10px;
transition: opasity 0.2s;
}

.link:hover::before {
opacity: 0.4;
}

.link:nth-child(1)::before {
background: #c32aa3;
}

.link:nth-child(2)::before {
background: #1da1f2;
}

.link:nth-child(3)::before {
background: #0a66c2;
}

.link:nth-child(4)::before {
background: #0a66c2;
}

.link:hover::before {
transform: translate(-4px, -4px);
filter: blur(10px);
}

.link i {
font-size: 1.7em;
transition: all 0.4s;
}

.link:hover i {
color: #c8c8c8;
transform: rotate(-45deg);
}

.link:hover i.instagram {
color: #c32aa3;
}

.link:hover i.twitter {
color: #1da1f2;
}

.link:hover i.facebook {
color: #0a66c2;
}

.link:hover i.linkedin {
color: #0a66ca;
}
/* social media icon  */

/* Footer_background Lines  */
.Social-icon {
display: flex;
}

.refokus-lines {
z-index: -1;
position: absolute;
top: 0;
left: 0;
right: 0;
height: 100%;
margin: auto;
width: 90vw;
}

.line {
position: absolute;
width: 2px;
height: 100%;
top: 0;
left: 50%;
background: hsla(0, 0%, 100%, 0.1);
overflow: hidden;
}
.line::after {
content: "";
display: block;
position: absolute;
height: 15vh;
width: 100%;
top: -50%;
left: 0;
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0) 0%,
#999999 75%,
#000000 100%
);
-webkit-animation: drop 7s 0s infinite;
animation: drop 7s 0s infinite;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
.line:nth-child(1) {
margin-left: -25%;
}
.line:nth-child(1)::after {
-webkit-animation-delay: 2s;
animation-delay: 2s;
}
.line:nth-child(3) {
margin-left: 25%;
}
.line:nth-child(3)::after {
-webkit-animation-delay: 2.5s;
animation-delay: 2.5s;
}

@-webkit-keyframes drop {
0% {
top: -50%;
}
100% {
top: 110%;
}
}

@keyframes drop {
0% {
top: -50%;
}
100% {
top: 110%;
}
}
/* Footer_background Lines */

@media screen and (max-width: 426px) {
.footer-area {
text-align: center;
}
.list-style {
display: contents;
}
.Social-icon {
width: 50%;
margin: 0 auto;
}
}

/* Footer */

/* POrtfolio */

.Portfolio h1 {
text-align: center;
font-size: 46px;
font-family: var(--sec-font);
}

.gallery-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background-color: #fff;
box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
width: 80%;
margin: 0 auto;
padding: 10px;
}
.gallery-item {
flex-basis: 32.7%;
margin-bottom: 6px;
opacity: 0.85;
cursor: pointer;
}
.gallery-item:hover {
opacity: 1;
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
}
.gallery-content {
font-size: 0.8em;
}

.lightbox {
position: fixed;
display: none;
background-color: rgba(0, 0, 0, 0.8);
width: 100%;
height: 100%;
overflow: auto;
top: 0;
left: 0;
}
.lightbox-content {
position: relative;
width: 70%;
height: 70%;
margin: 5% auto;
}
.lightbox-content img {
border-radius: 7px;
box-shadow: 0 0 3px 0 rgba(225, 225, 225, 0.25);
width: 100%;
height: 100%;
object-fit: cover;
}
.lightbox-prev,
.lightbox-next {
position: absolute;
background-color: rgba(0, 0, 0, 0.8);
color: #fff;
padding: 7px;
top: 45%;
cursor: pointer;
}
.lightbox-prev {
left: 0;
}
.lightbox-next {
right: 0;
}
.lightbox-prev:hover,
.lightbox-next:hover {
opacity: 0.8;
}

@media (max-width: 767px) {
.gallery-container {
width: 100%;
}
.gallery-item {
flex-basis: 49.8%;
margin-bottom: 3px;
}
.lightbox-content {
width: 80%;
height: 60%;
margin: 15% auto;
}
}
@media (max-width: 480px) {
.gallery-item {
flex-basis: 100%;
margin-bottom: 1px;
}
.lightbox-content {
width: 90%;
margin: 20% auto;
}
}
/* POrtfolio */

/* Why Choose Us */

.section-head {
text-align: center;
}
.section-head h1 {
font-size: 46px;
}

.section-box h2 {
color: var(--darker-blue);
}

/* Why Choose Us */

/* Uppgrade */

.Grade-box h2 {
color: var(--darker-blue);
font-size: 20px;
}

/* FAQ */

/* FAQ */

/* General styles */
#FAQ {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 100%;
height: 100%;
}

.accordian {
width: 100%;
max-width: 950px;
margin: 0 auto;
padding: 15px 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
border-radius: 8px;
}

.item {
background-color: #e7ecf5;
margin-bottom: 10px;
padding: 15px 20px;
border-radius: 8px;
position: relative;
transition: background-color 0.3s ease;
}

.item.selected {
background-color: #ffffff;
}

.item::after {
content: "";
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
width: 8px;
height: 8px;
border-radius: 50%;
background-color: #06965c;
}

.FAQ-title {
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
font-weight: 600;
font-size: 8px;
color: #131414;
}

.faqQuestion {
font-size: 15px;
color: #131414;
text-align: start;
}

.FAQ-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.8s cubic-bezier(0, 1, 0, 1);
font-weight: 400;
font-size: 15px;
line-height: 1.6;
color: #131414;
}

.FAQ-content.show {
max-height: 9999px;
transition: max-height 0.8s cubic-bezier(1, 0, 1, 0);
}
.FAQ-content p {
color: #000;
text-align: left;
}

.expandToggle {
background: #ffffff;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 18px;
font-weight: 600;
}

.FAQ-ShowMore {
text-align: center;
margin-top: 10px;
}

.FAQ-ShowMore button {
padding: 10px 20px;
font-size: 16px;
border: none;
border-radius: 8px;
background-color: #06965c;
color: white;
cursor: pointer;
transition: background-color 0.3s ease;
}

.FAQ-ShowMore button:hover {
background-color: #8ee0c4;
color: black;
font-weight: 700;
}

/* Responsive styles */
@media (max-width: 1024px) {
.accordian {
max-width: 90%;
}

.item {
padding: 12px 16px;
}

.FAQ-title {
font-size: 16px;
}

.expandToggle {
width: 28px;
height: 28px;
font-size: 16px;
}
}

@media (max-width: 768px) {
.accordian {
padding: 10px;
}

.item {
padding: 10px 14px;
}

.FAQ-title {
font-size: 14px;
}

.expandToggle {
width: 24px;
height: 24px;
font-size: 14px;
}
}

@media (max-width: 480px) {
.accordian {
padding: 5px;
}

.item {
padding: 8px 12px;
}

.FAQ-title {
font-size: 12px;
}

.expandToggle {
width: 20px;
height: 20px;
font-size: 12px;
}
}
.faq_section {
background-image: url(../Image/FAQ-background.jpg);
}
.faq_section h1 {
color: #fff;
}

/* FAQ */
