@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Boxicons */
@font-face {
  font-family: boxicons;
  src: url("../fonts/boxicons/boxicons.ttf");
}

/* Root Styling */
:root {
  --c1: #3eb6e2;
  --c2: #d1f1f5;
  --c3: #142339;
  --c4: #365781;
  --f1: 'Inter';
  --f2: 'DM Sans';
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.img__contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* General Styling */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: 'Roboto', sans-serif;
}

::selection {
  background-color: var(--c1);
  color: #fff;
}

a {
  display: inline-block;
  color: #000;
  transition: all 300ms ease-in-out;
}

a:hover {
  color: #000;
}

ul,
ol,
dl {
  margin-bottom: 0;
  padding: 0;
}


p,
li,
a,
span,
input,
input::placeholder,
button {
  font-family: var(--f1);
}


.imgFluid {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  transition: all 300ms ease-in-out;
  outline: 0;
}

i.bx {
  font-family: boxicons;
  vertical-align: middle;
}

/* button style */

.themebtn {
  padding: 18px 32px;
  background: #01427e;
  color: #fff;
  text-transform: capitalize;
  font-size: 17px;
  font-weight: 600;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  z-index: 99;
}

.themebtn:hover {
  background: var(--c2);
  color: #fff;
}

.themebtn::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-animation: shine .75s;
  animation: shine 2s linear infinite;
}

.themebtn::after {
  position: absolute;
  content: '';
  width: 0;
  right: 0;
  height: 100%;
  background-color: var(--c3);
  top: 0;
  transition: 400ms ease;
  z-index: -1;
}

.themebtn:hover::after {
  width: 100%;
  left: 0;
}

.themebtn:hover span {
  animation: tada 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* button style */


/* header css start */

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0px;
}

a.header__logo img {
  width: 230px;
  height: auto;
  object-fit: contain;
}

ul.header-main__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

ul.header-main__nav li a {
  font-size: 16px;
  font-family: var(--f1);
  position: relative;
  text-transform: capitalize;
  font-weight: 500;
}

ul.header-main__nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: #00457d;
  transition: all 500ms;
}

ul.header-main__nav li a.active::after {
  width: 100%;
  left: 0;
}

ul.header-main__nav li a:hover::after {
  width: 100%;
  left: 0;
}

ul.header-main__nav li a:hover {
  color: #00457d;
}

ul.header-main__nav li a.active {
  color: #00457d;
}


/* header css end */

/* baner css start */

.home_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--c3);
  min-height: 89vh;
  border-radius: 0px 0px 60px 60px;
}

.banner_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_cont {
  position: relative;
  color: #fff;
  width: 90%;
}

.banner_cont h6 {
  font-size: 18px;
  text-transform: uppercase;
  font-family: var(--f1);
  color: var(--c1);
}

.banner_cont h1 {
  font-size: 65px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin: 20px 0px;
  line-height: 84px;
  font-weight: 700;
}

.banner_cont p {
  font-size: 17px;
  width: 95%;
  font-weight: 500;
}

/* baner css end */



/* new css start */


.topbar p {
  text-align: center;
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--f1);
  color: #fff;
  position: relative;
}

.topbar {
  background: #01427e;
  padding: 15px 0px;
}



.header_btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar p:before {
  content: '';
  position: absolute;
  width: 16%;
  height: 2px;
  background: #fff;
  bottom: -3px;
  transform: translateX(-50%);
  left: 50%;
}

.header_btn .alt {
  font-size: 20px;
  font-family: var(--f1);
  position: relative;
  transition: 300ms;
}

.header_btn .alt:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  bottom: -1px;
  left: 0;
  transition: 300ms;
}

.header_btn .alt:hover {
  color: #00457d;
}

