﻿.btnscrolll
{
    border-radius:20px!important;
}

    .btnscrolll:hover {
        background: white !important;
        color: #223d44 !important;
        border-color: white!important
    }
    .btnscrolll:focus {
        background: white !important;
        color: #223d44 !important;
        border-color: white !important
    }

    .btnscrolll:active {
        background: white !important;
        color: #223d44 !important;
        border-color: white !important
    }

.btnsubb {
    background: white !important;
    color: #223d44 !important;
    border-color: #223d44 !important;
        border-radius:20px!important;
}
.btnsubb:hover {
    background: #223d44 !important;
    color: white !important;
    border-color: #223d44 !important;
    border-radius: 20px !important;
}
.bodyy {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, white, white);
}

    /* BIG BLOB 1 */
    .bodyy::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: #6f9c87;
        top: -100px;
        left: -100px;
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        animation: blobMove 12s infinite ease-in-out;
        opacity: 0.6;
    }

    /* BIG BLOB 2 */
    .bodyy::after {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: #6f9c87;
        bottom: -120px;
        right: -120px;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        animation: blobMove 15s infinite ease-in-out reverse;
        opacity: 0.5;
    }

    /* GLASS CARD */
    .bodyy .bg-light {
        position: relative;
        z-index: 2;
        background: rgba(255,255,255,0.92) !important;
        backdrop-filter: blur(15px);
        border-radius: 20px;
        box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    }

/* ANIMATION */
@keyframes blobMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 40px) scale(0.9);
    }
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    border: none;
    border-bottom: 2px solid #223d44;
    background: transparent;
    outline: none;
    width: 100%;
    text-transform: capitalize;
    padding: 1rem 0.4rem;
}

.aside {
    background: #2f5e4e;
    animation: animateClr 5s infinite cubic-bezier(0.62, 0.28, 0.23, 0.99);
    background-size: 400%;
}

@keyframes animateClr {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

ion-icon:not([name="logo-codepen"]) {
    border: 1px solid currentColor;
    border-radius: 20%;
    padding: 1rem 2rem;
    font-size:25px;
    margin-right:10px;
}
.ico span {
    font-size: 14px;
}
.social-icon2{
    width:4rem!important;
    height:4rem!important;
    color:white!important;
}
    .social-icon2:hover {
        background-color: white !important;
        border-color: white !important;
        color: #223d44 !important;
    }

input::placeholder,
textarea::placeholder {
    color: #223d44!important; /* your color */
    opacity: 1; /* makes it fully visible */
}

.hrefsocial{
    color:white;
}
    .hrefsocial:hover {
        color: #a7cebb!important;
    }

.divtwo1{
    border-radius:20px;
}
.divtwo2{
    border-radius:20px;
}

@media only screen and (max-width: 500px)  {
    .divtwo1 {
        border-radius: 0!important;
    }

    .divtwo2 {
        border-radius: 0!important;
    }
}

@media only screen and (min-width: 501px) and (max-width: 1000px) {
    .divtwo1 {
        border-radius: 0 !important;
    }

    .divtwo2 {
        border-radius: 0 !important;
    }
}