﻿html {
    scroll-behavior: smooth;
}

body {
}

.color-primary {
    color: #ec1848;
}

.flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.box-image {
    height: 160px;
}

.box.hover {
    transition: transform 0.3s;
}

    .box.hover:hover {
        background: #e6e5e5;
    }

/*.box.hover::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    transform-origin: bottom center;
    background: #000;
    z-index: -1;
    transition: transform 0.3s;
}
    .box.hover:hover::after {
        transform: scaleY(1);
    }*/

.first-row {
    display: flex;
    flex-direction: column;
}

.first-row__part1 {
    flex: 1;
}

.first-row__part1-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20%;
}

.new-york-city {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
}

.first-row__part2-content {
}

.first-row-over-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    letter-spacing: 2px;
    font-weight: 700;
    flex-direction: column;
    height: 100%;
}

    .first-row-over-content h1 {
        font-weight: 800;
        font-size: 20px;
    }

@media (min-width:642px) {
    .first-row-over-content h1 {
        font-size: 38px;
    }
}

@media (min-width:942px) {
    .first-row-over-content h1 {
        font-size: 30px;
    }
}

@media (min-width:1050px) {
    .first-row-over-content h1 {
        font-size: 38px;
    }
}

@media (min-width:1250px) {
    .first-row-over-content h1 {
        font-size: 46px;
    }
}

.first-row__part2 {
    background-image: url('../images/gi-header-image.jpg');
    background-color: #272833;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.box-66 {
    position: relative;
    width: 100%
}

    .box-66:before {
        content: "";
        display: block;
        padding-top: 100%;
    }


.second-row {
    display: flex;
    flex-direction: column;
}

.second-row__part1 {
    background-image: url('../images/gi-block-image.jpg');
    background-color: #272833;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.second-row__part2 {
}

.second-row__part3 {
    background-color: #f3f3f3;
    color: #fff;
}

.third-row {
    padding: 25px;
    background-color: #bebebe;
    color: #fff;
    display: flex;
    justify-content: center;
}

.fourth-row {
    display: flex;
    flex-direction: column;
}

.fourth-row__part1 {
}

.fourth-row__part2 {
    background-color: #f3f3f3;
}

.fourth-row__part3 {
    background-color: #ec1848;
    color: #fff;
}

.box {
    position: relative;
    width: 100%; /* desired width */
}

    .box:before {
        content: "";
        display: block;
        padding-top: 100%; /* initial ratio of 1:1*/
    }

.content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fourth-row__part3-content {
    padding: 30px;
    line-height: 30px;
}

    .fourth-row__part3-content h3 {
        line-height: 30px;
        font-size: 18px;
    }

btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.contact-us-btn {
    background-color: transparent;
    border: 2px solid #fff;
}

    .contact-us-btn h3 {
        margin: 0px;
        padding: 0px;
    }

.footer {
    background-color: #000;
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

    .footer a {
        /*color: #ec1848;*/
        color: #fff;
        cursor: pointer;
    }

    .footer > div {
        padding-bottom: 80px;
    }

.footer-social-media {
    padding-top: 20px;
}

    .footer-social-media a {
        padding: 10px;
    }

.footer-part2 {
    display: flex;
    flex-direction: column;
}

    .footer-part2 > div {
        padding-top: 10px;
    }

@media (min-width:320px) { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
}

@media (min-width:480px) {
}

@media (min-width:640px) { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */

}

@media (min-width:948px) { /* tablet, landscape iPad, lo-res laptops ands desktops */
    .box {
        width: 50%;
    }

    .first-row {
        flex-direction: row;
    }

    .box-66 {
        width: 66.66%;
    }

        .box-66:before {
            padding-top: 50%;
        }

    .second-row {
        flex-direction: row;
    }

    .fourth-row {
        flex-direction: row;
    }

    .fourth-row__part3-content h3 {
        font-size: 18px;
        line-height: 23px;
    }

    .footer {
        flex-direction: row;
    }

    .contact-us-btn h3 {
        margin: 0px;
        padding: 8px;
    }

    .footer-part2 {
        flex-direction: row;
    }

    .first-row-over-content {
        flex-direction: row;
        height: auto;
    }
}

@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */
}

