@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@400;500;600;700&display=swap');

body {
    background: #FCFCFC;
    font-family: 'Bitter', serif !important;

}

.navbarContainer {
    width: 100%;
    padding: 0 10%;
}



.navbar-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-toggle {
    position: relative;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #03C898;
    text-decoration: none;
}

.icon_container svg {
    position: relative;
    width: 30px;
    height: 30px;
    top: 4px;
    transition: .3s;
}

.icon_container svg:hover {
    fill: #09896A;
}

.dropdown-toggle:hover {
    text-decoration: none;
    color: #09896A !important;

}

.dropdown-menu>li>a:hover {
    text-decoration: none;
    background-color: #03C898;
    color: #FFFFFF !important;
}


.dropdown-toggle[aria-expanded="true"] {
    color: #026C52 !important;
}

.dropdown {
    position: relative;
    min-width: 156px !important;
    text-align: right;
}

.dropdown-menu {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    position: absolute !important;
    border: 2px solid #03C898 !important;
    top: 100% !important;
    right: 0 !important;
    text-align: center !important;
    padding: 0 !important;
}

.dropdown-menu>li>a {
    display: block;
    padding: 10px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #03C898 !important;
    white-space: nowrap;
    cursor: pointer;
    border: 1.5px solid #03C897;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 10px !important;
    height: 10px !important;
    border-top: 2px solid #03C898 !important;
    border-right: 2px solid #03C898 !important;
    border-bottom: none !important;
    border-left: none !important;
    margin-right: 10px !important;

    transform: rotate(135deg);
}

.dropdown-toggle:hover::after {
    border-top: 2px solid #09896A !important;
    border-right: 2px solid #09896A !important;
}

.dropdown-toggle[aria-expanded="true"]::after {
    border-top: 2px solid #026C52 !important;
    border-right: 2px solid #026C52 !important;
    transform: rotate(-45deg);
    margin-bottom: -5px !important;
}

.colums {
    background-image: url('../images/left.png'), url('../images/right.png');
    background-repeat: no-repeat;
    background-position: 100% 100%, 0 100%;
    background-size: 5%;
    border-bottom: 2px solid #03C898;
}

.text-center {
    text-align: center;
}

.mainTittle {
    text-align: center;
    font-weight: 700;
    font-size: 60px;
    padding: 1% 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #03C898;
    border-top: 2px solid #03C898;
    border-bottom: 2px solid #03C898;
}

.main_image {
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
}

.little-main_image {
    flex: 0 1 20%;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
    
}

.little-main_image img {
    cursor: pointer;
    margin-left: 50%;
}
.little-main_image div {
    position: relative;
    width: 100%;
}
.little-main_image div::before {
    position: absolute;
    top: 50%;
    content: "";
    display: flex;
    width: 120%;
    margin: 0 0 0 -60%;
    z-index: 0;
    height: 3px;
    background-color: #03C898;
}
.littleImage1 {
    filter: brightness(100%);
}
.littleImage2,
.littleImage3 {
    filter: brightness(40%);
    
}

.big-main_image {
    flex: 1 0 40%;
    padding-left: 15px;
    display: flex;
    justify-content: center;
    transition: all 1s ease;
}

.main_image img {
    width: 70%;
}

.bigImage1 {
    opacity: 0;
    animation: tog 2s ease;
}

.bigImage2,
.bigImage3 {
    display: none;
    opacity: 0;
    animation: tog 2s ease;
}

