@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');


@font-face {
    font-family: "Muli";
    src: url(../fonts/muli.ttf);
    font-weight: 500;
}

@font-face {
    font-family: "Muli";
    src: url(../fonts/muli-bold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: "Bebas Neue";
    src: url(../fonts/bebas-neue.otf);
}

@font-face {
    font-family: "Gotham Light";
    src: url(../fonts/GothamLight.otf);
}

* {
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
    font-size: 14px;
}

a:active {
    background-color: transparent;
}

ul {
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style-type: none;
}

img {
    width: 100%;
}

p,
li {
    color: #000;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: justify;
}

.section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.section-heading.text-left h2 {
    text-align: left;
}

.section-heading h2 {
    text-align: center;
    font-size: 45px;
    color: #205e66;
    font-weight: 700;
}

.section-heading h2 span {
    color: #f5821f;
}

.img-shape {
    padding: 0 40px;
}

/* -----------------
Top Bar
--------------------*/

.top-bar {
    background-color: #fff;
    padding: 7px 0;
    border-bottom: 1px solid #e7e7e7;
    display: none;
}

.top-bar .contact-info {
    float: right;
}

.top-bar .contact-info li {
    display: flex;
    align-items: center;
    padding-left: 20px;
    margin: 0;
    gap: 10px;
    font-weight: 500;
}

.top-bar .contact-info li .icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    border-radius: 60px;
    line-height: 32px;
    background: #a6cc3b;
}

.top-bar .contact-info li a {
    color: #000;
    font-size: 16px;
}

/* -----------------
Navbar
--------------------*/

.navbar {
    padding: 0;
    background-color: #fff !important;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: 0.5s;
    border-bottom: 1px solid #e7e7e7;
}

.fixed-header {
    background-color: #fff !important;
    width: 100%;
    z-index: 999;
}

/* .navbar {
  padding: 0;
  background-color: #fff !important;
  border-bottom: 1px solid #e7e7e7;
} */



.navbar .navbar-collapse {
    position: relative !important;
}

.navbar-nav>li {
    margin: 0 5px;
    position: relative;
}

.navbar-nav li .nav-link {
    padding: 35px 0;
    color: #000 !important;
    font-weight: 500;
    font-family: 'Poppins';
    font-size: 16px;
    text-transform: uppercase;
}

.navbar-nav li .nav-link:hover,
.navbar-nav li .nav-link.active {
    color: #f5821f !important;
}


/* hover styles */
.navbar-nav li .nav-link:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #f5821f;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
    border: none;
  }
  .navbar-nav li:hover .nav-link:after {
    transform-origin: bottom left;
    transform: scaleX(1);
  }
  

.navbar-nav li .nav-link.active:after {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.dropdown-menu {
    width: 330px;
    left: 0;
    border: 0px solid #ccc;
    border-top: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    -moz-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
}

.sub-dropdown:hover .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    padding: 8px 0px;
    font-size: 16px;
    font-weight: 500 !important;
    color: #000;
    text-transform: uppercase;
    transition: 0.3s;
}

.dropdown-menu li:active {
    background-color: transparent;
}

.sub-dropdown .dropdown-toggle::after {
    content: "\f105";
    font-family: "FontAwesome";
    border: none;
    font-weight: 700;
    vertical-align: 0;
    float: right;
}

.dropdown-menu,
.sub-dropdown-menu {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 30px !important;
    border-top: 0px solid #f5821f;
    box-shadow: 0 0 30px 0px #00000014;
}

.dropdown-menu li a,
.sub-dropdown-menu li a {
    border-bottom: 1px solid #0000001a;
}

.dropdown-menu li:last-child a,
.sub-dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover,
.sub-dropdown-menu li a:hover {
    background-color: transparent;
    color: #f5821f;
}

