.container {
    height: 1700px;
    background-color: #212F3C;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.sliderWrapper {
    max-width: 1100px;
    width: 100%;
    height: 600px;
    position: relative;
    box-shadow: 10px 10px 44px -10px rgba(0, 0, 0, 0.75);
    padding: 0;
    margin-top: 30px;
}

.btnPrev,
.btnNext {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background-color: dimgrey;
    cursor: pointer;
    transition: opasity .2s;
    opacity: 40%;
}

.sliderWrapper .btnPrev:hover,
.sliderWrapper .btnNext:hover {
    opacity: 0.6;
}

.btnNext {
    left: auto;
    right: 0;
}

.slide {
    width: 100%;
    height: 100%;
    display: none;
}

.sliderWrapper .active {
    display: block;
}

.slide > img {
    width: 100%;
    height: 100%;
}

.dotsWrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding: 0;
}

.dot {
    border: 1px solid grey;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    margin-left: 10px;
    background-color: grey;
}

.dotsWrapper .active {
    background-color: white;
}

.dws {
    position: relative;
    top: 5%;
    left: 5%;
    transform: translate(-5% -10%);
    width: 90px;
    cursor: pointer;

}

.pulse {
    height: 90px;
    background: #6894BC;
    border-radius: 50%;
    border: 1px solid whitesmoke;

}

.pulse::before,
.pulse::after {
    content: '';
    position: absolute;
    border: 1px solid whitesmoke;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: pulse 2s linear infinite;
}

.pulse::after {
    animation-delay: -1s;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.circle {
    position: absolute;
    text-transform: uppercase;
    font-family: 'Roboto Slab', serif;
    font-size: 15px;
    color: whitesmoke;
    width: 70px;
    text-align: center;
    top: 25px;
    left: 9px;
}

.modal-wrap{
    position: fixed;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background: rgba(245, 249, 249, 0.3);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.modal{
    height: 450px;
    width: 330px;
    border: 2px outset #1E5062;
    padding:10px;
    background: rgba(234, 247, 252);
    order: 0;
    flex: 0 1 auto;
    align-self:auto;
    text-align: center;
    
    position: relative;
    left: -20%;
}
.modal form{
    display: flex;
    flex-direction: column;
    padding:30px;
    font-family: 'Roboto Slab', serif;
    font-size: 15px;
    color: #585C5D;
}
.modal p{
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    color: #585C5D;
    margin-top: 30px;
}
.modal input{
    margin-top: 10px;
    height:30px;
    
}
.modal-close{
    width:60px;
    height: 40px;
}
.modal input [type="button" ]{
    width: 100px;
    height: 50px;
}
.hide{
    display: none;
}
.mainInfo{
    display: block;
    width: 900px;
    position: relative;
    left: calc(50% - 150px);
    font-family: 'Roboto Slab', serif;
    font-size: 15px;
    color: whitesmoke;
}

.mainInfo h2 {  
    font-size: 40px;
    margin-bottom: 30px;
    text-align: center;
}
.mainInfo h3{
    margin-bottom: 30px;
}
.mainInfo p{
    margin-bottom: 50px;
}
.location{
    display: block;
    text-align: center;
}
.location h4{
    font-size: 40px;
    margin-bottom: 30px;
    text-align: center;
    color: whitesmoke;
}
