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

@import url('https://fonts.googleapis.com/css?family=Amiri:400,400i,700,700i|Crimson+Text:400,400i,600,600i,700,700i|Homemade+Apple|Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

body {
  background: #fff;
  color: #2f3138;
  font-family: 'Poppins', sans-serif;
}

a {
  color: #f82249;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #f8234a;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: #0e1b4d;
  font-size: 32px;
}

.main-page {
  margin-top: 70px;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f82249;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #f94a6a;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Sections Header
--------------------------------*/
.section-header {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-header::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #f82249;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-header h2 {
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}

.section-with-bg {
  background-color: #f6f7fd;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled,
#header.header-inner {
  background: rgba(0, 50, 129, 0.98);
  height: 70px;
}

#header #logo h1 {
  font-size: 30px;
  margin: 0;
  font-family: 'Montserrat';
  font-weight: 700;
  text-transform: uppercase;
}

#header #logo h1 span {
  color: #f82249;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 992px) {
  #header #logo img {
    max-height: 30px;
  }
}

/*--------------------------------------------------------------
# Buy Tickets
--------------------------------------------------------------*/
.buy-tickets {
  color: #fff;
  background: #f82249;
  padding: 7px 22px;
  margin: 0 0 0 15px;
  border-radius: 50px;
  border: 2px solid #f82249;
  transition: all ease-in-out 0.3s;
  font-weight: 500;
  line-height: 1;
  font-size: 13px;
  white-space: nowrap;
}

.buy-tickets:hover {
  background: none;
  color: #fff;
}

.buy-tickets:focus {
  color: #fff;
}

@media (max-width: 992px) {
  .buy-tickets {
    margin: 0 15px 0 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(202, 206, 221, 0.8);
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  padding: 6px 4px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #f82249;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 12px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #060c22;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #f82249;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

 /* gallery tab css start */
 .GallConst {
  background:#f1f3f5;
  padding:60px 0 20px 0;
}
.GallaryTab .tab {
overflow: hidden;
display: flex;
  justify-content: center;
}
.GallaryTab .tab button {
background-color: inherit;
float: left;
border: 2px solid transparent;
outline: none;
cursor: pointer;
padding: 5px 10px;
transition: 0.3s;
font-size: 15px;
color: #8d959b;
min-width: 80px;
margin: 0 10px;
}
.GallaryTab .tab button:hover {
color: #f9a825;
}
.GallaryTab .tab button.active {
color: #11181c;
border: 2px solid #fbc02d;
border-radius: 10px;
}
.GallaryTab .Gcontent {
display: none;
padding: 20px 0 0 0px;
border-top: none;
opacity: 0;
transition: opacity 0.5s ease-in-out;
}
.GallaryTab .Gcontent p {
color: #8d959b;
font-size: 17px;
}
.GallaryTab .Gcontent.active {
display: block;
opacity: 1;
}
.GallItems {
display: flex;
flex-wrap: wrap;
margin-top: 20px;
}
.GallItems .GallItem {
width: 23%;
margin: 0 6px 12px 6px;
overflow: hidden;
position: relative;
}
.GallItems .GallItem:hover img {transform: scale(1.2);}
.GallItems .GallItem img {width: 100%;  transition: 0.3s;}

.GallItems .portfoliohover {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 1;
display: none;
background: rgba(0, 0, 0, .6) url(../img/zoom.webp) no-repeat center center;
}
.GallItem:hover .portfoliohover {
display: block;
}
/* gallery tab css end */

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #060c22;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #f82249;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #f82249;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url(../img/hero-bg.webp) top center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.36);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 90px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

@media (max-width: 991px) {
  #hero .hero-container {
    top: 96px;
  }
}

#hero .logo{width:224px; padding:24px; background:#fff; border-radius:24px;}

#hero .logo img {width:100%;}

#hero h1 {
color: #f7980a;
font-family: 'Poppins', sans-serif;
font-size: 48px;
font-weight: 500;
text-transform: none;

}

#hero h1 span {
  color: #fff;
  font-family: 'Great Vibes';
  letter-spacing:2px;
  display:block;
}

@media (max-width: 991px) {
  #hero h1 {
    font-size: 34px;
  }
}

#hero p {
  color: #ebebeb;
  font-weight: 700;
  font-size: 30px;
}

@media (max-width: 991px) {
  #hero p {
    font-size: 16px;
  }
}