.sub-dropdown .sub-dropdown-menu {
    position: absolute;
    top: 0;
    right: auto;
    left: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    -moz-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

/* .navbar-nav li.dropdown .dropdown-menu {
position: absolute;
left: 0px;
top: 100%;
margin-top: 0;
z-index: 100;
display: block;
background: #ffffff;
-webkit-transform: scaleY(0);
-ms-transform: scaleY(0);
-moz-transform: scaleY(0);
transform: scaleY(0);
-webkit-transform-origin: top;
-ms-transform-origin: top;
-moz-transform-origin: top;
transform-origin: top;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
-ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
-o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
-moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

@media only screen and (min-width: 768px) {
  .navbar-nav li.dropdown:hover .dropdown-menu {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
  }
} */


@media only screen and (min-width: 992px) {
    .dropdown .dropdown-menu {
        display: block;
    }

    .sub-dropdown:hover .sub-dropdown-menu {
        display: block;
    }
}

/* -----------------
Welcome Section
--------------------*/

.welcome-section {
    padding: 90px 0;
    position: relative;
    top: -7px;
    z-index: 2;
    overflow: hidden;
}

.welcome-section .section-heading h2 span {
    display: block;
}

.welcome-section .content h3 {
    font-size: 30px;
    font-weight: 700;
    color: #205e66;
    padding-left: 15px;
    border-left: 4px solid #f5821f;
    line-height: 1;
    margin-bottom: 15px;
    margin-top: 30px;
}

.welcome-section::after {
    content: "";
    position: absolute;
    right: -15%;
    top: -64%;
    z-index: -1;
    background: #4291b524;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    filter: blur(131px);
}

.welcome-section p {
    text-align: justify;
}

.pt-120 {
    padding-top: 120px !important;
}


/* -----------------
About Section
--------------------*/

.about-section {
    padding: 90px 0;
    position: relative;
    top: -7px;
    z-index: 2;
    overflow: hidden;
}


.about-section .content h3 {
    font-size: 30px;
    font-weight: 700;
    color: #205e66;
    padding-left: 15px;
    border-left: 4px solid #f5821f;
    line-height: 1;
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-section::after {
    content: "";
    position: absolute;
    right: -15%;
    top: -64%;
    z-index: -1;
    background: #4291b524;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    filter: blur(131px);
}

.about-section p {
    text-align: justify;
}


/* -----------------
Banner Area
--------------------*/

.banner-area.banner-fix {
    top: 80px;
}

.banner-area .single-banner {
    position: relative;
}

.banner-area .single-banner .slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-area .single-banner .slide img {
    width: 100%;
}

.banner-area .single-banner .slide:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #00000000;
}

.banner-area .single-banner .slide .banner-caption {
    position: absolute;
    left: 10%;
}

.banner-area .single-banner .slide .banner-caption h2 {
    font-size: 2.5vw;
    text-transform: capitalize;
    margin: 0;
    color: #15548b;
    font-weight: 600;
}

.banner-area .single-banner .slide .o-banner-center {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
}

.banner-area .banner-text-center {
    position: absolute;
    top: 40%;
    left: 30%;
    text-align: center;
}

.banner-area .banner-text-left {
    position: absolute;
    top: 40%;
    left: 10%;
    text-align: left;
}

.banner-area .banner-text-right {
    position: absolute;
    top: 40%;
    left: 50%;
    text-align: left;
}

.banner-area .banner-text h2 {
    font-size: 3vw;
    text-transform: capitalize;
    font-family: Rockford Sans;
    margin: 0;
    font-weight: 700;
}

.banner-area .banner-text p {
    width: 70%;
    color: #262626;
}

.banner-area .banner-btn a {
    text-decoration: none;
    background: red;
    color: #fff;
    padding: 15px 25px;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
}

.banner-area .slick-dots {
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.banner-area .slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 25px;
    padding: 0;
    cursor: pointer;
}

.banner-area .slick-dots li button {
    position: relative;
    background-color: red;
    opacity: 0.25;
    width: 50px;
    height: 3px;
    padding: 0;
    font-size: 0;
}

.banner-area .slick-dots li.slick-active button {
    color: red;
    opacity: 0.75;
}

.banner-area .slick-next {
    right: 6%;
}

.banner-area .slick-prev {
    left: 3%;
    z-index: 9;
}

.banner-area .slick-next:before {
    content: "\f105" !important;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    text-align: center;
    display: inline-block;
    background-color: #0000003b;
    border-radius: 0;
    position: absolute;
    font-family: "FontAwesome";
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.banner-area .slick-prev:before {
    content: "\f104" !important;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    text-align: center;
    display: inline-block;
    background-color: #0000003b;
    border-radius: 0;
    position: absolute;
    font-family: "FontAwesome";
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.banner-area .slick-prev,
.banner-area .slick-next {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


/* -----------------
Home Products Section
--------------------*/

/* 
.products-section {
    padding: 90px 0;
    margin-bottom: 5em;
    background-color: #f5fafc;
}

.products-section .item {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.products-section .item .top-box {
    min-height: 280px;
    background: #a6cc3b;
}


.products-section .item .content {
    padding: 20px 20px 30px 20px;
    text-align: center;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: #4291b5;
    border-radius: 0px;
    min-height: 280px;
    width: 100%;
    border-top: 5px solid #fff;
}

.products-section .item:hover .content {
    bottom: 0%;
}


.products-section .item .content h2 {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}

.products-section .item .content p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.products-section .item .content .inner {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.products-section .item:hover .content .inner {
    opacity: 1;
    visibility: visible;
}

.products-section .owl-nav button {
    color: #205e66 !important;
    border-radius: 50%;
    margin: 0 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    position: absolute;
    top: 40%;
    opacity: 0.3;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.products-section .owl-nav button:hover {
    opacity: 1;
}

.products-section .owl-nav button i {
    font-size: 30px;
    line-height: 40px;
}

.products-section .owl-nav .owl-prev {
    left: -60px;
}

.products-section .owl-nav .owl-next {
    right: -60px;
} */







.products-section {
    padding: 90px 0;
    margin-bottom: 5em;
    background-color: #f5fafc;
}

.products-section .item {
    position: relative;
    border-radius: 180px;
    overflow: hidden;
}


.products-section .item .img-box {
    text-align: center;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 20px;
    background-color: #a6cc3b;
    border-radius: 30px;
}

.products-section .item .img-box img {
    border: 5px solid #fff;
    margin: auto;
    border-radius: 160px;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}


.products-section .item .content {
    padding: 20px 20px 30px 20px;
    text-align: center;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: #4291b5;
    border-top: 5px solid #fff;
    border-radius: 0px;
    position: absolute;
    bottom: -50%;
    /* min-height: 170px; */
    width: 100%;
    height: 100%;
}

.products-section .item:hover .content {
    bottom: -30%;
}


.products-section .item .content h2 {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}

.products-section .item .content p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.products-section .item .content .inner {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.products-section .item:hover .content .inner {
    opacity: 1;
    visibility: visible;
}


.products-section .owl-nav button {
    color: #205e66 !important;
    border-radius: 50%;
    margin: 0 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    position: absolute;
    top: 40%;
    opacity: 0.3;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.products-section .owl-nav button:hover {
    opacity: 1;
}

.products-section .owl-nav button i {
    font-size: 30px;
    line-height: 40px;
}

.products-section .owl-nav .owl-prev {
    left: -60px;
}

.products-section .owl-nav .owl-next {
    right: -60px;
}






.mb-20 {
    margin-bottom: 20px;
}

/* ----------------------
About Us Section
------------------------*/
.about-section {
    padding: 60px 0;
}

/* ----------------------
Service Page Section
------------------------*/
.service-section {
    padding: 60px 0;
}

.service-section .content h4 {
    color: #4f6a00;
    text-decoration: underline;
    font-weight: 600;
    font-size: 20px;
    margin: 30px 0 10px;
}

.service-section .content .points {
    padding-left: 20px;
}

.service-section .content .points li {
    list-style: disc;
    margin-bottom: 5px;
}



/* ----------------------
Works Section
------------------------*/

.works-section {
    padding: 60px 0;
}

.works-section .section-heading p {
    text-align: center;
}

.works-section .content h4 {
    margin: 0 0 12px 0;
    color: #144ba6;
    font-weight: 700;
    font-size: 22px;
}

.works-section .gallery-item {
    border: 5px solid #febf00;
    margin-bottom: 25px;
}

.works-section .gallery-item a {
    position: relative;
    z-index: 2;
    display: block;
}
.works-section .gallery-item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #febe00ab;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.works-section .gallery-item a::after {
    content: "\f002";
    font-family: FontAwesome;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    font-size: 25px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.works-section .gallery-item a:hover::before,
.works-section .gallery-item a:hover::after {
    opacity: 1;
    visibility: visible;
}





/* ----------------------
FAQ Section
------------------------*/
.faq-section {
    padding: 60px 0;
}

.faq-section .text h4 {
    color: #4f6a00;
    text-decoration: underline;
    font-weight: 600;
    font-size: 20px;
    margin: 30px 0 10px;
}

.faq-section .accordion-container {
    position: relative;
    height: auto;
    margin: 10px auto;
}

.faq-section .accordion-container>h2 {
    text-align: center;
    color: #fff;
    padding-bottom: 5px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.faq-section .set,
.faq-section .set2 {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #f3faff;
    margin: 20px 0;
    border-radius: 0px;
    border: 1px solid #dae6ef;
}

.faq-section .set:hover a,
.faq-section .set2:hover a {
    background-color: #2caaf5;
    color: #fff;
}

.faq-section .set>a,
.faq-section .set2>a {
    display: block;
    padding: 15px 20px 15px 40px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    border-radius: 0px;
    font-size: 16px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.faq-section .set>a i,
.faq-section .set2>a i {
    float: right;
    margin-top: -7px;
    font-weight: 700;
    font-size: 20px;
    width: 40px;
    height: 40px;
    color: #000;
    border-radius: 0px;
    text-align: center;
    line-height: 40px;
}

.faq-section .set>a.active,
.faq-section .set>a.active {
    background-color: #2caaf5;
    color: #fff;
}

.faq-section .set>a.active i {
    color: #fff;
}

.faq-section .content {
    background-color: #febf00;
    padding: 20px 40px;
    display: none;
}

.faq-section .content p {
    margin: 0 0 15px 0;
    color: #000;
}

/* ----------------------
Contact Section
------------------------*/
.contact-section {
    padding: 60px 0;
    background-color: #f5fafc;
    position: relative;
    top: -7px;
}

.contact-section .contact-col {
    display: flex;
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    border-bottom: 1px solid #dddddd00;
    background-color: #f5fafc;
    width: 100%;
    border-radius: 20px;
    outline: none;
    padding: 10px 15px;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

.contact-form fieldset {
    margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #f5821f;
}

.contact-form button {
    margin-top: 0px;
    font-size: 14px;
    color: #fff;
    background-color: #f5821f;
    padding: 12px 25px;
    box-shadow: none;
    border: none;
    display: inline-block;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-form button:hover {
    opacity: 0.9;
}

.contact-form textarea {
    padding: 20px;
}

.contact-form ::-webkit-input-placeholder {
    /* Edge */
    color: #7c7c7c;
}

.contact-form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #7c7c7c;
}

.contact-form ::placeholder {
    color: #7c7c7c;
}

.contact-section .contact-box {
    padding: 0 30px;
    width: 100%;
}

.contact-section .contact-box .contact-info h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-section .contact-box .contact-info ul li {
    padding: 0px 0px 10px 60px;
    position: relative;
    align-items: center;
    line-height: 1.7;
    color: #fff;
}

.contact-section .contact-box .contact-info ul li i {
    color: #fff;
    border-radius: 50px;
    background: #f5821f;
    width: 40px;
    height: 40px;
    position: absolute;
    text-align: center;
    box-shadow: none;
    margin-right: 20px;
    line-height: 40px;
    left: 0px;
}

.contact-section .contact-box .contact-info ul li p {
    color: #000 !important;
    font-size: 15px;
    margin: 0 !important;
    font-weight: 600;
}

.contact-section .contact-box .contact-info ul li span {
    display: block;
    font-weight: 600;
    color: #205e66;
}

.contact-section .contact-box .contact-info ul li a {
    color: #000;
    font-weight: 600;
    font-size: 15px;
}

.contact-section .contact-box .contact-info h4 {
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 600;
}

form fieldset .radio {
    margin-top: 10px;
    position: relative;
}

form fieldset .radio li {
    margin: 0 10px;
}

.contact-form input[type="radio"] {
    width: auto;
    margin-bottom: 0;
}

form fieldset .radio li label {
    width: auto;
}

/* -----------------
Footer Section
--------------------*/
footer {
    background: #205e66;
    padding: 90px 0;
}

footer .widget h2 {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    margin-right: 15px;
    padding-bottom: 15px;
    position: relative;
}

footer .widget h2::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0px;
    background-color: #ffffff40;
    width: 100%;
    height: 1px;
}

footer .widget h2::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    background-color: #a6cc3b;
    width: 130px;
    height: 3px;
    z-index: 9;
}

footer .widget p {
    color: #fff;
    margin: 0;
}

footer .widget-about p {
    text-align: justify;
    font-weight: 400;
}

footer .widget-links .nav-links ul {
    padding: 0;
    list-style-type: none;
}

footer .widget-links .nav-links ul li {
    margin-bottom: 0;
}

footer .widget-links .nav-links ul li a {
    color: #fff;
    font-size: 16px;
    padding: 3px 0;
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: 0.3s ease;
    border-bottom: 1px solid #ffffff17;
}

footer .widget-links .nav-links ul li a:before {
    content: "\f105";
    font-family: "FontAwesome";
    padding-right: 10px;
    color: #fff;
    font-size: 13px;
}

footer .widget-links .nav-links ul li a:hover {
    color: #a6cc3b;
    background-color: transparent;
}

footer .widget-contact .contact-info ul {
    padding: 0;
}

footer .widget-contact .contact-info ul li:first-child {
    align-items: flex-start;
}

footer .widget-contact .contact-info ul li {
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    padding-bottom: 10px;
    padding-left: 55px;
}

footer .widget-contact .contact-info ul li i {
    position: absolute;
    left: 0;
    width: 35px;
    height: 35px;
    font-size: 16px;
    color: #205e66;
    margin-right: 20px;
    text-align: center;
    border-radius: 60px;
    line-height: 36px;
    background: #a6cc3b;
}

footer .widget-contact .contact-info ul li p {
    display: grid;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
}

footer .widget-contact .contact-info ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

footer .widget-contact .contact-info ul li a.email {
    margin-top: 10px;
}

/* footer .widget-contact .contact-info h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Ubuntu', sans-serif;
} */

/* ----------------------
Footer Bottom Section
------------------------*/
.footer-bottom {
    background: #153e44;
    padding: 20px 0;
    /* border-top: 1px solid #ffffff2e; */
}

.footer-bottom p,
.footer-bottom p a {
    margin: 0;
    color: #fff;
    font-size: 15px;
}

.footer-bottom .copyrights {
    float: left;
}

.footer-bottom .design {
    float: right;
}

.social-icons {
    margin-top: 10px;
}

.social-icons li {
    display: inline-block;
    margin: 0 10px;
}

.social-icons li a {
    width: 30px;
    height: 30px;
    display: block;
    background-color: #f7b444;
    text-align: center;
    line-height: 35px;
}

.social-icons li a i {
    color: #0c487f;
    font-size: 18px;
}

/* ----------------------
Go To Top
------------------------*/
#go-to-top {
    display: inline-block;
    background-color: #a6cc3b;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50px;
    position: fixed;
    bottom: 70px;
    right: 60px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 0 15px 2px #00000029;
}

#go-to-top::after {
    content: "\f106";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 47px;
    color: #205e66;
}

#go-to-top:hover {
    cursor: pointer;
    background-color: #fff;
}

#go-to-top:active {
    background-color: #fff;
}

#go-to-top:hover::after,
#go-to-top:active::after {
    color: #205e66;
}

#go-to-top.show {
    opacity: 1;
    visibility: visible;
}

.whatsapp-name {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 0;
    margin-bottom: 0;
    line-height: 0.5;
    color: #fff;
}

#whatsapp-chat {
    box-sizing: border-box !important;
    outline: none !important;
    position: fixed;
    width: 380px;
    border-radius: 10px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
    bottom: 140px;
    right: 130px;
    overflow: hidden;
    z-index: 99;
    animation-name: showchat;
    animation-duration: 1s;
    transform: scale(1);
    display: none;
}

