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

a {
  color:black;
  text-decoration: none;
}

a:hover {
  color: #206bfb;
  text-decoration: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    
    font-weight: 600;
    line-height: 1.2;
    color: #1e2022;
}

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

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

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

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

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

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

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

#header .logo a {
  color: #5f687b;
}

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

@media (max-width: 991px) {
  #header {
    padding: 12px 0;
  }
}

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

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #6a7489;
  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 li.active a,
.navbar .active:focus,
.navbar li:hover>a {
  color:#e65425;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 10px 25px;
  margin-left: 10px;
  
  line-height: 1;
  color: white;
  font-size: 14px;
  font-weight: 500;
  background-color:#e65425;
  border: 1px solid#e65425;
  border-radius: 30px;
}
.navbar a.login_btn{
  padding: 10px 25px;
  margin-left: 30px;
  
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  background-color: #ece4e45e!important;
  border-radius: 30px;
}
.navbar a.login_btn:hover{
  background-color: #d1cec1!important;
  color: white;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background-color: white;
  color:#e65425;

}

.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: 15px;
  text-transform: none;
  font-weight: 600;
}

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

.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: #5f687b;
  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(73, 80, 94, 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: #5f687b;
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  padding: 10px 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:#e65425;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height:700px;
  background: #fff;
  padding-top: 165px;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #3e4450;
  margin-bottom: 20px;
}
#hero h1 span{
  color:#e65425;
}

#hero p {
  color: #858ea1;
  margin-bottom: 0px;
}


#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px 10px 30px;
    border-radius: 30px;
    transition: 0.5s;
    color: #e65425;
    background: #fff;
    margin-top: 30px;
    border: 2px solid #e65425;
}

#hero .btn-get-started:hover {
  background: #e65425; color:#fff;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  transition: 0.5s;
  margin-left: 25px;
  color: #5f687b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#hero .btn-watch-video i {
  color: #949cac;
  font-size: 32px;
  line-height: 0;
  margin-right: 8px;
}

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

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


.verfiysigup{
  width: 100%;
  position: fixed;
  top: 0px;
  z-index: 11111;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
  backdrop-filter: blur(7px);
  }
  .verfiysigup-div {
    width: 500px;
    text-align: center;
    /* top: 20%; */
    z-index: 111111;
    box-shadow: 0px 0px 10px #e2e2e2;
    background: white;
    padding: 30px;
    border-radius: 19px;
    left: 34%;
    display: block;
    /* transform: translate(-50%, -50%); */
    margin: auto;
    margin-top: 53px;
  }
  .ohk-prow{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    flex-direction: column;
  }
  .ohk-p{
    color: #ffffff;
    padding: 8px 20px;
    background: #e65425;
    display: block;
    margin: 0px 5px;
    border-radius: 10px;
    margin-top: 10px;
  }
  .ohk-p:hover{
    color: white!important;
  }

  .verfiysigup-div .btn-thanku {
    color: #e65425;
    padding: 8px 20px;
    font-weight: bold;
    width: fit-content;
    display: block;
    margin: 0px 5px;
    border-radius: 10px;
  }

  .verfiysigup-div h2 {
    font-size: 26px;
  }

  .span-verfiymsg {
    color: grey;
    font-size: 14px;
    line-height: 16px !important;
    display: block;
  }

  .span-verify {
    background: antiquewhite;
    width: 50px;
    height: 50px;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin: auto;
    margin-bottom: 15px;
  }

  .span-verify i {
    color: #e65425;
    font-size: 20px;
  }

  .verfiyclose {
    width: 30px;
    height: 30px;
    color: #5f5f5f;
    display: block;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: absolute; */
    top: 8px;
    right: 9px;
    margin-left: auto;
    margin-top: -25px;
    position: relative;
    left: 15px;
  }
  .error{
    font-weight: bold;
  }

  .verfiyclose i {
    color: #5f5f5f;
  }
  .group-input{
    width: 100%;
    position: relative;
  }
  .group-input i{
    position: absolute;
    top: 24px;
    left: 10px; color: #767575 !important;
  }
#reg-frm .relative i {
    top: 16px;
}
  .register-login .form-control{
    padding-left: 34px !important;
  }
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

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

.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #5f687b;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 30px;
  color: #f0f1f3;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #5f687b;
}

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

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

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color:#e65425;
}

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

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background:#e65425;
  background-size: cover;
  padding: 60px 0;
}

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

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #206bfb;
  border-color: #206bfb;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid#e65425;
  border-bottom: 3px solid#e65425;
  padding: 30px;
  width: 100%;
  background-color: #f9f9fa;
}