@media (min-width:1180px) { /* hi-res laptops and desktops */


    .fourth-row__part3-content h3 {
        font-size: 24px;
        line-height: 32px;
    }
}


.bgimg {
    background-image: url('../images/gi-background.jpg');
    height: 100%;
    /*background-position: center;*/
    background-size: cover;
    position: relative;
    color: white;
    font-family: "Courier New", Courier, monospace;
    font-size: 25px;
    color: #ef2e4e;
    background-attachment: fixed;
}

    .bgimg h1 {
        font-weight: 800;
    }

.middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}






/*identity*/

.navbar-inverse {
    background-color: #fff !important;
    border-color: #fff !important;
    border-bottom: 1px solid rgb(204, 204, 204);
    box-shadow: rgb(245, 245, 245) 2px 3px;
}

.account-logo {
    padding-top: 5px;
    height: 50px;
    width: auto;
}



.navbar {
    min-height: 60px;
}

.navbar-brand {
    padding: 0 15px;
    height: 60px;
    line-height: 80px;
}

.navbar-toggle {
    /* (80px - button height 34px) / 2 = 23px */
    margin-top: 23px;
    padding: 9px 10px !important;
}

.navbar-nav > li > button:hover {
    color: #f02f4e;
}

.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
    color: #f02f4e;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #f02f4e;
}

a {
    color: #f02f4e;
}

@media (min-width: 768px) {
    .navbar-nav > li > a {
        /* (80px - line-height of 27px) / 2 = 26.5px */
        padding-top: 16px;
        padding-bottom: 16px;
        line-height: 27px;
    }

    .navbar-nav > li > button {
        padding-top: 10px;
        padding-bottom: 0px;
        line-height: 21px;
    }
}

.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
    color: #f02f4e;
}


/*Financial page*/
.head {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
}


.left-side {
    flex: 30%;
    padding: 24px;
}

    .left-side h1 {
        letter-spacing: 1px;
        color: #e5053a;
        /*text-shadow: 2px 2px 2px #020202;*/
        padding-left: 35px;
        font-size: 30px;
    }

    .left-side > img {
        padding-left: 110px;
    }

    .left-side > h3 {
        padding-left: 80px;
        color: #e5053a;
    }

    .left-side li {
        list-style: none;
        font-size: 18px;
        text-transform: uppercase;
        color: #e5053a;
        padding-top: 22px;
    }

    .left-side ul li:before {
        background: url(/images/checkmark.svg) no-repeat;
        content: "";
        width: 24px;
        height: 24px;
        position: absolute;
        left: 25px;
    }


.main-side {
    flex: 70%;
    padding: 20px;
}

.item-content {
    display: flex;
    padding: 25px;
    flex-direction: column;
}

.myDiv:target {
    display: block !important;
}

.myDiv h1 {
    letter-spacing: 1px;
    color: #e5053a;
    padding-bottom: 15px;
    /*text-shadow: 2px 2px 2px #020202;*/
}

.myDiv p {
    padding-top: 10px;
    font-size: 18px;
    color: black;
}

.myDiv li {
    padding-top: 10px;
    font-size: 20px;
    list-style: none;
    color: black;
    position: relative;
}

.myDiv ul li:before {
    background: url(/images/checkmark.svg) no-repeat;
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    left: -30px;
}

#GOTOTOP {
    bottom: 2px;
    position: absolute;
    right: 0;
}

#Gototopimage {
    height: 80px;
    width: 80px;
}

.item-content-header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

@media (min-width:768px) {
    .head {
        flex-direction: row !important;
    }

    .item-content-header {
        flex-direction: row !important;
    }
}
