#whispers-home {
    height: 90vh;
    background-image: url(../img/student-boy-using-laptop-learning-online-education.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wrapper-survey, .wrapper-title {
    height: 75vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.wrapper-survey-title {
    height: 20vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.wrapper-organization-survey-title {
    height: 60vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.wrapper-last-survey {
    min-height: 40vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
}

.wrapper-organization-survey {
    min-height: 40vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
}

.wrapper-title h1 {
    font-size: 50px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.wrapper-title span {
    font-size: 20px;
    color: #ffffff;
    text-align: center;
}

.wrapper-company {
    height: 7vh;
    display: flex;
    justify-content: start;
    align-items: center;
}

.wrapper {
    margin: 60px 0 0 0;
}

.wrapper .search {
    background: #fff;
    width: 100%;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
}

.search input {
    height: 55px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 240px 0 20px;
    font-size: 18px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.search.active input {
    border-radius: 5px 5px 0 0;
}

.search .autocomp-box {
    padding: 0;
    opacity: 0;
    pointer-events: none;
    max-height: 280px;
    overflow-y: auto;
}

.search.active .autocomp-box {
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
}

.autocomp-box li {
    list-style: none;
    padding: 8px 12px;
    display: none;
    width: 100%;
    cursor: default;
    border-radius: 3px;
}

.search.active .autocomp-box li {
    display: block;
}

.autocomp-box li:hover {
    background: #efefef;
}

.search .icon {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 70px;
    font-size: 20px;
    color: #3a0ca3;
    cursor: pointer;
}

.zoom-effect-container {
    float: left;
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    border: 5px solid #3a0ca3;
    background: #ffffff;
}

.image-card {
    position: absolute;
    top: 0;
    left: 0;

}

.image-card img {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.zoom-effect-container:hover .image-card img {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}


#last-survey {
    min-height: 70vh;
    background: rgba(227, 227, 227, 0.81);
}

.card {
    height: 240px;
    perspective: 500px;
    cursor: pointer;
    margin: 10px;
}

.content {
    position: absolute;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

    transition: transform 1s;
    transform-style: preserve-3d;
}

.card:hover .content {
    transform: rotateY(180deg);
    transition: transform 0.5s;
}

.front,
.back {
    position: absolute;
    height: 100%;
    width: 100%;
    background: white;
    line-height: 100px;
    color: #03446A;
    text-align: center;
    border-radius: 5px;
    backface-visibility: hidden;
}

.back {
    background: #03446A;
    color: white;
    transform: rotateY(180deg);
}

.wrapper-organization-survey .back h5 {
    color: #fff
}

.wrapper-organization-survey .back h5:hover {
    color: #f86c02
}

.question-card {
    min-height: 320px;
    width: 100%;
    background: #e3e3e3;
    box-shadow: 1px 1px 1px 1px rgba(113, 104, 202, 0.3);
    border-radius: 5px;
    margin-bottom: 16px;
}

.question-card .question-header {
    height: 10%;
}

.question-header img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin: 12px
}

.question-body {
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px;
    text-align: center;
}
.question-action{
    height: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px;
    text-align: center;
}
.question-action .btn{
    width: 100% !important;
    padding: 14px !important;
}