/* Navigation bar */
/*----------------------------------------------------------------------------------------*/
.top-nav .navbar {
    background-color: var(--primary-color);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
}

.navbar-nav .nav-item:last-child {
    margin-right: 20px;
}

.navbar-nav {
    display: flex;
    gap: 10px
}

.navbar-toggler {
    background-color: whitesmoke !important;
}

.main {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.learn-more {
    color: var(--action-color) !important;
    cursor: pointer;
}

.learn-more:hover svg {
    margin-left: 3px;
}
.dropdown-header{
    color: var(--primary-color) !important;
}
.navbar-brand{
    position: relative;
}

@media screen and (min-width: 992px) {
    .navbar-brand{
        right: 5%;
    }
}

@media screen and (max-width: 991px) {
    .navbar-brand{
        right: 0;
    }
}

@media screen and (min-width: 992px) {
    #editor-intro {
        border-right: 2px var(--primary-color) solid;
    }
}

@media screen and (max-width: 991px) {
    #editor-intro {
        border-bottom: 2px var(--primary-color) solid;
    }
}

.signup-btn {
    font-size: 22px !important;
    margin-top: 20px;
    font-weight: 550 !important;
    color: white !important;
    background-color: rgba(25, 72, 193) !important;
    border-color: rgba(25, 72, 193) !important;
}

.claudius-container-1 {
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
}

#learn-more-editor, #learn-more-author {
    width: 100%;
    flex-shrink: 0;
    transition: transform 1s;
}

#learn-more-editor {
    transform: translateX(0);
}

#learn-more-author {
    transform: translateX(-100%);
}

/* Offscreen state */
#learn-more-editor.offscreen {
    transform: translateX(-100%);
}

#learn-more-author.offscreen {
    transform: translateX(0%);
}

.description-subcontainer .signup-btn {
    font-weight: 500;
    margin-left: 0;
}

.description-subcontainer {
    min-height: 1030px;
    overflow-y: auto;
    background-color: #e7e3e3;
    transition: min-height 0.5s ease;
}

.text-container{
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    min-height: 90%;
    z-index: 3;
}

#learn-more-editor .text-container {
    right: 15%;
}

#learn-more-author .text-container {
    left: 15%;
}

.text-box {
    background-color: rgba(204, 202, 238, 0.95);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgb(23, 20, 61);
    width: 65%;
    margin: auto;
    transition: width 1s ease;
}

.feature-box {
    padding: 20px;
    width: 95%;
    margin: auto;
}

.image-container {
    position: absolute;
    top: 0;
    width: 60%;
    height: 100%;
    transition: width 1s ease;
}

#learn-more-editor .image-container {
    right: 0;
}

#learn-more-author .image-container {
    left: 0;
}

.image-container h4 {
    cursor: pointer;
    border: 3px solid white;
    padding: 5px 15px;
    width: fit-content;
    z-index: 2;
    position: relative;
}

.image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(155, 155, 155, 0.35);
}


@media screen and (max-width: 1150px) {
    #learn-more-author .image-container,
    #learn-more-editor .image-container {
        width: 100%;
    }

    #learn-more-editor .text-box{
        width: 95%;
    }

    #learn-more-author .text-box{
        width: 95%;
    }

    #learn-more-editor .text-container{
        right: 0;
    }

    #learn-more-author .text-container{
        left: 0;
    }

    .description-subcontainer {
        min-height: 1200px;
    }

}

.wave1{
    pointer-events: none;
    display: block;
    position: relative;
    top:-65px;
}
@media screen and (max-width: 1710px) {
    .wave1{
        top: -35px;
    }
}

@media screen and (max-width: 992px) {
    .description-subcontainer {
        min-height: 1400px;
    }
    .wave1{
        display: none;
    }
}

@media screen and (max-width: 650px) {
    .description-subcontainer {
        min-height: 1550px;
    }
}

