:root {
    --primary-color: #038C73;
    --secondary-color: #14594C;
    --third-color: #96D9CC;
    --text-color: #061a16;
    --white: #F2F2F2;
    --brown: #BF754B;
    --brown-hight: #D94814;
    --yelow: #ffec8d;
    --header-height: 75vh;
}

* {
    font-family: "Inter";
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sognogf-header {
    height: var(--header-height);
    background: var(--teal);
    background-image: radial-gradient(ellipse 50% 100% at 50% -10%, var(--primary-color), var(--text-color));
    /* background: var(--yelow); */
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: -1;
    border-bottom: 2px solid var(--primary-color);
    overflow: hidden;
}

.sognogf-img-header {
    position: relative;
    top: 60px;
}

body {
    background: var(--text-color);
    color: var(--white);
}




/* .sognogf-header::before {
    background-image: radial-gradient(ellipse 100% 100% at 0 0, #da70a542, #e877af00);
    background-repeat: no-repeat;
    content: "";
    display: block;
    height: 800px;
    pointer-events: none;
    position: absolute;
    width: 800px;
} */

/* .sognogf-header::after {
    background-image: radial-gradient(ellipse 100% 100% at 0 0, #da70a542, #e877af00);
    background-repeat: no-repeat;
    content: "";
    display: block;
    height: 800px;
    pointer-events: none;
    position: absolute;
    width: 800px;
    background-image: radial-gradient(ellipse 100% 100% at 100% 100%, #c870da42, #e877af00);
    background-size: 800px 800px;
    bottom: 0;
    right: 0;
} */

.sognogf-button {
    background: none;
    border: none;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 3px;
}

.sognogf-button:nth-child(1) {
    background: var(--brown-hight);
}

.sognogf-button:nth-child(2) {
    background: var(--primary-color);
}


/* .sognogf-header::after {
    background-image: radial-gradient(ellipse 100% 100% at 0 0, #da70a542, #e877af00);
    background-repeat: no-repeat;
    content: "";
    display: block;
    height: 800px;
    pointer-events: none;
    position: absolute;
    width: 800px;
    background-image: radial-gradient(ellipse 100% 100% at 100% 100%, #c870da42, #e877af00);
    background-size: 800px 800px;
    bottom: 0;
    right: 0;
}  */

.sognogf-header .row div {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sognogf-header .row div img {
    /* height: 100%; */
    object-fit: cover;
}

.sognogf-header .row div h1 {
    font-weight: bold;
    font-size: 65px;
    color: var(--yelow);
}

.sogno-main-home {
    background: var(--text-color);
    padding: 40px 0;
    position: relative;
    top: var(--header-height);
}

/*TABLE GRID*/

.sognogf-table-grid-section {
    /* background: red; */
}

.sognogf-default-table {
    margin: 15px 0;
    /* background: red; */
    border-radius: 12px;
}

.sognogf-default-table h4 {
    font-weight: bold;
    color: var(--brown-hight);
    padding: 15px 0;
    background: var(--secondary-color);
    margin: 0;
    text-align: center;
    color: var(--white);
    border-radius: 10px 10px 0 0;
}

.sognogf-default-table>div {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--secondary-color);
    border-radius: 0 0 10px 10px;
    padding: 15px 6px;
}

.sognogf-default-table>div>div>p:nth-child(1)>strong {
    display: block;
    padding: 12px 0;
    color: var(--yelow);
    border-bottom: 2px solid var(--secondary-color);
    text-align: center;
    display: none;
}

.sognogf-default-table>div>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sognogf-default-table>div>div>div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.sognogf-default-table>div>div>p {
    margin: 0;
}

.sognogf-default-table>div>div>p:nth-child(1) {
    width: 100%;
}

.sognogf-default-table>div>div>div:nth-child(2) {
    padding: 10px 0;
}

.sognogf-button-table {
    padding: 8px 25px;
    border-radius: 10px;
    background: var(--brown-hight);
    border: none;
    color: var(--yelow);
    font-weight: bold;
    transition: all .2s;
}

.sognogf-button-table:hover {
    transform: scale(1.075);
}

.sognogf-count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    border-radius: 100%;
    font-size: 30px;
    font-weight: bolder;
}

.sognogf-button-large {
    padding: 18px 30px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    background: var(--brown-hight);
    color: var(--yelow);
    transition: all .5s;
}