#hero .play-btn {
  width: 148px;
  height: 148px;
  background: radial-gradient(#f82249 50%, rgba(101, 111, 150, 0.5) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#hero .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn:before {
  content: "";
  position: absolute;
  width: 176px;
  height: 176px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 2px solid rgba(163, 163, 163, 0.4);
  top: -10%;
  left: -10%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid #f82249;
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

#hero .about-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #f82249;
}

#hero .about-btn:hover {
  background: #f82249;
  color: #fff;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0px 0px 0px;
  /* overflow: hidden; */
}

.alternate {background:#ebf6ff; padding-bottom:60px; margin-top:60px;}

.section-bg {
  background-color: #8fffd6;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #009961;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
  color: #777777;
  font-size: 16px;
  line-height:30px;
}



/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
font-size:16px;
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #009961;
  line-height: 1;
}

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

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #009961;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #009961;
}

.about .content .btn-learn-more:hover {
  background: #009961;
  color: #fff;
  text-decoration: none;
}


/* footer area css here */

.footer_widgets {
  background: #ebf6ff url(../img/bg02.webp) no-repeat center top; margin-top:48px;
}

.footer_top {
  padding: 95px 0 100px;
}

.ftr img{width:100%;}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_top {
    padding: 77px 0 38px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_top {
    padding: 56px 0 60px;
  }
}

@media only screen and (max-width: 767px) {
  .footer_payment {
    margin-top: 13px;
    text-align: center !important;
  }
}

.footer_social {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer_social ul{padding-left:0px;}

@media only screen and (max-width: 767px) {
  .footer_social {
    padding: 32px 0;
  }
}
.footer_social ul li {
  display: inline-block;
  margin-right: 10px;
}
.footer_social ul li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .footer_social ul li {
    margin: 0 4px 0 0;
  }
}
.footer_social ul li a {
  line-height: 45px;
  width: 47px;
  height: 47px;
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  color: #888888;
  border: 1px solid #545454;
  font-size: 20px;
}
.footer_social ul li a:hover {
  background: #ff4545;
  border-color: #ff4545;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer_social ul li a {
    line-height: 38px;
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}

.copyright_area p {
  line-height: 24px;
  font-size: 14px;
  color: #000;
  opacity: 0.5;
  text-align:center;
}
@media only screen and (max-width: 767px) {
  .copyright_area p {
    line-height: 22px;
  }
}
.copyright_area p a:hover {
  color: #ff4545;
}

.footer_bottom {
  padding: 0px 0px 12px 0px;
}
@media only screen and (max-width: 767px) {
  .footer_bottom {
    padding: 26px 0 28px;
  }
}

.footer_bottom_left {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer_bottom_left {
    margin-bottom: 22px;
    flex-direction: column;
    text-align: center;
  }
}

.footer_logo {
  margin-right: 35px;
}
.footer_logo img {
  width: 100px;
}
@media only screen and (max-width: 767px) {
  .footer_logo {
    text-align: center;
    margin-bottom: 20px;
    margin-right: 0;
  }
}

