/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #0064f9;
  text-decoration: none;
}

a:hover {
  color: #053fca54;
  text-decoration: none;
}

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

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

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

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

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

@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: #0064f9;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  opacity: .6;
  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: #FFFFFF;
}

#header.header-scrolled .navbar a, .navbar a:focus {
    color: #111;
}

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

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

#header .logo a span {
  color: #1275ff;
}

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

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #1275ff;
}

.get-started-btn:hover {
  background: #ffffff;
  color: #343a40;
}

#header.header-scrolled .get-started-btn {
    color: #343a40 !important;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# 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 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;
}

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

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding:  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: 10px;
  overflow: hidden;
}

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

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

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: #0064f9;
    color: #fff!important;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
 .dropdown:hover > a i {
     transform: rotate(180deg);
}

.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: 40px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

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

  .navbar ul {
    display: none;
  }
  .mobile-nav-toggle.bi-x {
    /*color: #fff!important;*/
  }
}

.navbar-mobile {
  position: fixed; 
  top: 15px;
  right: 0;
  left: 0;
  bottom: 0;
  background:transparent;
  transition: 0.3s;
  z-index: 999;
}

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

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

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

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #151515;
  background-color: #1275ff;
}

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

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: none;
}

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

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

.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 {
  background-color: #1275ff;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh; 
  background-size: cover;
  position: relative;
  max-height: 600px;
}

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

#hero .container {
  position: relative;
  padding-top: 120px;
  text-align: center;
}

#hero h1 {
     margin: 0;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
	text-shadow: 1px 1px 0px #000000;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #1275ff;
}

#hero h2 {
  color: rgba(255, 255, 255,1);
  margin: 10px 0 0 0;
  font-size: 25px;
}


#hero .herodetails { 
     margin-top: 0px;
    margin-bottom: -10px;
}

#hero .heroimg { 
  margin-top: 5px; 
  float:right;
} 

 
#hero .icon-box {
  padding: 10px 0px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #fff;
}

#hero .icon-box h3 {
  font-weight:normal;
  margin: 10px 0 0 0;
  padding: 0; 
 font-size: 18px;
    line-height: 20px; 
}

#hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: #1275ff;
}

#hero .icon-box:hover {
  border-color: #1275ff;
}

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

@media (max-width: 768px) {
  #hero {
    height: auto;
    padding: 0;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}


.videobg {
  height: 100vh;
  /*overflow: hidden;*/
  position: relative; /* requires for to position video properly */
  width:100% !important;
  max-height: 600px;
}

.videobg  video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover; /* combined with 'absolute', works like background-size, but for DOM elements */
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 50px 0;
}

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f38b74;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0f2f57;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.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: #0064f9;
  line-height: 1;
}

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

.about .content .btn-learn-more { 
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #0064f9;
}

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

.about .section-title{ 
    padding-bottom: 25px;
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #0064f9;
  float: left;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: inline-block;
  font-weight: 700;
  color: #0b2341;
      margin-left: 5px;
    margin-top: 8px;
}
 

.counts .count-box p {
padding: 10px 0 0 0;
    margin: 0; 
    font-size: 18px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #2169c4;
}

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

.why-us .content {
  padding: 10px  0px 0  0px;
}

.why-us .content h3 {
  font-weight: normal;
    font-size: 26px;
    color: #123a6d;
    padding: 0 5px;
}

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

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

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

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

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

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

.why-us .accordion-list li {
  padding: 10px;
  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: 10px;
  outline: none;
  color: #0b2341;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #0064f9;
  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: 5px 0 0 0;
    font-size: 14px;
}

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

.why-us .accordion-list a.collapsed {
  color: #0b2341;
}

.why-us .accordion-list a.collapsed:hover {
  color: #0064f9;
}

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

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

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#0064f9 50%, rgba(237, 80, 46, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

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

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -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: 5px solid rgba(237, 80, 46, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #0064f9;
  transform: scale(20);
}

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