@keyframes tog {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.bigImage1 {
    opacity: 1;
}

.download_buttons {
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
}

.download_buttons img {
    margin-right: 10px;
}

.download-btn {
    margin: 0 10px;
    display: flex;
    align-items: center;
    border: 1px solid #03C898;
    padding: 10px 0;
    min-width: 15%;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    color: #03C898;
    justify-content: center;
    border-radius: 3px;
}

.download-btn:hover {
    color: #09896A;
    border: 1px solid #09896A;
    text-decoration: none;
}

.download-btn:active {
    color: #026C52;
    border: 1px solid #026C52;
    text-decoration: none;
}

.download-btn::before {
    content: '';
    background-image: url('../images/web.png');
    background-size: contain;
    background-repeat: no-repeat;
    height: 30px;
    width: 30px;
    margin-right: 7px;
}

.download-btn:hover::before {
    background-image: url('../images/webHover.png');
}

.download-btn:active::before {
    background-image: url('../images/webActive.png');
}

.ios:before {
    background-image: url('../images/ios.png');
}

.ios:hover::before {
    background-image: url('../images/iosActive.png');
}

.ios:active::before {
    background-image: url('../images/iosHover.png');
}

.description {
    padding: 80px 75px 20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: left;
    color: #4E4F4E;
    background-image: url(../images/upImage.png);
    background-repeat: no-repeat;
    background-position: 50% 25px;
}

.map {
    padding: 30px 0;
    border-top: 2px solid #03C898;
    border-bottom: 2px solid #03C898;
}

.cpyright {
    padding: 50px 35px 50px;
    background-image: url(../images/underImage.png);
    background-repeat: no-repeat;
    background-position: 50% 25px;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    display: flex;
    align-items: center;
    text-align: center;
}

.row {
    align-items: center;
}

.laboratory {
    padding-top: 15px;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: #4E4F4E;
}

.viewTittle {
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    padding: 1% 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #03C898;
    border-top: 2px solid #03C898;
    border-bottom: 2px solid #03C898;
}

.linkToHome {
    padding: 40px 60px;
}

.linkToHome a {
    font-weight: 300;
    font-size: 32px;
    line-height: 38px;
    color: #03C898;
}

.linkToHome a:hover {
    text-decoration: none;
    color: #09896A;
}

.linkToHome a::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border-top: 3px solid #03C898;
    border-right: 3px solid #03C898;
    border-radius: 3px 0 3px 0;
    margin-right: 10px;
    transform: rotate(-135deg);
}

.linkToHome a:hover::before {
    border-top: 3px solid #09896A;
    border-right: 3px solid #09896A;
}

.content {
    display: flex;
    padding: 0 150px 50px;
    width: 100%;
    border-bottom: 2px solid #03C898;
}
.blockImage {
    flex: 1 0 50%;
    align-self: start;
    width: 50%;
    margin-right: 15px;
    display: flex;
    flex-direction: column;
}
.contentImage {
    overflow: hidden;
    min-width: 120px;
    border-radius: 0px 30% 0px 35%;
    border: 5px solid #03C898;
}

.slider {
    display: flex;
    cursor: pointer;
    transition: all ease 1s;
}
.slider img {
    max-height: 50vh;
    object-fit: cover;
}
.points {
    padding-top: 15px;
    display: flex;
    align-self: center;
}

.point {
    margin: 0 5px;
    height: 16px;
    width: 18px;
    border-radius: 8px 0px 8px;
    border: 1px solid #03C898;
}

.contentExpo {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 50%;
    margin-top: -45px;
    padding-bottom: 20px;
}
.mobileScreen {
    display: none;
}

.nameExpo {
    background-image: url(../images/upExpo.png), url(../images/underExpo.png);
    background-repeat: no-repeat;
    background-position: 50% 0, 50% 100%;
    padding: 40px 0;
    color: #03C898;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    min-width: 300px;
    text-align: center;
}

.expoContent {
    height: 100%;
    padding: 45px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
}

.expoBody {
    margin: 10px 0;
    border: 1px solid #03C898;
    padding: 25px 50px;
    text-align: left;
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    color: #03C898;
    position: relative;
    width: 100%;
    border-radius: 3px;
}

.expoBody:hover {
    text-decoration: none;
    color: #09896A;
    border: 1px solid #09896A;

}

.expoBody::after {
    position: absolute;
    top: 40%;
    right: 15px;
    text-align: right;
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border-top: 3px solid #03C898;
    border-right: 3px solid #03C898;
    border-radius: 3px 0 3px 0;
    transform: rotate(45deg);
}

.expoBody:hover::after {
    border-top: 3px solid #09896A;
    border-right: 3px solid #09896A;
}

