/* Hero select */
.hero_input select {
	padding: 18.5px 14px;
	width: 30%;
	border-radius: 10px;
}

/* Logo */
#header .logo img, #header .logo svg {
	height: 30px;
}

.feature-icon {
	border-radius: 10px;
	-webkit-box-shadow: 0 5px 68px 0 rgb(2 2 2 / 7%);
	box-shadow: 0 5px 68px 0 rgb(2 2 2 / 7%);
	height: 200px !important;
	border: 1px solid;
	display: flex !important;
	align-items: center;
	justify-content: center !important;
	flex-flow: column;
	padding: 10px !important;
}

.modular-features.small .feature-icon i {
	display: flex !important;
	align-items: center;
	justify-content: center;
}

a {
    color: var(--primary) !important;
}

a:hover {
	text-decoration: none !important;
}

.dropmenu ul li a.active, .dropmenu ul li a:focus, .dropmenu ul li a:hover {
    color: #fff!important;
    background: var(--primary);
    border-radius: 6px;
}

a.active, a:active, a:focus, a:hover {
	color: var(--primary_alt) !important;
}

:root {
	--primary: #2c7f2b;
	--primary_alt: rgb(44, 127, 43, .5);
}

.modular-features .column:hover .feature-icon h6 {
    color: var(--primary);
}

.modular-text {
    text-align: center;
}

.empty_space {
    display: block;
    margin-bottom: 4rem;
}

.mobile-menu .button_container span {
    background: var(--primary);
}

.css-kvtuwg {
    display: none !important;
}

.navfooter .dropmenu ul li a.active, .dropmenu ul li a:focus, .dropmenu ul li a:hover {
    color: var(--primary) !important;
    background: transparent !important;
    border-radius: 6px;
}

.navfooter {
    align-items: center;
    justify-content: center;
}

.navfooter .dropmenu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-group {
    position: relative;
}

.hero_input .input-group {
    position: relative;
    width: 45%;
    margin: auto;
}

.hero_input input {
	padding: 18.5px 14px;
	border-radius: 10px;
	width: 100%;
	border: none !important;
}

#header {
	height: 5rem;
}

body.header-fixed.header-animated #header.scrolled {
    height: 3.5rem;
}

.hero_input .input-group-append {
    position: absolute;
    top: 20%;
    right: 10px;
}

.group.select label {
    position: relative !important;
    float: left;
}

.btn-hero-primary {
    color: #fff;
    background: var(--primary);
    border: none !important;
    border-radius: 4px;
}

.boxed-container {
    background: #eee;
    padding: 20px;
}

.btn-hero-primary.lg {
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

/*.group.half {
    width: 48%;
    float: left;
    margin: 6px;
}*/
.boxed-container h4 {
    margin-bottom: 2rem;
}

.btn-hero-primary:hover {
    color: #fff;
    background: var(--primary);
}

.btn-hero-primary i {
    font-size: 25px;
}

#footer {
	overflow: hidden;
}

section.navbar-section.logo {
    flex-flow: column;
    align-items: start;
    justify-content: center;
}

.col-3 {
    width: 20%;
}

div#PapercupsChatWidget iframe {
    width: 640px !important;
    max-width: 100%;
}

@media only screen and (max-width: 600px) {
	div#PapercupsChatWidget iframe {
		width: unset !important;
		max-width: unset;
	}

	.hero_input .input-group {
		width: 90%;
	}

	.col-3 {
		width: 50%;
	}

	.btn-hero-primary i {
		font-size: 18px;
	}
	
  }

/* form starting stylings ------------------------------- */
.group 			  { 
	position:relative; 
	margin-bottom:45px; 
  }
  .group input {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border: none;
}
.group input:focus 		{ outline:none; }
  
  /* LABEL ======================================= */
  .group label 				 {
	color:#999; 
	font-size:18px;
	font-weight:normal;
	position:absolute;
	pointer-events:none;
	left:5px;
	top:10px;
	transition:0.2s ease all; 
	-moz-transition:0.2s ease all; 
	-webkit-transition:0.2s ease all;
  }
  
  /* active state */
  .group input:focus ~ label, input:valid ~ label 		{
	top:-20px;
	font-size:14px;
	color:#5264AE;
  }

  .input#datepicker {
	top:-20px !important;
	font-size:14px !important;
	color:#5264AE;
  }

  .keepFocus {
    width: 100%;
	display: flex;
	font-size:14px !important;
	color:#5264AE;
}
  
  /* BOTTOM BARS ================================= */
  .bar {
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
	background: transparent !important;
}
  .bar:before, .bar:after 	{
	content:'';
	height:2px; 
	width:0;
	bottom:1px; 
	position:absolute;
	background: var(--primary); 
	transition:0.2s ease all; 
	-moz-transition:0.2s ease all; 
	-webkit-transition:0.2s ease all;
  }
  .bar:before {
	left:50%;
  }
  .bar:after {
	right:50%; 
  }
  
  /* active state */
  .group input:focus ~ .bar:before, .group input:focus ~ .bar:after {
	width:50%;
  }
  
  /* HIGHLIGHTER ================================== */
  .highlight {
	position:absolute;
	height:60%; 
	width:100px; 
	top:25%; 
	left:0;
	pointer-events:none;
	opacity:0.5;
  }
  
  /* active state */
  .group input:focus ~ .highlight {
	-webkit-animation:inputHighlighter 0.3s ease;
	-moz-animation:inputHighlighter 0.3s ease;
	animation:inputHighlighter 0.3s ease;
  }
  
  /* ANIMATIONS ================ */
  @-webkit-keyframes inputHighlighter {
	  from { background:var(--primary); }
	to 	{ width:0; background:transparent; }
  }
  @-moz-keyframes inputHighlighter {
	  from { background:var(--primary); }
	to 	{ width:0; background:transparent; }
  }
  @keyframes inputHighlighter {
	  from { background:var(--primary); }
	to 	{ width:0; background:transparent; }
  }

  input.btn.btn-hero-primary.lg {
    width: 20%;
    border: none !important;
    height: auto !important;
    padding: 12px !important;
}

.trigger-the-chat {
	cursor: pointer;
}

.error-validation {
    position: absolute;
    left: 0;
    color: red;
	display: none;
}

.to-center-col .columns {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.phoneno-mobile {
    list-style: none;
    margin: 0;
    padding-left: 1rem;
}

.phoneno li {
    margin-top: 0;
}

.dropmenu ul {
    align-items: center;
}

.phoneno-mobile li {
    font-size: 20px;
    text-align: left;
}

.phoneno-mobile {
	display: none;
}

@media only screen and (max-width: 600px) {
	.phoneno-mobile{
		display: block;
	}
}