.banner_btn {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.home_banner::before {
  position: absolute;
  content: '';
  background-image: url('../images/banner_bg_aft.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* z-index: 1; */
  width: 430px;
  height: 500px;
  left: 0px;
  top: 0px;
  opacity: 0.1;
}

.home_banner:after {
  content: '';
  position: absolute;
  background-image: url('../images/banner_aft.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 660px;
  height: 660px;
  left: 74%;
  transform: translate(-50%, -50%);
  top: 50%;
  opacity: 0.3;
  filter: contrast(49%) saturate(163%) blur(0px) hue-rotate(324deg);
}

.banner-video {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 500px;
  z-index: 9;
}

.banner-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header_btn .alt:hover:before {
  background: #00457d;
}


.banner_cont ul {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 30px;
}

.banner_cont li a {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 100%;
  border: 2px solid #000;
  margin-left: -12px;
  position: relative;
}

.banner_cont li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_cont ul li span {
  color: #fff;
  margin-left: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
}

.banner_cont ul li span i {
  font-size: 20px;
  color: #ffc107;
}

.card_main {
  padding: 70px 0;
}

.sec_heading h6 {
  text-align: center;
  font-size: 25px;
  font-family: var(--f1);
  font-weight: 500;
  margin-bottom: 30px;
}

.card_item {
  width: 16.66%;
  background: #99999940;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 40px 0px;
  height: 130px;
  box-shadow: 0px 0px 1px 0px #8080806e;
}

.card_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card_img {
  width: 160px;
  height: 160px;
}

.cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.help_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.help_img {
  width: 100%;
  height: 345px;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.help_imge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.help_imges img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.help_clr {
  background: var(--c2);
  padding: 20px 20px;
  border-radius: 20px;
}

.help_imges {
  width: 100%;
  height: 151px;
}

.help_imge {
  width: 100%;
  height: 151px;
}


.help_services_cnt h3 {
  font-family: var(--f2);
  font-size: 51px;
  font-weight: 700;
  margin-bottom: 20px;
}

.help_services_cnt p {
  font-family: var(--f1);
  font-size: 18px;
  font-weight: 600;
  width: 100%;
}

.help_services_cnt ul {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  flex-wrap: wrap;
}

.help_services_cnt ul li {
  width: 49%;
  padding-left: 30px;
  margin-bottom: 21px;
  font-family: var(--f1);
  font-size: 18px;
  font-weight: 600;
  position: relative;
  color: var(--c3);
}


.help_services_cnt {
  width: 100%;
  /* margin: 0 auto; */
  background: var(--c2);
  padding: 95px 50px;
  border-radius: 20px;
}

.help_services_cnt ul li:before {
  position: absolute;
  content: "\ea41";
  font-family: boxicons !important;
  left: 0px;
  top: 0px;
  background: var(--c4);
  border-radius: 100%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #fff;
}

.mobile_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile {
  padding: 70px 0px 0px;
}

.mobile_img {
  width: 100%;
  height: 100%;
  min-height: 70vh;
}


.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.avatar {
  width: 48px;
  height: 48px;
  background: #1a8f7a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  font-family: var(--f1);
}

.user-info {
  flex: 1;
  margin-left: 12px;
}

.user-info h3 {
  margin: 0;
  font-size: 16px;
  font-family: var(--f1);
}

.date {
  margin: 2px 0 0;
  font-size: 14px;
  color: gray;
  font-family: var(--f1);
}

.google-icon {
  width: 22px !important;
}

.review-rating {
  margin: 10px 0;
  color: #fbbc05;
  font-size: 21px;
}

.verified {
  color: #1a73e8;
  font-size: 14px;
  margin-left: 5px;
}

.review-text {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  font-family: var(--f1);
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: grey;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}


.google-review-bar {
  width: 100%;
  margin: 40px auto;
  background: #fff;
  padding: 18px 24px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.google-logo {
  height: 22px;
}

.rating-text {
  font-weight: 600;
  font-size: 16px;
}

.stars {
  color: #fbbc05;
  font-size: 20px;
}

.score {
  font-weight: 600;
  font-size: 15px;
}

.reviews {
  /* color: #555; */
  font-size: 15px;
  font-family: var(--f1);
  font-weight: 700;
}

.review-btn:hover {
  background: #f5f5f5;
}

.reviewbar_btn .themebtn {
  background: #fff;
  border: 1px solid #000;
  padding: 10px 32px;
}

.testi {
  padding: 70px 0;
}

.perfect-campaign {
  background: #365781;
  padding: 90px 0px 70px;
  position: relative;
}

.perfect-campaign_cnt h3 {
  color: #fff;
  font-family: var(--f2);
  font-size: 42px;
  font-weight: 700;
  width: 95%;
}

.perfect_campaign_cnt {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.perfect-campaign_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.perfect-campaign_img {
  width: 430px;
  height: 430px;
  position: absolute;
  right: 80px;
  bottom: 0px;
}

.digital_marketing {
  background-color: var(--c3);
  position: relative;
  padding: 70px 0 0;
  overflow: hidden;
  background-image: url(../images/bg.webp);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.digital_marketing:before {
  position: absolute;
  content: '';
  background-image: url('../images/bg.webp');
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section_title h6 {
  color: var(--c1);
  font-family: var(--f1);
  font-size: 19px;
  margin: 0;
}

.section_title h3 {
  color: #fff;
  font-family: var(--f2);
  font-size: 53px;
  font-weight: 600;
  margin: 18px 0px;
}

.section_title p {
  color: #fff;
  font-family: var(--f1);
  font-size: 17px;
  margin: 0;
}

.section_title_btn {
  margin: 50px 0px;
}

.digital_marketing_card {
  width: 19%;
  padding: 36px 38px;
  background: #ecedf1;
  border-radius: 20px;
  position: relative;
  font-family: Arial, sans-serif;
  overflow: hidden;
  height: 543px;
  border: 2px solid #3eb6e2;
}

.icon-box {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  margin-bottom: 20px;
  color: var(--c4);
}

.digital_marketing_card h2 {
  font-size: 35px;
  font-family: var(--f2);
  font-weight: 700;
  margin: 0;
}

.digital_marketing_card p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  font-family: var(--f1);
  margin: 16px 0;
}

.details {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  color: #1e2a3a;
  border-bottom: 2px solid #7ed321;
  padding-bottom: 3px;
}

.details span {
  color: #7ed321;
  font-size: 18px;
  margin-left: 5px;
}

.number {
  position: absolute;
  bottom: -50px;
  left: 20px;
  font-size: 130px;
  color: rgba(0, 0, 0, 0.08);
  font-weight: bold;
}

.digital_marketing_main {
  display: flex;
  justify-content: space-between;
  padding: 0px 20px;
  position: relative;
  bottom: -12px;
}


.make_marketing {
  padding: 70px 0;
}

.make_marketing_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.make_marketing_img {
  width: 100%;
  height: 368px;
}

.make_marketing_cnt h6 {
  font-family: var(--f1);
  color: var(--c4);
  font-size: 21px;
  font-weight: 600;
}

.make_marketing_cnt h3 {
  font-family: var(--f2);
  font-size: 48px;
  font-weight: 600;
  width: 90%;
}

.make_marketing_cnt p {
  font-family: var(--f1);
  font-size: 19px;
  color: grey;
  font-weight: 400;
  margin-bottom: 25px;
}

.make_marketing_sub {
  display: flex;
  gap: 10px;
  padding: 20px 20px;
  height: 140px;
  border-radius: 10px;
}

.make_marketing_icon {
  width: 60px;
  height: 60px;
  background: #edfdff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  border-radius: 10px;
  color: var(--c3);
}

.make_marketing_icon_cnt h3 {
  font-size: 22px;
  font-family: var(--f1);
  font-weight: 600;
  text-transform: capitalize;
}

.make_marketing_icon_cnt p {
  font-family: var(--f1);
  margin: 0;
  font-size: 18px;
}

.make_marketing_sub {
  display: flex;
  gap: 26px;
  padding: 20px 20px;
  height: 150px;
  border-radius: 10px;
  margin-bottom: 50px;
}

.make_marketing_icon {
  width: 65px;
  height: 65px;
  background: #e3fcff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  border-radius: 10px;
  color: var(--c4);
}

.make_marketing_icon_cnt h3 {
  font-size: 22px;
  font-family: var(--f1);
  font-weight: 600;
  text-transform: capitalize;
}

.make_marketing_icon_cnt p {
  font-family: var(--f1);
  margin: 0;
  font-size: 18px;
}

.make_marketing_icon_cnt {
  width: 77%;
}

.make_mrkt_mrgn {
  margin-top: 90px;
}

.make_marketing_last {
  background: var(--c3);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

@keyframes ak {
  100% {
    transform: rotate(360deg);
  }

}

.make_marketing_last p {
  font-size: 18px;
  color: #fff;
  margin: 0;
  font-family: var(--f1);
  font-weight: 500;
}

.featured_article {
  background: #e5f0fa;
  padding: 70px 0 120px;
}

.featured_article_leftside_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.featured_article_leftside {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
}

.featured_article_leftside h6 {
  color: var(--c4);
  font-family: var(--f2);
  font-size: 20px;
  font-weight: 700;
}

.featured_article_leftside_img {
  width: 100%;
  height: 320px;
  margin: 30px 0;
}

.featured_article_leftside h3 {
  font-family: var(--f2);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.featured_article_leftside p {
  font-family: var(--f1);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 25px;
}

.featured_article_rightside {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
}

.featured_article_rightside h6 {
  color: var(--c4);
  font-family: var(--f2);
  font-size: 20px;
  font-weight: 700;
}

.featured_article_rightside h3 {
  font-family: var(--f2);
  font-size: 21px;
  font-weight: 700;
}

.featuredinner_img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: 500ms;
}

.featuredinner_img {
  width: 150px;
  height: 90px;
}

.featured_inner {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid #80808059;
  padding: 15px 0px 15px;
}

.featured_inner_cnt p {
  margin-bottom: 10px;
  font-family: var(--f1);
  color: var(--c4);
  font-weight: 500;
  font-size: 17px;
}

.featured_inner_cnt h3 {
  font-family: var(--f2);
  font-size: 19px;
  font-weight: 700;
  transition: 300ms;
}

.featured_article_rightside>h3 {
  font-family: var(--f2);
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 10px;
}

.featured_article_rightside .themebtn {
  margin-top: 20px;
}

.featured_inner_cnt {
  width: 80%;
}

.cards.alternate .card_item {
  height: 130px;
  background: #fff;
}

.cards.alternate .card_img {
  width: 140px;
  height: 100px;
}

.alternate .card_img img {
  opacity: 1;
}

.featured_card_main {
  margin-top: 60px;
}

.digital_marketing_card.color1 {
  background: #edfed7;
}

.digital_marketing_card.color2 {
  background: #e5f0fa;
}

.make_marketing_last:before {
  position: absolute;
  content: '';
  background-image: url(../images/aa.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 130px;
  height: 120px;
  right: 0;
  animation: ak 10s linear infinite;
}

.trns_btn {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.themebtn i {
  font-size: 21px;
  margin-right: 7px;
  margin-top: -4px;
}

.cards .card_item:nth-child(1) img {
  filter: opacity(0.5);
}

.cards .card_item:nth-child(2) img {
  filter: opacity(0.5);
}

.cards .card_item:nth-last-child(1) img {
  filter: opacity(0.5);
}

.make_marketing_last .themebtn:after {
  background-color: var(--c4);
}

.featured_article_leftside .themebtn {
  border-color: #000;
  color: #000;
}

.featured_article_rightside .themebtn {
  border-color: #000;
  color: #000;
}

.main_slider .slick-arrow {
  top: 50%;
  transform: translatey(-50%);
  background: #fff;
  color: #fff;
  border: 1px solid #4444;
}

.main_slider .slick-next {
  right: -20px;
}

.main_slider .slick-prev {
  left: -20px;
}

.main_slider .slick-arrow:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'boxicons';
  content: '';
  color: #000;
  font-size: 30px;
}

.main_slider .slick-next:before {
  content: "\ea50";
}

.main_slider .slick-prev:before {
  content: "\ea4d";
}

.ak__slid {
  margin: 0 10px;
}

.main_slider .slick-list.draggable {
  padding: 20px 0;
}

.review-text.active {
  -webkit-line-clamp: none;
}

.read-more.read.active {
  display: none;
}

a.read-more.less {
  display: none;
}

a.read-more.less.active {
  display: block;
}


.footer_logo {
  width: 325px;
  height: 100px;
  overflow: hidden;
  margin: 0 0 15px;
}

.footer_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: hue-rotate(2deg) brightness(100);
}

.footer_contact li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #fff;
  transition: 300ms;
}

.footer_contact li {
  margin: 0 0 15px;
}

ul.footer_icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

footer.footer {
  background: var(--c3);
  padding: 100px 0px 0px;
}

ul.footer_icons li a {
  font-size: 25px;
  background: var(--c4);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: #fff;
}

ul.footer_icons li a:hover {
  transform: scale(0.9);
  background: transparent;
  border: 1px solid var(--c2);
}

.footer_links h3 {
  font-family: var(--f2);
  color: #fff;
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.footer_links li {
  margin-bottom: 15px;
}

.footer_links li a {
  font-family: var(--f1);
  color: #fff;
  font-size: 15px;
  transition: 300ms;
}


.footer_contact {
  width: 70%;
}

.footer_contact li span {
  color: var(--c1);
  font-size: 22px;
  transform: rotateY(180deg);
}

.footer_end {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--c1);
  padding: 30px 0px;
  margin-top: 60px;
}

.footer_end ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.footer_end ul li a {
  color: #fff;
  font-size: 15px;
  transition: all 300ms;
}

.footer_end p {
  color: #fff;
  margin: 0;
  font-family: var(--f1);
  font-size: 15px;
}

.footer_end ul li a:hover {
  color: var(--c1);
}

.footer_links li a:hover {
  color: var(--c1);
  transform: translateX(10px);
}

.footer_contact li a:hover {
  color: var(--c1);
  transform: scale(1.1);
}

.footer_contact li a:hover span {
  color: #fff;
}

.featured_article_rightside .themebtn:hover {
  color: #fff;
}

.featured_article_leftside .themebtn:hover {
  color: #fff;
}

.featured_inner:hover .featuredinner_img img {
  transform: scale(1.1);
}

.featured_inner:hover .featured_inner_cnt h3 {
  color: var(--c4);
}

.footer_end p a {
  color: #fff;
}


 /* ===================================== popup form css start ===================================== */

  .form_close {
    position: absolute;
    width: 40px;
    height: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: #fff;
    top: -20px;
    right: -20px;
    z-index: 999;
    background: var(--c3);
    border-radius: 8px;
  }

  .popup_form {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: #59362982;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
    backdrop-filter: blur(24px);
    overflow: hidden;
  }

  .popup_form .banner_form {
    width: 30%;
    background: url(../images/banner-image.webp);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 73px 40px;
  }

  .popup_form .form_arrow {
    display: none;
  }

  .popup_form.active {
    display: flex;
  }

  .popup_form .form_close {
    display: flex;
  }

  .popup_form .banner_form .form_fields input,
  .popup_form .banner_form .form_fields textarea {
    background: #ffffff7a;
    filter: blur(0px);
    box-shadow: 0px 0px 10px 0px inset #a180608c;
  }

  .popup_form .banner_form::before {
    position: absolute;
    content: '';
    width: 100px;
    height: 100px;
    background: url(../images/splatter.webp);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    top: -7px;
    right: -28px;
    transform: rotate(75deg);
  }

  .form_close:hover {
    color: var(--c3);
    background: var(--c2);
  }

  .popup_form .chat_form {
    width: 27%;
    background: #ffffffc7;
  }
  
  
   .form_group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--f1);
    margin-bottom: 2px;
  }

  .form_group :is(input, textarea) {
    width: 100%;
    padding: 10px 10px;
    outline: 0;
    border-radius: 3px;
    border: none;
    box-shadow: 0 0 0 1px #a7a7a7;
    background: #F2F2F2;
    font-size: 12px;
    transition: 600ms;
    font-family: var(--f2)
  }

  .form_group input::placeholder {
    text-transform: capitalize
  }

  .form_group {
    margin-bottom: 11px
  }

  .form_group textarea {
    height: 100px
  }

  .form_btn .themebtn {
    width: max-content;
  }

  .form_title h5 {
    font-size: 21px;
    font-family: var(--f2);
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 3px
  }

  .form_title h4 {
    font-size: 26px;
    margin: 0;
    font-weight: 500;
    color: #fff;
    font-family: var(--f1);
    text-transform: capitalize;
  }

  .popup_form .banner_form {
    width: 30%;
    background: url(../images/banner-image.webp);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 73px 40px
  }

  .popup_form .form_arrow {
    display: none
  }

  .popup_form .banner_form .form_fields input,
  .popup_form .banner_form .form_fields textarea {
    background: #ffffff7a;
    filter: blur(0);
    box-shadow: 0 0 10px 0 inset #a180608c
  }
  
    .chat_form {
    background: var(--c2);
    position: relative;
    z-index: 9;
    width: 84%;
    margin: 0 auto;
  }

  .chat_form .form_main {
    background: #fff;
    position: relative;
    box-shadow: 0px 0px 8px 5px var(--c3);
  }

  .form_title {
    padding: 22px 13px;
    text-align: center;
    background: #00457d;
  }

  .chat_form form {
    padding: 20px 30px
  }

  /* ===================================== popup form css end ===================================== */
  


.inner_banner {
    background: var(--c1);
    padding: 150px 0px;
}

.inner_cont h3 {
    color: #fff;
    font-family: var(--f1);
    font-weight: 700;
    font-size: 68px;
}