@media (max-width: 1024px) {

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

@media (max-width: 992px) {
  
  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

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

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #0064f9;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #f5f5f5;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}

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

.services .icon-box h4 a {
  color: #0b2341;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
 
.services .icon-box:hover {
  background: #0069fe;
  border-color: #0069fe;
}

.services .icon-box:hover .icon {
 /* background: #fff;*/
}

.services .icon-box:hover .icon i {
  color: #0069fe;
}

.services .icon-box:hover .icon::before {
  background: #0064f9;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p,
.services .icon-box:hover a {
  color: #fff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

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

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 0px 15px 15px;
  min-height: 200px;
  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #0069fe;
  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: 0px;
  position: relative;
  top: 0px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;   
  min-height: 135px;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0064f9;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0064f9;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
  background: #0b2341;
}

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

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #0064f9;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #0064f9;
  border: 2px solid #0064f9;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #0b2341;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ffffff;
  border-radius: 5px;
  background-color: #0064f9;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

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

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

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

.portfolio .portfolio-item .portfolio-info p {
  color: #1a5298;
  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: #123a6d;
}

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

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

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #f59f8c;
}

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

/*--------------------------------------------------------------
# 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 #0064f9;
}

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(11, 35, 65, 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 {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(11, 35, 65, 0.5);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #0064f9;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(11, 35, 65, 0.9) 0%, rgba(11, 35, 65, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

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

.pricing .box {
  padding: 80px 40px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #0b2341;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

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

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

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #0064f9;
  font-size: 18px;
  padding-right: 4px;
}

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

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

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

.pricing .get-started-btn {
  display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: #0b2341;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #0b2341;
  background: #fff;
}

.pricing .get-started-btn:hover {
  background: #0b2341;
  color: #fff;
}

.pricing .featured {
  z-index: 10;
  padding: 100px 40px;
  border: 4px solid #0064f9;
}

.pricing .featured .get-started-btn {
  background: #0064f9;
  color: #fff;
  border-color: #0064f9;
}

.pricing .featured .get-started-btn:hover {
  background: #043ac9;
}

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

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

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb;
}

.faq .faq-item i {
  color: #669ee5;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 20px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #0064f9;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fbdad2;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}


.contact .info-box a  {
    color:#0b2341;
}.contact .info-box a:hover {
    color:#0b2341;
    opacity:.6;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .contactpage-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 22px;
  background: #fff;
}

.contact .contactpage-form .error-message {
  display: none;
      color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 10px;
    font-weight: normal;
    font-size: 14px; 
}

.contact .contactpage-form .error-message br+br {
  margin-top: 25px;
}

.contact .contactpage-form .sent-message, .pop-sent-message {
   display: none;
   text-align: center;
   color: #15a300;
   border: 1px dashed;
   background: #e6ffd5;
   padding: 10px;font-size: 13px;
   border-radius: 3px;
}

textarea.form-control{
	resize:none;
}

button.close{   
    background: #fff;
    border: none;
    font-size: 24px;
    padding: 0px;
}

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

.contact .contactpage-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;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .contactpage-form input,.contact .contactpage-form select,.contact .contactpage-form .dropdown-toggle,
.contact .contactpage-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .contactpage-form input:focus,.contact .contactpage-form select:focus, .contact .contactpage-form .dropdown-toggle:focus,
.contact .contactpage-form textarea:focus {
  border-color: #0064f9;
}

.contact .contactpage-form input, .contact .contactpage-form select, .contact .contactpage-form .dropdown-toggle {
  padding: 10px 15px;
}

.contact .contactpage-form textarea {
  padding: 12px 15px;
}

.contact .contactpage-form button[type=submit] {
  background: #0064f9;
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;
}

.contact .contactpage-form button[type=submit]:hover {
  background: #043ac9;
}

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

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

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f9fd;
  min-height: 40px;
  margin-top: 95px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 74px;   
    padding: 5px 0;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b2341;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 5px 0 0 0;
  margin: 0;
  font-size: 14px;
    float: right;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #071527;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #05101e;
  border-top: 4px solid #0064f9;
  /*text-align: center;*/
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info a {
  color: #fff;
}
#footer .footer-top .footer-info a:hover {
  color: #043ac9;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0; 
}

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

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

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  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: #043ac9;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 5px 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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #043ac9;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

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

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #0064f9;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #043ac9;
}

#footer .copyright {
  border-top: 1px solid #0f2f57;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

.tab-content{ 
    border-bottom: 1px solid #dee2e6;
    padding: 5px;
    border-right: 1px solid #dee2e6;
    border-left: 1px solid #dee2e6;
}
	 
.nav-link {
margin-right:5px;	
}

 
.bordererror {
	border: 1px solid #ff0000 !important;
}

.bordererror::-webkit-input-placeholder {
	color: #ff0000;
}

.bordererror::-webkit-input-placeholder,
.bordererror:-ms-input-placeholder,
.bordererror::-moz-placeholder {
	color: #ff0000 !important;
}

 .navbarinner a, .navbar a:focus { 
            color: #000 !important; 
        }
        .get-started-btn-inner{
                color: #000;
                border-radius: 4px;
                padding: 7px 25px 8px 25px;
                white-space: nowrap;
                transition: 0.3s;
                font-size: 14px;
                display: inline-block;
                border: 2px solid #1275ff;
        }
		
		
  .lds-spinnerbg {
		background-color: rgba(0,0,0,0.4);
		position: fixed;
		left: 0px;
		top: 0px;
		width: 100%;
		height: 100%;
		z-index: 2147483638;
		display:none;
	}
	.sidebarbg{
	 box-shadow: 0 0 30px rgb(214 215 216 / 60%);
	}
	.sidebartitlebg{
		padding-top:10px;padding-bottom:1px;
	}
	.sidebartitlebg span{
		    color: #000000;
		font-size: 20px;
		padding-left: 10px;
		text-align: center;
		display: block;
		font-weight: 500;
		line-height: 1.2;
	}
	.sidebartitlebg p{
		padding-left: 10px;
    padding-top: 5px;
    padding-right: 10px;
    text-align: center;
	}
	.bgcolorebeb {
		background: #f6f9fd!important;;
	}
	.smoothborder {
		border: 1px solid #ccc !important;
	}
	.text-input {
		    border-radius: 6px;
    -webkit-box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
    color: rgba(0, 0, 0, .75);
    display: block;
    font-size: 14px;
    margin: 1px 0 20px 0;
    padding: 6px;
    height: 30px;
	}

	textarea.text-input {
    height: 100px!important;
	resize:none
	}
        .php-email-form{
            padding: 20px;
        }
        .php-email-form input, .php-email-form select, .php-email-form .dropdown-toggle {
            height: 44px;
        }
        .php-email-form input, .php-email-form select, .contact .php-email-form textarea {
            border-radius: 0;
            box-shadow: none!important;
            font-size: 14px!important;
            border-radius: 4px!important;
        }
        .php-email-form textarea {
            padding: 10px 12px!important;
            resize: none;
        }
    .captchawidth{
        width: 100px; height: 30px;
    }
    .success-message{
        text-align: center;
        color: #15a300;
        border: 1px dashed;
        background: #e6ffd5;
        padding: 10px;font-size: 13px;
        border-radius: 3px;
    }
    #success_message{
        display: none; 
        width: 100%; 
    }

