:root {
    --full-size: 1920px;
}

#sectionct {
    width: var(--full-size);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg-secct {
    width: var(--full-size);
    position: absolute;
    height: 400px;
    z-index: -10;
    object-fit: cover;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#sectionct2 {
    width: var(--full-size);
    height: 550px;
}

.bg-secct2 {
    width: var(--full-size);
    height: 550px;
    z-index: -1;
    object-fit: cover;
    background-color: bisque;
}

.groupct {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.textheadsecct {
    color: #fff;
    /* text-shadow: 1px 1px 5px; */
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.textsubheadsecct {
    font-size: 16px;
    color: #fff;
    text-align: center;
    width: 80%;
    margin-bottom: 0px;
    letter-spacing: 1px;
}

.imgsecctmap {
    width: 60%;
    height: 550px;
    border: 0;
}

.boxtextsecct {
    width: 40%;
    height: 550px;
    background-color: #2C3463;
    display: flex;
    justify-content: center;
    flex-direction: row;
    box-shadow: -10px 0 15px -5px rgba(0, 0, 0, 0.5);
    align-items: center;
}

.groupct1 {
    display: flex;
    flex-direction: row;
}

.groupct2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 70%;
}

.groupct2-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 30%;
}

.grouptextinfoct {
    width: 80%;
    height: 50%;
    margin: 20px;
    display: flex;
    flex-direction: row;
}

.grouptextinfoct2 {
    display: flex;
    flex-direction: column;
}

.headinfoct {
    font-size: 18px;
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 0px;
}

.infoct2 {
    font-size: 16px;
    margin-top: 2px;
    margin-bottom: 0px;
}

.infoct2-1 {
    transform: rotateZ(270deg);
    color: rgba(99, 110, 176, 0.315);
    font-size: 60px;
    letter-spacing: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.SocialImagect {
    width: 30px;
    height: 30px;
    margin-right: 20px;
}

.infoct:hover {
    color: #00aced;
}

.infoct:active {
    color: #00aced;
}

.infoct {
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.dropdownQR {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 54%);
    z-index: 1;
    padding: 2px;
    border-radius: 10px;
}
.containerQR {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 170px;
    height: 170px;
    position: relative;
    background-color: rgb(0 0 0 / 26%);
    border-radius: 10px;
}

.backgroundQR {
    /* position: absolute; */
    z-index: -10;
    object-fit: scale-down;
    width: 160px;
    height: 160px;
    display: block;
}
.dropdownQR img.foreground {
    width: 140px;
    height: 140px;
    /* border: 5px solid white; */
    border-radius: 0px;
    position: absolute;
}

.dropdown_bigQR:hover .dropdownQR {
    display: block;
}

.arrow {
    display: inline-block;
    transition: transform 0.1s ease;
}

.dropdown_bigQR:hover .arrow {
    transform: rotate(180deg);
    transition: transform 0.1s ease;
}
.line_mb{
    display: none;
}



@media (min-width:1000px) and (max-width: 1919px) {

    #sectionct {
        width: 100%;
    }

    .bg-secct {
        width: 100%;
        object-fit: cover;
        display: flex;
        align-items: center;
    }

    #sectionct2 {
        width: 100%;
        height: 550px;
    }

    .bg-secct2 {
        width: 100%;
        height: 550px;
        object-fit: cover;
        background-color: beige;
    }

    .textheadsecct {
        font-size: 50px;
    }

}

@media (max-width: 1199px) {
    #sectionct {
        width: 100%;
        height: 400px;
        padding-top: 80px;
    }

    .bg-secct {
        width: 100%;
    }

    #sectionct2 {
        width: 100%;
        height: 850px;
    }

    .bg-secct2 {
        width: 100%;
        height: 850px;
    }

    .textheadsecct {
        font-size: 40px;
    }

    .textsubheadsecct {
        font-size: 12px;
        width: 90%;
    }

    .imgsecctmap {
        width: 100%;
        height: 550px;
        object-fit: cover;
    }

    .boxtextsecct {
        width: 100%;
        height: 300px;
        display: flex;
        justify-content: center;
        flex-direction: row;
        align-items: center;
    }

    .groupct1 {
        display: flex;
        flex-direction: column;
    }

    .infoct2-1 {
        font-size: 36px;
        margin-bottom: 0px;
        width: 250px;
    }
    .dropdown_bigQR {
        display: none;
    }
    .line_mb{
        display: block;
        color: #fff;
    }
}

body.dark-mode {
    color: white;
  }
  .dark-mode .boxtextsecct{
    background-color: rgb(38, 38, 38);
  }
  .dark-mode .infoct2-1{
    color: rgb(255 255 255 / 32%);
  }