@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

p {
	margin: 0;
}

body {
	background: #ffffff;
	margin: 0;
}

div,
p,
span,
b,
strong {
	font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Inter", sans-serif;
	font-weight: 800;
}

ul,
li {
	list-style: none;
	padding: 0;
	margin: 0;
}

.primaryColor{
	color: #14B8A6;
	font-weight: 700;
}

/* Footer */

.container{
    /* margin: 0 auto;
    width: 1440px;
    max-width: 100%;
    padding: 0px 12px; */
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-section{
    padding: 80px 0 50px;
	background-color: #000000;
}

.footer-section .box{
    width: calc(100% / 4 - 20px);
    color: #9CA3AF;
}

.footer-section .logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-section .box .inner{
    padding: 20px;
}

.footer-section .box .text {
    font-size: 14px;
    color: #9CA3AF;
    font-weight: 400;
}

.footer-section .box h3{
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.footer-section .inner ul{
    list-style: none;
}

.footer-section .inner ul li{
    padding: 10px 0; 
}

.footer-section .inner li a{
    text-decoration: none;
    color:#9CA3AF ;
    font-size: 13px;
    font-weight: 400;
}

.footer-section .inner .contact-info{
    display: flex;
    gap: 15px;
    padding: 10px 0;
}

.contact-info .icon i{
    color: #14B8A6;
}

.footer-section .contact-info .info a{
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer-section .contact-info .info p {
    color: #9CA3AF;
    font-size: 13px;
    font-weight: 300;
    margin: 0;
    padding: 8px 0;
}

.footer-section .social {
    width: 100%;
    display: flex;
    gap: 20px;
    padding-left: 20px;
}

.footer-section .social .icons {
	border-radius: 50px;
    border: 1px solid #9CA3AF;
    color: #fff;
    font-size: 14px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
	transition: 0.5s ease;
}

.footer-section .social .icons:hover {
	background: #14B8A6;
    border: 1px solid #14B8A6;
}

.footer-section hr{
    width: 100%;
    border: 1px solid #9ca3af40;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
}

.footer-bottom .left p{
    font-size: 14px;
    font-weight: 400;
    color: #9CA3AF;
    margin: 0;
}

.footer-bottom .right ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.footer-bottom .footer-link{
    font-size: 14px;
    color: #9CA3AF;
    text-decoration: none;
}

.footer-section .inner a:hover{
    color:#14B8A6 ;
}

.footer-link:hover{
    color:#14B8A6 ;
}
a,
a:hover,
a:focus{
	text-decoration: none!important;
}

/* .social .icons:hover{
    color:#14B8A6 ;
} */

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
    .footer-section{
        padding: 60px 0 30px;
    }

    .footer-section .box {
        width: calc(100% / 2 - 20px);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer-bottom .right ul {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Mobile (≤ 576px) */
@media (max-width: 576px) {
    .footer-section {
        padding: 40px 0 30px;
    }

    .footer-section .box {
        width: 100%;
    }

    .footer-section .box h3{
        margin-bottom: 15px;
    }

    .footer-section .box .inner {
        padding: 10px;
    }

    .social {
        justify-content: center;
        padding-left: 0;
        margin-top: 20px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .right ul {
        flex-direction: column;
        gap: 10px;
    }
}


/* Header */
/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
}


/* ================= HEADER ================= */


/* TOP BAR */
header {
    background: #000000;
    padding: 15px 40px;
    position: relative;
}
.header-wrap{
    width:1440px;
    max-width:100%;
    margin:auto;
    padding:0 12px;
}

.header-wrap .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.header-wrap .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 13px;
}

.header-wrap .contact-info a {
    color: #8b949e;
    margin-right: 20px;
    text-decoration: none;
}
.header-wrap .contact-info a:hover{
    color:#14B8A6;
}

.header-wrap .contact-info i {
    color: #14B8A6;
    margin-right: 6px;
}

.header-wrap  .top-bar .social a {
    color: #8b949e;
    margin-left: 12px;
}

.header-wrap .top-bar .social a:hover {
    color: #14B8A6;
}

/* LOGO */
.header-wrap .logo img {
    width: 280px;
}

/* MENU */
.header-wrap .nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 25px;
}

.header-wrap .nav-menu li {
    position: relative;
}

.header-wrap .nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    transition: .3s;
    font-size: 15px;
}

.header-wrap .nav-menu a:hover {
    color: #14B8A6;
}

/* DROPDOWN */
.header-wrap .dropdown-menu {
    position: absolute;
    top: 45px;
    left: 0;
    min-width: 200px;
    background: #1f2937;
    list-style: none;
    border-radius: 5px;
    overflow: hidden;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
    display: block!important;
    pointer-events: none;
}

.header-wrap .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: unset;
}

.header-wrap.dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-wrap .dropdown-menu li:last-child {
    border-bottom: none;
}

.header-wrap .dropdown-menu a {
    padding: 12px 15px;
}

/* RIGHT SECTION */
.header-wrap .right-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-wrap .quote-btn {
    background: #14B8A6;
    color: #000000;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}

.header-wrap .quote-btn:hover{
    background:#fff;
    color:#14B8A6;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(20,184,166,0.35);
}

/* MENU TOGGLE */
.header-wrap .menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1200px){
    .header-wrap .navbar {
        gap: 30px;
    }
}
/* Tablet */
@media(max-width:992px){

    header {
        padding: 15px 20px;
    }

    .header-wrap .menu-toggle {
        display: block;
    }

    .header-wrap .nav-menu {
        position: absolute;
        top: 146px;
        left: 0;
        width: 100%;
        background: #111827;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
        z-index: 999;
    }

    .header-wrap  .nav-menu.active {
        display: flex;
    }

    .header-wrap .nav-menu li {
        width: 100%;
    }

    .header-wrap .nav-menu a {
        padding: 15px 20px;
    }

    /* MOBILE DROPDOWN */
    .header-wrap .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none!important;
        width: 100%;
        border-radius: 0;
    }

    .header-wrap .dropdown.active .dropdown-menu {
        display: block!important;
    }

    .header-wrap .right-section .quote-btn {
        display: none;
    }
}