.contact .info i {
  font-size: 20px;
  color:#e65425;
  float: left;
  width: 44px;
  height: 44px;
  background: #fff;
  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: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #5f687b;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #949cac;
}

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

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

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid#e65425;
  border-bottom: 3px solid#e65425;
  padding: 30px;
  background-color: #f9f9fa;
}

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

.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 input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

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

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

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

.contact .php-email-form button[type=submit] {
  background:#e65425;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #206bfb;
}

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

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

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

.breadcrumbs h2 {
  font-size: 36px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

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

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-color: #f3f4f6;
  color: #5f687b;
  font-size: 14px;
  position: relative;
}

#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: #5f687b;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding-bottom: 0;
  margin-bottom: 0;
}

#footer .footer-top p {
  font-size: 15;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}

#footer .footer-top .footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
  border: 1px solid #e4e6ea;
}

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

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background:#e65425;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

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

#footer .footer-bottom {
  border-top: 1px solid #d9dce2;
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

#footer .copyright {
  float: left;
}

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

@media (max-width: 992px) {

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

/*--------------------------------------------------------------
# Register Login
--------------------------------------------------------------*/
.register-login{ padding-top: 60px;}
.register-login .section-title{padding-bottom:0;}
/*.register-login .tab-content {
    background: #fff;
    border-radius: 10px;
    width: 500px;
    box-shadow: 0 3px 0 #d2dbf2;
    border: 1px solid #c8ceed;
	margin: 0 auto;
}
.register-login #signup-box{width: 100%;}*/
.register-login a {
	color: #333;
	font-size: 14px;
	text-decoration: none;
	margin: 15px 0;
}

.register-login button {
	border-radius: 20px;
	border: 1px solid #e65425;
	background-color: #e65425;
	color: #ffffff;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: transform 80ms ease-in;
}

.register-login button:active {
	transform: scale(0.95);
}

.register-login button:focus {
	outline: none;
}

.register-login button.ghost {
	background-color: transparent;
	border-color: #ffffff;
}

.register-login form {
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	height: 100%;
	text-align: center;
}

.register-login .form-control {
	background-color: #eee;
	border: none;
	padding: 12px 15px;
	margin: 8px 0;
	width: 100%;
}


.register-login .container {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 1px 12px rgba(0, 0, 0, 0.25), 0 8px 5px rgba(0, 0, 0, 0.22);
	position: relative;
	overflow: hidden;
	width: 768px;
	max-width: 100%;
	min-height: 480px;
}

.sign-in-container {
	left: 0;
	width: 50%;
	z-index: 2;
}

.container.right-panel-active .sign-in-container {
	transform: translateX(100%);
}

.sign-up-container {
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
}

.container.right-panel-active .sign-up-container {
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	animation: show 0.6s;
}
.form-container {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}
.sign-up-container {
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
}

.container.right-panel-active .sign-up-container {
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	animation: show 0.6s;
}

 .relative {
   width: 100%;
   position: relative;
 }
 .password_validation {
   display: none;
 }
 .error-msg-text, .error_msg {
   color: #e60000;
 }
 .success-msg-text {
   color: green;
 }
 .error{
  color: #e60000;
  font-weight: bold;
 }
 .form-control:focus{
  box-shadow: none;
 }
 .password_validation {
   position: absolute;
   background: #f5f5f5;
   z-index: 99999;
   border: 1px solid #ddd;
   padding: 10px 15px;
   width: 100%;
   margin: 0 15px;
   left: -5%;
   font-size: 13px;
   border-radius: 12px;
   text-align: left;
   top: 57px;
   font-weight: bold;
 }
 .valid {
   color: green;
 }
 .valid:before {
   position: relative;
   left: -5px;
   content: "\2713";
 }
 .invalid {
   color: red;
 }
 .invalid:before {
   position: relative;
   left: -5px;
   content: "x";
 }

@keyframes show {
	0%,
	49.99% {
		opacity: 0;
		z-index: 1;
	}

	50%,
	100% {
		opacity: 1;
		z-index: 5;
	}
}

.overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;
	z-index: 100;
}

.container.right-panel-active .overlay-container {
	transform: translateX(-100%);
}

.overlay {
	background: #bdc0c8;
	
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	color: #ffffff;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
	transform: translateX(50%);
}

