/*******************************/
/********* General CSS *********/
/*******************************/
html{
    margin:0;
    padding:0;
    overflow-x:hidden;
}

body {
    color: #797979;
    overflow-x: hidden;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #414141;
}

a {
    transition: .3s;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    background: #ED1C24 ;
    border: 2px solid transparent;
    border-radius: 0;
    box-shadow: inset 0 0 0 50px #ED1C24 ;
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.btn:hover {
    color: #ED1C24 ;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ED1C24 ;
    border-color: #ED1C24 ;
}

#loader {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #ED1C24 ;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}





/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/

/*Very small screen */
.navbar {
    position: relative;
    transition: .5s;
    width: 100%;
    padding: 60px 80px;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}


@media (max-width: 575.98px) {
    .navbar {
        position: absolute;
        width: 100%;
        padding: 30px 40px;
        transition: .5s;
        z-index: 999;
        background: transparent !important;
    }
    
    .navbar.nav-sticky {
        position: fixed;
        padding-top: 15px;
        padding-bottom: 15px;
        width: 100%;
        background: white !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    }

    .navbar.nav-sticky .container {
        width: 240px;
        height: 41px;
    }

    .navbar .container .logo {
        padding: 0px 0px 0px 0px;

    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus {
        padding: 10px 10px 8px 10px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
    }

    .navbar-light.nav-sticky .navbar-nav .nav-link,
    .navbar-light.nav-sticky .navbar-nav .nav-link:focus {
        color: #414141;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #111111;
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
    .navbar-light.nav-sticky .navbar-nav .nav-link.active {
        color: #EF233C;
    }

    .navbar .container
     .navbar-nav a {
        color: #ffff
    }

    .navbar .container
     .navbar-nav a {
        color: #ffff
    }

    .navbar.nav-sticky .container
     .navbar-nav a {
        color: #313131
    }

    .navbar.nav-sticky .container .logo {
        padding: 0px 0px 0px 0px;
        width: 250px;
        height: 48px;
    }
    
    .navbar .container
     .logo #img {
        opacity: 1;
        display: block;
        width: 240px;
        height: 41px;
    }

    .navbar .container
     .logo #img2 {
        display: none;
        transition: opacity 0.6s ease-out;
        opacity: 0;
    }

    .navbar.nav-sticky .container
     .logo #img {
        display: none;
        transition: opacity 0.6s ease-out;
        opacity: 0;
    }

    .navbar.nav-sticky .container
     .logo #img2 {
        opacity: 1;
        display: block;
        width: 240px;
        height: 41px;
    }
}
    

@media only screen and (min-width: 375px) {
    .navbar {
        position: absolute;
        transition: .5s;
        z-index: 999;
        background: transparent !important;
    }
    
    .navbar.nav-sticky {
        position: fixed;
        padding-top: 15px;
        padding-bottom: 15px;
        width: 100%;
        background: white !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    }

    .navbar .container {
        width: 250px;
    }


    .navbar.nav-sticky .container {
        width: 250px;
        height: 48px;
    }

    .navbar .container .logo {
        padding: 0px 0px 0px 0px;
        width: 250px;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus {
        padding: 10px 10px 8px 10px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
    }

    .navbar-light.nav-sticky .navbar-nav .nav-link,
    .navbar-light.nav-sticky .navbar-nav .nav-link:focus {
        color: #414141;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #111111;
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
    .navbar-light.nav-sticky .navbar-nav .nav-link.active {
        color: #EF233C;
    }

    .navbar .container
     .navbar-nav a {
        color: #ffff
    }

    .navbar .container
     .navbar-nav a {
        color: #ffff
    }

    .navbar.nav-sticky .container
     .navbar-nav a {
        color: #313131
    }

    .navbar.nav-sticky .container .logo {
        padding: 0px 0px 0px 0px;
        width: 250px;
        height: 48px;
    }
    
    .navbar .container
     .logo #img {
        opacity: 1;
        display: block;
        width: 250px;
        height: 48px;
    }

    .navbar .container
     .logo #img2 {
        display: none;
        transition: opacity 0.6s ease-out;
        opacity: 0;
    }

    .navbar.nav-sticky .container
     .logo #img {
        display: none;
        transition: opacity 0.6s ease-out;
        opacity: 0;
    }

    .navbar.nav-sticky .container
     .logo #img2 {
        opacity: 1;
        display: block;
        width: 250px;
        height: 48px;
    }
}