.php-email-form .dropdown-toggle{
  padding: 10px!important;
  border-radius: 4px;
}
.contact .contactpage-form .dropdown-toggle{
  padding: 10px!important;
  border-radius: 4px;
}
		
.btn-learn-more {
    background: #0064f9;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 3px;
}		
		
@media (max-width: 800px) {
    #hero .col-6{
      width:100%!important;  
    }
    .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover>a {
    color: #fff!important;
    }
    .breadcrumbs h2 {
    font-size: 24px;
    }
    .breadcrumbs ol
    {
        display:none;
    }
    #footer .footer-top .footer-links ul i {
    margin-right: -5px!important;
    padding-right: 0!important;
    }
    #footer .footer-top .footer-links ul a{ 
    line-height: 1.8;
    padding-bottom: 0;
    vertical-align: text-bottom;
    }
    .navbar-mobile ul { 
      top: 0;  
    }
    .why-us {
        padding: 30px 0 0px!important;
    }
    .services .icon-box{
      padding: 20px!important;
    }
    .testimonials .testimonial-wrap {
    padding-left: 0px!important;
    }
    .testimonials .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 10px;
        border: 6px solid #fff;
        position: relative;
        left: 0;
    }
    .testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 10px;
    }
        .mobile-nav-toggle { 
            margin-top: -74px;
        }
    
	.aboutpara {
		text-align:left;
	}
	.divdisplaytablemiddle {
    display: block!important;
	}
	.why-us .content h3{ 
    padding: 10px 5px; 
	}
 
	#hero .container { 
    padding-top: 75px;
	}
 #hero .herodetails {
    margin-top: 20px;
    margin-bottom: 0px;
}
#hero .icon-box h3 { 
    margin: 5px 0 0 0; 
    font-size: 14px;
    line-height: 14px;
}
#hero h2 {
    margin-top: 10px;
	
}
#servicebox{
	display:none;
}
#about{
	margin-top: 25px;
}
#hero .heroimg
{
	margin-top: 25px;
}
#hero .heroimg img{
	width:90%;
}
.section-title {
    padding-bottom: 0px;
}
.nav-link{
	margin:0;
}
#navbar
{
	float: right;
    position: absolute;
   right: 0; 
    top: 75px;
}
#hero .icon-box h3 { 
    font-size: 14px;
    line-height: 14px;
}