/* Mobile */
@media(max-width:576px){
    .header-wrap .top-bar{
        display:none;
    }
        
    .header-wrap .nav-menu{
        top: 70px
    }
    .header-wrap .navbar {
        padding:  0;
    }   
}
    


@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 95%;
    }
	header .logo {
		width: 300px;
	}
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 90%;
    }
}



.description_box li {
    list-style: disc !important;
    margin-left: 18px;
}

.description_box ul {
    margin: 15px 0;
}
.description_box h3 {
    color: #14B8A6;
    margin: 25px 0 12px;
}

.description_box p{
    margin:5px 0;
}
.description_box table{
	width: 100%;
}
.description_box table, .description_box table tr td, .description_box table tr th {
    border: 1px solid #d8d8d8;
    text-align:center;
    font-size: 13px;
}

.description_box table tr th{
    padding : 4px 6px;
	font-weight: 600;
	width: 250px;
	background: #e6f7f5;
}

.description_box table tr td{
    font-size: 12px;
    padding : 5px 6px;
}

.description_box table{
    margin: 10px 0;
}

.stickyNode {
    position: sticky!important;
    top: 40px;
}

@media screen and (max-width: 576px){
	.description_box {
		overflow-x: scroll;
	}
}

.contactForm span, .contactForm span input, .contactForm span select, .contactForm span textarea{
    width: 100%;
    display: block;
}

.contactForm p{
    color: #4B5563;
    font-size:14px;
    margin-bottom:5px;
}

.contactForm span input, .contactForm span select, .contactForm span textarea{
    background: #F9FAFB;
    border:0;
    outline: none!important;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.13);
    margin-bottom: 20px
}

.contactForm span textarea{
    height: 150px
}


.contactForm input.wpcf7-submit{
    width: 100%;
    height:50px;
    text-transform: uppercase;
    border: 0px;
    background: #14b8a6;
    border: 1px solid #14b8a6;
    border-radius: 8px;
    transition: 0.5s ease;
}

.contactForm input.wpcf7-submit:hover{
    background: transparent;
}

@media screen and (max-width: 480px){
	.header-wrap .logo img {
		width: 240px;
	}
}