.overlay-panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.overlay-left {
	transform: translateX(-20%);
	background: linear-gradient(to right ,#000000 ,#4b4544 );
}

.container.right-panel-active .overlay-left {
	transform: translateX(0);
}

.overlay-right {
	right: 0;
	transform: translateX(0);
  background: linear-gradient(to right,#4b4544 ,#000000 );
}
.div--check{
  text-align: justify;
  font-size: 13px;
  letter-spacing: -0.7px;
}
#reg1{
  margin-top: 43px;
}

.container.right-panel-active .overlay-right {
	transform: translateX(20%);
}
p.form-title {
    font-size: 27px;
    font-weight: 600;
}
.social-container {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.social-container a {
    
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    margin: 0;
    height: 30px;
    width: 49%;
    padding: 3px 10px;
    
    color: #fff;  justify-content: space-between;
}
.social-container a span { font-weight: 600; font-size: 11px;}
a.social.google {
    background: #d37b6c;
    color: #fff;
}
a.social.facebook {
    background: #7a9ed6;
    color: #fff;
}
.social-container a:hover{opacity: 0.9;}
.register-login .container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.25), 0 8px 5px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  width: 768px;
  max-width: 100%;
  min-height: 640px;
}
.div-confrm{
  width: 400px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.25), 0 8px 5px rgba(0, 0, 0, 0.22);
  margin: auto;
  margin-top: 100px;
  padding: 30px;
  margin-bottom: 30px;
}
.reset-password .div-confrm{text-align:left;}
.div-confrm input{
  display: block;
  border-radius: 10px;
  background-color: #eee;
  border: none;
  padding: 12px 15px;
  margin: 8px 0;
  width: 100%;
}
.div-confrm button{
  background: #e65425;
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 20px;
    display: block;
    margin: auto;
    margin-top: 30px;
}
.confrm-passwordsec .container {
  background-color: #fff;
  /* border-radius: 10px; */
  /* box-shadow: 0 1px 12px rgba(0, 0, 0, 0.25), 0 8px 5px rgba(0, 0, 0, 0.22); */
  position: relative;
  overflow: hidden;
  /* width: 768px;
  max-width: 100%;
  min-height: 570px; */
}
.div-confrm span{
  background: antiquewhite;
  width: 50px;
  height: 50px;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  margin: auto;
  margin-bottom: 15px;
}
.div-confrm span i{
  color: #e65425;
  font-size: 21px;
}
.div--login{
  margin-top: 22px;
}
.div--login p{
  font-size: 15px;
  margin-bottom: 0px;
}
.div--login p a{
  color: #e65425;
}
#cNewPassword{
  margin-top: 15px;
}
.section-title span {
  color: #9f9f9f !important;
  top: -10px;
}
.register-login .section-title {
  padding-bottom: 0;
}
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #5f687b;
  position: relative;
  z-index: 2;
}
.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}
.social-container a i{margin-left: -3px;}


/* ==================custome Css=============================== */

.testimonial-content { display: flex; justify-content: center; align-items: center;padding:30px 30px 15px;border-radius: 15px; width: 100%;}
.test-para{font-size: 15px;}
.test-image img{width: 50px; border-radius: 5px;}

.testimonial .item{padding: 10px;border-radius: 10px;}
.testimonial .item .client-name{padding-left: 26px;font-weight: bold;opacity: 0.8;}
.test-image img{width: 50px!important;}

