﻿/* ===================================
    Crafto - Green energy 
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
/* variable */
:root {
    --alt-font: "Inter", sans-serif;
    --primary-font: "Inter", sans-serif;
    --base-color: #ffcb1f;
    --green: #195828;
    --dark-gray: #1f2220;
    --medium-gray: #828282;
    --very-light-gray: #f7f7f7;
}
body {
    font-size: 17px;
    line-height: 30px;
    color: #4d4d4d;
}
/* header */
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu {
    width: 300px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 600;
}
    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a:hover,
    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li.active:hover > a {
        background-color: #1f2d50;
        color: var(--white);
        padding-left: 30px;
    }
.navbar .navbar-nav .dropdown .dropdown-menu a i,
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a i {
    font-size: 40px;
    margin-right: 10px;
    width: 40px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a:hover i {
    color: var(--white);
}
header .navbar-brand img {
    max-height: 60px;
}
.navbar .navbar-nav .nav-link {
    font-weight: 600;
    font-size: 15px;
}
/* button */
.btn {
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0px;
}
.btn.btn-switch-text.btn-extra-large > span {
    padding: 8px 30px;
    font-size: 17px; 
}
.btn.btn-switch-text.btn-large > span {
    padding: 13px 32px;
    font-size:15px;
}
.btn.btn-switch-text.btn-medium > span {
    padding: 12px 26px;
    font-size:14px;
}
/* heading */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 25px;
}
/* Text gradient color */
.text-gradient-light-green-white {
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%,  #ebf6ee 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Background color */
.bg-light-green {
    background-color: #c4e7cc;
}
.bg-dark-blue {
    background-color: #124a8e;
}
.bg-dark-yellow {
    background-color: #ffcb1f;
}
.text-blue {
    color: #124a8e;
}
.bg-very-light-green {
    background-color: #ebf3ed;
}

/* Transparent background color */
.bg-gradient-green-transparent {
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%,  #ebf3ed 100%);
}

.right-210px {
  right: 210px;
}

/* page title */
.page-title-large h1 {
    font-size: 4.2rem;
    line-height: 4rem;
}
.page-title-large h2 {
    font-size: 18px;
}

/* Border color */
.border-color-dark-green {
    border-color: var(--green);
}
/* Subcribe style 02 */
.newsletter-style-02 .btn:hover {
    background-color: var(--green);
}
.newsletter-style-02 .btn {
    height: 85%;
    margin: 4px;
    padding: 5px 20px 5px;
}
.newsletter-style-02 input {
    padding-right: 75px !important;
}

/* Will change */
.animation-rotation {
    -webkit-animation: rotation 2.5s infinite linear;
}
/* footer */
footer .footer-logo img {
    max-height: 43px;
    width: auto;
}
footer a:hover {
    color: var(--white);
}
footer ul li {
    margin-bottom: 1px;
    font-size: 16px;
}
@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1320px;
    }
}
@media (max-width: 1600px) {
    /* Font size */
    .fs-80 {
        font-size: 4rem;
        line-height: 4rem;
    }
}
@media (max-width: 1199px){
    .navbar .navbar-nav .nav-link {
        font-size: 16px;
        padding: 10px 10px;
    }
}
@media (max-width: 991px){
    /* Background image */
    .md-background-position-top-center {
        background-position: top center !important;
    } 
    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu {
        padding-bottom: 15px;
    }
}
@media (max-width: 767px){
    /* Background image */
    .sm-background-position-top-center {
        background-position: top center !important;
    }
}


.bg-gradient {
    background: linear-gradient(90deg, #2c6fb2 0%, #5aa69c 50%, #caa23a 100%) !important;
    border-radius: 100px;
    padding: 18px 40px;
    display: inline-block;
    color: #ffffff;
    width: fit-content;

}

.icon-row {
    display: flex;
    flex-wrap: wrap;
}

.icon-box {
    position: relative;
    flex: 1;
    text-align: center;
    padding: 20px 20px;
    transition: all 0.3s ease;
    border-left: 1px solid #dcdcdc;
}

    .icon-box:first-child {
        border-left: none;
    }

.icon-img {
    width: 80%;
    transition: all 0.4s ease;
    filter: grayscale(100%);
}

.icon-box:hover {
    background: #e9eef5;
    border-radius: 10px;
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-left-color: transparent;
}

    .icon-box:hover + .icon-box {
        border-left-color: transparent;
    }

    .icon-box:hover .icon-img {
        filter: grayscale(0%);
        transform: scale(1.08);
    }

.icon-box.active {
    background: #e9eef5;
    border-radius: 10px;
}

    .icon-box.active .icon-img {
        filter: grayscale(0%);
    }

.hero-video {
    display: flex;
}

.video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover mode */
}
.row.g-0 {
    align-items: stretch;
}
.hero-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
}
.bg-light-blue {
    background: #e7edf4;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

    .social-icons li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border: 1px solid #ffffff;
        color: #ffffff;
        font-size: 18px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .social-icons li a:hover {
            background-color: #ffffff;
            color: #000000;
        }


.read-more-line {
    position: relative;
    font-weight: 600;
    color: #124a8e;
    text-decoration: none;
}

    .read-more-line:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0;
        height: 2px;
        background: #124a8e;
        transition: .3s;
    }

    .read-more-line:hover:after {
        width: 100%;
    }

 
@media (max-width: 500px) {

    .text-sm-center {
        text-align: center !important;
    }

    .col-custom {
        width: 50% !important;
        padding: 10px;
    }

    .icon-box {
        flex: auto !important;
    }
    .line-height-1{
        line-height:20px;
    }
}
