@import url(//fonts.googleapis.com/css?family=DM+Sans:400,500,700|Didact+Gothic|Darker+Grotesque:500&display=swap);
@import url(//cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css);
* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box
}

body {
    font: 400 16px Didact Gothic, sans-serif;
    background: #FFF;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
    width: 100%
}

.error-text {
    position: absolute;
    left: 0;
    width: 100%
}

.has-error {
    border-color: #FF0000!important
}

input,
button,
textarea,
select {
    font: 400 16px Didact Gothic, sans-serif!important
}

.clear {
    clear: both
}

a,
a:visited,
a:link {
    text-decoration: none;
    color: #333
}

a {
    background-color: transparent
}

a:active,
a:hover {
    outline: 0
}

button {
    cursor: pointer
}

.button {
    position: relative;
    width: 120px;
    height: 40px;
    color: #fff;
    display: inline-flex;
    line-height: 0;
    align-items: center;
    justify-content: center
}

.button::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 5px;
    left: 5px;
    background: transparent;
    border: 2px solid #B0B0B0;
    color: #B0B0B0;
    z-index: 1;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.button[nameBtn]::after {
    position: absolute;
    content: attr(nameBtn);
    width: 100%;
    height: 100%;
    border: 2px solid #202020;
    background: #202020;
    color: #fff;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase
}

.button[nameBtn]:hover::before {
    transform: translate(-7px, -7px);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

@media (min-width:992px) {
    .container {
        width: 970px;
        margin-right: auto;
        margin-left: auto
    }
    .menu-footer-content,
    .header-menu,
    .hidden-max-1024 {
        display: none!important
    }
}

@media (min-width:1025px) {
    .container {
        width: 970px;
        margin-right: auto;
        margin-left: auto
    }
    .banner-home {
        width: 100%;
        height: 650px;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat
    }
    .banner-intern {
        width: 100%;
        height: 400px;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        background-color: rgba(0, 0, 0, .5);
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 90px;
        position: relative
    }
    .banner-intern-content {
        text-align: center
    }
    .banner-intern .breadcrumb {
        margin-bottom: 8px;
        color: #FFF
    }
    .banner-intern .breadcrumb a,
    .banner-intern .breadcrumb span {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        line-height: 11px;
        text-align: center;
        text-transform: uppercase
    }
    .banner-intern .breadcrumb a {
        text-decoration: none;
        color: #FFF
    }
    .banner-intern .breadcrumb a:hover {
        color: #d4d4d4
    }
    .banner-intern .breadcrumb span {
        color: #B0B0B0
    }
    .banner-intern-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        text-align: center;
        letter-spacing: -.05em;
        color: #FFF;
        text-transform: uppercase
    }
    .header {
        position: absolute;
        width: 100%;
        height: 120px;
        top: 0;
        left: 0;
        z-index: 1000
    }
    .header .container {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .header .logo a img {
        height: 62px
    }
    .header nav {
        margin-top: -30px
    }
    .header nav ul {
        padding: 0;
        margin: 0
    }
    .header nav ul li {
        display: inline-block
    }
    .header nav ul li a {
        margin: 0 5px;
        text-transform: uppercase
    }
    .header nav ul li a>span {
        line-height: 40px;
        height: 38px;
        margin-top: 0;
        text-align: center;
        width: 110px;
        display: inline-block;
        cursor: pointer;
        color: #FFF;
        transition: all 0.5s;
        position: relative;
        top: -1px
    }
    .header nav ul li a>span::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0;
        transition: all 0.3s;
        background-color: rgba(255, 255, 255, .1);
        border: 2px solid #FFF;
        transform: scale(1.2, 1.2)
    }
    .header nav ul li.active a>span::after {
        opacity: 1;
        transform: scale(1, 1)
    }
    .header nav ul li a>span:hover::after {
        opacity: 1;
        transform: scale(1, 1)
    }
    .header nav ul li:last-child a {
        margin-right: 0
    }
    .header nav ul li a .button {
        position: relative;
        width: 120px;
        height: 40px;
        color: #fff;
        display: inline-flex;
        line-height: 0;
        align-items: center;
        justify-content: center;
        top: 14px
    }
    .header nav ul li a .button::before {
        position: absolute;
        content: '';
        width: 120px;
        height: 40px;
        top: 5px;
        left: 5px;
        background: transparent;
        border: 2px solid #FFF;
        color: #FFF;
        z-index: 1;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out
    }
    .header nav ul li a .button[nameBtn]::after {
        position: absolute;
        content: attr(nameBtn);
        width: 120px;
        height: 40px;
        border: 2px solid #202020;
        background: #202020;
        color: #fff;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase
    }
    .header nav ul li a .button[nameBtn]:hover::before {
        transform: translate(-7px, -7px);
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out
    }
    .bar-home {
        margin-top: -78.5px;
        padding-bottom: 90px
    }
    .bar-content {
        padding: 0 100px;
        width: 100%;
        height: 157px;
        background-color: #FFF;
        display: flex;
        align-items: center;
        -webkit-box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1);
        -moz-box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1);
        box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1)
    }
    .bar-content-title {
        width: 100%;
        max-width: 270px;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        text-transform: uppercase;
        color: #303030
    }
    .bar-content-text {
        width: 470px;
        height: 110px;
        top: 607px;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        color: #303030;
        margin: 0 auto
    }
    .bar-content a .button {
        width: 132px
    }
    .home-about {
        padding-bottom: 60px
    }
    .home-about-content {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .home-about-content-image {
        width: 570px;
        height: 600px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center
    }
    .home-about-content-left {
        display: grid;
        justify-content: center
    }
    .home-about-content-left a {
        display: inline-block;
        margin: -20px auto 0
    }
    .home-about-content-left a .button {
        width: 230px
    }
    .home-about-content-container {
        margin-right: 100px
    }
    .home-about-content-container-title {
        position: relative;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        margin-bottom: 50px;
        text-transform: uppercase;
        color: #000
    }
    .home-about-content-container-title::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -15px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .home-about-content-container-text {
        width: 370px;
        height: 208px;
        font-family: Didact Gothic;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        color: #000
    }
    .home-about-content-container a {
        display: inline-block;
        margin-top: 40px
    }
    .home-events-content {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .home-events-content-image {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 470px;
        height: 520px;
        overflow: hidden
    }
    .home-events-content-container-tag {
        width: 570px;
        height: 17px;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 17px;
        color: #9A9A9A
    }
    .home-events-content-container-title {
        position: relative;
        width: 172px;
        height: 53px;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        margin-bottom: 50px;
        color: #000;
        text-transform: uppercase;
        cursor: pointer;
    }
    .home-events-content-container-title::before {
        content: '';
        position: absolute;
        right: 0;
        bottom: -15px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .home-events-content-container-text {
        width: 470px;
        height: 276px;
        font-family: Didact Gothic;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        color: #000
    }
    .home-events-content-container a {
        display: inline-block;
        margin-top: 40px
    }
    .home-events-items {
      display: grid;
      margin-top: 50px;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 30px;
    }
    .home-events-item a,
    .home-events-item a:hover,
    .home-events-item a:focus {
        text-decoration: none
    }
    .home-events-item-title {
        font-family: Darker Grotesque;
        font-style: normal;
        font-weight: 500;
        font-size: 36px;
        line-height: 34px;
        margin-bottom: 15px;
        color: #000
    }
    .home-events-item-image {
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      width: 470px;
      height: 270px;
      position: relative;
    }

    .home-events-item-image > a{
        width: 100%;
        height: 100%;
    }

    .home-events-item-image img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }

    .call-to-action {
        padding-bottom: 90px
    }
    .call-to-action-content {
        display: grid;
        align-items: center;
        justify-content: center;
        width: 100%
    }
    .call-to-action-tag {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 17px;
        text-align: center;
        color: #9A9A9A
    }
    .call-to-action-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        text-align: center;
        letter-spacing: -.05em;
        color: #000;
        margin-bottom: 15px;
        text-transform: uppercase
    }
    .call-to-action-text {
        width: 770px;
        left: 335px;
        top: 2653px;
        font-family: Didact Gothic;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        text-align: center;
        color: #000
    }
    .call-to-action a {
        display: inline-block;
        margin: 40px auto 0
    }
    .call-to-action a .button {
        width: 230px
    }
    .split-section {
        padding: 70px 0;
        text-align: center
    }
    .split-section-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
        background-image: url("http://www.indovel.com/proxy.php?url=https%3A%2F%2Fwww.espacoguimaraes.com.br%2Fassets%2Fimages%2Flogo-split.png");
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
        position: relative
    }
    .split-section-icon::before {
        content: '';
        position: absolute;
        width: 480px;
        height: 2px;
        background-color: #202020;
        top: calc(50% - 4px);
        left: 80px
    }
    .split-section-icon::after {
        content: '';
        position: absolute;
        width: 480px;
        height: 2px;
        background-color: #202020;
        top: calc(50% - 4px);
        right: 80px
    }
    .footer {
        padding: 50px 0;
        background-color: #202020
    }
    .footer-content {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .footer-logo {
        margin-bottom: 40px
    }
    .footer-logo a img {
        height: 48px
    }
    .footer-tag-title {
        font-family: Darker Grotesque;
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        letter-spacing: 1px;
        color: #FFF;
        text-transform: uppercase
    }
    .footer-social {
        height: 80px;
        display: flex;
        align-items: center;
        width: 270px;
        border-bottom: 2px solid #FFF
    }
    .footer-social a img {
        height: 25px;
        margin-right: 30px
    }
    .footer-text {
        font-family: Darker Grotesque;
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
        color: #FFF
    }
    .footer-text a {
        color: #FFF
    }
    .footer-address {
        font-family: Darker Grotesque;
        width: 270px;
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
        color: #FFF;
        margin-top: 30px
    }
    .copyright {
        background-color: #303030;
        padding: 18px 0
    }
    .copyright-content {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .copyright-name {
        font-family: Darker Grotesque;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        color: #FFF
    }
    .developer {
        display: flex;
        justify-content: space-between;
        align-items: center
    }
    .developer-text {
        font-family: Darker Grotesque;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        color: #FFF
    }
    .developer a {
        width: 27px;
        height: 18px;
        margin-top: 4px;
        margin-left: 8px
    }
    .developer a img {
        width: 100%
    }
    .page-contact {
        padding: 40px 0
    }
    .locale-content {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        padding-left: 500px
    }
    .locale-content-text {
        margin-left: 15px
    }
    .page-contact-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        text-align: center;
        color: #000
    }
    .contact-form {
        padding-top: 30px;
        padding-bottom: 70px
    }
    .contact-form-content {
        display: flex
    }
    .contact-form form {
        background-color: #303030;
        padding: 70px;
        width: 100%;
        max-width: 470px;
        position: relative
    }
    .contact-form form .input-content {
        width: 100%;
        margin-bottom: 65px;
        position: relative
    }
    .contact-form form .input-content:last-child {
        margin-bottom: 40px
    }
    ::placeholder {
        color: #e0e0e0
    }
    .contact-form form .input-content input,
    .contact-form form .input-content textarea,
    .contact-form form .input-content select {
        appearance: none!important;
        -webkit-border-radius: 0!important;
        border-radius: 0!important;
        -webkit-box-shadow: none!important;
        box-shadow: none!important;
        border-top: none;
        background-color: transparent;
        border-right: none;
        border-left: none;
        border-bottom: 1px solid #FFF;
        color: #FFF;
        height: 40px;
        border-radius: 0px!important;
        display: block;
        width: 100%;
        -webkit-appearance: none!important;
        background-clip: padding-box!important
    }
    .contact-form form .input-content select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: url("http://www.indovel.com/proxy.php?url=https%3A%2F%2Fwww.espacoguimaraes.com.br%2Fassets%2Fimages%2Fset-down-select.png")no-repeat;
        background-size: 12px;
        background-position: center right;
        font-size: 14px;
        border-radius: 0;
        color: #e0e0e0!important
    }
    .contact-form form .input-content select option {
        color: #000
    }
    .contact-form form .input-content select:active {
        color: #e0e0e0
    }
    .contact-form form .input-content textarea {
        resize: none;
        height: auto
    }
    .contact-form form .button-content button {
        background: none;
        border: none;
        width: 100%
    }
    .contact-form form .button-content button .button {
        width: 100%
    }
    .contact-form form .button-content button .button[nameBtn]::after {
        border: 2px solid #FFF;
        background: #FFF;
        color: #202020
    }
    .contact-maps {
        width: 100%;
        margin-top: 70px;
        margin-bottom: 70px;
        -webkit-box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1);
        -moz-box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1);
        box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1);
        display: flex
    }
    .contact-maps-iframe {
        width: 100%
    }
    .contact-infos {
        width: 140px;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: space-between;
        padding: 40px 0
    }
    .contact-social {
        display: grid;
        align-items: center;
        justify-content: center;
        width: 140px;
        text-align: center
    }
    .contact-social a {
        margin-bottom: 35px
    }
    .contact-infos-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        height: 140px;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        color: #000;
        transform: rotate(-90deg);
        text-transform: uppercase;
        position: relative;
        bottom: 76px;
        text-align: center;
        display: flex;
        align-items: center
    }
    .events-content {
        padding: 60px 0 0
    }
    .events-content-item {
        display: flex;
        align-items: center;
        justify-content: center
    }
    .events-content-item.left .events-content-item-image {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        height: 600px;
        position: relative;
    }
    .events-content-item.left .events-content-item-image a{
        width: 100%;
        height: 100%;
    }

    .events-content-item.left .events-content-item-image img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }
    .events-content-item.left .events-content-item-infos {
        width: 50%;
        padding-left: 70px
    }
    .events-content-item.left .events-content-item-infos .events-content-item-infos-title {
        position: relative;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase;
        margin-bottom: 40px
    }
    .events-content-item.left .events-content-item-infos .events-content-item-infos-title::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -15px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .events-content-item.left .events-content-item-infos .events-content-item-infos-text {
        font-family: Didact Gothic;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        color: #000;
        margin-bottom: 30px
    }
    .events-content-item.right .events-content-item-image {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        height: 600px;
        position: relative;
    }

    .events-content-item.right .events-content-item-image a{
        width: 100%;
        height:100%;
    }

    .events-content-item.right .events-content-item-image img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }

    .events-content-item.right .events-content-item-infos {
        width: 50%;
        padding-right: 70px;
        text-align: right
    }
    .events-content-item.right .events-content-item-infos .events-content-item-infos-title {
        position: relative;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase;
        margin-bottom: 40px
    }
    .events-content-item.right .events-content-item-infos .events-content-item-infos-title::before {
        content: '';
        position: absolute;
        right: 0;
        bottom: -15px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .events-content-item.right .events-content-item-infos .events-content-item-infos-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        color: #000;
        margin-bottom: 30px
    }
    .events-content-item .events-content-item-infos a.button {
        display: inline-block;
        margin-top: 40px
    }
    .event-box-first {
        padding-bottom: 60px
    }
    .event-box-first-content {
        display: flex;
        align-items: center;
        justify-content: center
    }
    .event-box-first-infos {
        padding-right: 100px;
        width: 50%;
        text-align: right
    }
    .event-box-first-infos-title {
        position: relative;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase;
        margin-bottom: 40px
    }
    .event-box-first-infos-title::before {
        content: '';
        position: absolute;
        right: 0;
        bottom: -15px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .event-box-first-infos-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        color: #000
    }
    .event-box-first-image {
        width: 70%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-top: -60px;
        position: relative
    }
    .event-box-second {
        padding: 80px 0 55px 0;
        background-color: #F6F6F6
    }
    .event-box-second-content {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .event-box-second-images {
        width: 500px;
        height: 388px;
        position: relative;
        margin-top: 40px
    }
    .event-box-second-images-img {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .event-box-second-images-img img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }
    .event-box-second-images-img:last-child {
        top: -70px;
        right: -60px
    }
    .event-box-second-infos {
        width: 540px;
        padding-left: 70px
    }
    .event-box-second-infos-title {
        position: relative;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase;
        margin-bottom: 40px
    }
    .event-box-second-infos-title::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -15px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .event-box-second-infos-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        color: #000
    }
    .page-gallery {
        padding: 40px 0
    }
    .page-gallery-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        text-align: center;
        color: #000
    }
    .mosaic-content.intern {
        padding-top: 55px
    }
    .mosaic-content.about {
        padding-top: 0;
        padding-bottom: 55px;
        background-color: #F6F6F6
    }
    #gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px
    }
    .item-img {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        height: 300px
    }
    .about-section-first {
        padding: 80px 0 55px 0
    }
    .about-section-content {
        display: flex;
        align-items: center;
        justify-content: center
    }
    .about-box-second-images-content {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: flex-end
    }
    .about-box-second-images {
        width: 500px;
        height: 388px;
        position: relative;
        margin-top: 40px
    }
    .about-box-second-images-img {
        position: absolute;
        width: 100%;
        height: 100%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat
    }
    .about-box-second-images-img:last-child {
        top: -70px;
        left: -60px
    }
    .about-box-second-infos {
        width: 50%;
        padding-left: 140px
    }
    .about-box-second-infos-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        color: #000
    }
    .about-section-space {
        padding: 60px 0;
        background-color: #F6F6F6;
        text-align: center
    }
    .about-section-space-tag {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 17px;
        color: #9A9A9A;
        margin-bottom: 5px
    }
    .about-section-space-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase
    }
    .about-section-space-text {
        width: 100%;
        max-width: 970px;
        margin: 0 auto;
        font-family: Didact Gothic;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        margin-top: 20px
    }
    .contact-send{
      padding: 100px 0px;
    }
    .contact-send-content{
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-send-infos{
      padding-left:50px ;
    }
    .contact-send-infos-title{
      font-family: DM Sans;
      font-style: normal;
      font-weight: normal;
      font-size: 36px;
      line-height: 40px;
      letter-spacing: -0.05em;
      color: #000000;
      text-transform: uppercase;
    }
    
    .contact-send-infos-text{
      font-family: Didact Gothic;
      font-style: normal;
      font-weight: normal;
      font-size: 18px;
      line-height: 36px;
      color: #000000;
      max-width: 670px;
      width: 100%;
    }

    .contact-send a{    
      width: 200px;
      display: block;
      margin: 80px auto 0;
    }
    .contact-send a .button{
      width: 200px;

    }
}

