/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  color: #5faee3;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #3498db;
  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 {
  background: #57aae1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  padding: 8px 0;
  background: #fff;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}


#header .logo img {
  max-height:60px;
}

/*--------------------------------------------------------------
# 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: 400;
  color: #555555;
  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: #000;
  font-weight:600;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #3498db;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #4aa3df;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  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;
}

.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: #3498db;
}

.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: #222222;
  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(9, 9, 9, 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: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #3498db;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #3498db;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  margin-top: 70px;
  background-color:#00172D;

}

#hero h1 {
  margin: 0 0 30px 0;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  color:white;
}

#hero h2 {
  color: #484848;
  margin-bottom: 30px;
  font-size: 24px;
}
 
.agency{
	margin: 0 0 36px 0;
}

.agency2{
  display: flex;
  justify-content: center;
  align-items: center;
	margin: 0 0 36px 0;
}



#hero .btn-get-started {
	/*width:110px;
	height:40px;*/
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  display: inline-block;
  padding:8px;
  transition: 0.5s;
  color: #fff;
  border: 2px solid #3498db;
}

#hero .btn-get-started2 {
	/*width:200px;
	height:40px;*/
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  display: inline-block;
  padding:8px;
  transition: 0.5s;
  color: #fff;
  border: 2px solid #3498db;
}



/*#hero .btn-get-started:hover {
  background: #3498db;
  color: #fff;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}*/

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    height: 100%;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero {
    margin-top: 20px;
  }

  #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%;
  }
}

@media (max-width: 390px) {
	
	 #hero {
    height: 100vh;
		
		}
	
	
  #hero .hero-img {
	margin-top:200px;
  }
  
  .box1{
	  /*margin-left:50px;*/
	  }
	  
 .pricing p{
	 
      text-align:center;

	}	  
  
}

@media (max-width: 414px) {
	
	 #hero {
    height: 100%;
	 }
	 
  #hero .hero-img {
	margin-top:0px;
  }
  
  .box1{
	  /*margin-left:58px;*/
	  }
	  
 .pricing p{
	 
      text-align:center;

	}
	
	.contact .info{
		margin-top:40px;
		margin-left:-20px;
		
		}
		
		.features h3{
			width:100%;
		}
		 
		

}

@media (max-width: 375px) {
	
	#hero {
    height: 100%;
	 }
	
	
  #hero .hero-img {
	  margin-top:-70px;
	
  }
  
  .box1{
	  /*margin-left:38px;*/
	  }
	  
 .pricing p{
	 
      text-align:center;

	}	
	
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7fbfe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-family: "Raleway", sans-serif;
  font-size: 32px;
  font-weight: bold;
  position: relative;
  color: #222222;
}


.section-title p {
  margin: 15px 0 0 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f3f9fd;
  padding: 10px 0;
  text-align: center;
}

.clients .col-lg-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients img {
  width: 50%;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 10px 0;
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    width: 40%;
  }
}

@media (max-width: 575px) {
  .clients img {
    width: 30%;
  }
}

/*--------------------------------------------------------------
# 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: #3498db;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #3498db;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #3498db;
}

.about .content .btn-learn-more:hover {
  background: #3498db;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .content {
  padding: 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #222222;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #3498db;
  float: left;
  line-height: 0;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #222222;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #484848;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #484848;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #6f6f6f;
}

@media (max-width: 1024px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 70%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 25px;
  overflow: hidden;
  background: #fff;
  z-index: 1;
}

.com1{
	font-family:"raleway";
    font-size:20px;
	margin-left: 10px;
    padding-bottom:30px;
	color: #0071E2;
	display:inline-block;
}


.com2{
	font-family:"raleway";
    font-size:20px;
	margin-left: 10px;
	margin-bottom:45px;
	color: #0071E2;
	display:inline-block;
}

.services .description {
	 font-family: "Raleway", sans-serif;
  font-size: 15px;
  line-height: 20px;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
	background-color:#F1F5F8;
}

.fech h2 {
  font-size: 24px;
  position: relative;
  color:#0071E2;;
}

.fech h4 {
  font-size: 36px;
  position: relative;
  color:#000;
  font-weight:600;
}


.apl-tx{
	margin-left:30px
}

.front-fech h2 {
	margin-top:80px;
  font-size: 24px;
  position: relative;
  color:#0071E2;
}

.front-fech h4 {
  font-size: 36px;
  position: relative;
  color:#000;
  font-weight:600;
}

.features  h3 {
	/*width:70%;
	margin-left:30px;*/
	color:#0071E2;
    font-weight: 700;
    /*font-size: 16px;
    text-align:left;*/
}

