/*
Theme Name: Flastsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

:root {
    --green-color: #29a268;
    --gray-color: #f5f7ff;
    --white-color: #fff;
    --heading-color: #13287e;
    --body-color: #5f5f5f;
    --border-color: #e9e9e9;
	--e-global-color-a954db2: #F8FBEC;
	--e-global-color-2db06a9: #FFFFFF00;
}

.button {
	margin-bottom: 0;
}

h2 {
	margin: 0;
}



.topbar-html1 {
	display: flex;
    gap: 30px;
    align-items: center;
}

.topbar-html1 i {
	font-size: 14px;
	margin-right: 6px;
}

.topbar-html1 span {
	font-size: 14px;
	font-weight: 400;
}



.col-message .col-inner {
	border-radius: 30px;
}

.col-contact .col-inner {
	 background-color: var(--e-global-color-a954db2);
	border-radius: 30px;
}

.row-contact .col-contact > .col-inner:first-of-type,
.row-contact .col-message > .col-inner:first-of-type
{
	height: 600px;
	box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.15);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.row-contact .col .col-inner {
	
}

.row-core-value .col .col-inner {
	background-color: var(--e-global-color-a954db2);
    padding: 20px 20px 20px 20px;
    border-style: solid;
    border-width: 8px 8px 8px 8px;
    border-color: #fff;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
}

.row-data .col2 .col-inner,
.row-data .col3 .col-inner,
.row-data .col4 .col-inner
{
	border-style: dashed;
    border-width: 0px 0px 0px 2px;
    border-color: #DEEDA8;
    padding: 0px 25px 0px 25px;
}

.sec1  {
	background-image: url(https://demo.creativemox.com/beclean/wp-content/uploads/sites/2/2023/09/graph-paper-1.png);
    background-position: center center;
    background-size: 200px auto;
}
.sec1 .section-bg{
	background-color: transparent;
    background-image: radial-gradient(at center center, #FFFFFFBF 0%, #ffff 85%);
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.product-small .box-text .product-title {
	font-size: 18px;
}
.product-small .box-text {
	padding: 12px 24px;
}
.product-small .box-image {
	border-radius: 30px;
}

.product-small .col-inner {
	background-color: #fff;
	border-radius: 30px;
}
.advise-form input[type=submit] {
	width: 100%;
}

.contact-phone span {
	font-size: 18px;
    font-weight: 600;
    padding-left: 8px;
}
.contact-phone .icon-phone {
	    padding: 12px;
    border-radius: 50%;
    background-color: #FFC107;
}

.advise-form .wpcf7 input[type="tel"] {
	border-radius: 8px;
}

.footer-content {
	margin-top: -64px;
}

.sec_footer .main-content {
	background-color: #DEEDA8;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.sec_footer .top-content {
	background-color: #fff;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.follow-icons .tooltip {
	opacity: 1;
}

.sec_footer .section-bg {
	background-color: transparent;
    background-image: radial-gradient(at top center, var(--e-global-color-2db06a9) 0%, var(--green-color) 80%);
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.sec_footer {
	background-color: var(--e-global-color-a954db2);
    background-image: url(https://demo.creativemox.com/beclean/wp-content/uploads/sites/2/2023/09/graph-paper-1.png);
    background-size: 200px auto;
}

.heading-top span{
	color: var(--green-color);
	font-size: 16px;
	background-color: var(--e-global-color-a954db2);
    margin: 0px 0px 20px 0px;
    padding: 5px 15px 5px 15px;
    border-radius: 30px 30px 30px 30px;
}
.br-4 img{
	border-radius: 16px;
}
.round-icon .icon-box-img {
	padding: 10px;
    height: 45px;
    background-color: var(--wp--preset--color--primary);
    border-radius: 50%;
}
.round-img {
	position: absolute;
    bottom: -62px;
    right: -23px;
}
.round-img .img-inner {
	border-radius: 99999px;
}
.btn {
  -moz-user-select: none;
  background: var(--green-color);
  border: medium none;
  border-radius: 5px;
  color: var(--white-color);
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
  padding: 20px 40px;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  position: relative;
  white-space: nowrap;
  padding-right: 55px;
  overflow: hidden;
  z-index: 1;
}

.btn:hover {
  color: var(--white-color);
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--heading-color);
  -webkit-transform: translateX(-101%);
  transform: translateX(-101%);
  transition: 0.5s;
  z-index: -1;
}
.btn:hover::after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
/* Services */
.services-area .mb-30 {
  margin-bottom: 30px !important;
}
.service-details img {
  width: inherit;
}
.services-thumb img {
  width: 100%;
	height: 340px;
}
.services-content h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.services-content h4 img {
  line-height: 1;
  margin-right: 10px;
}
.single-services:hover .services-content h4 img {
  transform: rotateY(360deg);
  transition: 1s;
}
.services-content p {
  margin-bottom: 20px;
}
.services-content .services-btn {
	    display: flex;
    width: fit-content;
    gap: 8px;
  border: 2px solid var(--border-color);
  background: transparent;
  font-size: 15px;
  color: var(--body-color);
  padding: 14px 30px;
  padding-right: 45px;
}
.services-content .services-btn:hover {
  color: var(--white-color);
  border-color: transparent;
}
.s-services-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 35px;
}
.s-services-icon::before {
  content: "";
  position: absolute;
  right: 15px;
  top: -25px;
  height: 100px;
  width: 100px;
  background: #f3f4f8;
  z-index: -1;
  border-radius: 50%;
  transition: 0.3s;
}
.s-services-content h4 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.s-services-content p {
  margin-bottom: 0;
  padding: 0 49px;
}
.s-single-services:hover .s-services-icon::before {
  right: -15px;
}
.t-services-thumb img {
  width: 100%;
}
.t-services-thumb::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to top, #29a268, transparent);
  background: linear-gradient(to top, #29a268, transparent);
  z-index: 1;
  border-radius: 10px;
}
.t-services-content {
  padding: 0 45px;
  margin-top: -144px;
  position: relative;
  z-index: 9;
}
.t-services-content h4 {
  font-size: 24px;
  letter-spacing: -1px;
  color: var(--white-color);
  font-weight: 700;
  margin-bottom: 10px;
}
.t-services-content h4 img {
  margin-right: 15px;
}
.t-services-content p {
  color: var(--white-color);
  margin-bottom: 18px;
}
.t-services-content .btn {
  background: transparent;
  background: var(--white-color);
  font-size: 15px;
  color: var(--body-color);
  padding: 15px 30px;
  padding-right: 45px;
  box-shadow: 0px 10px 30px 0px rgba(169, 169, 169, 0.3);
}
.t-services-content .btn:hover {
  color: var(--white-color);
}
.title-text p {
  margin-bottom: 0;
}

.services-content figure {
  display: inline-block;
}

.services-content .services-btn {
    border: 2px solid var(--border-color);
    background: transparent;
    font-size: 15px;
    color: var(--body-color);
    padding: 14px 30px;
    padding-right: 45px;
}

.nav-left {
    justify-content: center;
    gap: 30px;
}

.khung-form {
   background: #148619;
   padding: 20px;
   border-radius: 10px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.khung-form h2 {
   text-align: center;
   color: white;
   font-weight: 600;
}

.nhom-input {
   margin-bottom: 15px;
}

.nhom-input label {
   display: block;
   margin-bottom: 5px;
   color: white;
}

.nhap-lieu {
   width: 95% !important;
   padding: 8px;
   border: 1px solid #ccc;
   border-radius: 4px;
}

.nut-gui {
   background: #ffca05;
   color: white;
   border: none;
   border-radius: 8px;
   cursor: pointer;
}

input[type=email] {
   width: 95%;
}

.box1 .icon-box-img svg {
   background: #148619;
   color: white;
   padding: 10px;
   border-radius: 99%;
}