a.blantershow-chat {
    background: #189d0e;
    color: #fff;
    position: fixed;
    display: flex;
    font-weight: 600;
    text-transform: uppercase;
    justify-content: space-between;
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    bottom: 70px;
    right: 130px;
    font-size: 15px;
    padding: 16px 30px;
    border-radius: 30px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
    display: none;
}

a.blantershow-chat.show {
    opacity: 1;
    visibility: visible;
}

.blantershow-chat i {
    font-size: 36px;
    line-height: 20px;
    padding-right: 10px;
}

a.blantershow-chat svg {
    transform: scale(1.2);
    margin: 0 10px 0 0;
}

.header-chat {
    /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
    background: #009688;
    background: #095e54;
    color: #fff;
    padding: 20px;
}

.header-chat h3 {
    margin: 0 0 10px;
}

.header-chat p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    padding-left: 10px;
}

.header-chat .head-home {
    display: flex;
    align-items: center;
}

.info-avatar {
    position: relative;
}

.info-avatar img {
    border-radius: 100%;
    width: 50px;
    float: left;
    margin: 0 10px 0 0;
    background-color: #fff;
    padding: 5px;
}

a.informasi {
    padding: 20px;
    display: block;
    overflow: hidden;
    animation-name: showhide;
    animation-duration: 0.5s;
}