@media (min-width:1199px) {
    .container {
        width: 1170px;
        margin-right: auto;
        margin-left: auto;
    }
    .about-box-second-infos-title {
        position: relative;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        margin-bottom: 50px;
        text-transform: uppercase;
        color: #000;
        cursor: pointer;
    }
    .about-box-second-infos-title span {
        position: relative
    }
    .about-box-second-infos-title span::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .banner-home {
        width: 100%;
        height: 650px;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat
    }
    .banner-intern {
        width: 100%;
        height: 400px;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        background-color: rgba(0, 0, 0, .5);
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 90px;
        position: relative
    }
    .banner-intern-content {
        text-align: center
    }
    .banner-intern .breadcrumb {
        margin-bottom: 8px;
        color: #FFF
    }
    .banner-intern .breadcrumb a,
    .banner-intern .breadcrumb span {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        line-height: 11px;
        text-align: center;
        text-transform: uppercase
    }
    .banner-intern .breadcrumb a {
        text-decoration: none;
        color: #FFF
    }
    .banner-intern .breadcrumb a:hover {
        color: #d4d4d4
    }
    .banner-intern .breadcrumb span {
        color: #B0B0B0
    }
    .banner-intern-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        text-align: center;
        letter-spacing: -.05em;
        color: #FFF;
        text-transform: uppercase
    }
    .header {
        position: absolute;
        width: 100%;
        height: 120px;
        top: 0;
        left: 0;
        z-index: 1000
    }
    .header .container {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .header .logo a img {
        height: 62px
    }
    .header nav {
        margin-top: -30px
    }
    .header nav ul {
        padding: 0;
        margin: 0
    }
    .header nav ul li {
        display: inline-block
    }
    .header nav ul li a {
        margin: 0 5px;
        text-transform: uppercase
    }
    .header nav ul li a>span {
        line-height: 40px;
        height: 38px;
        margin-top: 0;
        text-align: center;
        width: 110px;
        display: inline-block;
        cursor: pointer;
        color: #FFF;
        transition: all 0.5s;
        position: relative;
        top: -1px
    }
    .header nav ul li a>span::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0;
        transition: all 0.3s;
        background-color: rgba(255, 255, 255, .1);
        border: 2px solid #FFF;
        transform: scale(1.2, 1.2)
    }
    .header nav ul li.active a>span::after {
        opacity: 1;
        transform: scale(1, 1)
    }
    .header nav ul li a>span:hover::after {
        opacity: 1;
        transform: scale(1, 1)
    }
    .header nav ul li:last-child a {
        margin-right: 0
    }
    .header nav ul li a .button {
        position: relative;
        width: 120px;
        height: 40px;
        color: #fff;
        display: inline-flex;
        line-height: 0;
        align-items: center;
        justify-content: center;
        top: 14px
    }
    .header nav ul li a .button::before {
        position: absolute;
        content: '';
        width: 119px;
        height: 38px;
        top: 6px;
        left: 6px;
        background: transparent;
        border: 2px solid #FFF;
        color: #FFF;
        z-index: 1;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }
    .header nav ul li a .button[nameBtn]::after {
        position: absolute;
        content: attr(nameBtn);
        width: 120px;
        height: 40px;
        border: 2px solid #202020;
        background: #202020;
        color: #fff;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase
    }
    .header nav ul li a .button[nameBtn]:hover::before {
        transform: translate(-7px, -7px);
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out
    }
    .bar-home {
        margin-top: -78.5px;
        padding-bottom: 90px
    }
    .bar-content {
        padding: 0 100px;
        width: 100%;
        height: 157px;
        background-color: #FFF;
        display: flex;
        align-items: center;
        -webkit-box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1);
        -moz-box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1);
        box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1)
    }
    .bar-content-title {
        width: 100%;
        max-width: 270px;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        text-transform: uppercase;
        color: #303030
    }
    .bar-content-text {
        width: 470px;
        height: 110px;
        top: 607px;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        color: #303030;
        margin: 0 auto
    }
    .bar-content a .button {
        width: 132px
    }
    .home-about {
        padding-bottom: 60px
    }
    .home-about-content {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .home-about-content-image {
        width: 570px;
        height: 600px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .home-about-content-image img{
        position: absolute;
        width: 100%;
        height:100%;
        top: 0;
        left: 0;
        object-fit: cover ;
    }
    
    .home-about-content-left {
        display: grid;
        justify-content: center
    }
    .home-about-content-left a {
        display: inline-block;
        margin: -20px auto 0
    }
    .home-about-content-left a .button {
        width: 230px
    }
    .home-about-content-container {
        margin-right: 100px
    }
    .home-about-content-container-title {
        position: relative;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        margin-bottom: 50px;
        text-transform: uppercase;
        color: #000;
        cursor: pointer;
    }
    .home-about-content-container-title::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -15px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .home-about-content-container-text {
        width: 370px;
        height: 208px;
        font-family: Didact Gothic;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        color: #000
    }
    .home-about-content-container a {
        display: inline-block;
        margin-top: 40px
    }
    .home-events-content {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .home-events-content-image {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 470px;
        height: 520px;
        overflow: hidden;
        position: relative;
    }
    .home-events-content-image img {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .home-events-content-container-tag {
        width: 570px;
        height: 17px;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 17px;
        color: #9A9A9A
    }
    .home-events-content-container-title {
        position: relative;
        width: 172px;
        height: 53px;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        margin-bottom: 50px;
        color: #000
    }
    .home-events-content-container-title::before {
        content: '';
        position: absolute;
        right: 0;
        bottom: -15px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .home-events-content-container-text {
        width: 470px;
        height: 276px;
        font-family: Didact Gothic;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        color: #000
    }
    .home-events-content-container a {
        display: inline-block;
        margin-top: 40px
    }
    .home-events-items {
        display: grid;
        margin-top: 50px;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 30px;
    }

    .home-events-item a,
    .home-events-item a:hover,
    .home-events-item a:focus {
        text-decoration: none
    }
    .home-events-item-title {
        font-family: Darker Grotesque;
        font-style: normal;
        font-weight: 500;
        font-size: 36px;
        line-height: 34px;
        margin-bottom: 15px;
        color: #000
    }
    .home-events-item-image {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        width: 270px;
        height: 270px;
        position: relative;
    }

    .home-events-item-image img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }
    .call-to-action {
        padding-bottom: 90px
    }
    .call-to-action-content {
        display: grid;
        align-items: center;
        justify-content: center;
        width: 100%
    }
    .call-to-action-tag {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 17px;
        text-align: center;
        color: #9A9A9A
    }
    .call-to-action-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        text-align: center;
        letter-spacing: -.05em;
        color: #000;
        margin-bottom: 15px;
        text-transform: uppercase
    }
    .call-to-action-text {
        width: 770px;
        left: 335px;
        top: 2653px;
        font-family: Didact Gothic;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        text-align: center;
        color: #000
    }
    .call-to-action a {
        display: inline-block;
        margin: 40px auto 0
    }
    .call-to-action a .button {
        width: 230px
    }
    .split-section {
        padding: 70px 0;
        text-align: center
    }
    .split-section-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
        background-image: url("http://www.indovel.com/proxy.php?url=https%3A%2F%2Fwww.espacoguimaraes.com.br%2Fassets%2Fimages%2Flogo-split.png");
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
        position: relative
    }
    .split-section-icon::before {
        content: '';
        position: absolute;
        width: 480px;
        height: 2px;
        background-color: #202020;
        top: calc(50% - 4px);
        left: 80px
    }
    .split-section-icon::after {
        content: '';
        position: absolute;
        width: 480px;
        height: 2px;
        background-color: #202020;
        top: calc(50% - 4px);
        right: 80px
    }
    .footer {
        padding: 50px 0;
        background-color: #202020
    }
    .footer-content {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .footer-logo {
        margin-bottom: 40px
    }
    .footer-logo a img {
        height: 48px
    }
    .footer-tag-title {
        font-family: Darker Grotesque;
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        letter-spacing: 1px;
        color: #FFF;
        text-transform: uppercase
    }
    .footer-social {
        height: 80px;
        display: flex;
        align-items: center;
        width: 270px;
        border-bottom: 2px solid #FFF
    }
    .footer-social a img {
        height: 25px;
        margin-right: 30px
    }
    .footer-text {
        font-family: Darker Grotesque;
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
        color: #FFF
    }
    .footer-text a {
        color: #FFF
    }
    .footer-address {
        font-family: Darker Grotesque;
        width: 270px;
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
        color: #FFF;
        margin-top: 30px
    }
    .copyright {
        background-color: #303030;
        padding: 18px 0
    }
    .copyright-content {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .copyright-name {
        font-family: Darker Grotesque;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        color: #FFF
    }
    .developer {
        display: flex;
        justify-content: space-between;
        align-items: center
    }
    .developer-text {
        font-family: Darker Grotesque;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        color: #FFF
    }
    .developer a {
        width: 27px;
        height: 18px;
        margin-top: 4px;
        margin-left: 8px
    }
    .developer a img {
        width: 100%
    }
    .page-contact {
        padding: 40px 0
    }
    .locale-content {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        padding-left: 500px
    }
    .locale-content-text {
        margin-left: 15px
    }
    .page-contact-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        text-align: center;
        color: #000
    }
    .contact-form {
        padding-top: 30px;
        padding-bottom: 70px
    }
    .contact-form-content {
        display: flex
    }
    .contact-form form {
        background-color: #303030;
        padding: 60px 70px;
        width: 100%;
        max-width: 470px;
        position: relative
    }
    .contact-form form .input-content {
        width: 100%;
        margin-bottom: 65px;
        position: relative
    }
    .contact-form form .input-content:last-child {
        margin-bottom: 40px
    }
    ::placeholder {
        color: #e0e0e0
    }
    .contact-form form .input-content input,
    .contact-form form .input-content textarea,
    .contact-form form .input-content select {
        appearance: none!important;
        -webkit-border-radius: 0!important;
        border-radius: 0!important;
        -webkit-box-shadow: none!important;
        box-shadow: none!important;
        border-top: none;
        background-color: transparent;
        border-right: none;
        border-left: none;
        border-bottom: 1px solid #FFF;
        color: #FFF;
        height: 40px;
        border-radius: 0px!important;
        display: block;
        width: 100%;
        -webkit-appearance: none!important;
        background-clip: padding-box!important
    }
    .contact-form form .input-content select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: url("http://www.indovel.com/proxy.php?url=https%3A%2F%2Fwww.espacoguimaraes.com.br%2Fassets%2Fimages%2Fset-down-select.png")no-repeat;
        background-size: 12px;
        background-position: center right;
        font-size: 14px;
        border-radius: 0;
        color: #e0e0e0!important
    }
    .contact-form form .input-content select option {
        color: #000
    }
    .contact-form form .input-content select:active {
        color: #e0e0e0
    }
    .contact-form form .input-content textarea {
        resize: none;
        height: auto
    }
    .contact-form form .button-content button {
        background: none;
        border: none;
        width: 100%
    }
    .contact-form form .button-content button .button {
        width: 100%
    }
    .contact-form form .button-content button .button[nameBtn]::after {
        border: 2px solid #FFF;
        background: #FFF;
        color: #202020
    }
    .contact-maps {
        width: 100%;
        margin-top: 70px;
        margin-bottom: 70px;
        -webkit-box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1);
        -moz-box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1);
        box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1);
        display: flex
    }
    .contact-maps-iframe {
        width: 100%
    }
    .contact-infos {
        width: 140px;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: space-between;
        padding: 40px 0
    }
    .contact-social {
        display: grid;
        align-items: center;
        justify-content: center;
        width: 140px;
        text-align: center
    }
    .contact-social a {
        margin-bottom: 35px
    }
    .contact-infos-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        height: 140px;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        color: #000;
        transform: rotate(-90deg);
        text-transform: uppercase;
        position: relative;
        bottom: 76px;
        text-align: center;
        display: flex;
        align-items: center
    }
    .events-content {
        padding: 60px 0 0
    }
    .events-content-item {
        display: flex;
        align-items: center;
        justify-content: center
    }
    .events-content-item.left .events-content-item-image {
        width: 50%;
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }

    .events-content-item.left .events-content-item-image a{
        width: 100%;
        height: 100%;
    }
    
    .events-content-item.left .events-content-item-image img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }

    .events-content-item.left .events-content-item-infos {
        width: 50%;
        padding-left: 70px
    }
    .events-content-item.left .events-content-item-infos .events-content-item-infos-title {
        position: relative;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase;
        margin-bottom: 40px
    }
    .events-content-item.left .events-content-item-infos .events-content-item-infos-title::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -15px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .events-content-item.left .events-content-item-infos .events-content-item-infos-text {
        font-family: Didact Gothic;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        color: #000;
        margin-bottom: 30px
    }
    .events-content-item.right .events-content-item-image {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative
    }
    .events-content-item.right .events-content-item-infos {
        width: 50%;
        padding-right: 70px;
        text-align: right
    }
    .events-content-item.right .events-content-item-infos .events-content-item-infos-title {
        position: relative;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase;
        margin-bottom: 40px
    }
    .events-content-item.right .events-content-item-infos .events-content-item-infos-title::before {
        content: '';
        position: absolute;
        right: 0;
        bottom: -15px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .events-content-item.right .events-content-item-infos .events-content-item-infos-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        color: #000;
        margin-bottom: 30px
    }
    .events-content-item .events-content-item-infos a.button {
        display: inline-block;
        margin-top: 40px
    }
    .event-box-first {
        padding-bottom: 60px
    }
    .event-box-first-content {
        display: flex;
        align-items: center;
        justify-content: center
    }
    .event-box-first-infos {
        padding-right: 100px;
        width: 50%;
        text-align: right
    }
    .event-box-first-infos-title {
        position: relative;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase;
        margin-bottom: 40px
    }
    .event-box-first-infos-title::before {
        content: '';
        position: absolute;
        right: 0;
        bottom: -15px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .event-box-first-infos-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        color: #000
    }
    .event-box-first-image {
        width: 70%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-top: -60px;
        position: relative;
        height: 650px;
    }

    .event-box-first-image img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }
    .event-box-second {
        padding: 80px 0 55px 0;
        background-color: #F6F6F6
    }
    .event-box-second-content {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .event-box-second-images {
        width: 500px;
        height: 388px;
        position: relative;
        margin-top: 40px
    }
    .event-box-second-images-img {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .event-box-second-images-img img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ; 
    }
    .event-box-second-images-img:last-child {
        top: -70px;
        right: -60px
    }
    .event-box-second-infos {
        width: 540px;
        padding-left: 70px
    }
    .event-box-second-infos-title {
        position: relative;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase;
        margin-bottom: 40px
    }
    .event-box-second-infos-title::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -15px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .event-box-second-infos-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        color: #000
    }
    .page-gallery {
        padding: 40px 0
    }
    .page-gallery-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        text-align: center;
        color: #000
    }
    .mosaic-content.intern {
        padding-top: 55px
    }
    .mosaic-content.about {
        padding-top: 0;
        padding-bottom: 55px;
        background-color: #F6F6F6
    }
    #gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px
    }
    .item-img {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        height: 300px;
        position: relative;
    }

    .item-img a{
        width: 100%;
        height: 100%;
    }

    .item-img img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }
    .about-section-first {
        padding: 80px 0 55px 0
    }
    .about-section-content {
        display: flex;
        align-items: center;
        justify-content: center
    }
    .about-box-second-images-content {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: flex-end
    }
    .about-box-second-images {
        width: 500px;
        height: 388px;
        position: relative;
        margin-top: 40px
    }
    .about-box-second-images-img {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .about-box-second-images-img img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }

    .about-box-second-images-img:last-child {
        top: -70px;
        left: -60px
    }
    .about-box-second-infos {
        width: 50%;
        padding-left: 140px
    }
    .about-box-second-infos-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        color: #000
    }
    .about-section-space {
        padding: 60px 0;
        background-color: #F6F6F6;
        text-align: center
    }
    .about-section-space-tag {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 17px;
        color: #9A9A9A;
        margin-bottom: 5px
    }
    .about-section-space-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase
    }
    .about-section-space-text {
        width: 100%;
        max-width: 970px;
        margin: 0 auto;
        font-family: Didact Gothic;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        margin-top: 20px
    }
}