@media only screen and (min-width: 576px) {
    .navbar {
        position: absolute;
        transition: .5s;
        z-index: 999;
        background: transparent !important;
    }
    
    .navbar.nav-sticky {
        position: fixed;
        padding-top: 15px;
        padding-bottom: 15px;
        width: 100%;
        background: white !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    }

    .navbar.nav-sticky .container {
        width: 250px;
        height: 48px;
    }


    .navbar .container
     .logo {
        padding: 0px 0px 0px 0px;
        width: 250px;
        height: 48px;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus {
        padding: 10px 10px 8px 10px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
    }

    .navbar-light.nav-sticky .navbar-nav .nav-link,
    .navbar-light.nav-sticky .navbar-nav .nav-link:focus {
        color: #414141;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #111111;
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
    .navbar-light.nav-sticky .navbar-nav .nav-link.active {
        color: #EF233C;
    }

    .navbar .container
     .navbar-nav a {
        color: #ffff
    }

    .navbar .container
     .navbar-nav a {
        color: #ffff
    }

    .navbar.nav-sticky .container
     .navbar-nav a {
        color: #313131
    }

    .navbar.nav-sticky .container
     .logo {
        padding: 0px 0px 0px 0px;
        width: 250px;
        height: 48px;
    }
    
    .navbar .container
     .logo #img {
        opacity: 1;
        display: block;
        width: 250px;
        height: 48px;
    }

    .navbar .container
     .logo #img2 {
        display: none;
        transition: opacity 0.6s ease-out;
        opacity: 0;
    }

    .navbar.nav-sticky .container
     .logo #img {
        display: none;
        transition: opacity 0.6s ease-out;
        opacity: 0;
    }

    .navbar.nav-sticky .container
     .logo #img2 {
        opacity: 1;
        display: block;
        width: 250px;
        height: 48px;
    }
}

@media only screen and (min-width: 768px) {
.navbar {
    position: absolute;
    transition: .5s;
    z-index: 999;
    background: transparent !important;
}

.navbar.nav-sticky {
    position: fixed;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    background: white !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.navbar .container .logo {
    padding: 0px 0px 0px 0px;
    max-width: 100%;
    height: 48px;
}

.navbar.nav-sticky .container .logo {
    padding: 0px 0px 0px 0px;
    max-width: 100%;
    height: 48px;
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:focus {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.navbar-light.nav-sticky .navbar-nav .nav-link,
.navbar-light.nav-sticky .navbar-nav .nav-link:focus {
    color: #414141;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #111111;
}

.navbar-light.nav-sticky .navbar-nav .nav-link:hover,
.navbar-light.nav-sticky .navbar-nav .nav-link.active {
    color: #EF233C;
}

.navbar .container
 .navbar-nav a {
    color: #ffff
}

.navbar .container
 .navbar-nav a {
    color: #ffff
}

.navbar.nav-sticky .container .navbar-nav a {
    color: #313131
}

.navbar.nav-sticky .container .logo-top {
    position: absolute;
    padding: 0px 0px 0px 0px;
    width: 250px;
    height: 48px;
}

.navbar.nav-sticky .container .logo-sticky {
    position: absolute;
    padding: 0px 0px 0px 0px;
    width: 250px;
    height: 48px;
}

.navbar .container .logo-top #img {
    opacity: 1;
    display: block;
    width: 250px;
    height: 48px;
}

.navbar .container .logo .logo-sticky #img2 {
    display: none;
    transition: opacity 0.6s ease-out;
    opacity: 0;
}

.navbar.nav-sticky .container .logo .logo-top #img {
    display: none;
    transition: opacity 0.6s ease-out;
    opacity: 0;
}

.navbar.nav-sticky .container .logo .logo-sticky #img2 {
    opacity: 1;
    display: block;
    width: 250px;
    height: 48px;
}
}


/* NavBar PC */
@media only screen and (min-width: 992px) {
.navbar {
    position: absolute;
    transition: .5s;
    z-index: 999;
    background: transparent !important;
}

.navbar.nav-sticky {
    position: fixed;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    background: white !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.navbar .container {
    width: 1110px;
}

.navbar.nav-sticky .container {
    width: 842px;
    height: 48px;
}

.navbar .container
 .logo {
    padding: 0px 0px 0px 0px;
    width: 250px;
    height: 48px;
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:focus {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.navbar-light.nav-sticky .navbar-nav .nav-link,
.navbar-light.nav-sticky .navbar-nav .nav-link:focus {
    color: #414141;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #111111;
}

.navbar-light.nav-sticky .navbar-nav .nav-link:hover,
.navbar-light.nav-sticky .navbar-nav .nav-link.active {
    color: #EF233C;
}

.navbar .container
 .navbar-nav a {
    color: #ffff
}

.navbar.nav-sticky .container
 .navbar-nav a {
    color: #313131
}

.navbar.nav-sticky .container
 .logo {
    padding: 0px 0px 0px 0px;
    width: 250px;
    height: 48px;
}

.navbar .container
 .logo #img {
    opacity: 1;
    display: block;
    width: 250px;
    height: 48px;
}

.navbar .container
 .logo #img2 {
    display: none;
    transition: opacity 0.6s ease-out;
    opacity: 0;
}

.navbar.nav-sticky .container
 .logo #img {
    display: none;
    transition: opacity 0.6s ease-out;
    opacity: 0;
}

.navbar.nav-sticky .container
 .logo #img2 {
    opacity: 1;
    display: block;
    width: 250px;
    height: 48px;
}
}

