@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Open+Sans:wght@400;600&family=Oswald:wght@400;500;600&display=swap');

:root {
    --gradient-primary: linear-gradient(180deg, #62bc11 0%, #408501 100%);
}

body {
    font-family: 'Open Sans', 'Oswald', 'Lato', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.logo {
    height: 60px;
    width: 237px;
}

.left-col {
    max-width: 360px;];
}

.right-col {
    max-width: 720px;];
}

.ins-left-col {
    max-width: 750px;
}

.ins-right-col {
    max-width: 460px;
}

.font-weight-bold {
    font-weight: bold;
}

.form-control {
    line-height: 2.2em;
}

.form-control::placeholder {
    color: #CCCCCC;
}

.form-control::-ms-input-placeholder {
    color: #CCCCCC;
}


.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 10px 25px;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
    color: white;
}

.section-footer {
  width: 80%;
  margin: 0 auto;
  padding: 2rem 0;
}

.section-container {
    width: 80%;
    margin: 0 auto;
    padding: 2rem 0;
}

.divider-line {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 2rem auto;
}

.social-icons {
    display: inline-flex;
    padding-top: 1em;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    margin: 0 10px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
    color: white;
}

.form-check-input:checked {
    background-color: #62bc11;
    border-color: #408501;
}

.follow-us-section {
    position: relative;
}

.follow-us-title {
    display: inline-block;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.checkmark-text {
    display: flex;
    align-items: top;
    gap: 10px;
    margin: 1rem 0;
}

.info-box {
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    margin: 10px 0;
    border-radius: 8px;
    height: calc(50% - 10px);
    transition: transform 0.3s ease;
    max-width: 350px;
    cursor: pointer;
}

h4 {
    font-size: 1.4em;
    font-weight: 400;
}

.checkmark-linked-text {
    font-size: 1.2em;
}

.info-box:hover {
    transform: translateY(-5px);
    background-color: #FAFAFA;
    opacity: 0.9;
}

.info-image {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.image-container {
    position: relative;
    overflow: visible;
    border-radius: 8px;
    padding: 20px;
}

.image-container::before,
.image-container::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: -1;
}

.image-container::before {
    top: 0;
    right: 0;
    background-image: radial-gradient(circle, #62bc11 4px, transparent 2.5px),
    radial-gradient(circle, #62bc11 4px, transparent 2.5px);
    background-size: 20px 20px;
    background-position: -20px 20px, 0 0;
    transform: translate(20px, -20px);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.image-container::after {
    top: 0;
    right: 0;
    background-image: radial-gradient(circle, #408501 4px, transparent 2.5px),
    radial-gradient(circle, #408501 4px, transparent 2.5px);
    background-size: 20px 20px;
    background-position: 0 0, 20px -20px;
    transform: translate(20px, -20px);
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.image-container:hover::before,
.image-container:hover::after {
    opacity: 0.6;
}

.hover-zoom {
    transition: transform 0.5s ease;
    border-radius: 8px;
    display: block;
    position: relative;
    z-index: 1;
}

.image-container:hover .hover-zoom {
    transform: scale(1.02);
}

.form-check-label {
    font-size: 0.9em;
    color: #575757;
}

.lead-input {
    width: 85%;
    margin: 0 auto;
}

.lead-input > input {
    height: 40px;
    line-height: 2.2em;
}

.footer-link:link, .footer-link:visited, .footer-link:active {
    color: #FFFFFF;
    padding: 0 0.5em 0 0.5em;
    text-decoration: none;
}
.footer-link:hover {
    color: #EEEEEE;
    text-decoration: none;
}

.two-cols {
    display: flex;
}

.navbar-nav {
    font-size: 1.2em;
}


@media (max-width: 1024px) {
    .two-cols {
        display: flow;
    }
    .info-box {
        max-width: 100%;
        height: auto;
        margin: 1rem 0;
    }

}

@media (max-width: 768px) {
    .logo {
        width: 170px;
        height: auto;
    }

    .h-title{
        padding-top: 60px;
    }

    .left-col {
        max-width: 100%;
        text-align: center;
    }

    .right-col {
        max-width: 100%;
        display: flex;
    }

    .ins-left-col {
        max-width: 100%;
        text-align: center;
    }

    .ins-right-col {
        max-width: 100%;
    }

    .section-container {
        width: 100%;
        margin: 0 auto;
        padding: 2rem 2em 0 2em;
    }

    .fix-nav .section-container{
      padding: 10px 10px;
    }

    .fix-nav{
        position: fixed;
        top: 0px;
        z-index: 999999;
        width: 100%;
    }
    .navbar-collapse {
        width: 220px;
        height: 100vh;
        position: absolute;
        left: -188px;
        z-index: 999999999;
        top: 40px;
        background-color: rgb(33, 37, 41);
        padding: 30px;
        transition: linearall .3s;
    }
    .navbar-collapse {
        opacity: 0.95;
    }
    .navbar-toggler {
        margin:0;
        padding: 1em 1em 0 0;
    }
    .navbar-toggler:focus, .navbar-toggler:active {
        outline: none !important;
        box-shadow: none !important;
        border: none !important;
    }
    .navbar-toggler-icon {
        background-image: url('data:image/svg+xml;charset=UTF8,<svg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path stroke="%2362bc11" stroke-width="3" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/></svg>');
        background-size: contain;
        width: 32px;
        height: 32px;
    }

}

@media (max-width: 568px) {
    .info-box {
        max-width: 100%;
        height: auto;
        margin: 1rem 0;
    }

}

@media (max-width: 672px) {
    .right-col, .two-cols {
        display: flow;
    }
}