.features  h6 {
     
 font-family: "Raleway", sans-serif;
color:#0071E2;
font-size: 18px;
font-weight: 700;
line-height: 24px;
text-align: left;
margin-left:80px;
margin-top:-50px;

}

.features  p {
	 font-family: "Raleway", sans-serif;
     /*margin-left:30px;*/
	color:#000;
    font-weight: 400;
    font-size: 16px;
	text-align:left;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team{
	background-color:#F1F5F8;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a i {
  line-height: 0;
}

.team .member .social a:hover {
  color: #3498db;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f9f9f9;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 2px solid #f9f9f9;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #222222;
}

.pricing .box h4 {
  font-size: 42px;
  color: #3498db;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 18px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #222222;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #3498db;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  border: 2px solid #3498db;
  color: #3498db;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #3498db;
  color: #fff;
}

.pricing .recommended {
  border-color: #3498db;
}

.pricing .recommended .btn-buy {
  background: #3498db;
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: #2383c4;
  border-color: #2383c4;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
 
 #contact{
	 background-color:#F1F5F8;
 }
 
	
.blue h2 {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  color:#0071E2;
  margin-top:50px;
}



.contact .social-links {
  padding-bottom: 20px;
}

.contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #3498db;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #3498db;
}

.contact .social-links a:hover {
  background: #3498db;
  color: #fff;
}

.contact .info {
  color: #444444;
}

.contact .info i {
  font-size: 32px;
  color: #0071E2;
  float: left;
  line-height: 1;
  margin-left:50px;
  
}

.contact .info h4 {
	margin-left:25px;
  font-size: 24px;
  font-weight:700;
}

.contact .info p {
	 font-family: Raleway;
  padding:20px;
  font-size: 18px;
  text-align:left;
  margin-left:70px;
  color:#3498db;
}
 
 .contact .info ul{
	 font-family: Raleway;
  margin-left:70px;
	 }

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .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;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #3498db;
}

.contact .php-email-form button[type=submit] {
  background: #3498db;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #2383c4;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f8f8f8;
  min-height: 40px;
  margin-top: 86px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 72px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 992px) {
  .breadcrumbs ol {
    margin-top: 10px;
  }
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c3c3c;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #263238;
  padding:15px;
  color: #222222;
  font-size: 14px;
}

.copyright{
	font-family: Raleway;
font-size: 16px;
font-weight: 700;
line-height: 19px;
text-align: left;
color:#fff;

}
	
	
.agency h6{
	margin-left:57px;
	margin-top:-45px;
	font-size:16px;
	color:white;
}

.agency2 h6{
  padding-left: 12px;
  margin-bottom: 0px !important;
	/*margin-left:65px;
	margin-top:-45px;*/
	font-size:16px;
	color:white;
}

.agency3 h6{
	font-size:16px;
	/*margin-top:20px;*/
	color:white;
}



.align-items-stretch{
	
	box-shadow: 0px 0px 15px 0px #3B94EC40;
    border-radius: 4px;
    border: 1px solid rgba(59, 148, 236, 0.25);
	border-color:#3B94EC40;
}

.box1{
	/*width:276px;
	height:328px;*/
	background-color:#fff;
	box-shadow: 0px 0px 15px 0px #3B94EC40;
    border-radius: 4px;
    border: 1px solid rgba(59, 148, 236, 0.25);
	border-color:#3B94EC40;
	}
	
	
.box1 img{
	margin-top:-60px;
	}
	
	
.box1 h3{
  font-size: 20px;
  padding: 20px;
	/*margin-top:20px;*/
	font-size:20px;
	text-align:center;
	/*margin-right:20px;*/
	}
	