a.informasi:hover {
    background: #f1f1f1;
}

.info-chat span {
    display: block;
}

#get-label,
span.chat-label {
    font-size: 12px;
    color: #888;
}

#get-nama,
span.chat-nama {
    margin: 5px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

#get-label,
#get-nama {
    color: #fff;
}

span.my-number {
    display: none;
}

.blanter-msg {
    color: #444;
    padding: 20px;
    font-size: 14px;
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #ddd;
}

.blanter-msg a {
    background-color: #189d0e;
    color: #fff;
    width: 100%;
    padding: 10px 30px;
    border-radius: 60px;
    font-size: 15px;
}

.blanter-msg a i {
    font-size: 16px;
}

textarea#chat-input {
    border: none;
    font-family: "Arial", sans-serif;
    width: 100%;
    height: 20px;
    outline: none;
    resize: none;
    padding: 10px;
    font-size: 14px;
}

a#send-it {
    width: 30px;
    font-weight: 700;
    padding: 10px 10px 0;
    background: #eee;
    border-radius: 10px;
}

a#send-it svg {
    fill: #a6a6a6;
    height: 24px;
    width: 24px;
}

.first-msg {
    background: transparent;
    padding: 30px;
    text-align: center;
}

.first-msg span {
    background: #e2e2e2;
    color: #333;
    font-size: 14.2px;
    line-height: 1.7;
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-block;
}