@media only screen and (min-width: 1200px) {
.navbar {
    position: absolute;
    transition: .5s;
    z-index: 999;
    background: transparent !important;
}

.navbar.nav-sticky {
    position: fixed;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    background: white !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.navbar .container {
    width: 1110px;
}

.navbar.nav-sticky .container {
    width: 1110px;
    height: 48px;
}

.navbar .container
 .logo {
    padding: 0px 0px 0px 0px;
    width: 250px;
    height: 48px;
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:focus {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.navbar-light.nav-sticky .navbar-nav .nav-link,
.navbar-light.nav-sticky .navbar-nav .nav-link:focus {
    color: #414141;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #111111;
}

.navbar-light.nav-sticky .navbar-nav .nav-link:hover,
.navbar-light.nav-sticky .navbar-nav .nav-link.active {
    color: #EF233C;
}

.navbar .container
 .navbar-nav a {
    color: #ffff
}

.navbar.nav-sticky .container
 .navbar-nav a {
    color: #313131
}

.navbar.nav-sticky .container
 .logo {
    padding: 0px 0px 0px 0px;
    width: 250px;
    height: 48px;
}

.navbar .container
 .logo #img {
    opacity: 1;
    display: block;
    width: 250px;
    height: 48px;
}

.navbar .container
 .logo #img2 {
    display: none;
    transition: opacity 0.6s ease-out;
    opacity: 0;
}

.navbar.nav-sticky .container
 .logo #img {
    display: none;
    transition: opacity 0.6s ease-out;
    opacity: 0;
}

.navbar.nav-sticky .container
 .logo #img2 {
    opacity: 1;
    display: block;
    width: 250px;
    height: 48px;
}
}

@media only screen and (min-width: 1440px) {
.navbar {
    position: absolute;
    transition: .5s;
    z-index: 999;
    background: transparent !important;
}

.navbar.nav-sticky {
    position: fixed;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    background: white !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.navbar.nav-sticky .container {
    width: 1280px;
    height: 48px;
}

.navbar .container
 .logo {
    padding: 0px 0px 0px 0px;
    width: 250px;
    height: 48px;
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:focus {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.navbar-light.nav-sticky .navbar-nav .nav-link,
.navbar-light.nav-sticky .navbar-nav .nav-link:focus {
    color: #414141;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #111111;
}

.navbar-light.nav-sticky .navbar-nav .nav-link:hover,
.navbar-light.nav-sticky .navbar-nav .nav-link.active {
    color: #EF233C;
}

.navbar .container
 .navbar-nav a {
    color: #ffff
}

.navbar.nav-sticky .container
 .navbar-nav a {
    color: #313131
}

.navbar.nav-sticky .container
 .logo {
    padding: 0px 0px 0px 0px;
    width: 250px;
    height: 48px;
}

.navbar .container
 .logo #img {
    opacity: 1;
    display: block;
    width: 250px;
    height: 48px;
}

.navbar .container
 .logo #img2 {
    display: none;
    transition: opacity 0.6s ease-out;
    opacity: 0;
}

.navbar.nav-sticky .container
 .logo #img {
    display: none;
    transition: opacity 0.6s ease-out;
    opacity: 0;
}

.navbar.nav-sticky .container
 .logo #img2 {
    opacity: 1;
    display: block;
    width: 250px;
    height: 48px;
}
}

@media only screen and (min-width: 1920px) {
.navbar {
    position: absolute;
    transition: .5s;
    z-index: 999;
    background: transparent !important;

}

.navbar.nav-sticky {
    position: fixed;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    background: white !important;
    box-shadow: 0 6px 5px rgba(0, 0, 0, .15);
}

.navbar .container {
    width: 1110px;
}

.navbar.nav-sticky .container {
    width: 1110px;
    height: auto;
}

.navbar .container
 .logo {
    padding: 0px 0px 0px 0px;
    width: 500px;
    height: 86px;
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:focus {
    padding: 15px 10px 8px 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.navbar-light.nav-sticky .navbar-nav .nav-link,
.navbar-light.nav-sticky .navbar-nav .nav-link:focus {
    padding: 10px 10px 8px 10px;
    color: #414141;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #111111;
}

.navbar-light.nav-sticky .navbar-nav .nav-link:hover,
.navbar-light.nav-sticky .navbar-nav .nav-link.active {
    color: #EF233C;
}

.navbar .container
 .navbar-nav a {
    color: #ffff
}

.navbar.nav-sticky .container
 .navbar-nav a {
    color: #313131
}

.navbar.nav-sticky .container
 .logo {
    padding: 0px 0px 0px 0px;
    width: 250px;
    height: 48px;
}

.navbar .container
 .logo #img {
    opacity: 1;
    display: block;
    width: 250px;
    height: 48px;
}

.navbar .container
 .logo #img2 {
    display: none;
    transition: opacity 0.6s ease-out;
    opacity: 0;
}

.navbar.nav-sticky .container
 .logo #img {
    display: none;
    transition: opacity 0.6s ease-out;
    opacity: 0;

}

.navbar.nav-sticky .container.logo #img2 {
        opacity: 1;
        display: block;
        width: 250px;
        height: 48px;
}
}





/*******************************/
/********** Hero CSS ***********/
/*******************************/

/* Hero Celular */

