 @import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800;900&display=swap');
body {
  font-family: 'Mulish', sans-serif;    
  color: #444444;
}

a {
  color: #37517e;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Mulish', sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(40, 58, 90, 0.9);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img { 
  max-height: 45px;
}

/*--------------------------------------------------------------
# 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;
  text-transform: uppercase;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing:.2px;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #47b2e4;
}
.logbtnfull .dropdown-item{padding: 10px 20px;font-size: 14px;text-transform: none;font-weight: 500;color: #0c3c53;}
.logbtnfull .dropdown-item i{font-size:18px; float:left; padding-right:8px; line-height: 22px;}
.logbtnfull .dropdown-menu{padding:5px 0px; margin:0px;}

.logbtnfull .dropdown-item:hover{color: #fff;
  background: #31a9e1;}

.logbtn, .navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.logbtn:hover, .navbar .getstarted:hover,
.logbtn:focus:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.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: #47b2e4;
}

.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;
}

@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;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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(40, 58, 90, 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;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

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

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.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: #47b2e4;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background-color: #37517e;
  background-image:url(../img/hero-img.png); background-repeat:no-repeat; background-position:right;
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 15px 0;
  font-size: 42px;
  font-weight: 800;
  line-height: 52px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  font-size: 22px;
}

#hero .btn-get-started {
  font-family: 'Mulish', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

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

  100% {
    transform: translateY(-10px);
  }
}

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

.section-bg {
  background-color: #f3f5fa;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700; 
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #37517e;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 30px 0 20px;
  text-align: center;
}

.clients img {
  max-width: 100%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 4px 0; 
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 100%; padding: 4px 10px; 
  }
  .slick-slide{margin: 0px 15px 0px 0px!important;}
}
.form-control{margin-bottom:15px;}
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

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

.about .content ul li {
  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: #47b2e4;
  line-height: 1;
}

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

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

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

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #47b2e4;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #47b2e4;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #37517e;
  font-family: "Poppins", sans-serif;
}

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

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #47b2e4;
}

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

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #37517e;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #47b2e4;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #37517e;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #47b2e4;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 40px 0 30px;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: 'Mulish', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #47b2e4;
  border: 2px solid #47b2e4;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #47b2e4;
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #47b2e4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #47b2e4;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #47b2e4;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  height: 100%;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #47b2e4;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #37517e;
}

.pricing h4 {
  font-size: 48px;
  color: #37517e;
  font-weight: 400;
  font-family: 'Mulish', sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #47b2e4;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #47b2e4;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Mulish', sans-serif;
  transition: 0.3s;
  border: 1px solid #47b2e4;
}

.pricing .buy-btn:hover {
  background: #47b2e4;
  color: #fff;
}

.pricing .featured {
  border-top-color: #47b2e4;
}

.pricing .featured .buy-btn {
  background: #47b2e4;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
  #hero {background-image:none;}
  .search-design select{width: 100%!important; margin-bottom: 2px; min-height: 55px!important;}
  .search-design .submit-home{width: 100%!important; min-height: 55px!important;}
	#hero a{margin-bottom: 50px;}
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

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

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}
.mt-10{margin-top:10px;}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #47b2e4;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 5px;
  color: #37517e;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 16px;
  color: rgb(68, 68, 68);
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #47b2e4;
  color: #fff;
}

.php-email-form {
  width: 100%;  
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.08);
  border: 1px solid #eee; margin-top:0px; border-radius: 5px; padding: 25px;
}

.php-email-form .form-group {
  padding-bottom: 8px;
}

.php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .error-message br+br {
  margin-top: 25px;
}

.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.php-email-form .form-group {
  margin-bottom: 20px;
}

.php-email-form label {
  padding-bottom: 2px;font-weight:600; font-size: 15px; color:#666;
}

.php-email-form input,
.php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
  border-radius: 4px;
}

.php-email-form input:focus,
.php-email-form textarea:focus {
  border-color: #47b2e4;
}

.php-email-form input {
  height: 42px;
}

.php-email-form textarea {
  padding: 10px 12px;
}

.php-email-form button[type=submit] {
  background: #47b2e4;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  font-weight:700;
}

.php-email-form button[type=submit]:hover {
  background: #209dd8;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0 8px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 25px;
  font-weight: 700;
  color: #37517e;
}

.breadcrumbs ol {
  float: left;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;float: right;
}
.breadcrumbs ol li{display: inline-block; margin-top: 6px;}
.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #37517e;
}

#footer .footer-newsletter {
  padding: 0px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  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: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #47b2e4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

#footer .footer-top {
  padding:50px 0 10px 0;
  background: #f3f5fa;
}

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

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}

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

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

#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: #47b2e4;
  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: #444444;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #47b2e4;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}


.search-design{border-radius:0px; max-width:100%; background-color:#f0f0f0; overflow: hidden; clear: both; box-shadow: 0px 10px 30px rgba(255, 255, 255, 0.2) !important;}
.search-design input{padding:13px 15px 13px 40px;  font-size: 17px; min-height: 60px; border-top-left-radius:0px; border-bottom-left-radius:0px; border:0px; float:left; width:30%;}
.search-design select{padding:18px 40px 12px 15px; min-height: 60px; border-top-right-radius:0px; border-bottom-right-radius:0px; border:0px; float:left; width:17%;-webkit-appearance: none;background-color: #f0f0f0!important; background-image: url(../img/arrow-btm.jpg); background-repeat: no-repeat; background-position: right 29px; background-size: 24px; box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1) !important;}
.search-design input:hover, .search-design input:focus, .search-design select:hover, .search-design select:focus{border:0px;}

.search-design .submit-home{float:right; width:15%; border:0px; padding:12px 15px 11px 15px; font-weight:700; min-height: 60px; background: #47b2e4; color: #fff; font-size: 18px; border-radius: 0px;}
.search-design .submit-home:hover{background: #209dd8; color: #fff;}
.btnstart{font-family: 'Mulish', sans-serif; font-weight: 800; font-size: 11px; letter-spacing: 1px; display: inline-block; padding: 4px 10px 3px 10px; border-radius: 18px; transition: 0.5s; margin: 0px 0 0 0; color: #47b2e4; border: 2px solid #47b2e4; text-transform: uppercase;}
.btnstart:hover, .btnstart:focus{border: 2px solid #47b2e4; background: #47b2e4; color: #fff;}


.btnbgstart{font-family: 'Mulish', sans-serif; font-weight: 800; font-size: 11px; letter-spacing: 1px; display: inline-block; padding: 4px 10px 3px 10px; border-radius: 18px; transition: 0.5s; margin: 0px 0 0 0; background-color: #47b2e4; color: #fff; border: 2px solid #47b2e4; text-transform: uppercase;}
.btnbgstart:hover, .btnbgstart:focus{border: 2px solid #47b2e4; background: #fff; color: #47b2e4;}

.font13{font-size:13px !important;}
.font14{font-size:14px !important;}
.font15{font-size:15px !important;}

.btnpstn{position: absolute;right: 0px;top: 48%; z-index:999999;}
.slider {
        width: 100%;
        margin: 0px auto 0px !important;
    }

    .slick-slide {
      margin: 0px 25px 0px 0px;
    }

    .slick-slide img {
      width: 100%;
    }

    .slick-prev:before,
    .slick-next:before {
      color: black;
    }


    .slick-slide {
      transition: all ease-in-out .3s;
      opacity: 1;
    }
    
    .slick-active {
      opacity: 1;
    }

    .slick-current {
      opacity: 1;
    }
	
.pdtpstyle{margin-top:35px; padding-bottom: 0px!important; margin-bottom: 5px!important;}	
.pdtpntpmarg{padding-bottom: 0px!important; margin-bottom: 5px!important;}	
.hding {text-transform: uppercase; position:relative; text-align:left; font-weight: 800; font-size: 20px; color: #37517e; padding-bottom: 7px; margin-bottom: 10px;}
.hding:after {content: ""; width: 114px; height: 1px; background-color: #37517e; opacity:.4; border-radius: 5px; position: absolute; top: 13px;  margin-left: 8px; transform: translateY(-50%);}
	.headbtnright{float:right;}
	.swiper{position:relative;}
	.vboxl{width:100%;}
	.vboxl a, .vboxl button{box-shadow: 5px 5px 25px rgba(0,0,0,.1);color: #475664;font-size: 15px;  width:90%; font-weight: 600;margin: 10px 0 0 0; padding:12px 16px 12px 37px; text-align:left; position:relative;border: 1px solid #e8e8e8;}
	.vboxl a.active, .vboxl button.active{background:rgba(40, 58, 90, 0.9)!important;}
	.vboxl a:before, .vboxl button:before{content: "\f10e"; transform: rotate(-90deg); position:absolute; font-size: 12px; font-weight: 800 !important;font-family: bootstrap-icons !important; left:15px;margin-top: 3px;}
	
	.vboxl a:hover, .vboxl button:hover {background: rgba(40, 58, 90, 0.9) !important;color: #fff;}
	
.httle{font-weight: 800; color: #444; font-size: 19px; text-transform:uppercase; padding-right: 80px;  margin-bottom: 4px; letter-spacing: 0px; line-height: 1.2; padding-top: 30px; padding-bottom:6px; border-bottom:1px solid #ccc; display: block; width: 85%; clear: both; overflow: hidden;}
	
	
	.ttleinr{font-weight: 800; color: #37517e; font-size: 24px; padding-right: 80px;display: inline-block; margin-bottom:4px; letter-spacing:0px; line-height: 1.2;}
	
	.job-listing-card:hover {
  border-color: #475664;
}
	
	
.job-listing-card {
 border:1px solid #e6e4e4;
 border-radius:5px;
 padding:18px;
 background-color:var(--white);
 transition:.35;
 margin-bottom:20px;
}   
.job-listing-card .job-top {
 display:block;
 margin-bottom:18px;
 position:relative;
 clear: both;
overflow: hidden;
}
.job-listing-card .job-top .job-list-content {
 display:block;
  
 position:relative
}    
.job-listing-card .job-top .job-list-content .company-area {
 float:left;
 align-items:center;
 position:relative;
 width: 45%;
}
.job-listing-card .job-top .job-list-content .company-area::after {
 content:"";
 width:1px;
 height:44px;
 background:rgba(0,167,172,.3);
 position:absolute;
 right:20px;
 top: 3px;
} 
.job-listing-card .job-top .job-list-content .company-area .logo {
 border:50%;
 margin-right:12px;
 float:left;
} 
.job-listing-card .job-top .job-list-content .company-area .logo img {
 border-radius:50%;
 height:52px;
 width:52px
}
.job-listing-card .job-top .job-list-content .company-area .company-details {
float:left;
 justify-content:space-between; 
}
.job-listing-card .job-top .job-list-content .company-area .company-details .name-location h5 {
 margin-bottom:3px
}
.job-listing-card .job-top .job-list-content .company-area .company-details .name-location h5 a {
 font-size:18px;
 font-weight:700;
 color:#37517e; 
 transition:.35s
}
.job-listing-card .job-top .job-list-content .company-area .company-details .name-location h5 a:hover {
 color:var(--primary-color1)
}
.job-listing-card .job-top .job-list-content .company-area .company-details .name-location p {
 margin-bottom:0;
 display:flex;
 align-items:center;
 white-space:nowrap
}
.job-listing-card .job-top .job-list-content .company-area .company-details .name-location p a {
 font-size:.938rem;
 font-weight:400;
 color:var(--text-color1);
 font-family:var(--font-work-sans);
 transition:.35s
}
.job-listing-card .job-top .job-list-content .company-area .company-details .name-location p a:hover {
 color:var(--primary-color1)
}
.job-listing-card .job-top .job-list-content .company-area .company-details .name-location p img {
 margin-right:8px
}
.job-listing-card .job-top .job-list-content .job-discription {
float: left;
}
@media(max-width:767px) {
 .job-listing-card .job-top .job-list-content .job-discription {
  flex-wrap:wrap;
  gap:0
 }
}
.job-listing-card .job-top .job-list-content .job-discription ul {
 margin:0;
 padding:0;
 list-style:none;
 display:block;
 margin-right:10px
}
@media(max-width:1199px) {
 .job-listing-card .job-top .job-list-content .job-discription ul {
  margin-right:20px
 }
}
.job-listing-card .job-top .job-list-content .job-discription ul li {
 margin-bottom:10px;
 display:flex;
 align-items:center;
 position:relative;
 padding-left:14px;
 margin-right:10px;
 line-height:1
}
.job-listing-card .job-top .job-list-content .job-discription ul li:last-child {
 margin-right:0
}
.job-listing-card .job-top .job-list-content .job-discription ul li::before {
 content:"";
 height:8px;
 width:8px;
 border-radius:50%;
 background-color:var(--primary-color1);
 position:absolute;
 left:0;
 top:4px
}
.job-listing-card .job-top .job-list-content .job-discription ul li  {
 line-height:1;
 margin-top:4px;
 font-size:15px;
 font-weight:700; 
}
.job-listing-card .job-top .job-list-content .job-discription ul li:last-child  {margin-bottom:0px;}
.job-listing-card .job-top .job-list-content .job-discription ul li  span{font-weight:normal; margin-right:10px;
    min-width:100px;
}
 
.job-listing-card .job-top .job-list-content .job-discription ul li a {
 transition:.35s
}  
.job-listing-card .job-top .bookmark {
 width:28px;
 height:28px;
 line-height:28px;
 background-color:#eff3f2;
 border-radius:50%;
 float:right;
 align-items:center;
 justify-content:center;
 transition:.35s;
 cursor:pointer;
 text-align: center;
}
@media(max-width:1199px) {
 .job-listing-card .job-top .bookmark {
  position:absolute;
  right:0
 }
}
.job-listing-card .job-top .bookmark i {
 color:var(--primary-color1);
 font-size:14px;
 transition:.35s
}
.job-listing-card .job-top .bookmark:hover {
 background-color:var(--primary-color1)
}
.job-listing-card .job-top .bookmark:hover i {
 color:var(--white)
}
.job-listing-card .job-type-apply {
clear: both;
width: 100%;
 display:block;overflow: hidden;
 
}
 .job-listing-card .job-top .job-list-content .job-discription ul li:before {
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: #47b2e4;
  position: absolute;
  left: 0;
  top: 6px;
}
.job-listing-card .apply-btn a span::after {
  content: url(../img/apply-arrow.svg);
  position: relative;
  left: -26px;
  top: 0px;
  transition: .35s;
}
.job-listing-card .apply-btn a span {
  display: inline-block;
  margin-left: 10px;
  margin-right: -10px;
  position: relative;
  transition: .35s;
}
.job-listing-card .apply-btn a span img {
margin-top:-5px;  width: 18px;
}
.splybtn{position:relative; text-align:right;   }
.splybtn span{font-size: 12px; display: block; top: 0px;}
.job-type {float: left; position: relative; z-index: 9999;padding-top: 7px;}


/* -- login style */
.btn-block{display:block; width:100%;}
.social-buttons a{font-size: 15px; padding: 7px 15px; }
.authfy-container {margin-top: 97px; margin-bottom: 17px;}
.authfy-panel-left {background-color: #37517e; color: #ffffff;  border-top-left-radius: 4px;  border-bottom-left-radius: 4px;  -webkit-box-shadow: 0px 3px 6px #cac8c8;  box-shadow: 0px 3px 6px #cac8c8;}
.authfy-panel-right {  background-color: #ffffff;  border-top-right-radius: 4px;  border-bottom-right-radius: 4px;  -webkit-box-shadow: 0px 2px 6px 0px #cac8c8; box-shadow: 0px 2px 6px 0px #cac8c8;}
.authfy-panel label{font-weight: 600; text-align:left; display:block;padding-bottom: 2px;font-size: 15px;color:#666;} 
.introht{min-height: 600px!important;}
.authfy-login, 
.authfy-panel-left .brand-col {  min-height: 500px;}
.authfy-panel-left .brand-col {  display: table;  width: 100%;  padding: 25px;}
.authfy-panel-left .brand-col .headline {  display: table-cell;  vertical-align: middle;}
.authfy-panel-left .brand-col .headline h1, .authfy-panel-left .brand-col .headline h2, .authfy-panel-left .brand-col .headline h3 {  color: #fff;
  font-size: 48px;  font-weight: 700;}
.authfy-login {  position: relative;  top: 0;  left: 0;  overflow: hidden;}
.authfy-panel {  padding: 20px 30px;  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  transition: all .5s ease;  opacity: 0;
  transform: translateX(-100%);  -webkit-transform: translateX(-100%);}
.authfy-panel .authfy-heading {  margin-bottom: 0px; padding-bottom: 10px!important;}
    .authfy-login .auth-title {  font-weight: 600; color:#37517e;}
    .authfy-login .authfy-panel.active {  opacity: 1;  transform: translateX(0); -webkit-transform: translateX(0);}
	.brand-col .social-buttons a {  color: #ffffff;   margin-top: 15px;}
.brand-col .social-buttons a:hover {  color: white;  opacity: 0.9; }
.brand-col .social-buttons .btn-facebook {background: #3b5998;}
.brand-col .social-buttons .btn-twitter {background: #00aced;}
.brand-col .social-buttons .btn-google {background: #c32f10;}
.brand-col .social-buttons a > span {  padding-left: 5px;}
.panel-login {  margin-top: 20px;}
.panel-login .remember-row { margin-bottom: 10px;}
.panel-login .remember-row label { font-weight: normal;  position: relative;  cursor: pointer;  color: #666;  padding-left: 24px;}
.authfy-login .forgotPwd {  text-align: right;  margin-top: 0px; margin-bottom: 0px;}	
.btnbgn{background: #47b2e4; color:#fff; padding: 12px 22px; font-size: 18px; border-radius:3px; height: 52px; margin-top: 20px; margin-bottom: 10px; font-weight:700;}
.btnbgn:hover{background: #209dd8; color:#fff;}
	{appearance: auto;}
.panel-login .form-control, .panel-signup .form-control, .panel-forgot .form-control {  background-color: #fff;  color: #333333;  font-size: 15px;
  height: 42px;  margin-bottom: 15px;  padding: 10px 20px;  border-radius: 3px;  border: solid 1px #bcc2ce;  outline: none;  -webkit-box-shadow: 0 3px 6px 0 rgba(0,0,0,0.1),0 0 2px 0 rgba(0,0,0,0.1);  box-shadow: 0 3px 6px 0 rgba(0,0,0,0.1),0 0 2px 0 rgba(0,0,0,0.1);}
.authfy-panel.panel-forgot {  padding-top: 40px;}

.panel-login .form-control:focus, 
.panel-signup .form-control:focus, 
.panel-forgot .form-control:focus  {
  border-color: #4f77ff;
  z-index: 2;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}

.pwdMask {
  position: relative;
}

.pwdMask .pwd-toggle {
  color: #cccccc;
  position: absolute;
  z-index: 2;
}

.panel-login .pwdMask .pwd-toggle, 
.panel-signup .pwdMask .pwd-toggle {
  top: 15px;
  right: 15px;
}

.pwdMask .pwd-toggle:hover, 
.pwdMask .pwd-toggle:focus {
  cursor: pointer;
}

.pwdMask .pwd-toggle:hover, 
.pwdMask .pwd-toggle:focus, 
.pwdMask .pwd-toggle.fa-eye {
  color: #4f77ff;
}

.panel-signup .term-policy a {
  text-decoration: underline;
}

/*--------------------*/
/* 04. Check box UI CSS */
/*--------------------*/

.checkbox input[type="checkbox"] {
  position: absolute;
  right: 9000px;
}

.checkbox input[type="checkbox"] + .label-text:before, 
.checkbox input[type="checkbox"] + .label-text:after {
  font-size: 11px;
  display: inline-block;
  width: 17px;
  height: 17px;
  padding: 2px;
  margin-left: 0;
  position: absolute;
  top: 2px;
  left: 0;
}

.checkbox input[type="checkbox"] + .label-text:before {
  content: "";
  background-color: #ffffff;
  border: 1px solid #ced4da;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox input[type="checkbox"] + .label-text:after {
  background-color: #4f77ff;
  color: #ffffff;
  border-radius: 2px;
  border-color: #4f77ff;
  line-height: 1.4;
}

.checkbox input[type="checkbox"] {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.checkbox input[type="checkbox"]:focus + .label-text:before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.checkbox input[type="checkbox"]:checked + .label-text:after {
  font-family: bootstrap-icons !important;
  content: "\F272"; font-size: 13px;
line-height: 13px;
font-weight: 800;
}

/*--------------------*/
/* 05. Responsive CSS */
/*--------------------*/

@media (min-width: 768px) {		

    .authfy-panel {
      padding: 20px;
    }
    
}

@media (max-width: 767px) {

    .authfy-panel-left, 
    .authfy-panel-right {
      box-shadow: none;
    }

    .authfy-panel-left {
      border-top-left-radius: 4px;
      border-top-right-radius: 4px;
      border-bottom-left-radius: 0px;
      border-bottom-right-radius: 0px;
    }

    .authfy-panel-right {
      border-top-left-radius: 0px;
      border-top-right-radius: 0px;
      border-bottom-left-radius: 4px;
      border-bottom-right-radius: 4px;
    }
    
    .authfy-panel-left .brand-col {
      height: 300px;
      text-align: center;
    }
    
    .term-policy {
      font-size: 75%;
    }
}

@media (min-width: 320px) and (max-width: 375px) {
  
    .authfy-login .authfy-panel {
      padding: 20px;
    }
    
    .panel-login .remember-row {
      margin-bottom: 10px;
      font-size: 14px;
    }
}

@media (max-width: 320px) {
    .authfy-login {
      height: 480px;
    }
    .authfy-heading p {
      font-size: 14px;
    }
    
    .remember-row .col-sm-6 {
      width: 100%;
    }
    
    .authfy-login .forgotPwd {
      text-align: left;
      margin-top: 0px;
    }	
}
.pt-7{padding-top:7px;}
.pt-17{padding-top:17px;}
.accnt a{border-bottom:2px solid #37517e; font-weight:600; display:-inline-block; padding-bottom:3px;}

  
.middledsgn input[type=radio] {
  display: none;
}
.middledsgn input[type=radio]:checked + .box {
  background-color: rgba(40, 58, 90, 0.9);
}
.middledsgn input[type=radio]:checked + .box span {
  color: white;
  transform: translateY(32%);
}
.middledsgn input[type=radio]:checked + .box span:before {
  transform: translateY(0px);
  opacity: 1;
}
.middledsgn .box i{display:block;font-weight: 700; font-size: 22px; padding-bottom:5px;}
.middledsgn   label:first-child{margin-left:0%;}
.middledsgn   label{width: 23.7%; margin-left:1%; margin-bottom:10px;}
.middledsgn .box {
  width: 100%;
  height: 100px;
  background-color: #fff;
  transition: all 250ms ease;
  will-change: transition;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative; 
  font-weight: 600;
  border:1px solid #dde0e3; border-radius:4px;
}
.middledsgn .box:active {
  transform: translateY(10px);
}
.middledsgn .box span {
  position: absolute;
  transform: translate(0, 32%);
  left: 0;
  right: 0;
  transition: all 300ms ease;
  font-size: 16px;
  user-select: none;
  color: rgba(31, 35, 38, 0.90);
}
 
.middledsgn p a {
  text-decoration: underline;
  font-weight: bold;
  color: #fff;
} 
.table > :not(caption) > * > *{border-color:#ececec;}
.table thead th{font-size:15px!important;}
.table tbody td{font-size:14px!important;}
.vboxl .nav-link{width: 100% !important;}

/* dashboard */
.info-card {padding-bottom: 10px;}
.card {margin-bottom: 22px; border: none; border-radius: 5px; box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);}
.filter {position: absolute; right: 0px; top: 15px;}
.filter .icon {color: #aab7cf; padding-right: 20px; padding-bottom: 5px; transition: 0.3s; font-size: 16px;}
.filter .dropdown-header h6 {text-transform: uppercase; font-size: 14px; font-weight: 600; letter-spacing: 1px; color: #aab7cf; margin-bottom: 0;  padding: 0; }
.dropdown-menu {border-radius: 4px; padding: 10px 0; animation-name: dropdown-animate; animation-duration: 0.2s; animation-fill-mode: both; border: 0;  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);}
.filter .dropdown-item {
  padding: 8px 15px; font-size: 14px; transition: 0.3s;
}
.dropdown-menu-arrow:before {content: ""; width: 13px; height: 13px; background: #fff; position: absolute; top: -7px;  right: 20px;  transform: rotate(45deg);  border-top: 1px solid #eaedf1;  border-left: 1px solid #eaedf1;}
.card-body {padding: 0 20px 20px 20px;}
.card-title {padding: 20px 0 15px 0; font-size: 18px; font-weight: 700; color: #012970; }
.card-title span {color: #899bbd; font-size: 14px; font-weight: 400;}
 .sales-card .card-icon {color: #4154f1; background: #f6f6fe; font-size: 32px; line-height: 0; width: 64px; height: 64px; flex-shrink: 0; flex-grow: 0;}
 .rounded-circle {border-radius: 50% !important;}
 .ps-3 {padding-left: 1rem !important;}
 .ps-1 {padding-left: .25rem !important;}
 .pt-2 {padding-top: .5rem !important;}
 .small, small {font-size: .875em;}
 .info-card h6 {font-size: 28px; color: #012970; font-weight: 700; margin: 0; padding: 0;}
 .text-success {--bs-text-opacity: 1; color: rgba(var(--bs-success-rgb),var(--bs-text-opacity)) !important;}
 .fw-bold {font-weight: 700 !important;}
 .pt-1 {padding-top: .25rem !important;}
 .text-muted {--bs-text-opacity: 1; color: var(--bs-secondary-color) !important;}
 .customers-card .card-icon {color: #ff771d;  background: #ffecdf;}
 .card-icon {font-size: 32px; line-height: 0; width: 64px; height: 64px; flex-shrink: 0; flex-grow: 0;}
 .activity .activity-item .activity-content {
  padding-left: 10px;font-size: 14px;
  padding-bottom: 15px;
}
 .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}
.activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.activity .activity-item:first-child .activite-label::before {
  top: 5px;
}
 .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;font-size: 14px;
}

.clpsebox li a {padding-left: 36px !important;}
.clpsebox li ul{list-style:none; padding:0px!important; margin:0px 0px 0px 15px !important; background: #f7f7f7;}
.clpsebox li ul li{list-style:none; padding:0px!important; margin:0px!important;}
.clpsebox li ul li a{display:block; width:100%; list-style:none; padding:8px 40px!important; margin:0px!important; box-shadow:none!important; }
.clpsebox li a i {float: right; margin-right: 21px; margin-top: 2px;}

.chekbxd{padding-top:10px!important;}
.chekbxd label{display:block; position:relative; margin-bottom:10px;}
.chekbxd .label-text {padding-left: 30px; font-size: 15px; font-weight: 500;}

.selectstyle{list-style:none; padding:0px; margin:15px 0px 0px;}
.selectstyle li{list-style:none; padding:0px; margin:0px 0px 8px; position:relative; color:#fff;
} 
.selectstyle li select {background: rgba(40, 58, 90,.9) !important;box-shadow: 5px 5px 25px rgba(0,0,0,.1);padding: 10px 36px 10px 37px;border-radius:6px;
   -webkit-appearance:none;   -moz-appearance:none;    -ms-appearance:none;   appearance:none; width:100%;   outline:0; border: 1px solid #e8e8e8; 
   color:#fff;   cursor:pointer; font-size:15px;}
select::-ms-expand {   display: none;}

.selectstyle li.aftbef:before{content: "\f10e"; transform: rotate(-90deg); position:absolute; font-size: 12px; font-weight: 800 !important;font-family: bootstrap-icons !important; left:15px;margin-top: 13px; }

.selectstyle li.aftbef:after {content: "\f282";position: absolute; padding-top: 13px;  width: 30px;  cursor: pointer; pointer-events: none; transition: .25s all ease; font-size: 14px; font-family: bootstrap-icons !important; background: rgb(26, 40, 66) !important; right: 0px; text-align: center; bottom: 1px !important; top: 1px; border-top-right-radius: 6px; border-bottom-right-radius: 6px;}
.selectstyle li:hover::after {
   color: #23b499;
}

.submit-btn{background: #47b2e4;box-shadow: 5px 5px 25px rgba(0,0,0,.1);padding: 10px 36px 10px 37px;border-radius:6px;   -webkit-appearance:none;   -moz-appearance:none;    -ms-appearance:none;   appearance:none; width:100%;   outline:0; border: 1px solid #47b2e4; font-weight:700;   color:#fff;   cursor:pointer; font-size:17px;}
.submit-btn:hover{background: #209dd8; border: 1px solid #209dd8; color:#fff;}

.abthdrsecon{padding-left:30px;}
    	.margt15{margin-top:15px;}
    	.margt25{margin-top:25px;}
    	.abthdrsecon h3{font-weight: 800;   color: #37517e;  font-size: 24px;  margin-bottom: 10px;}
    	.nhdingpadr{padding-right:30px;}
    	
    .nhding	h3{font-weight: 800;   color: #37517e;  font-size: 24px;  margin-bottom: 10px;}
    
    .ullitag{margin:20px 0px 0px 32px; padding:0px;}
    .ullitag li{margin-top:10px; padding:0px; list-style:none; position:relative;}
    
    .ullitag li:before{background-image:url(https://topratedfreshers.com/assets/img/check-check-png.png); content: ""; height: 19px; width: 20px; background-size: contain; left: -30px; top: 5px; position: absolute;}
    
    
    
    
    
    
    
    
    
    
    














 
      
 .checkdesign input {display: none;}
.checkdesign label, .checkdesign span, .checkdesign strong {display: block;color: #444;}
.checkdesign strong{margin-bottom:5px; text-transform:uppercase;   font-size: 25px;}
.checkdesign span {  font-size: 37px; margin-bottom:15px;     font-weight: 800; color:#37517e; border-radius:60px; position: absolute;
  right: 16px;
  top: 10px;}
.checkdesign span i{  font-size: 17px; position: absolute; margin-left: -30px; margin-top: 15px;}
.checkdesign input + div  { border-radius: 5px;
  text-align:left;
  position:relative;
}
.checkdesign label{ position:relative;overflow: hidden;}
.checkdesign input + div label {
  cursor: pointer;
  border: 1px solid #e6e4e4;
  border-radius: 5px;
  padding: 18px; font-size:16px;
 
}
.platinumdiv label:before, .silverdiv label:before, .golddiv label:before{background-image: url(https://images.vexels.com/media/users/3/263291/isolated/preview/053747f9bc490c22d46e4cd70063acf9-money-finance-cards-icon.png);  background-size: cover;  content: "";  position: absolute;  width: 190px;  height: 80px;  right: -30px;  bottom: 0px;  opacity: 0.2;}

.checkdesign input:checked + div {
    border:1px solid #475664; background: #f7f7f7;
    position: relative;
}
.checkdesign input:checked + div:before { font-family:boxicons;   content:"\ea41";   position:absolute;   width:26px;   height:26px;   background:#475664;   border-radius:50px;   color:#fff;   left: 13px; top: 13px; font-size: 21px; line-height: 24px;  font-weight: bold;
}

.checkdesign .silverdiv{box-sizing: border-box;
  background:linear-gradient(#fefefe,#d8d8d8) , linear-gradient(-72deg,#dedede,#fff 16%,#dedede 21%,#fff 24%,#454545 27%,#dedede 36%,#fff 45%,#fff 60%,#dedede 72%,#fff 80%,#dedede 84%,#a1a1a1);
  border:6px solid transparent;
  background-repeat: no-repeat;
  background-origin: padding-box, border-box; }

 
.checkdesign .golddiv{box-sizing: border-box;
  background:linear-gradient(#fff9de,#fbefb7) , linear-gradient(-72deg,#ffde45,#fff 16%,#ffde45 21%,#fff 24%,#452100 27%,#ffde45 36%,#fff 45%,#fff 60%,#ffde45 72%,#fff 80%,#ffde45 84%,#452100);
  border:6px solid transparent;
  background-repeat: no-repeat;
  background-origin: padding-box, border-box; }

.checkdesign .platinumdiv{box-sizing: border-box;
  background: linear-gradient(#f6f3fc,#e9e9ff) , linear-gradient(-72deg,#dedeff,#fff 16%,#dedeff 21%,#fff 24%,#555564 27%,#dedeff 36%,#fff 45%,#fff 60%,#dedeff 72%,#fff 80%,#dedeff 84%,#555564);
  border:6px solid transparent;
  background-repeat: no-repeat;
  background-origin: padding-box, border-box; }
  
.checkdesign .platinumdiv span, .checkdesign .platinumdiv i{color: #626273;;}
.checkdesign .platinumdiv strong{color: #262640;}
.checkdesign .golddiv span, .checkdesign .golddiv i{color: #755212;;}
.checkdesign .golddiv strong{color: #554209;}
.checkdesign .silverdiv span, .checkdesign .silverdiv i{color: #626262;;}
.checkdesign .silverdiv strong{color: #595656;}
 

.checkdesign .btnbgn{padding: 7px 22px;  font-size: 15px; height: 41px; background:#404062;}
.checkdesign .btnbgn:hover{background:#1c1c3e;}











.sctndiv{position:relative; padding-bottom: 2px;   margin-bottom: 40px;}
.sctndiv:before{content: ""; position: absolute; display: block; width: 100%; height: 1px; background: #ddd; bottom: 1px;  left:0px;}
.sctndiv:after{content: ""; position: absolute; display: block; width: 20%; height: 3px; background: #37517e; bottom: 0; left: 0px;}
  