.fech3 h2{
  margin:30px;
  font-size: 36px;
  position: relative;
  color:#000;
  font-weight:600;
}

.fech3 h4{
 font-family: Raleway;
font-size: 28px;
font-weight: 500;
color:#000;
margin:30px;
}	

.pricing{
	background-color:#005AB3;
	}


.white{
  font-size: 32px;
  font-weight: bold;
  position: relative;
  color:#fff;
  text-align:center;
}

.white h2{
	
	margin:30px;
  font-size: 36px;
  position: relative;
  color:#fff;
  font-weight:600;
	
}

 .pricing p{
font-family: Raleway;
font-size: 16px;
font-weight: 500;
color:#fff;
padding-top:20px;
text-align:left;

}

.spec{
  font-family: "Raleway", sans-serif;
  font-size: 32px;
  font-weight: bold;
  position: relative;
  text-align:center;
  color:#000;
	
	}
	
	.spec h2{
		margin-top:20px;
		
		}
		

#myBtn{
	border:none;
	background-color:#fff;
	
	}
	
#myBtn img{
	width:50%;	
	}	
	
	
	
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 70%;
}

.modal-content h2{
	font-family: Raleway;
	color:#0071E2;
	font-size:30px;
	font-weight:800;
}

.modal-content h4{
	font-family: Raleway;
	color:#3498db;
	font-size:25px;
	font-weight:800;
}

.modal-content p{
	font-family: Raleway;
	color:#000;
	font-size:16px;
	font-weight:500;
	text-align:left;
  line-height: 32px;
  margin-top:25px;
}

.modal-content img{
	width: 70%;
	border-radius:10px;
	}




/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 54px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 320px){
  .agency2 h6,.agency3 h6{
    font-size: 14px;
  }
  .pr-12{
    margin-right: 12px;
  }

}
@media (max-width: 375px){
  .agency h6{
    margin-top: -55px;
  }
}
.new-pos{
  margin-bottom: 24px;
  line-height: 40px;
}
@media (max-width: 425px){
  #myBtn img {
    width: 85% !important;
  }
  .modal-content img{
    width: 100%;
    height: 170px;
  }
  .b-tag{
    margin-top: 40px;
  }
  .new-pos{
    font-size: 18px !important;
    line-height: 24px;
  }
  /*.border-class{
    width: 100%
  }*/
  .flex-column-1{
    display: flex;
    flex-direction: column;
  }
  .contact .info p{
    margin-left: 20px;
  }
  .contact .info ul{
    margin-left: 40px;
  }
  .mt-60{
    margin-top: 60px;
  }
  
  .agency2{
    margin-left: 10px;
  }
  .pr-12{
    padding-right: 12px;
  }
  .agency3{
    margin: 20px;
  }
 /* .mr-sm-screen{
    margin-top: 12px;
  }*/
  .mr-btm{
    margin-bottom: 12px;
  }
  .hide{
    display: none;
  }
  .mob-size{
    display: flex;
    justify-content: space-between;
  }
  .padding{
    /*padding: 20px;*/
  }
  .align-items-stretch{
    margin-bottom: 20px;
  }
  .margin-box{
  margin-right: 0px !important;
}
.wp-width{
  height: 20px !important;
  width: 20px !important;
}
.mr-pd{
  font-size: 10px;
font-family: 'Raleway';
}
}
.margin-box{
  margin-right: 8px;
}

@media (min-width: 426px){
  .agency3 h6{
    margin-top: 20px;
  }
.row-1{
    display: flex;
    justify-content: space-between;
  }
.show{
  display: none;
}
.margin-box{
  /*margin-right: 8px;*/
  padding: 0px;
}
.mb-30{
  margin-bottom: 30px;
}
}
.txt-format{
  font-size: 12px;
  font-weight: 400px;
}
 .mb-8{
    margin-bottom: 8px;
  }
  .text-left{
    text-align: left;
  }
  
.ess{
    background: linear-gradient(to bottom, transparent 50%, rgba(102, 178, 255, 0.5) 50%);
    display: inline;
	font-style:italic;
  }