.get-started-btn,.get-started-btn-inner{
	display:none;
}
.navbarinner .mobile-nav-toggle,
.header-scrolled .mobile-nav-toggle {
    color: #000;  	
}
 .fixed-top { 
    padding: 10px 0!important;
}
 .header-scrolled {
    height: 75px;
}
.cta {
    padding: 50px 0;
}
#footer .footer-top .footer-info {
    margin: 0 0 10px;
}
#footer .copyright { 
    padding-top: 10px;
    padding-bottom: 10px;
}
#footer .footer-top {
    padding: 0px 0 30px 0;
}
#footer .footer-top .footer-links,.footer-newsletter { 
    /*text-align: center;*/margin: 5px 0;
}
#footer,#footer .footer-top { 
    padding:0;
}
#footer .footer-top .footer-links ul li{ 
    /*justify-content: center;*/
	display: inline-block;
    float: left;
    padding-top: 0;
    margin-right: 5px;
}

 
.counts .count-box {
	margin-bottom:10px;
	margin-top:10px;
}
.nav-tabs .nav-link.active { 
    background: #053fcc;
    color: #fff;
    border: 1px solid #053fcc;
}
.tab-content { 
    margin-bottom: 20px;
}
.nav-tabs .nav-link{
	    width: 100%;
    border: 1px solid #dee2e6;
}
.text-input{
	width:100%;
}
section {
    padding: 10px 0;
}
.contact .contactpage-form {
    box-shadow: none;
    margin-top: 11px;
    padding: 10px;
}

.navbar-mobile .dropdown ul{
	 padding: 0px;
}
.navbar-mobile a, .navbar-mobile a:focus {
    
    border-bottom: 1px solid #ebebeb;
}
  #exampleModalLabel{
    background: #0064f9;
    color: #ffffff;
  }
}

.sectiontitle h4 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
    color: #0b2341;
}
#videoId, #videoId1, .videoBox {
       width: 100%;
    border-radius: 9px;
    height: 100%;
    border: 1px solid #bebdbd;
    margin-top: 0px;
    position: relative;
    z-index: 111;
}
	
