/* From Uiverse.io by OliverZeros */
.butty {
    all: unset;
}

.butty {
    position: relative;
    display: inline-flex;
    height: 3.5rem;
    align-items: center;
    border-radius: 9999px;
    padding-left: 2rem;
    padding-right: 2rem;
    font-family: Segoe UI;
    font-size: 1.2rem;
    font-weight: 640;
    color: #222;
    letter-spacing: -0.06em;
}

.butty-item {
    background-color: #2389ce;
    color: #fff;
}

.butty-item .button-bg {
    border-color: #0d103f;
    background-color: #0d103f;
}

.butty-inner,
.butty-inner-hover,
.butty-inner-static {
    pointer-events: none;
    display: block;
}

.butty-inner {
    position: relative;
}

.butty-inner-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(70%);
}

.butty-bg {
    overflow: hidden;
    border-radius: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.butty-bg,
.butty-bg-layer,
.butty-bg-layers {
    display: block;
}

.butty-bg-layers {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -60%;
    aspect-ratio: 1 / 1;
    width: max(200%, 10rem);
}

.butty-bg-layer {
    border-radius: 9999px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
}

.butty-bg-layer.-purple {
    background-color: #4FB2E5;
}

.butty-bg-layer.-turquoise {
    background-color: #7BC7DA;
}

.butty-bg-layer.-yellow {
    --tw-bg-opacity: 1;
    background-color: #2C85C5;
}

.butty:hover .butty-inner-static {
    opacity: 0;
    transform: translateY(-70%);
    transition:
        transform 1.4s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.3s linear;
}

.butty:hover .butty-inner-hover {
    opacity: 1;
    transform: translateY(0);
    transition:
        transform 1.4s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.butty:hover .butty-bg-layer {
    transition:
        transform 1.3s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.3s linear;
}

.butty:hover .butty-bg-layer-1 {
    transform: scale(1);
}

.butty:hover .butty-bg-layer-2 {
    transition-delay: 0.1s;
    transform: scale(1);
}

.butty:hover .butty-bg-layer-3 {
    transition-delay: 0.2s;
    transform: scale(1);
}

/* From Uiverse.io by satyamchaudharydev */
.buth {
    --primary-color: #163b4e;
    --secondary-color: #fff;
    --hover-color: #ffdd58;
    --arrow-width: 10px;
    --arrow-stroke: 2px;
    border: 3px solid #ffdd58;
    box-sizing: border-box;
    /*    border: 0;*/
    border-radius: 20px;
    color: var(--secondary-color);
    padding: 1em 1.8em;
    background: var(--primary-color);
    display: flex;
    transition: 0.2s background;
    align-items: center;
    gap: 0.6em;
    font-weight: bold;
}


.buth h4 {

    color: #fff;

}


.buth h4::before {

    color: #222;

}

.buth .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.buth .arrow {
    margin-top: 1px;
    width: var(--arrow-width);
    background: var(--primary-color);
    height: var(--arrow-stroke);
    position: relative;
    transition: 0.2s;
}

.buth .arrow::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: solid var(--secondary-color);
    border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
    display: inline-block;
    top: -3px;
    right: 3px;
    transition: 0.2s;
    padding: 3px;
    transform: rotate(-45deg);
}

.buth:hover {
    background-color: var(--hover-color);
}

.buth:hover .arrow {
    background: var(--secondary-color);
}

.buth:hover .arrow:before {
    right: 0;
}

/* From Uiverse.io by BHARGAVPATEL1244 */
.butt {
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0.9rem 2rem;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 17px;
    border-radius: 500px;
    overflow: hidden;
    background: #d9c895;
    color: #fff;
    border: 3px solid #d9c895;

    font-family: "proxima-nova", sans-serif;
    font-weight: 800;
    font-style: normal;
    /*
    font-family: "futura-pt-bold", sans-serif;
    font-weight: 700;
    font-style: normal;
*/
}

.butt span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
}

.butt:hover span {
    font-family: "proxima-nova", sans-serif;
    font-weight: 800;
    font-style: normal;
    /*
    font-family: "futura-pt-bold",
    sans-serif;
    font-weight: 700;
    font-style: normal;
*/
    color: #fff;
}