@media (max-width:1024px) {
    body,
    html {
        overflow-x: hidden;
        width: 100%;
        position: relative
    }
    .menu-footer-content-text{
        font-size: 18px;
    }
    .h-captcha iframe {
        width: 180px !important;
    }
    .container {
        padding: 0 30px;
        margin-right: auto;
        margin-left: auto
    }
    #button-about{
        display: none;
    }
    .hidden-min-1024 {
        display: none!important
    }
    .header {
        position: absolute;
        width: 100%;
        top: 0;
        height: 100px;
        z-index: 10
    }
    .header .container {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .header .logo img {
        width: 135px
    }
    .header .button-menu {
        width: 40px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .header .button-menu span {
        position: relative;
        width: 100%;
        height: 3px;
        background-color: #FFF;
        border-radius: 4px
    }
    .header .button-menu span::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 0;
        width: 50%;
        height: 3px;
        background-color: #FFF;
        border-radius: 4px;
        transition: width .2s
    }
    .header .button-menu span::after {
        content: '';
        position: absolute;
        bottom: -8px;
        right: 0;
        width: 50%;
        height: 3px;
        background-color: #FFF;
        border-radius: 4px;
        transition: width .2s
    }
    .header .button-menu:hover span::before,
    .header .button-menu:hover span::after {
        width: 100%;
        transition: width .2s
    }
    .header nav {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: #FFF;
        padding: 0 30px
    }
    .header nav .header-menu {
        height: 106px;
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .banner-home {
        width: 100%;
        height: 550px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover
    }
    .header .button-menu-mobile {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .header .button-menu-mobile span {
        position: relative;
        width: 100%;
        height: 1px
    }
    .header .button-menu-mobile span::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: #000;
        border-radius: 4px;
        transition: width .2s;
        transform: rotate(45deg)
    }
    .header .button-menu-mobile span::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: #000;
        border-radius: 4px;
        transition: width .2s;
        transform: rotate(-45deg)
    }
    .header nav {
        display: none
    }
    .header nav ul {
        margin-left: 0;
        padding-left: 0;
        padding-top: 40px
    }
    .header nav ul li {
        list-style: none
    }
    .header nav ul li a {
        position: relative;
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 22px;
        line-height: 26px;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase;
        display: block;
        margin-bottom: 35px
    }
    .header nav ul li a::before {
        content: '';
        position: absolute;
        bottom: -8px;
        width: calc(100% + 30px);
        height: 1px;
        background-color: #000
    }
    .menu-footer-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 60px
    }
    .contact-button a::before{
        display: none;
    }
    .header nav .menu-footer-content-social img {
        width: 20px;
        margin-right: 20px
    }
    .bar-home {
        margin-top: -78.5px;
        padding-bottom: 60px
    }
    .bar-content {
        padding: 60px 50px;
        background-color: #FFF;
        -webkit-box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1);
        -moz-box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1);
        box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1);
        text-align: center
    }
    .bar-content-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 34px;
        line-height: 38px;
        letter-spacing: -.05em;
        color: #303030;
        text-transform: uppercase;
        padding: 0 30px;
        margin-bottom: 40px
    }
    .bar-content-text {
        font-family: Didact Gothic;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 200%;
        color: #303030;
        margin-bottom: 40px
    }
    .home-about-content-image {
        width: 100%;
        height: 300px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative
    }

    .home-about-content-image > a{
        width: 100%;
        height: 100%;
        margin: 0 !important;
        text-align: left !important;
    }

    .home-about-content-image img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }

    .home-about-content-left a {
        display: block;
        width: 230px;
        margin: -20px auto 0
    }
    .home-about-content-left a .button {
        width: 100%
    }
    .home-about-content-right {
        padding: 0px 0 30px 0px;
    }
    .home-about-content-container-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        margin-bottom: 40px;
        text-align: center;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase;
        cursor: pointer;
    }
    .home-about-content-container-title span {
        position: relative
    }
    .home-about-content-container-title span::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .home-about-content-container-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        text-align: center;
        color: #000;
        padding: 20px
    }
    .home-about-content-right a {
        margin: 20px;
        display: block;
        text-align: center
    }
    .home-events-content-container-tag {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 17px;
        color: #9A9A9A;
        text-align: center
    }
    .home-events-content-container-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 50px;
        text-align: center;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase;
        margin-bottom: 14px;
        cursor: pointer;
    }
    .home-events-content-container-title span {
        position: relative
    }
    .home-events-content-container-title span::before {
        content: '';
        position: absolute;
        right: 0;
        bottom: -4px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .home-events-content-container-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        text-align: center;
        color: #000;
        padding: 20px
    }
    .home-events-content-left a {
        margin: 20px;
        display: block;
        text-align: center
    }
    .home-events-content-image{
        width: 100%;
        height: 300px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0px;
        position: relative;
    }

    .home-events-content-image > a{
        width: 100%;
        height: 100%;  
        text-align: left !important;
        margin: 0 !important;
    }
    .home-events-content-image img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .home-events-items{
        margin-top: 60px;
    }
    .home-events-item {
        margin-bottom: 30px
    }
    .home-events-item:last-child {
        margin-bottom: 0
    }
    .home-events-item-title {
        font-family: Darker Grotesque;
        font-style: normal;
        font-weight: 500;
        font-size: 36px;
        line-height: 34px;
        color: #000;
        margin-bottom: 10px
    }
    .home-events-item-image {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        width: 100%;
        height: 330px;
        position: relative;
    }
    .home-events-item-image > a{
        width: 100%;
        height: 100%;
    }

    .home-events-item-image img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }

    .call-to-action {
        padding-bottom: 60px
    }
    .call-to-action-content {
        display: grid;
        align-items: center;
        justify-content: center;
        width: 100%
    }
    .about-section-first{
        padding-top: 50px;
        padding-bottom: 40px;
    }
    .call-to-action-tag {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 17px;
        text-align: center;
        color: #9A9A9A
    }
    .call-to-action-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 50px;
        text-align: center;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase
    }
    .call-to-action-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        text-align: center;
        color: #000;
        padding: 0 20px
    }
    .call-to-action a {
        display: inline-block;
        margin: 40px auto 0
    }
    .call-to-action a .button {
        width: 230px
    }
    .split-section {
        position: relative;
        padding: 40px 0;
        text-align: center
    }
    .split-section-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
        background-image: url("http://www.indovel.com/proxy.php?url=https%3A%2F%2Fwww.espacoguimaraes.com.br%2Fassets%2Fimages%2Flogo-split.png");
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
        position: relative
    }
    .split-section::before {
        content: '';
        position: absolute;
        width: calc(50% - 80px);
        height: 2px;
        background-color: #202020;
        top: calc(50% - 4px);
        left: 30px
    }
    .split-section::after {
        content: '';
        position: absolute;
        width: calc(50% - 80px);
        height: 2px;
        background-color: #202020;
        top: calc(50% - 4px);
        right: 30px
    }
    .footer {
        padding: 50px 0;
        background-color: #202020
    }
    .footer-content {
        text-align: center
    }
    .footer-social {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 50px
    }
    .footer-social::before {
        content: '';
        position: absolute;
        width: 100px;
        height: 1px;
        left: calc(50% - 50px);
        bottom: -25px;
        background: #fff
    }
    .footer-social a:nth-child(2) img {
        margin: 0 25px
    }
    .footer-social img {
        width: 25px
    }
    .footer-logo img {
        margin-bottom: 20px;
        width: 134px
    }
    .footer-text {
        margin-bottom: 10px
    }
    .footer-text,
    .footer-text a,
    .footer-tag-title {
        color: #FFF
    }
    .footer-tag-title {
        margin-top: 30px;
        margin-bottom: 15px
    }
    .footer-address {
        margin-top: 30px;
        color: #fff
    }
    .copyright {
        background-color: #303030;
        padding: 18px 0
    }
    .copyright-content {
        display: block;
        align-items: inherit;
        justify-content: inherit
    }
    .copyright-name {
        text-align: center;
        font-family: Darker Grotesque;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        color: #FFF;
        margin-bottom: 15px
    }
    .developer {
        display: flex;
        justify-content: center;
        align-items: center
    }
    .developer-text {
        font-family: Darker Grotesque;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        color: #FFF;
        display: none
    }
    .developer a {
        width: 27px;
        height: 18px;
        margin-top: 4px;
        margin-left: 8px
    }
    .developer a img {
        width: 100%
    }
    .banner-intern {
        width: 100%;
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 70px;
        position: relative
    }
    .banner-intern-content {
        text-align: center
    }
    .banner-intern .breadcrumb {
        margin-bottom: 8px;
        color: #FFF
    }
    .banner-intern .breadcrumb a,
    .banner-intern .breadcrumb span {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        line-height: 11px;
        text-align: center;
        text-transform: uppercase
    }
    .banner-intern .breadcrumb a {
        text-decoration: none;
        color: #FFF
    }
    .banner-intern .breadcrumb a:hover {
        color: #d4d4d4
    }
    .banner-intern .breadcrumb span {
        color: #B0B0B0
    }
    .banner-intern-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 53px;
        text-align: center;
        letter-spacing: -.05em;
        color: #FFF;
        text-transform: uppercase
    }
    .about-box-second-infos-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 80px;
        text-align: center;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase
    }
    .about-box-second-infos-title span {
        position: relative
    }
    .about-box-second-infos-title span::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .about-box-second-infos-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        text-align: center;
        color: #000;
        padding: 20px
    }
    .about-box-second-images-content {
        margin-top: 40px;
        margin-bottom: 40px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-box-second-images {
        width: 80%;
        height: 300px;
        position: relative;
        margin-top: 40px;
        margin-left: 60px;
    }
    .about-box-second-images-img {
        position: absolute;
        width: 100%;
        height: 100%;
    }
    .about-box-second-images-img img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }

    .about-box-second-images-img:last-child {
        top: -70px;
        left: -60px
    }
    .about-section-space-tag {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 17px;
        color: #9A9A9A;
        text-align: center
    }
    .about-section-space-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 50px;
        text-align: center;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase;
        margin-bottom: 14px
    }
    .about-section-space-title span {
        position: relative
    }
    .about-section-space-title span::before {
        content: '';
        position: absolute;
        right: 0;
        bottom: -4px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .about-section-space-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        text-align: center;
        color: #000;
        padding: 20px;
        margin-bottom: 30px;
    }
    .item-img {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        height: 120px;
        position: relative;
    }

    .item-img > a{
        width: 100%;
        height: 100%;
    }

    .item-img img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }

    #gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    .page-gallery {
        padding: 20px 0
    }
    .page-gallery-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        text-align: center;
        color: #000;
        padding: 20px
    }
    .events-content {
        padding: 50px 0
    }
    .events-content-item {
        margin-bottom: 40px;
        padding: 40px 0
    }
    .events-content-item:last-child {
        margin-bottom: 0
    }
    .container.gray {
        background-color: #F6F6F6
    }
    .container:first-child .events-content-item {
        padding-top: 0
    }
    .events-content-item:last-child {
        margin-bottom: 0
    }
    .events-content-item-infos-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 80px;
        text-align: center;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase
    }
    .events-content-item-infos-title span {
        position: relative
    }
    .events-content-item-infos-title span::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 2000px;
        height: 2px;
        background-color: #000
    }
    .events-content-item-image {
        margin-top: 15px;
        width: 100%;
        height: 380px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }

    .events-content-item-image a{
        width: 100%;
        height: 100%;
    }

    .events-content-item-image img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }

    .events-content-item-infos-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        text-align: center;
        color: #000;
        padding: 20px
    }
    .events-content-item a.btn-c {
        margin: 20px;
        display: block;
        text-align: center
    }
    .page-contact {
        padding: 40px 0
    }
    .page-contact-text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        text-align: center;
        color: #000;
        padding: 20px
    }
    .contact-form form {
        background-color: #303030;
        padding: 40px 50px 60px 50px;
        width: 100%;
        position: relative
    }
    .contact-form form .input-content {
        width: 100%;
        margin-bottom: 40px;
        position: relative
    }
    .contact-form form .input-content:last-child {
        margin-bottom: 40px
    }   
    ::placeholder {
        color: #e0e0e0
    }
    .contact-form form .input-content input,
    .contact-form form .input-content textarea,
    .contact-form form .input-content select {
        border-top: none;
        background-color: transparent;
        border-right: none;
        border-left: none;
        border-bottom: 1px solid #FFF;
        color: #FFF;
        height: 40px;
        display: block;
        width: 100%;
        -webkit-appearance: none !important;
        border-radius: 0px !important;
    }
    .contact-form form .input-content select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: url("http://www.indovel.com/proxy.php?url=https%3A%2F%2Fwww.espacoguimaraes.com.br%2Fassets%2Fimages%2Fset-down-select.png")no-repeat;
        background-size: 12px;
        background-position: center right;
        font-size: 14px;
        border-radius: 0;
        color: #e0e0e0!important
    }
    .contact-form form .input-content select option {
        color: #000
    }
    .contact-form form .input-content select:active {
        color: #e0e0e0
    }
    .contact-form form .input-content textarea {
        resize: none;
        height: auto
    }
    .contact-form form .button-content button {
        background: none;
        border: none;
        width: 100%
    }
    .contact-form form .button-content button .button {
        width: 100%
    }
    .contact-form form .button-content button .button[nameBtn]::after {
        border: 2px solid #FFF;
        background: #FFF;
        color: #202020
    }
    .contact-maps {
        width: 100%;
        margin-top: 70px;
        margin-bottom: 70px;
        -webkit-box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1);
        -moz-box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1);
        box-shadow: 0 0 48px 1px rgba(207, 207, 207, 1);
        display: flex
    }
    .contact-maps-iframe {
        width: 100%
    }
    .contact-infos {
        width: 70px;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: space-between;
        padding: 40px 0
    }
    .contact-social {
        display: grid;
        align-items: center;
        justify-content: center;
        width: 70px;
        text-align: center;
        margin-bottom: 180px
    }
    .contact-social a {
        margin-bottom: 35px
    }
    .contact-infos-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        height: 0;
        font-size: 28px;
        line-height: 53px;
        letter-spacing: -.05em;
        color: #000;
        transform: rotate(-90deg);
        text-transform: uppercase;
        position: relative;
        bottom: 76px;
        text-align: center;
        display: flex;
        align-items: center
    }
    .contact-form {
        padding-bottom: 50px
    }
    .locale-content {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        padding: 0 40px
    }
    .locale-content-text {
        margin-left: 15px
    }

    .event-box-first{
        padding: 40px 0px;
    }

    .event-box-first-infos-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 80px;
        text-align: center;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase;
    }

    .event-box-first-infos-title span {
        position: relative;
    }

    .event-box-first-infos-title span::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 2000px;
        height: 2px;
        background-color: #000;
    }

    .event-box-first-infos-text{
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        text-align: center;
        color: #000;
        padding: 20px;
    }

    .event-box-first-image{
        margin-top: 15px;
        width: 100%;
        height: 340px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }

    .event-box-first-image img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }

    .event-box-second-infos-title {
        font-family: DM Sans;
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 80px;
        text-align: center;
        letter-spacing: -.05em;
        color: #000;
        text-transform: uppercase;
    }

    .event-box-second-infos-title span {
        position: relative;
    }

    .event-box-second-infos-title span::before {
        content: '';
        position: absolute;
        right: 0;
        bottom: -4px;
        width: 2000px;
        height: 2px;
        background-color: #000;
    }

    .event-box-second-infos-text{
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 36px;
        text-align: center;
        color: #000;
        padding: 20px;
        margin-bottom: 40px;
    }

    .event-box-second-images {
        width: 100%;
        height: 300px;
        position: relative;
        margin-top: 40px;
        margin-left: 65px;
    }

    .event-box-second-images-img {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .event-box-second-images-img img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }

    .event-box-second-images-img:last-child {
        top: -70px;
        left: -60px;
    }
}

@media (min-width:1025px) and (max-width:1199px) {
    .home-about-content-image {
        width: 500px;
        height: 500px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .home-about-content-image > a{
        width: 100%;
        height: 100%;
    }
    .home-about-content-image img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }
    .home-about-content-container {
        margin-right: 0
    }
    .home-events-content-image {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 400px;
        height: 490px;
        overflow: hidden;
        position: relative;
    }

    .home-events-content-image > a{
        width: 100%;
        height: 100%;
    }

    .home-events-content-image img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover ;
    }
    .event-box-first-image {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        height: 550px;
        margin-top: -60px;
        position: relative;
    }

    .event-box-first-image img{ 
        position: absolute;
        width: 100%;
        height:100%;
        object-fit: cover ;
    }

    .event-box-second-images {
        width: 400px;
        height: 340px;
        position: relative;
        margin-top: 40px
    }
    .event-box-second-infos {
        width: 540px;
        padding-left: 100px
    }
}