.sognogf-button-large:hover {
    transform: scale(1.085);
}

.sognogf-text {
    width: 90%;
    text-align: justify;
    margin: 0 auto;
    color: var(--third-color);
}

h2 {
    text-align: center;
    color: var(--brown);
    font-weight: bold;
    text-transform: uppercase;
    width: 75%;
    margin: 0 auto;
    margin-bottom: 50px;
}

.sognogf-list {
    padding: 0;
    color: var(--yelow);
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    font-weight: bold;
}

h3 {
    color: var(--brown-hight);
    margin: 60px 0;
    font-weight: bold;
    text-align: center;
}

h3 a:hover,
h3 a {
    color: var(--yelow);
    text-decoration: none;
    font-weight: bolder;
    text-transform: uppercase;
}

.sognogf-img-container {
    background: var(--primary-color);
    width: 85%;
    margin: 0 auto;
    margin-bottom: 100px;
    border-radius: 20px;
    overflow: hidden;
}

.sognogf-img-container img {
    width: 100%;
    object-fit: cover;
}

.sognogf-text strong {
    color: #59fcdb;
}

.sognogf-multi-list {
    padding: 0;
    list-style-type: none;
}

.sognogf-multi-list>li {
    margin-bottom: 25px;
    color: var(--yelow);
}

.sognogf-multi-list>li>ul {
    margin-top: 15px;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    grid-template-rows: repeat(2, 35px);
    color: var(--primary-color);
    font-weight: bold;
}

.sognogf-table-default-second ul {
    padding: 0;
    list-style-type: none;
}

.sognogf-table-default-second {
    width: 85%;
    margin: 0 auto;
    margin-bottom: 50px;
    margin-top: 50px;
}

.sognogf-table-default-second {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.sognogf-table-default-second>div {
    background: var(--secondary-color);
    /* height: 260px; */
    border-radius: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 40px 10px;
}

.sognogf-table-default-second>div h5 {
    font-size: 45px;
    margin-bottom: 40px;
}

.sognogf-table-default-second>div>ul>li {
    margin-bottom: 5px;
}

.sognogf-table-default-second>div>ul {
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 75%;
}

.sognogf-table-heade {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    border-radius: 10px;

}

.sognogf-table-heade ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.sognogf-text-footer {
    width: 90%;
    text-align: justify;
    margin: 0 auto;
    color: rgb(245, 232, 208);
}

.fixed-scroll {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: var(--text-color);
}

footer {
    background: var(--text-color);
}

.sogno-footer-home {
    position: relative;
    top: var(--header-height);
}

footer div {
    text-align: center;
    color: var(--yelow);
    padding: 20px 0;
    margin-bottom: 10px;
}

footer div a {
    color: var(--yelow);
    text-decoration: none;
}

footer div a:hover {
    color: var(--primary-color);
}

.scroll-top {
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 11;
    bottom: 50px;
    background: var(--primary-color);
    right: 50px;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top:hover {
    transform: scale(1.1);
    background: var(--brown-hight);
    border-radius: 100%;
}

.sognogf-button-table {
    padding: 13px 20px;
    width: 140px;
    font-size: 20px;
}

.sogno-contact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 60px;
}

.sogno-contact .container {}

.sogno-contact .container form {
    width: 75%;
    margin: 0 auto;
}

.sogno-contact .container form div {
    margin: 30px 0;
}

.sogno-contact .container form div label {
    margin-bottom: 10px;
    color: var(--yelow);
}

.sogno-contact .container form div textarea,
.sogno-contact .container form div input {
    background: var(--secondary-color);
    padding: 15px 10px;
    border: 1px solid var(--primary-color);
    color: var(--white);
}

.sogno-contact .container form div textarea::placeholder,
.sogno-contact .container form div input::placeholder {
    color: gainsboro;
}

.sogno-contact-button {
    background: var(--brown-hight);
    border: none;
    padding: 15px 20px;
    width: 160px;
    color: var(--white);
    border-radius: 5px;
}

.text-muted {
    color: var(--brown-hight) !important;
    font-size: 12px;
}

.sogno-form-alert {
    color: var(--white);
    background: var(--brown-hight);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 50px;
}

.sogno-form-alert-sucess {
    color: var(--yelow);
    background: #14d97dcc;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 50px;
}