.ccf7 {display: flex;flex-direction: column;gap: 20px 0;}
.cfrow {display: flex;gap: 20px;}
.cfrow.one .col {width: 100%;}
.cfrow.two .col {width: 50%;}
.cfrow.three .col {width: 33.33%;}
.cfrow.four .col {width: 25%;}

.ccf7 .cf-input {padding: 15px 25px;border: 1px solid #ccc;}
.ccf7 .cf-input.text {}
.ccf7 .cf-input.textarea {}
  .ccf7 .cf-input.submit {
      color: #fff;
      background-color: var(--e-global-color-0c01800);
      border-radius: 10px 10px 10px 10px;
      padding: 15px 30px;
  }
.ccf7 .cf-input.submit:focus {outline: 0;}

@media only screen and (max-width:767px) {
  .cfrow {flex-direction: column;}
  .cfrow .col {width: 100% !important;}
}


.logged-in-condition .hide-logged-in {display: none!important;}
.logged-out-condition .hide-logged-out {display: none!important;}


.section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* #section1 { background-color: #1abc9c; }
#section2 { background-color: #3498db; }
#section3 { background-color: #9b59b6; }
#section4 { background-color: #e74c3c; } */

.nav-dots {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dot {
    width: 15px;
    height: 15px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.dot.active {
    background-color: #333;
}

.dot::after {
    content: attr(data-label);
    position: absolute;
    left: -120%;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.dot:hover::after {
    opacity: 1;
}