/* =======================Pricing Css===================== */
.pricing-section{margin-top: 80px;}
.pricing-section.home-pricing {
    margin-top: 0;
    background: #FFF8F5;
}
.pricing-section .basic-price {
    padding: 25px;
    border: 1px solid #e4e8ed;
    background: #fff;
    height: 750px;
    border-radius: 20px;
    margin: 0 20px;
    text-align: center;
}
.pricing-section .basic-price h2 {
    font-size: 25px;
    margin: 0 0 15px;
    font-weight: bold;
}
.pricing-card-section{}
.pricing-section.home-pricing h3 {
    margin-bottom: 30px;
}
.pricing-box{}
.pricing-section .plan-price {color: #e65425;    font-size:36px; font-weight: bold;white-space: nowrap;}
.plan-month{ display: flex; flex-direction: column;white-space: nowrap; text-align: left;line-height: 1;}
.plus-plan{margin: 0 10px;font-weight: 600;font-size: 30px; display: none;}
.plan-price {color: #e65425;}
.total-price{margin:10px 0px;font-weight: 500px;}
.total-price .price-total{font-size: 16px;font-weight: 500;}
.total{font-weight: bold;font-size: 20px;}
.action-btn a {
    color: #e65425;
    background-color: transparent;
    padding: 8px 40px;
    border-radius: 20px;
    border: 2px solid #e65425;
    font-weight: 600;
}
.action-btn{margin:20px 0px;}
.price-content{    line-height: 1.5; margin-top:10px;font-size:16px;color: #444444;}
.pricing-details h3{margin: 25px 0px 20px; font-weight: bold; font-size: 20px;}
.pricing-info{ margin: 12px 0px;display: flex;align-items: center;justify-content: space-between;}
/*.pricing-section .basic-pri{   border-top: 10px solid #f5821f;}
.pricing-section .plus-price{   border-top: 10px solid #2ab573;;}
.pricing-section .pro-price{   border-top: 10px solid #d31a21;}*/
.pricing-info{font-size: 15px;font-weight: 600; position: relative;}
.select-material{display: flex; justify-content: space-between;align-items: center; margin:10px 0px;}
.material-quantity{display: flex; justify-content: space-between;align-items: center;}
.material-quantity label{padding-right: 35px;min-width:160px;display: block!important;}
.feature-info i {
    color: #767575 !important;
}






.material-quantity select{margin-right: 10px;}
/* =======================Pricing Css end===================== */

/* ==========================FAq  ========================= */
.faq .container{max-width:991px!important}
.accordion-button{font-size:17px!important;margin: 20px 0px; color: #444444;font-weight: 600!important;background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important; }
.accordion-button:not(.collapsed) {
  background-color: transparent!important;
}
.accordion-button:focus {
  border-color: none!important;

}
.faq h3{font-weight: bold;}
.accordion-item {
  background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important;
}
.faq .accordion-button:focus {
  border-color: none;
  box-shadow: none;
}


/* ===========================================About us ccs============================== */

.company-details{margin-top: 100px;}
.company-details h2{
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color:#e65425;
}
.section-subtitle{color: #e65425; font-weight:600;}

.company-details p{max-width: 600px;
  margin-top: 15px;
  font-weight: 500;
  line-height: 26px;}
.img-container img{border-radius: 50px;}
/* Brand */
.brand-image-row{display: flex;align-items: center;justify-content: space-between;justify-items: center;margin-top: 3rem;}
.brand-image-row .brand-image {
    width: 20%;
    text-align: center;
    background: #f1f1f1;
    border: 1px solid #ddd;
    margin: 5px;
    padding: 15px;
    border-radius: 4px;
}
.brand-img{object-fit: contain; transition: 1s; height: 60px; filter: grayscale(100%); max-width:100%; }
.brand-img:hover{opacity: 1; filter: grayscale(0%);}

.company-details button { background: transparent;
border: 1px solid#e65425;
padding: 6px 25px;
border-radius: 5px;
color: white;
}
.company-details button a{color: Black;}
.company-details button:hover{background-color: #f5821f; color: white;}
.company-details button a:hover{color: white;}
/* .aboutus h1{font-weight: 600; color:#f5821f ;}
.aboutus .container{margin-top: 100px!important;}
.aboutus{padding: 30px 0px!important;} */
.about-description ul{list-style: none;padding-left: 0px!important;line-height:36px;}
.about-description ul li span{margin-right: 10px;}
.about-description ul li span i{color:#e65425; font-weight: bold;font-size: 18px;}
.about-description ul li {font-size: 14px;font-weight: 600;}
/* ===========================================About us ccs============================== */



.card{
  border-radius: 25px;
  background-color: #FFF;
}
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.image-content{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}
.testimonial .overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #e65425;
  border-radius: 25px 25px 0 25px;
}
.testimonial .overlay::before,
.overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #e65425;
}
.testimonial .overlay::after{
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}
.card-image{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}
.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #e65425;
}
.name{
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.description{
  font-size: 14px;
  color: #707070;
  text-align: center; min-height: 63px;
}
.button{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: #e65425;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ================vision=========== */
.progress-section .container img{width: 500px; border-radius: 50px;}
.progress-details .title {
  font-weight: 500;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1px;
  color: #000000;
  text-shadow: 1.152px 1.152px 0px #FFFFFF, 1.728px 1.728px 0px #3ea2c8db;
  margin-bottom: 40px;
}

.progress-description .header{
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: #000000;
  margin-bottom: 8px;
}
.progress-description .subheader {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #000000;
  opacity: 0.7;
}

.descriptions-progress{display: flex;}
.progress-description{margin-left: 25px; margin-bottom: 25px;}
.progress{width:8px!important; height: 100px!important;}
/* ===========footerr======================== */

.footer {background: #21325b;padding: 30px 0 30px !important;}
.footer .footer-row {display: flex;flex-wrap: wrap;justify-content: space-between;gap: 3.5rem;}
.footer-row .footer-col h4 {color: #fff;font-size: 1.5rem;font-weight: 400;}
.footer-col .links {margin-top: 20px;padding-left: 0;}
 .footer-col .links li {list-style: none;margin-bottom: 10px;}
.footer-col .links li a {text-decoration: none;color: white;}
.footer-col .links li a:hover {color: #fff;}
.footer-col p {margin: 20px 0;color: #ffffff;max-width: 300px;}
.footer-col form {display: flex;gap: 5px;}
.footer-col input {height: 40px;border-radius: 6px;background: none;width: 100%;outline: none;border: 1px solid #ffffff ;caret-color: #fff;color: #fff;padding-left: 10px;}
.footer-col input::placeholder {color: #ccc;}
.footer-col form button {background: #fff;outline: none;border: none;padding: 10px 15px;border-radius: 6px;cursor: pointer;font-weight: 500;transition: 0.2s ease;}
.footer-col form button:hover {background: #cecccc;}
.footer-col .icons {display: flex;margin-top: 30px;gap: 30px;cursor: pointer;}
.footer-col .icons i {color: #afb6c7;}
.footer-col .icons i:hover {color: #fff;}





.links span{margin-right: 5px;}

@media (max-width: 768px) {


  .footer .footer-row {
    padding: 20px;
    gap: 1rem;
  }

  .footer-col form {
    display: block;
  }

  .footer-col form :where(input, button) {
    width: 100%;
  }

  .footer-col form button {
    margin: 10px 0 0 0;
  }
}


/* ===================================about custom========================= */
.profile-page {
    margin-top: 100px;
}
.about-choose-paraription ul{list-style: none;padding-left: 0px!important;line-height:36px;}
.about-choose-paraription ul li span.circle-tick{margin-right: 10px;}
.about-choose-paraription ul li span i{color:#ff0000; font-weight: bold;font-size: 18px;}
.about-choose-paraription ul li {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    line-height: normal;
}
.about-choose-paraription ul li + li {
    margin-top: 10px;
}
.faq-choose-paraription{background: #ffc8a133; padding: 20px;border-radius: 20px;}
.faq .accordion-button{margin: 0px;background: #fff4ec !important;}
.faq .accordion-flush .accordion-item .accordion-button {color: #606060;}
.faq .accordion-flush .accordion-item .accordion-button[aria-expanded="true"]{color: orange;}
.faq-choose-paraription h2{font-weight: bold;}
.faq .accordion-button:focus {box-shadow:none;}
.faq .accordion-flush .accordion-item:first-child{background: #fff4ec !important;}
.faq .accordion-flush .accordion-item{margin: 10px 0;}
.faq .accordion-button{background: #f1f1f1 !important;}
.faq .accordion-body{background: #f1f1f1 !important;}

.sec-padd {
  padding: 70px 0px;
}

.clearfix {
  zoom: 1;
}
.pbtm{
  padding-bottom: 30px !important;}

  .choose-icon-box.choose-style.icon-center {
    text-align: center;
}
.choose-icon-box.choose-style {
    margin-bottom: 35px;
}
.choose-icon-box {
    margin-bottom: 30px;
    position: relative;
}

.choose-icon-box.choose-style.icon-center .choose-icon, .choose-icon-box.choose-style.icon-center .img-icon {
  margin: 0 auto 20px;
}
.choose-icon-box.choose-style .choose-icon {
  font-size: 30px;
  color: #0c1239;
  width: 70px;
  height: 70px;
  line-height: 70px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  border: 1px solid #dbdbdb;
  position: relative;
  z-index: 99;
}
.choose-icon-box.choose-style .choose-icon {
  background-color: #fff;
}
.choose-icon-box.choose-style h4 {
  padding-top: 0;
}
.choose-icon-box h4 {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 10px;
  padding-top: 15px;
  margin: 0;
}
.choose-icon-box h4, .choose-icon-box h4 a, .choose-icon-box .choose-icon, .choose-icon-box .img-icon {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 10;
}

.choose-icon-box .choose-para {
  position: relative;
  z-index: 10;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-top: 15px;
}

.choose-icon-box.choose-style.icon-center {
  height: 345px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

  text-align: center;
  border-radius: 20px;
  padding: 20px
}
.choose-icon-box.choose-style .choose-icon {
  background-color: #fff;
}
.choose-icon-box .choose-icon {
  font-size: 74px;
  display: block;
  line-height: 1;
  background-color: transparent;
  color: #0c1239;
}
.choose-icon-box h4, .choose-icon-box h4 a, .choose-icon-box .choose-icon, .choose-icon-box .img-icon {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 10;
}

.choose-icon-box.choose-style:hover .choose-icon {
  background-color: #ff0000;
  border-color: #ff0000;
  color: #fff;
}

.choose-section-title h2 {
  font-size: 36px;
  font-weight: 600;
  padding-bottom: 20px;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
  text-transform: uppercase;
}

.choose-section-title.text-center h2:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.choose-section-title h2:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 67px;
  height: 2px;
  background-color: #ff0000;
}
section.client-review{background: #f1f1f1 !important;}
.client-img img{width: 200px; height: 200px;border-radius: 50%;object-fit: cover; border: 4px solid #e65425;}
.client-img {text-align: center;}
.client-img h2{text-align: center; margin:20px;font-weight: bold; font-family: 'Georgia', serif;}
.client-content{font-size: 17px; padding: 10px 25px; margin-top: 25px; font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;}
.client-content p{color:#3e3e3e;font-size: 16px}

.client-review .container{max-width:991px; padding: 20px; box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px; border-radius: 20px;background-color:white;}
.choose-icon{display: none!important;}
.box-title{text-align: left;font-weight: bold!important;}
.choose-para{text-align: left;}


.toggle-password {
    position: absolute;
    right: 10px;
    top: 24px;
    font-size: 14px; color: #767575;
}
.relative .toggle-password {
    position: absolute;
    right: 10px;
    top: 18px;
    font-size: 14px; color: #767575;
}
.register-login.signup .toggle-password {
    position: absolute;
    right: 10px;
    top: 12px;
    font-size: 18px; color: #767575;
}
.register-login.signup #reg-frm .relative .toggle-password{top: 16px;}
.section-heading{text-align:center; margin-bottom: 30px;}
.section-heading h3 {
    color: #e65425;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    padding-bottom: 15px;
}
.section-heading h3:after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 67px;
    height: 2px;
    background-color: #e65425;
    right: 0;
    margin: 0 auto;
}
.section-heading p{ font-weight: 400;margin-bottom: 0px;}
.register-login.sign-in-page {
    margin-top: 120px;
}
/*============Responsiv Css Start Here=====================*/
@media (max-width: 1199px) {
#hero h1 {font-size: 42px;line-height: 48px;}	
.company-details h2	{font-size: 36px;line-height: 42px;}	
#header .logo img {
    max-height: 40px;
}	
}
@media (max-width: 1024px) {

}
@media (max-width: 991px) {
#header{box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);}	
.container{max-width: 100%;}	
section {padding: 30px 15px;}
.register-login {padding-top: 30px;}	
#hero {height: auto; padding-top: 110px;}
#hero .animated {animation: none;}
#hero .hero-img {text-align: center; }
#hero .hero-img img {width: 50%;}
	
	
.pricing-section .basic-price{margin:10px 0; height: auto;}	
	.choose-icon-box.choose-style.icon-center{height:auto;}
}

@media (max-width: 767px) {
#hero h1 {font-size: 28px;line-height: 36px; text-align: center;}
#hero p{text-align:center;}
#hero .text-left{text-align:center;}
#hero h2 {font-size: 18px;line-height: 24px; margin-bottom: 30px;}
#hero .hero-img img {width: 70%;}
.faq .accordion-flush .accordion-item .accordion-button {font-size: 15px !important;}
.register-login .container{min-height:400px;}
.section-title h2{font-size: 28px;}

.overlay-container{display:none;}
.sign-in-container{width: 100%;}
.sec-padd{padding:0;}	
.company-details h2{font-size: 36px;}
.brand-image-row{display:block;text-align: center;}
.brand-image-row .brand-image{display: inline-block;width: 45%;}	
	
.login-page, .signup-page {
    display: flex;
    align-items: center;
    height: 100vh;
}	
.register-login form{padding: 0 15px;}	
	
}

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