.logo-caption {
    margin-top: 30%;
}

.flex-bot{
        display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

.flex-center{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-mid{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo-caption h1 {
    font-size: 80px;
    font-weight: 700;
    font-family: Tahoma, sans-serif;
}

.ios-caption {
    font-weight: 700;
    font-family: Tahoma, sans-serif;
}

.logo-caption h2 {
    font-size: 40px;
    font-family: Garamond, sans-serif;
}

.requirements li{
    margin-top: 5px;
}

.logo {
    height: 230px;
    width: auto;
}

.screenshot {
    height: 700px;
    width: auto;
    margin-top: 45%;
}

body {
    /* overflow-x: hidden; */
    background: url('https://nya.gagl.art/images/bg.svg') no-repeat;
    background-size: cover;
    /* margin: auto; */
    overflow-x: hidden;
}

.ms-3 {
    margin-left: 15px;
}

.download {
    width: 240px;
    height: 110px;
    border-radius: 30px;
    margin: 15px;
    position: relative;
    color: #fff;
    cursor: pointer;
}

.download-bar {
    margin-bottom: 40px;
    margin-top: 70px;
    font-family: Verdana, sans-serif;
}

.download>.fa {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 28px;
    transform: translateY(-50%);
}

.download>.fa-android {
    color: #fff;
    position: absolute;
    top: 55%;
    left: 20px;
    transform: translateY(-50%);
}

.android {
    background: darkgreen;
}

.apple {
    background: black;
}

.df,
.dfn {
    position: absolute;
    left: 85px;
}

.df {
    top: 28px;
    font-size: 14px;
}

.dfn {
    top: 41px;
    font-size: 28px;
    font-weight: 600;
}

.info-item {
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.info-item i {
    padding-right: 20px;
    color: rgb(102, 102, 102);
}

.item-h {
    font-size: 28px;
    font-weight: 600;
}

.item-p {
    color: grey;
    font-size: 18px;
}

footer {
    padding-left: 8%;
    padding-right: 8%;
    margin-top: 30px;
}

.vira-card {
    text-align: center;
    margin-top: 100px;
    /*margin-bottom: 45px;*/
}

.vira-card .vira-card-header {
    margin-bottom: 45px;
}

.vira-card .vira-card-header .card-icon {
    border: 1px solid #51c2b9;
    border-radius: 100%;
    display: inline-block;
    height: 120px;
    width: 120px;
    line-height: 120px;
    position: relative;
}

.vira-card .vira-card-header .card-icon .fa {
    margin-top: 45px;
    font-size: 30px;
}

.vira-card .vira-card-header .card-icon:after {
    content: '';
    height: 100px;
    width: 100px;
    background-color: #51c2b9;
    border-radius: 100%;
    position: absolute;
    top: 9px;
    left: 9px;
}

.vira-card .vira-card-header .card-icon span {
    color: #fff;
    font-size: 45px;
    position: relative;
    z-index: 1;
}

.vira-card .vira-card-content h3 {
    position: relative;
    margin-bottom: 60px;
    font-family: Garamond, sans-serif;
}

.vira-card .vira-card-content h3:after {
    content: '';
    height: 1px;
    width: 44px;
    background-color: #62aa94;
    position: absolute;
    top: 52px;
    left: calc(50% - 22px);
}

.vira-card .vira-card-content p {
    font-size: 16px;
    font-family: Georgia, sans-serif;
    padding-left: 10px;
    padding-right: 10px;
}

.vira-card .vira-card-content .social-icons {
    margin-top: 30px;
}

.vira-card .vira-card-header .card-icon:after {
    transition: all 0.3s ease-in-out;
}

.vira-card:hover .vira-card-header .card-icon:after {
    height: 120px;
    width: 120px;
    top: -1px;
    left: -1px;
}

.inline{
    display: inline;
}

.wrapper {
    display: inline-flex;
    list-style: none;
}

.width-100{
    width: 100%;
    text-align: start !important;
}

.text-end{
    text-align: end;
}

.m-10{
    margin: 10px;
}

.wrapper .icon {
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    padding: 15px;
    margin: 10px;
    width: 45px;
    height: 45px;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    white-space: nowrap;
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.black {
    color: rgb(24, 24, 24);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #1877F2;
    color: #ffffff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
    background: #1DA1F2;
    color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
    background: #CD201F;
    color: #ffffff;
}

.android:hover {
    background-color: rgb(21, 178, 0);
}

.apple:hover {
    background-color: rgb(48, 48, 48);
}

iframe {
    width: 30vw;
    height: 15vw;
  }

.requirements{
    margin-top: 10px;
    margin-bottom: 30px;
    margin-left: 10px;
}

.margin-top{
    margin-top: 60px;
}

@media (max-width: 550px) {
    .no-margin-mobile {
        margin-top: 5% !important;       
    }

    .mobile-center{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .mobile-center h1{
        font-size: 300%;
    }

    .mobile-center h2{
        font-size: 200%;
    }

    .screenshot-mobile{
        width: 80%;
        height: auto;
    }

    .logo-mobile{
        padding-top: 35px !important;
        margin-bottom: 10px;
        width: 30%;
        height: auto;
    }

    .download-bar-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        -ms-transform: scale(0.75, 0.75); /* IE 9 */
        -webkit-transform: scale(0.75, 0.75); /* Safari */
        transform: scale(0.75, 0.75);
    }

    .downlaod-mobile{
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media (max-width: 450px){
    .extra-small-download{
        -ms-transform: scale(0.65, 0.65); /* IE 9 */
        -webkit-transform: scale(0.65, 0.65); /* Safari */
        transform: scale(0.65, 0.65);
    }
}

@media (max-width: 350px){
    .extra-small-download{
        -ms-transform: scale(0.55, 0.55); /* IE 9 */
        -webkit-transform: scale(0.55, 0.55); /* Safari */
        transform: scale(0.55, 0.55);
    }
}

@media (max-width: 950px){
    .download-bar {
        margin-bottom: 40px;
        margin-top: 20px;
    }
}