/*
Theme Name: Beaver Builder Child Theme
Theme URI: https://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: https://www.fastlinemedia.com
template: bb-theme
*/

.fl-page-header .fl-logo-img {
	max-width:150px;
}
.fl-page-header .fl-page-nav-wrap {
	display:none;
}
.fl-page-footer {
	border-top: none;
}

/* HOME DROPDOWN */
#dropdown.wrapper {
  position: relative;
	display:flex;
	gap:20px;
	justify-content:center;
	align-items:center;
}
#dropdown .text {
	font-size:18px;
}
.dropdown {
  width: 300px;
  height: 60px;
  border-radius: 7px;
  position: relative;
  background: rgba(255, 255, 255, 1);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 480px) {
  .dropdown {
    width: 100%;
	z-index:1;
  }
}
.dropdown::before {
  content: "";
  position: absolute;
  right: 16px;
  top: calc(50% - 6px);
  z-index: 9999;
  width: 12px;
  height: 12px;
  border: 2px solid #333;
  border-top: transparent;
  border-right: transparent;
  transform: rotate(-45deg) translateY(-50%);
  transform-origin: center;
  pointer-events: none;
  transition: all 0.25s;
}
.dropdown input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px 16px;
  font-size: 18px;
  color: #333;
  user-select: none;
  border: 0;
  background-color: transparent;
  border-radius: 9px;
  outline: 0;
}
.dropdown input::placeholder {
  color: #333;
}
.dropdown ul {
  list-style: none;
  position: absolute;
  overflow: hidden;
  width: 100%;
  top: 70px;
  font-size: 16px;
  background: #FFF;
  border: 1px solid #ddd;
  border-radius: 9px;
  outline: none;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.35s;
  visibility: hidden;
  padding:0;
}

.dropdown ul {
  background: rgba(255, 255, 255, 1);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.dropdown ul li {
  padding: 10px 14px;
  transition: all 0.25s ease;
  color: #FFF;
}
.dropdown ul li:first-of-type {
	margin-top:5px;
}
.dropdown ul li:last-of-type {
  margin-bottom: 5px;
}
.dropdown ul li:hover {
  color: #000;
  background: #FFF;
}
.dropdown.opened::before {
  top: 50%;
  transform: rotate(135deg) translateY(50%);
  border-color: #333;
}
.dropdown.opened input {
  border-color: #FFF;
  color: #333;
}
.dropdown.opened ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* END HOME DROPDOWN */

.services-wrapper .services-list ul{
	list-style: none;
	padding:0;
	margin:0;
}
.services-wrapper .services-list li {
    margin-bottom: 15px;
    border-radius: 10px;
	padding: 20px 25px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	cursor:pointer;
}

.services-wrapper .services-list li:hover {
    background: #e8e8e8;
}
body:not(.fl-builder-edit) .services-wrapper .services-desc {
	display: flex;
    flex-direction: column;
}
body:not(.fl-builder-edit) .services-wrapper .services-desc .service-list-content {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
}

body:not(.fl-builder-edit) .services-wrapper .services-desc .service-list-content.active {
    opacity: 1;
    visibility: visible;
    max-height: 1100px;
}

.services-wrapper {
	display:flex;
}

.services-wrapper .services-desc h2 {
    margin-top:0;
    font-size:45px;
	margin-bottom:20px;
}

.services-wrapper .services-desc p,
.services-wrapper .services-desc ul {
	margin-bottom:20px;
}


.single .fl-module-fl-post-content h2 {
    margin: 60px 0 20px;
    font-size: 35px;
}
.single .fl-module-fl-post-content h3 {
    margin-top: 30px;
}
.single .fl-module-fl-post-content p {
    margin-bottom:20px;
}

.single .fl-module-fl-post-content li {
    margin-bottom:10px;
}

.single .fl-module-fl-post-content ul + p {
    margin-top:20px;
}


.gform-theme--foundation .gform_fields {
	row-gap:20px!important;
}

body .gform_wrapper .gform_footer {
	justify-content:center;
}

body .gform_wrapper .gform_footer input[type=submit] {
	background-color:#333!important;
	border-radius:0!important;
	border:1px solid #333!important;
}
body .gform_wrapper .gform_footer input[type=submit]:hover {
	background-color:#fff!important;
	color:#333!important;
}

.fl-button-lightbox-content h2 {
	font-size:35px;
	text-align:center;
}
.fl-button-lightbox-content p {
	text-align:center;
}
.navigation.post-navigation {
	margin-top:20px;
}
.fl-author-bio-name {
	font-size:20px;
}
.fl-author-bio-text {
	font-size:14px;
}

@media(min-width:769px){
	.services-wrapper .services-list {
		width:40%;
	}
	.services-wrapper .services-desc {
		width:60%;
		padding-left:40px;
	}
}
@media (max-width:768px){
	#dropdown.wrapper {
		flex-direction: column;
	}
	.services-wrapper {
    	flex-direction: column !important;
	}
	.home .fl-post-grid {
		margin-left:-20px;
		margin-right:-20px;
	}
	
}