.videoframe {
    width: 100%;
    border-radius: 9px;
    margin-top: 0px;
}
.divdisplaytable{
	display: table;
    overflow: hidden;
}
.divdisplaytablemiddle{
	display: table-cell;
    vertical-align: middle;
}
.aboutpara {
      font-weight: normal;
    font-size: 26px;
    color: #123a6d;
    padding: 0 5px; 
	line-height: 1.2;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
	padding-top: 0; 
}

.clients .swiper-slide img {
  /*opacity: 0.5;*/
  transition: 0.3s;
  /*filter: grayscale(100);*/
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

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

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0064f9;
}

/******** IPAD CSS *******************/
@media (min-width: 800px) and  (max-width: 1024px){
     
    .nav-tabs .nav-link { 
    font-size: 15px;
    padding: 10px;
    margin-right: 2px!important;
    }
    #hero .heroimg img{
        width:100%;
    }
    #hero h1 { 
    font-size: 32px;
    }
    #hero h2 { 
    font-size: 20px;
    }
    #hero .icon-box h3 a { 
    font-size: 13px;
    line-height: 1px;
    }
    .mobile-nav-toggle.bi-x { 
    top: 12px;
    }
    .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover>a {
    color: #fff!important; 
}
.navbarinner .mobile-nav-toggle, .header-scrolled .mobile-nav-toggle {
    color: #000!important; 
}
    .navbar-mobile .mobile-nav-toggle {
    top: 0;
    right: 10px;
    float: right;
    position: relative;
    display: inline-block;
    margin-top: -5px;
}
.container, .container-md, .container-sm {
   max-width: 100%;
} 
#header h1, #header .d-flex{  
    display: inline-block!important;
}
section {
    padding: 20px 0;
}
.get-started-btn,.get-started-btn-inner
{
  float: right;     
  position: absolute;
    right: 51px;
       top: 20px;
}
 .mobile-nav-toggle {
    display: block;
    margin-right: 0;
    margin-top: 5px;
}
 
.nav-link {
    margin-right: 0!important;
}
#header .navbar {
    padding: 0;
    float: right;
    display: inline-block;
}
.navbar-mobile{
    margin-top: 10px;
}

}
img  { 
    font-size: 16px;
} 
#requestProposalModal .modal-dialog{ 
        z-index: 11111;
}
@media (min-width: 800px) and (max-width: 900px){ 
#requestProposalModal .modal-dialog{
    max-width:500px!important; 
}
}
@media (max-width: 1024px){ 
.mobpopupLeftDiv{
   display:none;
}
.mobpopup100per{
	width:100%!important; 
}
}