.footer_padding .footer_top {
  padding: 75px 0 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_padding .footer_top {
    padding: 58px 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_padding .footer_top {
    padding: 54px 0 60px;
  }
}

.footer_paypal {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .footer_paypal {
    text-align: center !important;
  }
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/cta-bg.webp") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(1, 3, 111, 0.8);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.attendees .attendees-carousel,
.attendees .attendees-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1acc8d;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

.process {padding-top:36px;}

.process img {width: 100%; border:16px solid #ffffff; border-radius:60px 0px 60px 0px;}


.bg-about{
  position: relative;
  width: 100%;
  background-color: beige;
}
/* .bg-about::before{
  content: "";
  z-index: 0;
  background: url(../img/Downpic.cc-2279973727.webp);
  opacity: 0.4;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 30%;
  height: 100%;
  right: 0px;
  bottom: -80px;
} */


#footer {
  color: #000;
  font-size: 13px;
  background: #fff;
}
.taglink a {
  background: #fff;
  display: inline-block;
}

.tagcloud a {
  display: inline-block;
  font-size: 1.4rem !important;
  line-height: 1.5rem;
  padding: 7px 10px 8px 10px;
  border-bottom: none;
  margin-bottom: 4px;
  border-radius: 2px;
}
.tagcloud a {
  display: inline-block;
  font-size: 14px !important;
  line-height: 1.5rem;
  padding: 7px 10px 8px 10px;
  border-bottom: none;
  margin-bottom: 4px;
  border-radius: 2px;
color:#3f3f3f;
text-decoration:none;
}
.taglink a:hover {
  background: #0073b2;
}

.tagcloud a:hover {color:#fff;}

#footer .footer-top {
padding: 52px 0 30px 0;
background: #f8f8f8;
border-top: 2px solid #f5f5f5;
border-bottom: 2px solid #f5f5f5;
}

.copyright {font-size: 11px; color:#333;}

#footer .footer-top .footer-contact {
  margin-bottom: 0px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}

#footer .footer-top .footer-contact h3 span {
  color: #004aad; font-weight:700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top .footer-contact p a{color:#000; text-decoration:none;}

#footer .footer-top .footer-contact p a:hover{text-decoration:underline;}

#footer .footer-top .footer-contact p a.last{color:#0018ff; text-decoration:none;}

#footer .footer-top .footer-contact p a.last:hover{text-decoration:underline;}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #004aad;
  bottom: 0;
  left: 0;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: white;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #000;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #0018ff;
}

#footer .footer-newsletter {
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 5px 10px;
  position: relative;
  border-radius:20px;
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: rgb(5 54 131);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 20px 20px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  font-family: 'Montserrat';
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #002f79;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

#footer .social-links a {
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(5 54 131);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 24px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.social-links {
  display: flex;
}

#footer .footer-top .footer-contact p a.last {
  color: #0018ff;
  text-decoration: none;
}

#footer .footer-top .footer-contact h3 span {
  color: #004aad;
  font-weight: 700;
}

#footer .social-links a:hover {
  background: #002f79;
  color: #fff;
  text-decoration: none;
}