.start-chat .blanter-msg {
    display: flex;
    justify-content: center;
}

#get-number {
    display: none;
}

a.close-chat {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #fff;
    font-size: 30px;
}

@keyframes ZpjSY {
    0% {
        background-color: #b6b5ba;
    }

    15% {
        background-color: #111111;
    }

    25% {
        background-color: #b6b5ba;
    }
}

@keyframes hPhMsj {
    15% {
        background-color: #b6b5ba;
    }

    25% {
        background-color: #111111;
    }

    35% {
        background-color: #b6b5ba;
    }
}

@keyframes iUMejp {
    25% {
        background-color: #b6b5ba;
    }

    35% {
        background-color: #111111;
    }

    45% {
        background-color: #b6b5ba;
    }
}

@keyframes showhide {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
}

@keyframes showchat {
    from {
        transform: scale(0);
        opacity: 0;
    }
}

@media screen and (max-width: 480px) {
    #whatsapp-chat {
        width: auto;
        left: 5%;
        right: 5%;
        font-size: 80%;
    }
}

.whatsapp-hide {
    display: none;
    animation-name: showhide;
    animation-duration: 0.5s;
    transform: scale(1);
    opacity: 1;
}

.whatsapp-show {
    display: block;
    animation-name: showhide;
    animation-duration: 0.5s;
    transform: scale(1);
    opacity: 1;
}