.contentPoint {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.namePoint {
    margin-top: -70px;
    background-image: url(../images/upExpo.png), url(../images/underExpo.png);
    background-repeat: no-repeat;
    background-position: 50% 0, 50% 100%;
    padding: 50px 0;
    color: #03C898;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    min-width: 300px;
    text-align: center;
}

.pointImage {
    text-align: center;
    margin-top: 50px;
    height: 40%;
    width: 50%;
    overflow: hidden;
    border-radius: 0px 30% 0px 35%;
    border: 5px solid #03C898;
}

.pointImage img {
    max-height: 50vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.audio {
    padding-top: 50px;
    text-align: center;
}

.pointAudio {
    width: 60%;
    border: 1.5px solid #03C898;
    border-radius: 15px;
    background: linear-gradient(266deg, rgba(255, 255, 255, 0) 19.21%,
            rgba(27, 215, 168, 0.08) 87.09%), linear-gradient(266.47deg,
            rgba(27, 215, 168, 0.08) 18.55%, rgba(255, 255, 255, 0) 87.09%), #FFFFFF;


}

audio::-webkit-media-controls-panel {
    background: linear-gradient(266deg, rgba(255, 255, 255, 0) 19.21%,
            rgba(27, 215, 168, 0.08) 87.09%), linear-gradient(266.47deg,
            rgba(27, 215, 168, 0.08) 18.55%, rgba(255, 255, 255, 0) 87.09%), #FFFFFF;

}

.textPoint {
    padding: 1% 15%;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #4E4F4E;
    text-align: left;
}

.textPoint br{
    content: "";
    margin: 2em;
    display: block;
    font-size: 24%;
}

@media (max-width: 900px) {
    .navbarContainer {
        padding: 0
    }
    .mainTittle, .viewTittle {
        font-size: 30px;
        padding: 5px 15px;   
        line-height: 1.2;
    }
    .colums {
        background-size: 10%;
    }
    .main_image {
        padding: 10px 5px;
        flex-direction: column-reverse;
    }
    .main_image img {
        width: 85%;
        margin-left: 0;
    }
    .little-main_image {
        padding-top: 10px;
        flex-direction: row;
    }
    .little-main_image div::before {
        display: none;
    }
    .download_buttons {
        padding-bottom: 15px;
    }
    .download-btn {
        padding: 2% 5%;
        font-size: 15px;
        line-height: 0;
    }
    .download-btn::before {
        width: 20px;
        height: 20px;
    }
    .description {
        padding: 80px 20px 15px;
        text-align: center;
        
    }
    .linkToHome {
        padding: 20px 15px 5px;
    }
    .linkToHome a {
        font-size: 15px;
        line-height: 1;
        
    }
    .linkToHome a::before {
        width: 10px;
        height: 10px;
    }
    .content {
        flex-direction: column;
        padding: 0 15px 15px;
    }
    .computerScreen {
        display: none;
    }
    .mobileScreen {
        display: block;
    }
    .nameExpo, .namePoint {
        font-size: 20px;
        background-size: 70%;
        padding: 8% 0;
        line-height: 1;
    }
    .blockImage, .pointImage {
        width: 90%;
        margin: 15px 0 0 0;
        align-self: center;
    }
    .slider img {
        max-height: 35vh;
    }
    .pointImage img {
        max-height: 70vh;
    }
    .expoBody {
        font-size: 15px;
        padding: 10px;
        line-height: 1;
    }
    .expoBody::after {
        width: 10px;
        height: 10px;
    }
    .namePoint {
        margin: 0;
    }
    .audio {
        padding-top: 15px;
    }
    .pointAudio {
        width: 80%;
    }
    .textPoint {
        padding: 15px 20px;
        text-align: center;
        font-size: 15px;
    }
    .laboratory {
        font-size: 10px;
        padding-top: 5px;
    }
}

@media (min-width: 575px) and (max-width: 900px) {
    .nameExpo, .namePoint {
        padding: 5% 0;
        background-size: 50%;
        }
        .slider img {
            max-height: 70vh;
        }
}

@media (min-width: 901px) and (max-width: 1101px) {
    .namePoint {
        margin: 0;
    }
    .pointImage {
        width: 90%;
        
        margin: 15px 0 0 0;
        align-self: center;
    }
    .pointImage img {
        max-height: 70vh;
    }
}