@media (min-width: 900px) and (max-width: 1024px){ 
#requestProposalModal .modal-dialog{
    max-width:500px!important; 
}
}
@media (min-width: 1024px) and (max-width: 1150px){ 
#requestProposalModal .modal-dialog{
    max-width:90%!important; 
}
}
@media (min-width: 1150px){ 
#requestProposalModal .modal-dialog{
    max-width:60%!important;
}
}
.popupLeftDiv { 
	display: flex;
    width: 100%;
    bottom: 0px;
    height: 100%; 
    flex-direction: column;
    /*justify-content: center;*/
    align-items: center;
    background-color: #00237C;
    color: #FFFFFF;
  border-bottom-left-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
}
.leftContent {
    color: rgb(255, 255, 255);
    text-align: left;   
	max-width: calc(100% - 25px);
}
.profile-card {
    display: flex;
    align-items: center;
}
.profile-card-desc {
    padding-left: 15px;
    margin-top: 8px;
}
.profile-card-desc h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}
.clientDiv {
    width: 100%;
    margin-top: 30px;
}
#exampleModalLabel{
	padding: 10px;
    display: block;
    width: 100%;
}
.leftContenttitle h4{
	margin-top:15px;
	margin-bottom:15px;
}
#exampleModalLabel  .close{
	    margin-top: -6px!important; 
}
.profiledesc {
    line-height: 1.5;
    font-size: 14px;
    margin: 10px 0;
}
 .pop-sent-message {
	margin-bottom:10px;
 }
 .border-radius10px {
	    border-radius: 10px;
 }
 .padding-right0 {
	    padding-right: 0px;
 }
 .padding-left0 {
	padding-left: 0px;
 }
 /*11-04-2024*/
 .clientDiv img{
   width: 30%;
   margin-left: 10px;
 }
 .ml-0{
   margin-left: 0!important;
 }
 .closePop{
   position: absolute;
   right: 15px;
   width: 10px;
   background-color: transparent!important;
   top: 3px;
 }
 .font-16{
   font-size: 16px;
   font-weight: bold;
 }
 .quote_img{
   height: 25px;
 }
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}
.bootstrap-select .bs-ok-default:after{
  color: #01b900;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
@media (max-width: 575.98px) {
  .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 { width: 100%; }
.col-xs-11 { width: 91.66666667%; }
.col-xs-10 { width: 83.33333333%; }
.col-xs-9 { width: 75%; }
.col-xs-8 { width: 66.66666667%; }
.col-xs-7 { width: 58.33333333%; }
.col-xs-6 { width: 50%; }
.col-xs-5 { width: 41.66666667%; }
.col-xs-4 { width: 33.33333333%; }
.col-xs-3 { width: 25%; }
.col-xs-2 { width: 16.66666667%; }
.col-xs-1 { width: 8.33333333%; }

.col-xs-pull-12 { right: 100%; }
.col-xs-pull-11 { right: 91.66666667%; }
.col-xs-pull-10 { right: 83.33333333%; }
.col-xs-pull-9 { right: 75%; }
.col-xs-pull-8 { right: 66.66666667%; }
.col-xs-pull-7 { right: 58.33333333%; }
.col-xs-pull-6 { right: 50%; }
.col-xs-pull-5 { right: 41.66666667%; }
.col-xs-pull-4 { right: 33.33333333%; }
.col-xs-pull-3 { right: 25%; }
.col-xs-pull-2 { right: 16.66666667%; }
.col-xs-pull-1 { right: 8.33333333%; }
.col-xs-pull-0 { right: auto; }

.col-xs-push-12 { left: 100%; }
.col-xs-push-11 { left: 91.66666667%; }
.col-xs-push-10 { left: 83.33333333%; }
.col-xs-push-9 { left: 75%; }
.col-xs-push-8 { left: 66.66666667%; }
.col-xs-push-7 { left: 58.33333333%; }
.col-xs-push-6 { left: 50%; }
.col-xs-push-5 { left: 41.66666667%; }
.col-xs-push-4 { left: 33.33333333%; }
.col-xs-push-3 { left: 25%; }
.col-xs-push-2 { left: 16.66666667%; }
.col-xs-push-1 { left: 8.33333333%; }
.col-xs-push-0 { left: auto; }

.col-xs-offset-12 { margin-left: 100%; }
.col-xs-offset-11 { margin-left: 91.66666667%; }
.col-xs-offset-10 { margin-left: 83.33333333%; }
.col-xs-offset-9 { margin-left: 75%; }
.col-xs-offset-8 { margin-left: 66.66666667%; }
.col-xs-offset-7 { margin-left: 58.33333333%; }
.col-xs-offset-6 { margin-left: 50%; }
.col-xs-offset-5 { margin-left: 41.66666667%; }
.col-xs-offset-4 { margin-left: 33.33333333%; }
.col-xs-offset-3 { margin-left: 25%; }
.col-xs-offset-2 { margin-left: 16.66666667%; }
.col-xs-offset-1 { margin-left: 8.33333333%; }
.col-xs-offset-0 { margin-left: 0%; }
}
::placeholder {
    color: #999!important;
    opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12-18 */
    color: #999!important;
}
 
img#logoid1, 
img#logoid {width:100%;
    max-width: 300px;
}