.txt-style{
  margin-top: 30px;
    font-size: 36px;
    color: #fff;
    font-weight: 600;
}
.bottom-section{
    margin-bottom: 0px !important;
    background: linear-gradient( 180deg, rgba(59, 148, 236, 0), rgba(59, 148, 236, 0.25) );
  /*  z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;*/
}
.bottom-text{
  padding: 10px;
  text-align: center;
  margin-bottom: 0px !important;
  letter-spacing: 0.14em;
  line-height: 24px;
  color: #fff;
  font-weight:700;
  font-size: 28px;
  /*margin-left: 50px;*/
}
/*.relative{
  position: relative;
}
*/

  .blinking-text {
    width: 38%;
    display: contents !important;
    color: white;
    font-size: 24px; /* Adjust the font size as needed */
    animation: blink 2s infinite; /* Adjust the animation duration as needed */
    display: inline-block;/* Adjust the animation duration as needed */
  }
  .ct-btn{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mr-l{
    margin-left: 30px;
  }
  .a-tag{
     display: flex;
    justify-content: center;
  }
  .text-bold{
    font-weight: 800
  }
  .disp{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .mb-btm{
    margin-bottom: 0px !important;
	line-height:3;
  }
  .pb-btm{
    padding: 0px !important;
  }
  .font-weight{
    font-weight: 800;
font-size: 18px;
font-family: 'Open Sans';
  }
  .grid-class{
    display: grid;
    justify-content: flex-end;
    align-content: flex-end;
  }
 .mb-60{
    margin-bottom: 35px;
  }
  .mb-30{
    margin-bottom: 30px;
  }
  /* .mt-30{
    margin-top: 50px;
  }
  .mt-9{
    margin-top: 9px;
  }
  .mt-32{
    margin-top: 32px;
  }
  .mt-49{
    margin-top: 49px;
  }*/
  
  .border-class{
	  width:390px;
    border: 2px solid white;
    border-radius: 12px;
	align-content:center;
  }
  .svg2{
    height: 50px;   
  }
  
  #DCA{
	  font-style:italic;
	  color:#3498db;
	  
  }
.form-class{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.your{
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-control{
    border-radius: 0px;
    box-shadow: none;
    font-size: 14px;
    padding: 10px 15px;
    font-family: 'Open Sans'
}
.btn-send{
  background: #3498db;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}
/* @media (min-width: 576px){
  .container, .container-sm{
      max-width: 600px !important;
  }
} */
@media (min-width: 992px){
  .row-11{
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 576px) and (max-width:991px){
 .cmpl-tab{
  text-align: center;
 }
.ind-txt{
  text-align: center;
}
.gap-12{
  gap: 12px;
}
.height-90{
  width: 198px !important;
}
.row-11{
  display: contents;
  column-gap: 12px;
}
.margin-btm-16{
  margin-bottom: 16px;
}
.mg-btm-32{
  margin-bottom: 32px;
}
.pd-tab{
  padding-bottom: 22px;;
}
/* .features h3{
  font-size: 18px;
} */
.fn-size{
  font-size: 18px;
}
.font-12{
  font-size: 12px !important;
  line-height: 16px !important;
}
}
@media (min-width: 576px) and (max-width:767px){
   .container, .container-sm{
  max-width: 600px !important;
}
.gap-12-rprt{
  gap: 12px;
}

}
@media (min-width: 768px) and (max-width:991px){
  .flex-disp{
    display: flex;
    justify-content: center;
    width: 38% !important;
  }
  .gap-12-center{
    justify-content: center;
  }
  .margin-top-20{
    margin-top: 20px;
  }
  /* .pd-tab{
    padding-bottom: 22px;;
  }
  .features h3{
    font-size: 18px;
  } */
}
.gap-12-center{
  justify-content: center;
}
.mt-top{
  margin-top: 28px;
}
@media (min-width: 1367px){
.lg-margin{
  margin-bottom: 30px;
}
.lg-margin-sprt{
  margin-bottom: 20px;
}
}
.wp-width{
  height: 40px;
  width: 40px;
}
.wp-display{
  display: flex;
  align-items: center;
}
.mr-pd{
  margin: 0px !important;
  padding: 0px !important;
  color: #1F1F1F;
}