.butt::before,
.butt::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.butt::before {
    content: "";
    /*    border: 3px solid #cccccc;*/
    background: #a42b37;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.butt:hover::before {
    transform: translate3d(100%, 0, 0);
}

/* From Uiverse.io by vinodjangid07 */
.submitBtn {
    width: 145px;
    height: 40px;
    border-radius: 30px;
    border: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    color: white;
    background: linear-gradient(to left, rgb(35, 24, 59), rgb(117, 59, 189));
    letter-spacing: 0.7px;
}

.submitBtn:hover .arrow {
    animation: slide-in-left 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-10px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

.submitBtn:active {
    transform: scale(0.97);
}

.roof .workspace .element {
    align-self: center;
    justify-self: center;
}

.roof .workspace .element .element h1,
.roof .workspace .element .element h3,
.roof .workspace .element .element p {
    justify-self: center;
    text-align: center;
}

@media(max-width: 768px) {
    .roof .workspace .element {
        align-self: left;
        justify-self: left;
    }

    .roof .workspace .element .element h1,
    .roof .workspace .element .element h3,
    .roof .workspace .element .element p {
        justify-self: left;
        text-align: left;
    }
}

.colorback2 {
    padding: 30px 0px;
    background-color: #0B1B13;
    color: #fff;
    /*    border-bottom: 3px solid #cb7365;*/
}

.colorback2 p,
.colorback2 li,
.colorback a {
    color: #fff;
}

.colorback2 b {
    color: #636e5a;
}


.colorback2 h1 {
    color: #f3f1c4;
}

.colorback2 h3 {
    color: #f3f1c4;
}

.colorback heading {
    border-bottom: 1px solid #5d601d;

}

.colorback {
    padding: 80px 0px;
    background-color: #111;
    color: #222;
    /*    border-bottom: 3px solid #cb7365;*/
}

.colorback p,
.colorback li,

.colorback a {
    color: #fff;
}

.colorback b {
    color: #d0c2b6;
}


.colorback h3 {
    color: #c8aaef;
}

.colorback heading {
    border-bottom: 1px solid #5d601d;

}

hr {
    background: url("../img/logo.png") no-repeat top center;

    background-size: contain;
    display: block;
    height: 50px;
    border: 0;
    position: relative;
}

hr:before,
hr:after {
    content: '';
    display: block;
    position: absolute;
    background: #ffdd58;
    height: 1px;
    top: 22px;
}

hr:before {
    left: 0;
    right: 60%;
    margin-right: 10px;
    margin-left: 70px;
}

hr:after {
    right: 0;
    left: 60%;
    margin-left: 10px;
    margin-right: 70px;
}


.zoom {
    transition: transform .2s;
}

.zoom:hover {
    transform: scale(1.05);
}


.cardyc {

    border: 3px solid #ffdd58;
    padding: 32px;
    /*    border-radius: 5px;*/
    background-color: #163b4e;
    /*    box-shadow: 4px 5px 17px -4px #222;*/




}

.cardyc b {

    color: #fc9c35;
    text-align: center;
    justify-self: center;

}

.cardyc h1 {

    color: #ffdd58 !important;
    font-weight: 800;
    text-align: center;
    justify-self: center;

}

.cardyc p,
.cardyc li {

    color: #fff;
    text-align: center;
    justify-self: center;

}

@media (min-width: 1200px) {
    .cardyc {
        /*        height: 223px;*/
    }
}


.imageback {
    padding: 150px 0px;
    background-image: url("../img/imageback.jpg");
    /*    background-attachment: fixed;*/
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /*    color: white;*/
}


.imageback2 {
    padding: 120px 0px;
    background-image: url("../img/imageback2.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.imageback h1 {
    color: #753bbd;
}

.imageback h3 {
    color: white;
}

.imageback p{
    color: white;
}

.imageback b {
    color: #525645;
    font-weight: 900;
}

.bg-white {
    padding: 30px 30px;
    border-radius: 10px;
    background-color: #163b4ea5;
    border: 4px double #ffdd58;
    color: white;
}


.bg-white p,
.bg-white li {
    color: #fff;
}

.bg-white b {
    color: white;
    justify-items: center;
    align-self: center;
    font-weight: 900;

}


.bg-white h1 {
    color: #ffdd58;
}

.bg-white2 {
    padding: 15px;
    padding-top: 25px;
    background-color: rgba(255, 255, 255, 0.8);
}


.imglist {
    list-style-image: url("../img/bee.png");
}


/* From Uiverse.io by iZOXVL */
.boton-elegante {
    padding: 15px 30px;
    border: 2px solid #2c2c2c;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s ease;
    outline: none;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.boton-elegante::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.boton-elegante:hover::after {
    transform: scale(4);
}

.boton-elegante:hover {
    border-color: #227ae8;
    background: #333333;
}

/* From Uiverse.io by ferlagher */
.buttons {
    position: relative;
    font-size: 1.2em;
    padding: 18px 40px;
    background-color: #769199;
    text-decoration: none;
    border: none;
    border-radius: 0.5em;
    color: #f5f7ec;
    box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.3);
}

.buttons::before {
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #334A51 0%, #334A51 50%, #769199 50%, #769199 60%);
    border-radius: 0 0 0.5em 0;
    /*        border-radius: 0.5em;*/

    box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.buttons:hover::before {
    width: 1.6em;
    height: 1.6em;
}

.buttons:active {
    box-shadow: 0.2em 0.2em 0.3em rgba(0, 0, 0, 0.3);
    transform: translate(0.1em, 0.1em);
}

.imgicon {
    max-height: 40px;
    font-size: 40px;
}

.contactimgicon {
    max-height: 20px;
    grid-row: 1;
    border-right: solid 1px;
    padding-right: 12px;
    color: #d8cb9d;
}

/* Visor Hover Box */
/* OPEN ALCHEMY.CSS AND REMOVE COL-4 FROM LINE 174 (min-width:992px query) */

.visor {
    position: relative;
    width: 100%;
    /* usually 90, if no space then 100 */
    /* max-width: 400px; remove if using outside of page-content for full screen */
    background-color: #163b4e;
    /*    border: 3px solid #5eb4c1;*/
    border-radius: 5px;
    /* only if using outside of page-content */
    /*    overflow: hidden;*/
}

.visor .visor-overlay {
    background: #163b4ea5;
    /* Colour of text overlay */
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.visor:hover .visor-overlay {
    opacity: 1;
}

.visor-img {
    width: 100%;
    height: 100%;
}

.visor-contents {
    position: absolute;
    text-align: center;
    padding-left: 4em;
    padding-right: 4em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.visor-contents p,
.visor-contents h3 {
    padding: 20px;
    color: #fff;
    justify-self: center;
    align-self: center;
    text-align: center;
}

.visor:hover .visor-contents {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.visor-close {
    top: 20%;
}

.visor,
.visor:before,
.visor:after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* From Uiverse.io by reshades */
.butte {
    font-family: "brevia", sans-serif;
    font-weight: 800;
    font-style: italic;
    background-color: #ffffff00;
    color: #eeeeee;
    width: 160px;
    height: 2.9em;
    border: #b7b5b5 0.2em solid;
    border-radius: 11px;
    text-align: right;
    transition: all 0.6s ease;
}

.butte:hover {
    background-color: #b7b5b5;
    cursor: pointer;
}

.butte svg {
    width: 1.6em;
    margin: -0.2em 0.3em 1em;
    position: absolute;
    display: flex;
    transition: all 0.6s ease;
}

.butte:hover svg {
    transform: translateX(5px);
}

.text {
    margin: 0 1.5em
}

/* CSS Document */
.socials {
    display: grid;
    justify-content: center;
    align-items: center;
    height: 100px;
}

@media(max-width: 768px) {
    .social-list {
        display: block !important;
    }

    .socials {
        height: auto;
    }

    .socials p {
        margin-bottom: 15px;
    }
}

.social-list {
    position: relative;
    display: grid;
    gap: 25px;
    gap: 25px;
    text-align: -webkit-center;
}

.social-list p {
    background-color: #222831;
    position: relative;
    list-style: none;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    cursor: pointer;
    display: grid;
    justify-items: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    grid-row: 1;
}

.social-list p:hover {
    width: 180px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
}

.social-list p::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--i), var(--j));
    opacity: 0;
    transition: 0.5s;
}

.social-list p:hover::before {
    opacity: 1;
}

.social-list p::after {
    content: '';
    position: absolute;
    top: 10px;
    width: 100%;
    height: 100%;
    border-radius: 60px;
    background: linear-gradient(45deg, var(--i), var(--j));
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
    filter: blur(6px);
}

.social-list p:hover::after {
    opacity: 0.5;
}

.social-list p .icon {
    color: #fff;
    font-size: 1.75em !important;
    transition: 0.5s;
    transition-delay: 0.25s;
}

.social-list p:hover .icon {
    transform: scale(0);
    font-size: 1.75em;
    transition-delay: 0.25s;
}

.social-list p span {
    position: absolute;
}

.social-list p .social-name {
    color: #fff;
    font-size: 1.1em !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: scale(0);
    transition: 0.5s;
    transition-delay: 0s;
}

.social-list p:hover .social-name {
    transform: scale(1);
    transition-delay: 0.25s;
}


/* From Uiverse.io by JaydipPrajapati1910 */
.btn2 {
    width: 247px;
    height: 50px;
    border-radius: 5px;
    border: none;
    transition: all 0.5s ease-in-out;
    font-size: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    background: #227b89;
    color: #fff;
}

.btn2:hover {
    box-shadow: 0 0 20px 0px #2e2e2e3a;
}

.btn2 .icon {
    position: absolute;
    height: 40px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}

.btn2 .text {
    transform: translateX(35px);
}

.btn2:hover .icon {
    width: 240px;
}

.btn2:hover .text {
    transition: all 0.5s;
    opacity: 0;
}

.btn2:focus {
    outline: none;
}

.btn2:active .icon {
    transform: scale(0.85);
}


.buts1 {
    transition: all 0.3s ease-in-out;
    font-family: "Dosis", sans-serif;
}

.buts1 {
    width: 150px;
    height: 60px;
    border-radius: 50px;
    background-color: #1dc2ff;
    box-shadow: 0 20px 20px -6px #222;
    outline: none;
    cursor: pointer;
    border: none;
    font-size: 24px;
    color: white;
}

.buts1:hover {
    transform: translateY(3px);
    box-shadow: none;
}

.buts1:active {
    opacity: 0.5;
}

/* From Uiverse.io by VD232004 */
.cardee {
    /*
    width: 190px;
    height: 254px;
*/
    border-radius: 20px;
    background: #bad6d0;
    position: relative;
    padding: 1.8rem;
    border: 2px solid #58847b;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
    overflow: visible;
}

.cardee-details {
    color: rgb(162, 0, 255);
    height: 100%;
    gap: .5em;
    display: grid;
    place-content: center;
    /*    font-family: 'Courier New', Courier, monospace;*/
}

.cardee-button {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;

    text-decoration: none;
    text-align: center;
    -webkit-transform: translate(-50%, 125%);
    -ms-transform: translate(-50%, 125%);
    transform: translate(-50%, 125%);
    width: 70%;
    border-radius: 1rem;
    border: none;
    background-color: #58847b;
    color: #fff;
    font-size: 1rem;
    padding: .5rem 1rem;
    position: absolute;
    left: 50%;
    bottom: 0;
    opacity: 0;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    cursor: pointer;
    /*    font-family: 'Courier New', Courier, monospace;*/
}

.text-body {
    color: white;
}

/*Text*/
.text-title {
    font-family: "superior-title", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.5em;
    font-weight: bold;
    color: #58847b;
}

/*Hover*/
.cardee:hover {
    color: #fff;

    /*    border-color: #cb7365;*/
    -webkit-box-shadow: 10px 5px 18px 0 rgba(255, 255, 255, 0.877);
    box-shadow: 10px 5px 18px 0 rgba(255, 255, 255, 0.877);
}

.cardee:hover .cardee-button {
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    opacity: 1;
}


/* From Uiverse.io by MuhammadHasann */
.butts {
    position: relative;
    padding: 12px 35px;
    background: #593a4a;
    font-size: 17px;
    font-weight: 500;
    color: #222;
    border: 3px solid #593a4a;
    border-radius: 8px;


    font-family: "museo-sans-condensed",
        sans-serif;
    font-weight: 900;
    font-style: normal;

    box-shadow: 0 0 0 #593a4a;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.star-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
    position: absolute;
    top: 45%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
    position: absolute;
    top: 20%;
    left: 40%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
    position: absolute;
    top: 25%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
    position: absolute;
    top: 5%;
    left: 50%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 0.8s ease;
}

.butts:hover {
    background: transparent;
    color: #593a4a;
    font-family: "museo-sans-condensed", sans-serif;
    font-weight: 900;
    font-style: normal;
    box-shadow: 0 0 25px #593a4a;
}

.butts:hover .star-1 {
    position: absolute;
    top: -80%;
    left: -30%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.butts:hover .star-2 {
    position: absolute;
    top: -25%;
    left: 10%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.butts:hover .star-3 {
    position: absolute;
    top: 55%;
    left: 25%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.butts:hover .star-4 {
    position: absolute;
    top: 30%;
    left: 80%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.butts:hover .star-5 {
    position: absolute;
    top: 25%;
    left: 115%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.butts:hover .star-6 {
    position: absolute;
    top: 5%;
    left: 60%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.fil0 {
    fill: #fffdef;
}


/* From Uiverse.io by akshat-patel28 */
.card {
    display: flex;
    flex-direction: column;
    /*    width: 230px;*/
    /*    height: 280px;*/
    /*    max-height: 330px;*/
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0px 10px 12px rgba(0, 0, 0, 0.08),
        -4px -4px 12px rgba(0, 0, 0, 0.08);
    /*    overflow: hidden;*/
    transition: all 0.3s;
    cursor: pointer;
    box-sizing: border-box;
    padding: 20px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1),
        -4px -4px 12px rgba(0, 0, 0, 0.08);
}

.card-image-container {
    /*    width: 100%;*/
    /*    height: 64%;*/
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    /*    background-color: rgb(165, 165, 165);*/
    display: flex;
    align-items: center;
    justify-content: center;
    /*    padding: 30px;*/
}

.image-icon {
    font-size: 40px;
}

.card-title {
    padding: 10px 0px;
    margin: 0;
    font-size: 24px;
    font-family: "houschka-pro", sans-serif;
    font-weight: 900;
    font-style: normal;
    color: #17334e;
    cursor: default;
    -webkit-box-orient: vertical;
    /*    overflow: hidden;*/
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.card-des {
    padding: 10px 0px;
    -webkit-box-orient: vertical;
    /*    overflow: hidden;*/
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    margin: 0;
    font-size: 20px;
    /*
    font-family: "Lucida Sans",
    "Lucida Sans Regular",
    "Lucida Grande",
    "Lucida Sans Unicode",
    Geneva,
    Verdana,
    sans-serif;
*/
    color: #1a1859;
    cursor: default;
}




/* center the blockquote in the page */
.blockquote-wrapper {
    display: flex;
    padding: 0 20px;
}

/* Blockquote main style */
.blockquote {
    position: relative;
    font-family: 'Barlow Condensed', sans-serif;
    width: 100%;
    margin: 20px auto;
    align-self: center;
}

/* Blockquote header */
.blockquote h1 {
    position: relative;
    /* for pseudos */
    color: #aca99e;
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 0;
    border: 2px solid #4B4737;
    border-radius: 20px;
    padding: 15px;
}

/* Blockquote right double quotes */
.blockquote h1:after {
    content: "";
    position: absolute;
    border: 2px solid #4B4737;
    border-radius: 0 50px 0 0;
    width: 40px;
    height: 40px;
    bottom: -42px;
    left: 30px;
    border-bottom: none;
    border-left: none;
    z-index: 3;
}

.blockquote h1:before {
    content: "";
    position: absolute;
    width: 60px;
    border: 4px solid #fff;
    bottom: -3px;
    left: 30px;
    z-index: 2;
}

/* increase header size after 600px */
@media all and (min-width: 600px) {
    .blockquote h1 {
        font-size: 2rem;
        line-height: 1.4;
    }
}

/* Blockquote subheader */
.blockquote h4 {
    position: relative;
    color: #4B4737;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    padding-top: 10px;
    z-index: 1;
    margin-left: 80px;
    padding-left: 8px;
}

.blockquote h4:first-letter {
    margin-left: -8px;
}

/* From Uiverse.io by MuhammadHasann */
.btts {
    position: relative;
    padding: 15px 45px;
    background: #58847b;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    font-family: "ivypresto-display", serif;
    font-weight: 400;
    font-style: normal;
    border: 1px solid #f4f2ed;
    border-radius: 8px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.btts:hover {
    border: 1px solid #bad6d0;
    background: linear-gradient(85deg,
            #bad6d0,
            #bad6d0,
            #bad6d0,
            #bad6d0,
            #bad6d0);
    animation: wind 2s ease-in-out infinite;
}

@keyframes wind {
    0% {
        background-position: 0% 50%;
    }

    0% {
        background-position: 50% 100%;
    }

    0% {
        background-position: 0% 50%;
    }
}

.icon-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    transform-origin: 0 0;
    transform: rotate(10deg);
    transition: all 0.5s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}

.btts:hover .icon-1 {
    animation: slay-1 3s cubic-bezier(0.52, 0, 0.58, 1) infinite;
    transform: rotate(10deg);
}

@keyframes slay-1 {
    0% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(10deg);
    }
}

.icon-2 {
    position: absolute;
    top: 0;
    left: 25px;
    width: 12px;
    transform-origin: 50% 0;
    transform: rotate(10deg);
    transition: all 1s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

.btts:hover .icon-2 {
    animation: slay-2 3s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
    transform: rotate(0);
}

@keyframes slay-2 {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0);
    }
}

.icon-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    transform-origin: 50% 0;
    transform: rotate(-5deg);
    transition: all 1s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

.btts:hover .icon-3 {
    animation: slay-3 2s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
    transform: rotate(0);
}

@keyframes slay-3 {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0);
    }
}


.custom-shape-divider-bottom-1722870491 {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1722870491 svg {
    position: relative;
    display: block;
    width: calc(147% + 1.3px);
    height: 140px;
}

.custom-shape-divider-bottom-1722870491 .shape-fill {
    fill: #6f8931;
}

.btn3 {
    transition: all 0.3s ease-in-out;
    font-family: "Dosis", sans-serif;
}

.btn3 {
    width: 150px;
    height: 60px;
    border-radius: 50px;
    background-color: #222;
    box-shadow: 0 20px 20px -6px #222;
    outline: none;
    cursor: pointer;
    border: none;
    font-size: 24px;
    color: white;
}

.btn3:hover {
    transform: translateY(3px);
    box-shadow: none;
}

.btn3:active {
    opacity: 0.5;
}


.cardyb {

    border: 4px solid #ffdd58;

    padding: 20px;
    /*    border-radius: 40px;*/
    /*    background-color: #1F1A17;*/
    text-align: center;
    /*    box-shadow: #473d44 7px 7px;*/


}

.cardyb b,
.cardyb a,
.cardyb strong {

    color: #000;

}


.cardyb p {

    color: #163b4e;
    text-align: center;
    justify-self: center;
    font-weight: 600;

}

.cardyb h1 {

    color: #163b4e;
    text-align: center;
    justify-self: center;


}

/* From Uiverse.io by niat786 */
.butter {
    border: none;
    color: #fff;
    background-image: linear-gradient(30deg, #b3802c, #f3e182);
    border-radius: 20px;
    background-size: 100% auto;
    font-family: "ivypresto-display", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 17px;
    padding: 0.6em 1.5em;
}

.butter:hover {
    background-position: right center;
    background-size: 200% auto;
    -webkit-animation: pulse 2s infinite;
    animation: pulse512 1.5s infinite;
}

@keyframes pulse512 {
    0% {
        box-shadow: 0 0 0 0 #b3802ca5;
    }

    70% {
        box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
    }

    100% {
        box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
    }
}