.feature-list {
    width: 100%;
    border: 2px solid #c2c2c2;
    background-color: rgba(248, 248, 248, 0.95);
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgb(23, 20, 61);
    cursor: pointer;
}

.dropdown-container {
    overflow: hidden;
    transition: background-color 0.5s ease;
    background-color: transparent;
}

.dropdown-header {
    display: flex !important;
    align-items: center;
}

.dropdown-header h4 {
    margin-bottom: 0;
    margin-left: 30px;
    font-weight: bolder;
}

.dropdown-header img {
    width: 50px;
    margin-left: 40px;
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.1s ease;
    background-color: rgba(204, 202, 238);
}

.dropdown-content p {
    margin: 15px 30px 15px 55px;
    padding: 5px 10px;
    font-size: 18px;
    font-weight: bolder;
    cursor: text;
}

.dropdown-container:hover .dropdown-content {
    max-height: 300px;
    transition: max-height 0.5s ease;
}

.dropdown-container:hover {
    background-color: rgba(204, 202, 238);
    transition: background-color 0s;
}

.dropdown-container:hover .dropdown-header {
    border-bottom: 1px solid #afafaf;
}


.title-section {
    color: #000;
    font-style: normal;
    line-height: normal;
}

.btn-top {
    min-width: 50px;
    padding: 2px 0 2px 40px !important;
    font-weight: bold !important;
    border-radius: 30px !important;
    font-size: 15px;

}

.btn-top:hover {
    transform: scale(1.025);
}

.claudius-container-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    background-color: var(--primary-color);
    color: whitesmoke;
    padding-top: 50px;
}

.claudius {
    max-width: 80vw;
    font-size: 30px;
    text-align: center;
}

.claudius p {
    margin-top: 5px;
    font-size: 26px;
}

.footer-wrapper {
    width: 100%;
    background-color: var(--fourth-color);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0px 20px;
}

.legal {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-bottom: 20px;
    padding-left: 20px;
    gap: 30px;
    width: 60%;
}

.legal div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 5px;
}

.legal a {
    color: #B7AEAE !important;
}

.legal a:hover {
    color: gray !important;
}

.copyright {
    font-size: 12px;
    color: white
}

.logo {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: var(--primary-color);
}


.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    font-weight: 500;
}
.dropdown-toggle::after{
    display: none !important;
}

@media screen and (max-width: 991px) {
    .navbar-nav {
        margin-top: 30px;
    }

    .navbar-inside {
        align-items: center;
        justify-content: flex-end;
        display: flex;
    }
}

@media screen and (max-width: 600px) {
    ul.top-nav li.right,
    ul.top-nav li {
        float: none;
    }

    main {
        padding: 5px;
    }
}

button:focus {
    outline: none;
}
/*----------------------------------------------------------------------------------------*/


/* Footer */
/*----------------------------------------------------------------------------------------*/
.footer {
    background-color: #e6e8f7;
    overflow: hidden;
    padding: 3vh 10vw;
}

.links-wrapper {
    display: flex;
    margin-bottom: 2rem;
}

.links-header {
    font-weight: 800;
    color: var(--primary-color);
}

.links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-link {
    width: fit-content;
    color: var(--gray-info);
    opacity:0.6;
}
.footer-link:hover {
    color: var(--gray-info);
    text-decoration: none;
    opacity:0.8;
}

.twitter-link {
    width: 50px;
    height: 50px;
    background-color: #fff;
    text-align: center;
    line-height: 45px;
    font-size: 25px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
    z-index: 1;
}

.twitter-link svg {
  position: relative;
  color: #262626;
  transition: all 0.5s;
  z-index: 3;
}

.twitter-link:hover svg {
  color: #fff;
  transform: rotateY(180deg);
}

.twitter-link:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #474747;
  transition: 0.5s;
  z-index: 2;
}

.twitter-link:hover:before {
  top: 0;
}

.copyright {
    font-size: 0.7rem;
}
/*----------------------------------------------------------------------------------------*/