.logo-box {background:#fff;}

.logo-box img { border-right:5px solid #eeeeee; border-bottom:5px solid #eeeeee; padding:5px;}

.footer-network {display:flex; list-style: none; padding: 0; margin: 0;}

.footer-network li{margin-right:18px;}

.footer-network li a {color:#000; text-decoration:none;}

.footer-network li a:hover {color:#ff0057;}


.copyright_area p {
  line-height: 24px;
  font-size: 14px;
  color: #000;
  opacity: 0.5;
  text-align:center;
}
@media only screen and (max-width: 767px) {
  .copyright_area p {
    line-height: 22px;
  }
  .footer-network{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.copyright_area p a:hover {
  color: #ff4545;
}

.footer_bottom {
  padding: 0px 0px 12px 0px;
}
@media only screen and (max-width: 767px) {
  .footer_bottom {
    padding: 26px 0 28px;
  }
}

.footer_bottom_left {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer_bottom_left {
    margin-bottom: 22px;
    flex-direction: column;
    text-align: center;
  }
}

.footer_logo {
  margin-right: 35px;
}
.footer_logo img {
  width: 100px;
}
@media only screen and (max-width: 767px) {
  .footer_logo {
    text-align: center;
    margin-bottom: 20px;
    margin-right: 0;
  }
}

.footer_padding .footer_top {
  padding: 75px 0 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_padding .footer_top {
    padding: 58px 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_padding .footer_top {
    padding: 54px 0 60px;
  }
}

.footer_paypal {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .footer_paypal {
    text-align: center !important;
  }
}

/* about us Image  */

.image-column{
	position:relative;
	margin-bottom:50px;
}

 .image-column .inner-column{
	position:relative;
	padding:40px 40px 0px 0px;
	margin-left:50px;
}

 .image-column .inner-column:after{
	position:absolute;
	content:'';
	right:0px;
	top:0px;
	left:40px;
	bottom:100px;
	z-index:0;
	border:2px solid rgba(0, 50, 129, 0.98);
}

 .image-column .inner-column .image{
	position:relative;
  z-index: 1;
}

 .image-column .inner-column .image:before{
	position:absolute;
	content:'';
	left:-50px;
	bottom:-50px;
	width:299px;
	height:299px;
	background:url(img/pattern-2.webp) no-repeat;
}
 .image-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
}

 .image-column .inner-column .image .overlay-box{
	position:absolute;
	left:40px;
	bottom:48px;
}

 .image-column .inner-column .image .overlay-box .year-box{
	position:relative;
	color:#252525;
	font-size:24px;
	font-weight:700;
	line-height:1.4em;
	padding-left:125px;
}

 .image-column .inner-column .image .overlay-box .year-box .number{
	position:absolute;
	left:0px;
	top:0px;
	width:110px;
	height:110px;
	color:rgba(0, 50, 129, 0.98);
	font-size:68px;
	font-weight:700;
	line-height:105px;
	text-align:center;
	background-color:#ffffff;
	border:1px solid #000000;
}

/* close here */

.subheading h2{
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  padding-bottom: 12px;
  position: relative;
  color:#333333;
}


/* both two sections  */
section#help {
  padding-top: 0px;
}

.constbtn .btn {
  background: #fbc02d;
  color: #11181c;
  padding: 10px 20px;
 }
 .ConstcardBox {
   background: #fff;
   padding: 50px 0;
 }
 .ConstcardBox .Carditm {
   text-align: center;
   background: #fff;
   padding: 30px;
   border-radius: 3px 3px 3px 3px;
   min-height: 220px;
   border: 1px solid #11181c1f;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   margin-bottom: 25px;
 }
 .ConstcardBox .Carditm h4 {font-size: 20px;}
 .ConstcardBox .Carditm .elementor-icon {
 display: flex;
 margin-bottom: 20px;
 }
 .ConstcardBox .Carditm:hover {
   border-color: #fff;
     box-shadow: 0 0 20px 0 rgba(0, 0, 0, .2);
 }
 
 .contbx {
   background-color: #0f1b2d;
   position: relative;
   padding: 100px 0;
 }
 .contbx .background-overlay {
   background-image: url(../img/consBannerBG.svg);
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;
   opacity: .5;
   mix-blend-mode: color-dodge;
   height: 100%;
   width: 100%;
   top: 0;
   left: 0;
   position: absolute;
 }
 .contbxin {
   position: relative;
   z-index: 1;
   text-align: center;
 }
 .contbxin .heading-title {
   font-size: 36px;
   color: #fff;
   width: 62%;
   margin: 0 auto 30px;
 }
 .conbtnbox .box-button-a {
   background: #fbc02d;
   color: #11181c;
   padding: 12px 30px;
   border: 1px solid #fbc02d;
   display: inline-block;
   font-size: 20px;
 }
 .conbtnbox .box-button-btn {
  border: 1px solid #fbc02d;
  color: #fbc02d;
  padding: 12px 30px;
  margin-left: 20px;
  display: inline-block;
  font-size: 20px;
 }
 .conbtnbox .box-button-btn span {margin-right: 10px; display: inline-block;}
 .progress {
   height: 20px;
   background-color: #f5f5f5;
   border-radius: 4px;
   overflow: hidden;
   position: relative;
 }

 .numbCont {
  background-color: #fff;
  position: relative;
  padding: 60px 0;
}
.numbCont .numbBx {
  position: relative;
  padding: 30px;
}
.numbCont .numbBx .nmb {
  color: #f1f3f5; 
  font-size: 160px;
  margin: 0 0 -60px -50px;
  display: block;
  line-height: 120px;
}
.numbCont .numbBx h3 {
  color: #11181c;
  font-size: 20px;
  margin-bottom: 20px;
}
.numbCont .numbBx p {
  color: #8d959b;
    font-size: 16px;
}
.req-callform {
  background: #f1f3f5;
  padding: 100px 0;
}
.reqForm {
  width: 60%;
    margin: auto;
    text-align: center;
}
.reqForm h2 {
  font-size: 34px;
  color: #11181c;
  margin-bottom: 40px;
}
.infields {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.reqForminner {
  width: 100%;
  margin: auto;
}
.infields input {
  width: 48%;
  font-size: 14px;
  height: 60px;
  padding: 24px;
  border: 1px solid #69727d40;
  border-radius:12px;
  margin-right:12px;
}
.infields input:focus {
  border: 1px solid #69727d40;
  outline: none;
}

.infields textarea {
  width: 100%;
  font-size: 14px;
  padding: 24px;
  border: 1px solid #69727d40;
  border-radius:12px;
  margin-right:12px;
}
.infields textarea:focus {
  border: 1px solid #69727d40;
  outline: none;
}

.submitbtn .btn {
 background: #fbc02d;
 color: #11181c;
 font-size: 16px;
 padding: 12px 10px;
 width: 100%;
 font-weight: 500;
}
.submitbtn span {margin-right: 10px;font-size: 20px;}
.attenslide {
  background-color: #fff;
  position: relative;
  padding: 60px 0;
}


/* features  */
