/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header / .header-con
4. Banner / .banner-con
5. Card / .card-con
6. Services / .services-con
7. Form / .form-con
8. Generic Box / .generic-con 
9. Testimonial / .testimonial-section
10. Help / .help-con
11. Faq / .faq-con
12. Blog  / .blog-con
13. Map  / .map-con
14. social Media  / .social-media-post
15. Footer / .footer-con
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
# [Color codes]

# --primary--color: #000;
# --secondary--color: #197f7c;
# --text-color: #6e7478;
# --accent-color:#fa6725;
# --white-color: #fff;
# --grey-color: #f5f5f5;
/*------------------------------------------------------------------
[Typography]
Body copy:     'Inter', sans-serif;
-------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
a,
button
input{
	outline: none;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
body{
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}
:root{
    --primary--color: #000;
    --secondary--color: #197f7c;
    --text-color: #6e7478;
    --accent-color:#fa6725;
    --white-color: #fff;
    --grey-color: #f5f5f5;
}
h1{
    font-size: 72px;
    font-weight: 800;
    line-height: 73px;
    font-family: "Plus Jakarta Sans", sans-serif
}
h2{
    font-size: 50px;
    font-weight: 800;
    line-height: 60px;
    font-family: "Plus Jakarta Sans", sans-serif
}
h3{
    font-size: 24px;
    font-weight: 800;
    line-height: 26px;
    font-family: "Plus Jakarta Sans", sans-serif
}
h4{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    font-family: "Plus Jakarta Sans", sans-serif
}
h5{
    font-size: 18px;
}
h6{
    font-size: 16px;
}
p{
    font-size: 18px;
}
.generic-btn a {
    font-size: 18px;
    line-height: 18px;
    display: inline-block;
    border-radius: 0 30px;
    text-decoration: none;
    padding: 20px 45px 20px 46px;
    transition: all 0.6s ease-in-out;
}
.generic-btn a:hover,
.submit-btn button:hover{
    border-radius: 30px 0;
}
.generic-btn a i{
    font-size: 14px;
}
.orange-btn a{
    color: var(--white-color);
    background: var(--accent-color);
}
.green-btn a{
    color: var(--white-color);
    background: var(--secondary--color);
}
.green-btn a:hover{
    background: var(--accent-color);
}
.padding-bottom {
    padding-bottom: 140px;
}
.padding-top {
    padding-top: 140px;
}
.generic-title h2{
    margin-bottom:18px;
    color: var(--primary--color);
}
.generic-title > span{
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 76px;
    color: var(--accent-color);
}
.orange-btn a:hover,
.submit-btn button:hover{
    background: var(--secondary--color);
}
/* HEADER SECTION */
.header-btn {
    gap: 10px;
    display: flex;
}
.header-con .navbar-expand-lg .navbar-nav{
    gap: 52px;
    margin-right: 28px;
}
.header-con .navbar-light .navbar-nav .nav-link{
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    color: var(--primary--color);
}
.header-con .navbar-light .navbar-nav .nav-link:hover{
    color: var(--accent-color);
}
.support-btn a:hover {
    border-radius: 20px 0;
    background: var(--secondary--color);
}
.message-btn a i{
    width: 48px;
    height: 48px;
    display: flex;
    font-size: 16px;
    line-height: 16px;
    align-items: center;
    border-radius: 0 10px;
    justify-content: center;
    color: var(--white-color);
    background: var(--secondary--color);
    transition: all 0.4s ease-in-out;
}
.message-btn a i:hover{
    border-radius: 10px 0;
    background: var(--accent-color);
}
.message-btn a{
    text-decoration: none;
}
.support-btn a{
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    display: inline-block;
    border-radius: 0 20px;
    text-decoration: none;
    padding: 14px 25px 18px;
    color: var(--white-color);
    background: var(--accent-color);
}
.support-btn a i{
    font-size: 14px;
}
.header-con {
    top: 20px;
    z-index: 999;
    padding: 6px 0 5px;
    position: absolute;
    background: var(--white-color);
}
/* HEADER SECTION */
/* BANNER SECTION */
.banner-con{
    position: relative;
    padding:283px 0 273px;
    background: url(../images/banner-img.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    clip-path: polygon(100% 0, 100% 79%, 28% 100%, 0 77%, 0 0);

}
.banner-con:after {
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 100%;
    position: absolute;
    background: rgb(0 0 0 / 50%);
}
.banner-con .container{
    z-index: 1;
    position: relative;
}
.banner-title *{
    color: var(--white-color);
}
.banner-title h1 {
    margin-bottom: 26px;
    text-transform: uppercase;
}
.banner-title span{
    font-size: 20px;
    line-height: 30px;
    padding: 0 120px;
    margin-bottom: 32px;
}
.top-to-bottom-banner-btn a {
    gap: 7px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 10px 15px;
    position: absolute;
    left: 28%;
    transform: translateX(-28%);
    top: -50px;
    z-index: 3;
    text-decoration: none;
    transition: .3s ease-in-out;
    background: var(--white-color);
    box-shadow: 0 0 100px rgb(0 0 0 / 30%);
}
.top-to-bottom-banner-btn a:hover{
    background: var(--accent-color);
}
.top-to-bottom-banner-btn a:hover i,
.top-to-bottom-banner-btn a:hover span
{
    color: var(--white-color);
}
.top-to-bottom-banner-btn a i{
    color: var(--accent-color);
}
.top-to-bottom-banner-btn a span{
    font-size: 12px;
    line-height: 14px;
    color: var(--primary--color);
}
.service-con{
    position: relative;
}
/* BANNER SECTION */
/* BACK TO TOP BUTTON */
#back-to-top-btn:focus{
    outline: none;
}
#back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 60px;
    z-index: 99;
    font-size: 18px;
    border: none;
    background-color: var(--accent-color);
    color: white;
    cursor: pointer;
    border-radius: 0 20px;
    width: 80px;
    height: 80px;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
}
#back-to-top-btn::after {    
    font-size: 18px;
    font-weight: 600;
    content: "\f062";
    line-height: 50px;
    color: var(--white-color);
    font-family: "Font Awesome 5 free";
}
@-webkit-keyframes spineer {
    from {
     box-shadow: 0 0 0 0 rgba(250, 103, 37, .99)
    }
     to {
      box-shadow: 0 0 0 45px rgba(250, 103, 37, .01)
     }
    }    
    @keyframes spineer {
    from {
     box-shadow: 0 0 0 0 rgba(250, 103, 37, .99)
    }
    to {
     box-shadow: 0 0 0 45px rgba(250, 103, 37, .01)
    }
}
/* BACK TO TOP BUTTON */
/* LOADER SECTION */
.loader-mask {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    z-index: 99999;
    background-color: var;
}
.loader {
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    position: absolute;
    text-indent: -9999em;
    display: inline-block;
    margin: -25px 0 0 -25px;
    color:var(--primary--color);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
.loader-mask {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    position: fixed;
    background-color: #fff;
}
.lead{
  font-size:13px;
}
.loader div {
    top: 0;
    left: 0;
    opacity: .5;
    float: none;
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    display: inline-block;
    background-color:var(--accent-color);
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}
.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* LOADER SECTION */
/* FOOTRE SECTION  */
.footer-con {
    padding: 120px 0 98px;
    background: var(--grey-color);
}
.footer-box figure{
    margin-bottom: 32px;
}
.footer-box p{
    font-size: 16px;
    padding: 0 180px;
    line-height: 29px;
    margin-bottom: 21px;
}
.footer-social-icon ul{
    gap: 10px;
    display: flex;
    justify-content: center;
}
.footer-social-icon ul li a{
    display: inline-block;
    text-decoration: none;
}
.footer-social-icon ul li a i{
    width: 46px;
    height: 46px;
    display: flex;
    font-size: 16px;
    line-height: 16px;
    align-items: center;
    color: var(--text-color);
    justify-content: center;
    background: var(--white-color);
    transition: all 0.5s ease-in-out;
    box-shadow: 0 0 100px rgb(0 0 0 / 5%);
}
.footer-social-icon ul li a i:hover{
    background: var(--accent-color);
    transform: translateY(-8px);
    color: var(--white-color);
}
.footer-info ul *{
    color: var(--text-color);
}
.footer-info ul li {
    display: flex;
    align-items: center;
}
.footer-info ul {
    gap: 38px;
    display: flex;
    justify-content: center;
}
.footer-info ul li a{
    text-decoration: none;
}
.footer-info ul li a:hover{
    color: var(--accent-color);
}
.footer-info ul li i{
    padding-right: 10px;
    font-size: 16px;
    color: var(--accent-color);
}
.footer-info ul li{
    font-size: 16px;
}
.footer-info {
    padding: 22px 20px;
    margin-bottom: 30px;
    background: var(--white-color);
    box-shadow: 0 0 100px rgb(0 0 0 / 5%);
}
.footer-box {
    margin-bottom: 40px;
}
.copyright{
    font-size: 14px;
    line-height: 14px;
    color: var(--text-color);
}
/* FOOTRE SECTION  */