@media only screen and (min-width: 320px) {
    .hero {
        position: relative;
        margin-bottom: 45px;
        width: 100%;
        padding: 205px 0 200px 0;
        overflow: hidden;
        background: linear-gradient(RGBA(237, 28, 36, .80), RGBA(237, 28, 36, .80));
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .hero video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.1;
    }
    
    .hero .container-fluid {
        padding: 0;
    }
    
    .hero .hero-image {
        position: relative;
        text-align: right;
    }
    
    
    
    .hero .hero-content {
        position: relative;
        padding-top: 0px;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .hero .hero-text {
        width: 320px;
        text-align: center;
    }

    .hero .hero-text p {
        color: #ffffff;
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .hero .hero-text h1 {
        color: #ffffff;
        font-size: 25px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0px;
        margin-bottom: 15px;
    }
    
    .hero .hero-text h2 {
        display: inline-block;
        margin: 0;
        height: 30px;
        color: #ffffff;
        width: 320px;
        font-size: 17.5px;
        font-weight: 500;
    }
    
    .hero .hero-text .typed-text {
        display: none;
    }
    
    .hero .hero-text .typed-cursor {
        display: none;
    }
    
    .hero .hero-btn .btn {
        margin-top: 35px;
        color: #ED1C24 ;
        background: #ffffff;
        box-shadow: inset 0 0 0 50px #ffffff;
    }
    
    .hero .hero-btn .btn:hover {
        color: #ffffff;
        background: transparent;
        box-shadow: inset 0 0 0 0 #ffffff;
        border-color: #ffffff;
    }
}


@media only screen and (min-width: 375px) {
    .hero {
        position: relative;
        width: 100%;
        margin-bottom: 45px;
        padding: 205px 0 200px 0;
        overflow: hidden;
        background: linear-gradient(RGBA(237, 28, 36, .80), RGBA(237, 28, 36, .80));
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .hero video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.1;
    }
    
    .hero .container-fluid {
        padding: 0;
    }
    
    .hero .hero-image {
        position: relative;
        text-align: right;
    }
    
    
    
    .hero .hero-content {
        position: relative;
        padding-top: 0px;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .hero .hero-text {
        width: 375px;
        text-align: center;
    }

    .hero .hero-text p {
        color: #ffffff;
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .hero .hero-text h1 {
        color: #ffffff;
        font-size: 25px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0px;
        margin-bottom: 15px;
    }
    
    .hero .hero-text h2 {
        display: inline-block;
        margin: 0;
        height: 30px;
        color: #ffffff;
        width: 375px;
        font-size: 17.5px;
        font-weight: 500;
    }
    
    .hero .hero-text .typed-text {
        display: none;
    }
    
    .hero .hero-text .typed-cursor {
        display: none;
    }
    
    .hero .hero-btn .btn {
        margin-top: 35px;
        color: #ED1C24 ;
        background: #ffffff;
        box-shadow: inset 0 0 0 50px #ffffff;
    }
    
    .hero .hero-btn .btn:hover {
        color: #ffffff;
        background: transparent;
        box-shadow: inset 0 0 0 0 #ffffff;
        border-color: #ffffff;
    }
}


@media only screen and (min-width: 576px) {
    .hero {
        position: relative;
        width: 100%;
        margin-bottom: 45px;
        padding: 210px 0 86px 0;
        overflow: hidden;
        background: linear-gradient(RGBA(237, 28, 36, .80), RGBA(237, 28, 36, .80));
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .hero video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.1;
    }
    
    .hero .container-fluid {
        padding: 0;
    }
    
    .hero .hero-image {
        position: relative;
        text-align: right;
        padding-right: 75px;
    }
    
    
    
    .hero .hero-content {
        position: relative;
        padding-top: 0px;
        max-width: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    
    .hero .hero-text {
        width: 576px;
        text-align: center;
    }

    .hero .hero-text p {
        color: #ffffff;
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .hero .hero-text h1 {
        color: #ffffff;
        font-size: 48px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0px;
        margin-bottom: 15px;
    }
    
    .hero .hero-text h2 {
        display: inline-block;
        margin: 0;
        height: 24px;
        color: #ffffff;
        width: 576px;
        font-size: 28px;
        font-weight: 400;
    }
    
    .hero .hero-text .typed-text {
        display: none;
    }
    
    .hero .hero-text .typed-cursor {
        display: none;
    }
    
    .hero .hero-btn .btn {
        margin-top: 35px;
        color: #ED1C24 ;
        background: #ffffff;
        box-shadow: inset 0 0 0 50px #ffffff;
    }
    
    .hero .hero-btn .btn:hover {
        color: #ffffff;
        background: transparent;
        box-shadow: inset 0 0 0 0 #ffffff;
        border-color: #ffffff;
    }
}

/* Hero Tablet */
@media only screen and (min-width: 768px) {
    .hero {
        position: relative;
        width: 100%;
        margin-bottom: 45px;
        padding: 300px 0 200px 0;
        overflow: hidden;
        background: linear-gradient(RGBA(237, 28, 36, .80), RGBA(237, 28, 36, .80));
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .hero video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.1;
    }
    
    .hero .container-fluid {
        padding: 0;
    }
    
    .hero .hero-image {
        position: relative;
        text-align: right;
        padding-right: 75px;
    }

    .hero .hero-content {
        position: relative;
        padding-left: 0px;
        padding-top: 0px;
        max-width: 768px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .hero .hero-text {
        width: 768px;
        text-align: center;
    }
    
    .hero .hero-text p {
        color: #ffffff;
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .hero .hero-text h1 {
        color: #ffffff;
        font-size: 50px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0px;
        margin-bottom: 15px;
    }
    
    .hero .hero-text h2 {
        display: inline-block;
        margin: 0;
        height: 30px;
        color: #ffffff;
        font-size: 35px;
        font-weight: 350;
    }
    
    .hero .hero-text .typed-text {
        display: none;
    }
    
    .hero .hero-text .typed-cursor {
        font-size: 35px;
        font-weight: 300;
        color: #ffffff;
    }
    
    .hero .hero-btn .btn {
        margin-top: 35px;
        color: #ED1C24 ;
        background: #ffffff;
        box-shadow: inset 0 0 0 50px #ffffff;
    }
    
    .hero .hero-btn .btn:hover {
        color: #ffffff;
        background: transparent;
        box-shadow: inset 0 0 0 0 #ffffff;
        border-color: #ffffff;
    }
}

@media only screen and (min-width: 992px) {
    .hero {
        position: relative;
        width: 100%;
        margin-bottom: 45px;
        padding: 300px 0 200px 0;
        overflow: hidden;
        background: linear-gradient(RGBA(237, 28, 36, .80), RGBA(237, 28, 36, .80));
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .hero video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.1;
    }
    
    .hero .container-fluid {
        padding: 37px;
        
    }
    
    .hero .hero-image {
        position: relative;
        text-align: right;
        padding-right: 75px;
    }
    
    
    
    .hero .hero-content {
        position: relative;
        padding-left: 20px;
        padding-top: 0px;
        width: 1000px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }

    .hero .hero-text {
        width: 992px;
        text-align: left;
    }
    
    .hero .hero-text p {
        color: #ffffff;
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .hero .hero-text h1 {
        color: #ffffff;
        font-size: 50px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0px;
        margin-bottom: 15px;
    }
    
    .hero .hero-text h2 {
        display: inline-block;
        margin: 0;
        height: 30px;
        color: #ffffff;
        font-size: 35px;
        font-weight: 350;
    }
    
    .hero .hero-text .typed-text {
        display: none;
    }
    
    .hero .hero-text .typed-cursor {
        font-size: 35px;
        font-weight: 300;
        color: #ffffff;
    }
    
    .hero .hero-btn .btn {
        margin-top: 35px;
        color: #ED1C24 ;
        background: #ffffff;
        box-shadow: inset 0 0 0 50px #ffffff;
    }
    
    .hero .hero-btn .btn:hover {
        color: #ffffff;
        background: transparent;
        box-shadow: inset 0 0 0 0 #ffffff;
        border-color: #ffffff;
    }
}


@media only screen and (min-width: 1200px) {
    .hero {
        position: relative;
        width: 100%;
        margin-bottom: 45px;
        padding: 300px 0 200px 0;
        overflow: hidden;
        background: linear-gradient(RGBA(237, 28, 36, .80), RGBA(237, 28, 36, .80));
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .hero video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.1;
    }
    
    .hero .container-fluid {
        padding: 37px;
        
    }
    
    .hero .hero-image {
        position: relative;
        text-align: right;
        padding-right: 75px;
    }
    
    
    
    .hero .hero-content {
        position: relative;
        padding-left: 0px;
        padding-top: 0px;
        width: 1000px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }

    .hero .hero-text {
        width: 1200px;
        text-align: left;
    }
    
    .hero .hero-text p {
        color: #ffffff;
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .hero .hero-text h1 {
        color: #ffffff;
        font-size: 50px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0px;
        margin-bottom: 15px;
    }
    
    .hero .hero-text h2 {
        display: inline-block;
        margin: 0;
        height: 30px;
        color: #ffffff;
        font-size: 35px;
        font-weight: 350;
    }
    
    .hero .hero-text .typed-text {
        display: none;
    }
    
    .hero .hero-text .typed-cursor {
        font-size: 35px;
        font-weight: 300;
        color: #ffffff;
    }
    
    .hero .hero-btn .btn {
        margin-top: 35px;
        color: #ED1C24 ;
        background: #ffffff;
        box-shadow: inset 0 0 0 50px #ffffff;
    }
    
    .hero .hero-btn .btn:hover {
        color: #ffffff;
        background: transparent;
        box-shadow: inset 0 0 0 0 #ffffff;
        border-color: #ffffff;
    }
}

@media only screen and (min-width: 1440px) {
    .hero {
        position: relative;
        width: 100%;
        margin-bottom: 45px;
        padding: 250px 0 100px 0;
        overflow: hidden;
        background: linear-gradient(RGBA(237, 28, 36, .80), RGBA(237, 28, 36, .80));
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .hero video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.1;
    }
    
    .hero .container-fluid {
        padding: 37px;
        
    }
    
    .hero .hero-image {
        position: relative;
        text-align: right;
        padding-right: 75px;
    }
    
    
    
    .hero .hero-content {
        position: relative;
        padding-left: 0px;
        padding-top: 0px;
        width: 1000px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }
    
    .hero .hero-text {
        width: 1440px;
        text-align: left;
    }

    .hero .hero-text p {
        color: #ffffff;
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .hero .hero-text h1 {
        color: #ffffff;
        font-size: 50px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0px;
        margin-bottom: 15px;
    }
    
    .hero .hero-text h2 {
        display: inline-block;
        margin: 0;
        height: 30px;
        color: #ffffff;
        font-size: 35px;
        font-weight: 350;
    }
    
    .hero .hero-text .typed-text {
        display: none;
    }
    
    .hero .hero-text .typed-cursor {
        font-size: 35px;
        font-weight: 300;
        color: #ffffff;
    }
    
    .hero .hero-btn .btn {
        margin-top: 35px;
        color: #ED1C24 ;
        background: #ffffff;
        box-shadow: inset 0 0 0 50px #ffffff;
    }
    
    .hero .hero-btn .btn:hover {
        color: #ffffff;
        background: transparent;
        box-shadow: inset 0 0 0 0 #ffffff;
        border-color: #ffffff;
    }
}

@media only screen and (min-width: 1920px) {
    .hero {
        position: relative;
        width: 100%;
        margin-bottom: 45px;
        padding: 300px 0 200px 0;
        overflow: hidden;
        background: linear-gradient(RGBA(237, 28, 36, .90), RGBA(237, 28, 36, .90));
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .hero video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.1;
    }
    
    .hero .container {
        padding: 37px;
        
    }
    
    .hero .hero-image {
        position: relative;
        text-align: right;
        padding-right: 75px;
    }
    
    
    
    .hero .hero-content {
        position: relative;
        padding-left: 0px;
        padding-top: 0px;
        width: 1000px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }
    
    .hero .hero-text {
        width: 1920px;
        text-align: left;
    }

    .hero .hero-text p {
        color: #ffffff;
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .hero .hero-text h1 {
        color: #ffffff;
        font-size: 50px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0px;
        margin-bottom: 15px;
    }
    
    .hero .hero-text h2 {
        display: inline-block;
        margin: 0;
        height: 30px;
        color: #ffffff;
        font-size: 35px;
        font-weight: 350;
    }
    
    .hero .hero-text .typed-text {
        display: none;
    }
    
    .hero .hero-text .typed-cursor {
        font-size: 35px;
        font-weight: 300;
        color: #ffffff;
    }
    
    .hero .hero-btn .btn {
        margin-top: 35px;
        width: auto;
        height: 48px;
        color: #ED1C24;
        background: #ffffff;
        box-shadow: inset 0 0 0 50px #ffffff;
    }
    
    .hero .hero-btn .btn:hover {
        color: #ffffff;
        background: transparent;
        box-shadow: inset 0 0 0 0 #ffffff;
        border-color: #ffffff;
    }
}





/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    margin-bottom: 45px;
}

.section-header p {
    display: inline-block;
    margin: 0 30px;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #ffffff;
}

.section-header p::before {
    position: absolute;
    content: "";
    height: 3px;
    top: 11px;
    right: 0;
    left: -30px;
    background: #ED1C24 ;
    z-index: -1;
}

.section-header p::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 3px;
    top: 11px;
    left: 3px;
    background: #ED1C24 ;
    z-index: 1;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 45px;
    font-weight: 700;
}

@media only screen and (min-width: 375px) {
    .section-header h2 {
        font-size: 30px;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    margin: 2s 5px 0 45px 0;
}

.about .col-lg-6 {
    padding: 0;
    padding-left: 131px;
    max-width: 540px;
    text-align: justify;
}

.about .section-header {
    margin-bottom: 30px;
}

.about .section-header p {
    width: max-content;
}

.about .about-img {
    position: relative;
    height: 625px;
    width: 540px;
}

.about .about-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-content {
    padding: 0 60px;
    width: auto;
    padding: 45px 15px 0 120px;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    margin-top: 15px;
}

@media only screen and (min-width: 320px) {
    .about .col-lg-6 {
        padding: 0;
        padding-left: 10px;
        max-width: 0px;
        text-align: justify;
    }

    .about .abo .section-header h2 {
        font-size: 12px;
        width: 300px;
    }

    .about .about-text p {
        font-size: 16px;
        width: 330px;
    }

    .about .about-content {
        padding: 15px 15px 0 0px;
    }

    .about .about-content .section-header {
        text-align: center;
    }

    .about .about-img {
        display: none;
    }

    .about .about-img img {
        display: none;
    }
}

@media only screen and (min-width: 375px) {
    .about .col-lg-6 {
        padding: 0;
        padding-left: 10px;
        max-width: 0px;
        text-align: justify;
    }

    .about .abo .section-header h2 {
        font-size: 12px;
        width: 300px;
    }

    .about .about-text p {
        font-size: 16px;
        width: 330px;
    }

    .about .about-content {
        padding: 15px 15px 0 0px;
    }

    .about .about-content .section-header {
        text-align: center;
    }

    .about .about-img {
        display: none;
    }

    .about .about-img img {
        display: none;
    }
}

@media only screen and (min-width: 576px) {
    .about .col-lg-6 {
        padding: 0;
        padding-left: 20px;
        max-width: 0px;
        text-align: justify;
    }

    .about .about-text p {
        font-size: 16px;
        width: 500px;
    }

    .about .about-content {
        padding: 15px 15px 0 0px;
    }

    .about .about-content .section-header {
        text-align: center;
    }

    .about .about-img {
        display: none;
    }

    .about .about-img img {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .about .col-lg-6 {
        padding: 0;
        padding-left: 20px;
        max-width: 0px;
        text-align: justify;
    }

    .about .about-text p {
        font-size: 16px;
        width: 690px;
    }

    .about .about-content {
        padding: 15px 15px 0 0px;
    }

    .about .about-content .section-header {
        text-align: center;
    }

    .about .about-img {
        display: none;
    }

    .about .about-img img {
        display: none;
    }
}

@media only screen and (min-width: 992px) {
    .about .col-lg-6 {
        padding: 0;
        padding-left: 30px;
        max-width: 320px;
        text-align: justify;
    }

    .about .about-text p {
        font-size: 16px;
        width: 475px;
    }

    .about .about-content {
        padding: 15px 15px 0 120px;
    }

    .about .about-img {
        display: block;
        position: relative;
        height: 469px;
        width: 405px;
    }

    .about .about-img img {
        display: block;
        position: relative;
        width: 405px;
        height: 469;
        object-fit: cover;
    }
}

@media only screen and (min-width: 1200px) {
    .about .col-lg-6 {
        padding: 0;
        padding-left: 45px;
        max-width: 480px;
        text-align: justify;
    }

    .about .about-img {
        position: relative;
        height: 625px;
        width: 540px;
    }

    .about .about-img img {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about .about-text p {
        font-size: 16px;
        width: 480px;
    }
}

@media only screen and (min-width: 1440px) {
    .about .col-lg-6 {
        padding: 0;
        padding-left: 131px;
        max-width: 540px;
        text-align: justify;
    }

    .about .about-img {
        position: relative;
        height: 625px;
        width: 540px;
    }

    .about .about-img img {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about .about-text p {
        font-size: 16px;
        width: 480px;
    }
}

/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 40px 0 5px 0;
}

.service .service-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 0 0 transparent;
    transition: ease-out 0.5s;
}

.service .service-item:hover {
    box-shadow: inset 800px 0 0 0 #ED1C24 ;
}

.service .service-icon {
    position: relative;
    width: 150px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ED1C24 ;
    background: #ffffff;
}

.service .service-icon img {
    position: relative;
    height: 100%;
    width: 100%;
    transition: .3s;
}

.service .service-item:hover i {
    font-size: 75px;
}

.service .service-text {
    position: relative;
    width: calc(100% - 120px);
    padding: 0 30px;
}

.service .service-text h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    transition: 1s;
}

.service .service-text p {
    margin: 0;
    font-size: 16px;
    transition: 1s;
}

.service .service-item:hover .service-text h3,
.service .service-item:hover .service-text p {
    color: #ffffff;
}

@media (min-width: 375px) {
    .service .service-text {
        position: relative;
        width: 200px;
        height: fit-content;
        padding: 0 10px;
    }

    .service .service-text p {
        font-size: 14px;
        text-align: left;
    }
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 60px 0 0px 0;
}

.portfolio #portfolio-filter {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-filter li {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: #ED1C24 ;
    border: 2px solid transparent;
    border-radius: 0;
    box-shadow: inset 0 0 0 50px #ED1C24 ;
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.portfolio #portfolio-filter li:hover,
.portfolio #portfolio-filter li.filter-active {
    color: #ED1C24 ;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ED1C24 ;
    border-color: #ED1C24 ;
}

.portfolio .portfolio-item {
    position: relative;
}

.portfolio .portfolio-wrap {
    position: relative;
    width: 100%;
}

.portfolio .portfolio-img {
    position: relative;
    border: 2px solid #ED1C24 ;
    overflow: hidden;
}

.portfolio .portfolio-img img {
    position: relative;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transform: scale(1.1);
    transition: .5s;
}

.portfolio .portfolio-item:hover img {
    margin-left: 15px;
}

.portfolio .portfolio-text {
    position: relative;
    height: 60px;
    width: calc(100% - 30px);
    margin: -30px 15px 30px 15px;
    display: flex;
    align-items: center;
    background: #ED1C24;
    box-shadow: 0 0 15px rgba(0, 0, 0, .35);
}

.portfolio .portfolio-text h3 {
    color: #ffffff;
    width: calc(100% - 70px);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 0 15px;
    white-space: nowrap;
    overflow: hidden;
}

.portfolio .portfolio-text a.btn {
    width: 50px;
    height: 50px;
    padding: 0 0 2px 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-weight: 100;
}

.portfolio .portfolio-item:hover a.btn {
    color: #ED1C24 ;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ED1C24 ;
    border-color: #ED1C24 ;
}


/*******************************/
/********* Banner CSS **********/
/*******************************/
.banner {
    position: relative;
    width: 100%;
    margin: 30px 0;
    padding: 50px 0;
    background: #ED1C24 ;
}

.banner .container {
    max-width: 750px;
    text-align: center;
}

.banner .section-header {
    margin-bottom: 20px;
}

.banner .section-header p {
    color: #414141;
    background: transparent;
}

.banner .section-header p::after {
    display: none;
}

.banner .section-header h2 {
    color: #ffffff;
}

.banner .section-header h2 span {
    color: #414141;
    font-size: 50px;
}

.banner .banner-text p {
    font-size: 18px;
    color: #ffffff;
}

.banner .banner-text .btn {
    margin-top: 15px;
    color: #ED1C24 ;
    background: #ffffff;
    box-shadow: inset 0 0 0 50px #ffffff;
}

.banner .banner-text .btn:hover {
    color: #ffffff;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ffffff;
    border-color: #ffffff;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    margin-top: 45px;
    background: #ED1C24 ;
}

.footer .container-fluid {
    padding: 60px 0 0 0;
}

.contact .title-text {
    position: relative;
    width: 100%;
    padding-top: 20px;
    margin-bottom: 35px;
    background-color: #ED1C24 ;
    text-align: center;
}

.contact .title-text h2 {
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 30px;
    font-weight: 1000;
    background-color: #ED1C24 ;
    color: #ffff;
}

.contact .maps-embed {
    position: relative;
    text-align: center;
}

.contact .maps-embed iframe {
    position: relative;
    text-align: center;
    border-style: solid;
    border-width: 10px;
    border-color: #ffffff;
}

.contact .footer-container {
    padding-top: 20px;
}

.contact .footer-info {
    position: relative;
    width: 100%;
    text-align: center;
}

.contact .footer-info h2 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}

.contact .footer-info h3 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.contact .footer-info h4 {
    margin-bottom: 25px;
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
}

.contact .footer-menu {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.contact .footer-menu p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: 20px;
    padding: 0 15px;
    border-right: 1px solid #ffffff;
}

.contact .footer-menu p:last-child {
    border: none;
}

.contact .footer-social {
    position: relative;
    margin-top: 15px;
}

.contact .footer-social a {
    display: inline-block;
}

.contact .footer-social a i {
    margin-right: 15px;
    font-size: 20px;
    color: #ffffff;
    transition: .3s;
}

.contact .footer-social a:last-child i {
    margin: 0;
}

.contact .footer-social a:hover i {
    color: #414141;
}

.contact .footer-legal p {
    margin-top: 12px;
    color: #ffffff;
}

.contact .copyright {
    position: relative;
    text-align: center;
    margin-top: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.contact .copyright::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    top: 0;
    left: 25%;
    background: rgba(256, 256, 256, 1);
}

.contact .copyright p {
    margin: 0;
    color: #ffffff;
}

.contact .copyright .col-md-6:last-child p {
    text-align: right;
}

.contact .copyright p a {
    color: #ffffff;
    font-weight: 600;
}

.contact .copyright p a:hover {
    color: #414141;
}

@media (min-width: 320px) {
    .contact .footer-menu {
        padding: 0 0 0 0;
    }

    .contact .title-text {
        margin-bottom: 10px;
    }

    .contact .maps-embed iframe {
        position: relative;
        text-align: center;
        border-style: solid;
        border-width: 10px;
        width: 290px;
        height: 290px;
        border-color: #ffffff;
    }
}

@media (min-width: 375px) {
    .contact .footer-menu {
        padding: 0 0 0 0;
    }

    .contact .maps-embed iframe {
        position: relative;
        text-align: center;
        border-style: solid;
        border-width: 10px;
        width: 345px;
        height: 345px;
        border-color: #ffffff;
    }
}

@media (min-width: 576px) {
    .contact .footer-menu {
        padding: 0 0 0 0;
    }

    .contact .maps-embed iframe {
        position: relative;
        text-align: center;
        border-style: solid;
        border-width: 10px;
        width: 546px;
        height: 445px;
        border-color: #ffffff;
    }
}

@media (min-width: 768px) {
    .contact .footer-menu {
        padding: 0 0px 0 0;
    }

    .contact .maps-embed iframe {
        position: relative;
        text-align: center;
        border-style: solid;
        border-width: 10px;
        width: 738px;
        height: 445px;
        border-color: #ffffff;
    }
}

@media (min-width: 992px) {
    .contact .footer-menu {
        padding: 0 0px 0 0;
    }

    .contact .maps-embed iframe {
        position: relative;
        text-align: center;
        border-style: solid;
        border-width: 10px;
        width: 950px;
        height: 445px;
        border-color: #ffffff;
    }
}

@media (min-width: 1200px) {
    .contact .footer-menu {
        padding: 0 0px 0 0;
    }

    .contact .maps-embed iframe {
        position: relative;
        text-align: center;
        border-style: solid;
        border-width: 10px;
        width: 950px;
        height: 445px;
        border-color: #ffffff;
    }
}

@media (min-width: 1440px) {
    .contact .footer-menu {
        padding: 0 0px 0 0;
    }

    .contact .maps-embed iframe {
        position: relative;
        text-align: center;
        border-style: solid;
        border-width: 10px;
        width: 950px;
        height: 445px;
        border-color: #ffffff;
    }
}

@media (min-width: 1920px) {
    .contact .footer-menu {
        padding: 0 0px 0 0;
    }

    .contact .maps-embed iframe {
        position: relative;
        text-align: center;
        border-style: solid;
        border-width: 10px;
        width: 950px;
        height: 445px;
        border-color: #ffffff;
    }
}