.whatsapp-message-container {
    display: flex;
    z-index: 1;
}

.whatsapp-message {
    padding: 7px 14px 6px;
    background-color: white;
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
}

.whatsapp-chat-body {
    padding: 20px 20px 20px 10px;
    background-color: #e6ddd4;
    position: relative;
}

.whatsapp-chat-body::before {
    display: block;
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;
    opacity: 0.08;
    background-image: url("../images/whatsapp-pattern.png");
}

.dAbFpq {
    display: flex;
    z-index: 1;
}

.eJJEeC {
    background-color: white;
    width: 52.5px;
    height: 32px;
    border-radius: 16px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    margin-left: 10px;
    opacity: 0;
    transition: all 0.1s ease 0s;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}

.hFENyl {
    position: relative;
    display: flex;
}

.ixsrax {
    height: 5px;
    width: 5px;
    margin: 0px 2px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    background-color: #9e9da2;
    animation-name: ZpjSY;
}

.dRvxoz {
    height: 5px;
    width: 5px;
    margin: 0px 2px;
    background-color: #b6b5ba;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    animation-name: hPhMsj;
}

.kAZgZq {
    padding: 7px 14px 6px;
    background-color: white;
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
}

.kAZgZq::before {
    position: absolute;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    top: 0px;
    left: -12px;
    width: 12px;
    height: 19px;
}

