/* Default Style */

:root {
    --dark-color: #000;
    --white-color: #ffffff;
    --low-dark-color: rgba(0,0,0,0.1);
    --very-low-white-color: rgba(255,255,255,0.09);
    --low-white-color: rgba(255,255,255,0.1);
    --light-dark-color: rgba(0,0,0,0.3);
    --light-white-color: rgba(255,255,255,0.3);
    --medium-dark-color: rgba(0,0,0,0.5);
    --semi-dark-color: rgba(0,0,0,0.6);
    --medium-white-color: rgba(255,255,255,0.6);
    --orange-color: #FF4400;
    --gray-color: #8B8E96;
}

::selection {
    color: var(--white-color);
    background-color: var(--orange-color);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 400;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 700;
}
a{
    text-decoration: none;
    font-family: "Geist Mono", monospace;
}
ul{
    margin-bottom: 0;
}

body {
    background-image: linear-gradient(to right, #faf7f5, #fff, #faf6f5);
}

/* Header Section Style */

.menu-area{
    background-color: transparent;
    transition: all 0.34s ease-in-out;
}
.logo{
    padding: 32px 0;
    /* width: 25%; */
}
/* .t-bar{
    width: 75%;
} */
.logo img{
    width:180px;
}
.sidebar-toggle-icon{
    display: none;
    height: 24px;
    width: 24px;
    margin-left: auto;
    padding-top: 5px;
    cursor: pointer;
    margin-top: 35px;
}
.line {
    height: 3px;
    width: 100%;
    background-color: var(--white-color);
    margin-bottom: 4px;
}
.top-bars{
    transform: rotate(45deg);
    margin-top: 5px;
}
.middle-bars{
    opacity: 0;
}
.bottom-bars {
    transform: rotate(-45deg);
    margin-top: -14px;
}
.toggle-item li{
    display: inline-block;
    margin: 0 30px;
}
.toggle-item li:last-child{
    margin-right: 0;
}
.toggle-item li a{
    display: inline-block;
    padding: 10px 0;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s linear;
}
.toggle-item li a:hover{
    color: var(--orange-color);
}
.toggle-item li a.activa{
    color: var(--orange-color);
}
.toggle-item .r-btn a{
    display: inline-block;
    padding: 15px 40px;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 600;
    background-color: var(--white-color);
    border-radius: 0;
}
.toggle-item .r-btn a:hover{
    color: var(--white-color);
    background-color: var(--orange-color);
}

.menu-sticky {
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 99;
    background-color: var(--dark-color);
}

/* footer section  */

.footer{
    padding-top: 80px;
    background-color: var(--dark-color);
}
.footer-cta input {
    border-radius: 0;
    background-color: var(--medium-dark-color);
    padding: 24px;
    width: 100%;
    outline: none;
    font-size: 20px;
    color: var(--white-color);
    border: 1px solid var(--white-color);
}
.footer-cta input:focus {
    border-radius: 0;
}
.footer-cta input.submit {
    font-size: 20px;
    color: var(--white-color);
    transition: all 0.3s linear;
    font-family: "Geist Mono", monospace;
}
.footer-cta input.submit:hover {
    color: var(--white-color);
    background-color: var(--orange-color);
    border-color: var(--orange-color);
}
.footer-logo {
    background-color: var(--medium-dark-color);
    padding: 30px 16px;
    width: 100%;
    border-top: 1px solid var(--white-color);
    border-bottom: 1px solid var(--white-color);
    margin: auto;
}
.footer-link h4,
.footer-contact h4 {
    font-size: 22px;
    margin-bottom: 24px;
}
.footer-link h4{
    font-size: 22px;
}
.footer-menu ul li,
.footer-address ul li{
    line-height: 2;
    margin-bottom: 8px;
}
.footer-address .adds{
    font-size: 15px;
}
.footer-link ul li a,
.footer-address ul li a{
    display: inline-block;
    font-size: 15px;
    color: var(--white-color);
    font-weight: 500;
    position: relative;
    transition: all 0.3s linear;
}
.footer-link ul li a:hover,
.footer-address ul li a:hover{
    color: var(--orange-color);
}

.footer-address ul li i{
    margin-right: 5px;
}
.ftb-t {
    border-top: 1px solid var(--white-color);
}
.c-card img {
    width: 50px;
}
.footer-end p{
    font-size: 14px;
    margin-bottom: 0;
}

/* Responsive  */

@media all and (max-width: 1199px){
    .toggle-item li {
        margin: 0 20px;
    }
}
@media all and (max-width: 991px){
    .sidebar-toggle-icon{
        display: block;
        position: relative;
        z-index: 11;
    }
    .main-menu{
        height: 100%;
        position: fixed;
        right: -250px;
        top: 0;
        padding-top: 90px;
        width: 250px;
        z-index: 9;
        background-color: var(--dark-color);
        transition: all 0.3s linear;
    }
    .rightt{
        right: 0;
    }
    .toggle-item li{
        display: block;
        margin: 0;
    }
    .toggle-item li:last-child{
        margin-top: 15px;
    }
}
@media all and (max-width: 575px){
    .footer-cta a {
        font-size: 16px;
    }
}