.bMIBDo {
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.4);
}

.iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: #111111;
}

.iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: #111111;
}

.cqCDVm {
    text-align: right;
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
    color: rgba(17, 17, 17, 0.5);
    margin-right: -8px;
    margin-bottom: -4px;
}

.captcha-img {
    display: flex;
}

.captcha-img img {
    width: 200px;
}

#captcha_reload i {
    color: #000000;
    font-size: 22px;
    line-height: 40px;
    padding-left: 10px;
}

#captcha-field {
    margin: 0;
}

#captcha-error {
    text-align: center;
}

#captcha-error p {
    margin: 0;
}

#captcha_reload i {
    color: #000;
    font-size: 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

#captcha-field {
    margin-top: 0px;
}

#captcha_image {
    width: 80%;
    height: 100%;
    margin: 0 0px 0 0;
    text-align: center;
}

#success_message {
    text-align: center;
    background-color: #dff2d5;
    padding: 5px 10px;
    border: 1px solid #399d04;
    margin-top: 20px;
}

#success_message h3 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.help-block.error,
#file-error p {
    color: #f00;
    font-size: 14px;
}

#employment_type-error {
    position: absolute;
    top: 100%;
}

#error_message {
    text-align: center;
    background-color: #f2d5d5;
    padding: 5px 10px;
    border: 1px solid #9d0404;
    margin-top: 20px;
}

#error_message h3 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}







@media screen and (max-width: 1366px) {
    .section-heading h2 {
        font-size: 38px;
    }
    .products-section .item .content h2 {
        font-size: 22px;
    }
}



@media screen and (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }
    .navbar-nav {
        padding-top: 50px;
    }
    .navbar-nav li .nav-link.active:after {
        opacity: 0;
    }
    .navbar-nav li .nav-link {
        padding: 15px 0;
    }
    .welcome-section .content {
        margin-left: 0 !important;
    }
    .products-section .owl-nav {
        text-align: center;
        margin-top: 50px;
    }
    .products-section .owl-nav button {
        position: unset;
    }
    footer .widget {
        margin-bottom: 40px;
    }
    .footer-bottom .copyrights,
    .footer-bottom .design {
        float: none;
    }
    .footer-bottom p {
        text-align: center;
        margin-bottom: 5px;
    }
}



@media screen and (max-width: 767px) {
    .products-section .item {
        border-radius: 280px;
    }
    .products-section .item .img-box {
        border-radius: 300px;
    }
    .products-section .item .img-box img {
        border-radius: 620px;
    }
    .products-section .item .content h2 {
        font-size: 25px;
    }
}

@media screen and (max-width: 425px) {
    .navbar-brand img {
        width: 180px;
    }
}
@media screen and (max-width: 375px) {
    .top-bar {
        display: none;
    }
    
}
