@font-face {
    font-family: 'CamptonBold';
    src: url('../fonts/CamptonBold.otf');
}

@font-face {
    font-family: 'CamptonMedium';
    src: url('../fonts/CamptonMedium.otf');
}

@font-face {
    font-family: 'CamptonLight';
    src: url('../fonts/CamptonLight.otf');
}

@font-face {
    font-family: 'CamptonSemiBold';
    src: url('../fonts/CamptonSemiBold.otf');
}

@font-face {
    font-family: 'm-pro';
    src: url('../fonts/MyriadPro-Light.otf');
}

@font-face {
    font-family: 'm-pro-r';
    src: url('../fonts/MYRIADPRO-REGULAR.OTF');
}

@font-face {
    font-family: 'altone';
    src: url('../fonts/altone/Altone-Regular.ttf');
}

.m-pro {
    font-family: 'm-pro';
}

.m-pro-r {
    font-family: 'm-pro-r';
}

.text-blue {
    color: #3f6798;
}

.font-m-p-r {
    font-family: 'm-pro-r';
}


html {
    scroll-behavior: smooth;
}

header {
    display: none;

}

body {
    font-family: 'm-pro';
    font-size: 1.2rem;
}


.mobile-container {
    display: none;
    box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.75);
    height: 90px;
}

.close-btn svg {
    fill: #fdca6a;
}

.logo-menu {
    width: 150px;
    height: 150px;

    left: 0;
    padding-left: 8%;

}

#back-to-top svg {
    fill: #fdca6a;
}

.text-bold {
    font-family: 'CamptonBold';
}

.text-semi-bold {
    font-family: 'Barlow-SemiBold';
}

.hidden-arrow {
    display: none;
}

.map-link img {
    margin-left: 2px;
}

.side-bar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    width: 170px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    overflow-y: auto;
    transition: 0.6s ease;
    transition-property: right;
    background: #2e4159;
    min-height: 100vh;
    z-index: 20;
    font-size: 1.2rem;
}

.side-bar.active {
    right: 0;
}

.side-bar .menu-item {
    width: 100%;
    margin-top: 80px;
}

.side-bar .menu-item .item {
    position: relative;
    cursor: pointer;
}


.fig {
    width: 100%;
    color: white;
    position: relative;
    overflow: hidden;
}


.fig:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
    background-color: #ae895d;
    opacity: 0.5;
    transform: translateY(100%);
    transition: all 0.25s;
    transition-delay: 0.25s;
}

.fig:hover:before {
    transform: translateY(0);
    transition-delay: 0s;
}

.fig .caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.25s ease;
    background-color: rgba(0, 0, 0, 0.5);
}

.fig svg {
    font-size: 3rem;
    fill: #A7A7A7;
}


.fig h3,
.fig h5 {
    margin: 0;
    letter-spacing: 1px;
}

.fig h3 {
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 5px;
}

.fig h5 {
    background-color: #ae895d;
    padding: 3px 10px;
}

.fig:hover .caption {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.side-bar .menu-item .item a {
    color: #fff;
    font-size: 0.8rem;
    text-decoration: none;
    display: block;
    padding: 5px 30px;
    line-height: 60px;
    text-align: center;
    font-family: 'Monteserrat-Regular';
}

.side-bar .menu-item .item a:hover {
    background: #e4a52f;
    transition: 0.3s ease;
}

.side-bar .menu-item .item i {
    margin-right: 15px;
}

.side-bar .menu-item .item a .dropdown {
    position: absolute;
    right: 0;
    margin: 20px;
    transition: 0.3s ease;
}

.side-bar .menu-item .item .sub-menu {
    background: rgba(255, 255, 255, 0.1);
    display: none;
}

.side-bar .menu-item .item .sub-menu a {
    padding-left: 80px;
}

.rotate {
    transform: rotate(90deg);
}

.close-btn {
    position: absolute;
    color: #e4a52f;
    font-size: 20px;
    right: 0;
    margin: 25px;
    cursor: pointer;
    z-index: 20;
}

.menu-t-btn {
    position: absolute;
    color: #000000;
    font-size: 29px;
    margin: 25px;
    right: 0;
    cursor: pointer;
    z-index: 20;
}

.menu-t-btn svg {
    fill: #faa914;

}




.topnav {
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
    display: none;
}

.topnav #myLinks {
    display: none;
}

.topnav img {
    width: 10%;
    height: 10%;
}

.topnav a {
    color: #484848;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}

.topnav a.icon {
    background: #F2CA80;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}



.topnav .logo-company {
    color: transparent;

}

.active {
    color: white;
}

body {
    margin: 0 auto;
    overflow-y: hidden;
    overflow-x: hidden;
}

html {
    overflow-y: scroll;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

ul {
    margin-block-start: 0px;
    margin-block-end: 0px;
    padding-inline-start: 0px;
}

p {
    display: block;
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

nav {
    display: grid;
    grid-template-columns: 24% 62%;
    grid-template-rows: 98px;
    z-index: 999;
    width: 100%;
    background-color: #96c11f;
    padding-top: 10px;
    padding-bottom: 10px;
    /* box-shadow: 0px 4px 4px -2px rgb(15 14 14 / 75%); */
    position: fixed;
}

.nav-menu {
    height: 88px;
}

.menu-btn {
    display: none;
}

.logo {
    display: flex;
    align-items: right;
    justify-content: right;
    z-index: 1;
}

.logo img {
    object-fit: cover;
    width: 100%;
    margin-top: 10px;
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
    padding-left: 9px;
    padding-bottom: 20px;
    margin-top: 45px;
}

nav ul li {
    padding-right: 27px;
    padding-left: 27px;

    border-right: 1px solid #ffffff;
    font-family: Monteserrat-Regular, Geneva, Tahoma, sans-serif;
    color: #ffffff;
    letter-spacing: 1px;
    letter-spacing: 2px;

}

/* animaÃ§ÃĢo */

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    position: relative;
    text-transform: uppercase;
    font-family: 'CamptonLight';

}



nav ul li a:before {
    content: "";
    width: 0;
    height: 5px;
    background-color: #ffffff;
    position: absolute;
    top: 120%;
    left: 0;
    transition: all 0.5s;
}

nav ul li a:after {
    content: "";
    width: 0;
    height: 5px;
    background-color: #fdc300;
    position: absolute;
    top: 120%;
    right: 0;
    transition: all 0.5s;
}

nav ul li a:hover:before {
    width: 50%;
    transform: translateX(100%);

}


nav ul li a:hover:after {
    width: 50%;
    transform: translateX(-100%);
}


.icon-social a:before {
    background-color: transparent;

}

.icon-social a:after {
    background-color: transparent;

}




nav ul li a.active {

    border-radius: 15px;
    color: #000000;
    padding-left: 0px;
    padding-right: 0px;
    font-weight: bold;
}

.icon-social {
    display: flex;
    grid-column-gap: 10px;
}

nav li:last-child {
    border-right: none;

}

nav .menu-btn svg {
    color: #fff;
    cursor: pointer;
    display: none;
}

@media only screen and (max-width: 1327px) {
    nav ul li a {
        color: #ffffff;
        text-decoration: none;
        font-size: 0.6rem;
        font-weight: 500;
        letter-spacing: 3px;
        position: relative;
        text-transform: uppercase;
        font-family: 'CamptonLight';

    }

}

@media only screen and (max-width: 782px) {
    nav ul li a {
        color: #ffffff;
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 3px;
        position: relative;
        text-transform: uppercase;
        font-family: 'CamptonLight';

    }
}


@media only screen and (max-width: 782px) {
    header {
        display: block;
    }


    .nav-menu {
        height: 0px;
    }


    .mobile-container {
        display: block;
        box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.75);
        background-color: #96c11f;
    }

    .logo img {
        object-fit: contain;
        width: 150px;
        height: 100px;
    }



    ul {
        display: block;
        list-style-type: disc;
        margin-block-start: 0px;
        margin-block-end: 0px;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        padding-inline-start: 0px;
    }

    .topnav {
        overflow: hidden;
        background-color: #ffffff;
        position: relative;
        display: block;
    }

    nav {

        grid-template-rows: 45px;
        display: none;
        margin-top: 200px;

    }

    .menu-btn {
        display: block;
        order: 2;
        text-align: center;
    }


    nav .menu-btn svg {
        display: block;
        padding-top: 10px;
        float: right;
        margin-right: 10px;
        width: 35px;
        height: 35px;
    }

    nav ul {
        position: fixed;
        top: 0;
        left: -100%;
        background-color: #f2ca80;
        height: 100vh;
        max-width: 50%;
        text-align: center;
        display: block;
        transition: all 0.3s ease;
        z-index: 5;
    }

    nav ul.open {
        left: 0;
    }

    nav li a {
        padding-right: 5%;
    }

    nav ul li {
        width: 100%;
        margin-top: 50px;
        margin-left: -4%;
        border: 0;
    }

    nav ul li a {
        font-size: 1.4375rem;
    }

    nav ul li a.active,
    nav ul li a:hover {
        background: none;
        color: white;
        font-weight: bold;
    }



    nav .menu-btn svg {
        display: block;
        padding-top: 10px;
        float: right;
        margin-right: 10px;
        width: 35px;
        fill: #f2ca80;
        height: 35px;
    }

    .fig svg {
        display: none;
    }


    #back-to-top {
        visibility: visible;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9999;
    }

    #back-to-top a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: #996;
        color: #fff;
        text-decoration: none;
        transition: opacity 0.3s ease-in-out;
    }

    #back-to-top a:hover {
        opacity: 0.7;
    }

    #back-to-top svg {
        height: 35px;
    }

}

.network {
    background: #C9952B;
    display: grid;
    grid-template-columns: 80%;
    grid-template-rows: max-content;
    justify-content: center;
    padding-top: 2px;
    padding-bottom: 2px;
    justify-items: end;
    position: fixed;
    width: 100%;
    z-index: 3;


}

.icon-network {
    fill: #b7da98;
}

.icon-network svg {
    fill: #b7da98;
    font-size: 1.2rem;
}


@media only screen and (max-width: 782px) {
    .network {
        position: inherit;
    }
}


.banner{
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: max-content;  
    position: relative;
    z-index: 1;
    margin-top: 49px;
}

.banner .img-banner{
    width: 100%;
    height: auto;
}

.descr-banner{
    position: absolute;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: max-content;
    margin-left: 10%;
    margin-top: 5%;
    font-family: 'CamptonLight';
    font-size: 2.5rem;
    color: #fff;
}

.text-weigth{
    font-family: 'CamptonSemiBold';
}

.form-banner{
    position: absolute;
    height: 370px;
    width: 450px;
    /* background-color: #2e4159; */
    left: 10%;
    top: 10%;
    display: grid;
    grid-template-columns: 85%;
    grid-template-rows: auto;
    justify-content: center;
    font-size: 0.9rem;
    color: #c3cbdc;
    padding-top: 10px;
    padding-bottom: 0px;
    z-index: 2;

    letter-spacing: 1px;
}

.form-banner form input{
    height: 55px;
    margin-bottom: 18px;
    width: 100%;
    background-color: #b8bcc4;
    border: 0;
}

.title-form-banner {
    padding: 20px;
}

.formulario-cadastro{
    background-color: #2e4159;
    padding: 20px;
}
.texto-campo-obrigatorio{
    background-color: #2e4159;
    padding: 20px;
}

.formulario-cadastro ::placeholder{
    color: #2e4159;
    font-weight: bold;
    
}

.form-banner input, textarea{
    padding: 10px;
}

.texto-campo-obrigatorio{
    font-size: 0.8rem;
}


  .form-banner button {
    background: #96c11f;
    color: #ffff;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 18px;
    border: 0;
    width: 100%;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
    --background-color: #C9952B;
    --border-size: 2px;
  }

  .form-banner button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border: var(--border-size) solid var(--background-color);
    transition: top, left, right, bottom, 200ms ease-in-out;
  }
  .form-banner button:hover::before,
  .form-banner button:focus::before {
    top: calc(var(--border-size) * -2);
    left: calc(var(--border-size) * -2);
    right: calc(var(--border-size) * -2);
    bottom: calc(var(--border-size) * -2);
  }
  
  




.texto-cadastre-se{
    margin-top: 2px;
    margin-bottom: 0px;
    font-size: 2rem;
    letter-spacing: 3px;
}

.title-form-banner{
    background-color: #2e4159;
}

.title-form-banner hr{
    border-color: #e6e1db;
}

.title-form-banner p{
    font-size: 1.3rem;
}

.texto-campo-obrigatorio{
    margin-top: 0px;
    margin-bottom: 0px;
    font-family: 'Barlow-Light';
}

.social-icons {
    position: fixed;
    top: 90%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 2;
    
}


.icon {
    margin-bottom: 5px;
    transition: opacity 0.3s ease;
    font-size: 2rem;
    z-index: 99;
    width: 100%;
    height: 100%;

}

.icon:hover {
    opacity: 0.7;
}

.custom-opacity {
    opacity: 1;
}

.social-icons img{
    width: 45px;
    height: 45px;
}




@media only screen and (max-width: 813px) {

    .form-banner{
        display: none;
    }

    .banner{
        margin-top: 0px;
    }

    .descr-banner{
        position: absolute;
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: max-content;
        margin-left: 10%;
        margin-top: 50px;
        font-family: 'Barlow-Light';
        font-size: 1.2rem;
        color: #fff;
    }

    .logo-menu {
        width: 250px;
        height: auto;
        left: 0;
        padding-left: 8%;
        margin-top: 4px;
    }

    .social-icons {
        position: fixed;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    

}

.terreno{
    display: grid;
    grid-template-columns: 80%;
    grid-template-rows: max-content;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 20px;
    color: #553212;
    position: relative;
    background-image: url('../image/terreno/bg-yellow.jpg');
    background-size: 100% 100%;
    font-size: 2rem;
}

.texto-terreno{
    font-family: 'CamptonBold';
    font-size: 2rem;
}

.texto-zona-norte{
    font-family: 'CamptonBold';
}

.text-lazer-seguranca{
    color: black;
    font-family: 'Barlow-Regular';
    margin-bottom: 20px;
    font-size: 2.3rem;
}

.text-projeto{
    font-family: 'Barlow-Light';
}

.text-projeto p {
    margin-bottom: 10px;
    padding-right: 20px;
}



@media only screen and (max-width: 813px) {
    .texto-terreno {
        font-family: 'Barlow-Medium';
        font-size: 1.5rem;
    }

    .texto-zona-norte{
        font-size: 1.2rem;
    }

    .text-lazer-seguranca{
        color: black;
        font-family: 'Barlow-Regular';
        margin-bottom: 20px;
        font-size: 1.5rem;
    }
    
}


  .c4-izmir {
    --text-color: #ffffff;
    --primary-color: #transparent;
    --secondary-color: #0083B0;
    --padding: 1em;
    --transition-duration: 1200ms;
    --border-margin: 15px;
    --border-width: 3px;
    --border-color: #ffffff;
    --border-radius: 3px;
    --image-opacity: 0.25;
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0;
    padding: 0;
    color: #ffffff;
    color: var(--text-color);
    border-radius: 3px;
    border-radius: var(--border-radius); }
    .c4-izmir:before, .c4-izmir:after, .c4-izmir *, .c4-izmir *:before, .c4-izmir *:after {
      box-sizing: border-box;
      transition: all 600ms ease;
      transition: all var(--transition-duration) ease; }
    .c4-izmir figcaption {
      position: absolute;
      font-size: 2.5rem;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 1em;
      padding: var(--padding);
      width: 100%;
      z-index: 1; }
    .c4-izmir img {
      object-fit: cover;
      max-width: 100%;
      width: 100%;
      height: 100%; }
    .c4-izmir h1,
    .c4-izmir h2,
    .c4-izmir h3,
    .c4-izmir h4,
    .c4-izmir h5,
    .c4-izmir h6,
    .c4-izmir p {
      margin-top: 0;
      color: #ffffff;
      color: var(--text-color); }
      .c4-izmir h1:last-child,
      .c4-izmir h2:last-child,
      .c4-izmir h3:last-child,
      .c4-izmir h4:last-child,
      .c4-izmir h5:last-child,
      .c4-izmir h6:last-child,
      .c4-izmir p:last-child {
        margin-bottom: 0; }
  
  /* c4-border-*
     ----------------------------- */
  [class^='c4-border']:before, [class^='c4-border']:after,
  [class^='c4-border'] figcaption:before,
  [class^='c4-border'] figcaption:after,
  [class*=' c4-border']:before,
  [class*=' c4-border']:after,
  [class*=' c4-border'] figcaption:before,
  [class*=' c4-border'] figcaption:after {
    background-color: #ffffff;
    background-color: var(--border-color);
    position: absolute;
    content: ''; }
  [class^='c4-border']:before, [class^='c4-border']:after,
  [class*=' c4-border']:before,
  [class*=' c4-border']:after {
    z-index: 1;
    height: 3px;
    height: var(--border-width);
    left: 15px;
    left: var(--border-margin);
    right: 15px;
    right: var(--border-margin);
    transform: scaleX(0); }
  [class^='c4-border']:before,
  [class*=' c4-border']:before {
    top: 15px;
    top: var(--border-margin); }
  [class^='c4-border']:after,
  [class*=' c4-border']:after {
    bottom: 15px;
    bottom: var(--border-margin); }
  [class^='c4-border'] figcaption,
  [class*=' c4-border'] figcaption {
    z-index: 3; }
    [class^='c4-border'] figcaption:before, [class^='c4-border'] figcaption:after,
    [class*=' c4-border'] figcaption:before,
    [class*=' c4-border'] figcaption:after {
      z-index: -1;
      width: 3px;
      width: var(--border-width);
      top: 15px;
      top: var(--border-margin);
      bottom: 15px;
      bottom: var(--border-margin);
      transform: scaleY(0); }
    [class^='c4-border'] figcaption:before,
    [class*=' c4-border'] figcaption:before {
      left: 15px;
      left: var(--border-margin); }
    [class^='c4-border'] figcaption:after,
    [class*=' c4-border'] figcaption:after {
      right: 15px;
      right: var(--border-margin); }
  [class^='c4-border'].hover:before, [class^='c4-border'].hover:after,
  [class^='c4-border'].hover figcaption:before,
  [class^='c4-border'].hover figcaption:after, [class^='c4-border']:hover:before, [class^='c4-border']:hover:after,
  [class^='c4-border']:hover figcaption:before,
  [class^='c4-border']:hover figcaption:after, [class^='c4-border']:focus:before, [class^='c4-border']:focus:after,
  [class^='c4-border']:focus figcaption:before,
  [class^='c4-border']:focus figcaption:after, :focus > [class^='c4-border']:before, :focus > [class^='c4-border']:after,
  :focus > [class^='c4-border'] figcaption:before,
  :focus > [class^='c4-border'] figcaption:after,
  [class*=' c4-border'].hover:before,
  [class*=' c4-border'].hover:after,
  [class*=' c4-border'].hover figcaption:before,
  [class*=' c4-border'].hover figcaption:after,
  [class*=' c4-border']:hover:before,
  [class*=' c4-border']:hover:after,
  [class*=' c4-border']:hover figcaption:before,
  [class*=' c4-border']:hover figcaption:after,
  [class*=' c4-border']:focus:before,
  [class*=' c4-border']:focus:after,
  [class*=' c4-border']:focus figcaption:before,
  [class*=' c4-border']:focus figcaption:after, :focus >
  [class*=' c4-border']:before, :focus >
  [class*=' c4-border']:after,
  :focus >
  [class*=' c4-border'] figcaption:before,
  :focus >
  [class*=' c4-border'] figcaption:after {
    transform: scale(1); }
  
  /* c4-border-center
    ----------------------------- */
  /* c4-border-vert
    ----------------------------- */
  .c4-border-vert:before, .c4-border-vert:after {
    transition-duration: 0s; }
  .c4-border-vert.hover:before, .c4-border-vert.hover:after, .c4-border-vert:hover:before, .c4-border-vert:hover:after, .c4-border-vert:focus:before, .c4-border-vert:focus:after, :focus > .c4-border-vert:before, :focus > .c4-border-vert:after {
    transition-delay: 480ms; }
  
  /* c4-border-horiz
    ----------------------------- */
  .c4-border-horiz figcaption:before, .c4-border-horiz figcaption:after {
    transition-duration: 0s; }
  .c4-border-horiz.hover figcaption:before, .c4-border-horiz.hover figcaption:after, .c4-border-horiz:hover figcaption:before, .c4-border-horiz:hover figcaption:after, .c4-border-horiz:focus figcaption:before, .c4-border-horiz:focus figcaption:after, :focus > .c4-border-horiz figcaption:before, :focus > .c4-border-horiz figcaption:after {
    transition-delay: 480ms; }
  
  /* c4-border-bottom
    ----------------------------- */
  .c4-border-bottom:after {
    transition-delay: 480ms; }
  .c4-border-bottom:before, .c4-border-bottom:after {
    transition-duration: 0s; }
  .c4-border-bottom figcaption:before, .c4-border-bottom figcaption:after {
    transform-origin: 100% 100%; }
  .c4-border-bottom.hover:before, .c4-border-bottom:hover:before, .c4-border-bottom:focus:before, :focus > .c4-border-bottom:before {
    transition-delay: 480ms; }
  .c4-border-bottom.hover:after, .c4-border-bottom:hover:after, .c4-border-bottom:focus:after, :focus > .c4-border-bottom:after {
    transition-delay: 0s; }
  
  /* c4-border-top
    ----------------------------- */
  .c4-border-top:before {
    transition-delay: 480ms; }
  .c4-border-top:before, .c4-border-top:after {
    transition-duration: 0s; }
  .c4-border-top figcaption:before, .c4-border-top figcaption:after {
    transform-origin: 0 0; }
  .c4-border-top.hover:after, .c4-border-top:hover:after, .c4-border-top:focus:after, :focus > .c4-border-top:after {
    transition-delay: 480ms; }
  .c4-border-top.hover:before, .c4-border-top:hover:before, .c4-border-top:focus:before, :focus > .c4-border-top:before {
    transition-delay: 0s; }
  
  /* c4-border-right
    ----------------------------- */
  .c4-border-right:before, .c4-border-right:after {
    transform-origin: 100% 100%; }
  .c4-border-right figcaption:after {
    transition-delay: 480ms; }
  .c4-border-right figcaption:before, .c4-border-right figcaption:after {
    transition-duration: 0s; }
  .c4-border-right.hover figcaption:before, .c4-border-right:hover figcaption:before, .c4-border-right:focus figcaption:before, :focus > .c4-border-right figcaption:before {
    transition-delay: 480ms; }
  .c4-border-right.hover figcaption:after, .c4-border-right:hover figcaption:after, .c4-border-right:focus figcaption:after, :focus > .c4-border-right figcaption:after {
    transition-delay: 0s; }
  
  /* c4-border-left
    ----------------------------- */
  .c4-border-left:before, .c4-border-left:after {
    transform-origin: 0 0; }
  .c4-border-left figcaption:before {
    transition-delay: 480ms; }
  .c4-border-left figcaption:before, .c4-border-left figcaption:after {
    transition-duration: 0s; }
  .c4-border-left.hover figcaption:after, .c4-border-left:hover figcaption:after, .c4-border-left:focus figcaption:after, :focus > .c4-border-left figcaption:after {
    transition-delay: 480ms; }
  .c4-border-left.hover figcaption:before, .c4-border-left:hover figcaption:before, .c4-border-left:focus figcaption:before, :focus > .c4-border-left figcaption:before {
    transition-delay: 0s; }
  
  /* c4-border-corners-1
    ----------------------------- */
  .c4-border-corners-1:before,
  .c4-border-corners-1 figcaption:before {
    transform-origin: 0 0; }
  .c4-border-corners-1:after,
  .c4-border-corners-1 figcaption:after {
    transform-origin: 100% 100%; }
  
  /* c4-border-corners-2
    ----------------------------- */
  .c4-border-corners-2:before,
  .c4-border-corners-2 figcaption:before {
    transform-origin: 100% 100%; }
  .c4-border-corners-2:after,
  .c4-border-corners-2 figcaption:after {
    transform-origin: 0 0; }
  
  /* c4-border-top-left
    ----------------------------- */
  .c4-border-top-left:before, .c4-border-top-left:after,
  .c4-border-top-left figcaption:before,
  .c4-border-top-left figcaption:after {
    transform-origin: 0 0; }
  .c4-border-top-left:before {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25); }
  .c4-border-top-left:after {
    transition-delay: 0s; }
  .c4-border-top-left figcaption:before {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25); }
  .c4-border-top-left figcaption:after {
    transition-delay: 0s; }
  .c4-border-top-left.hover:before, .c4-border-top-left:hover:before, .c4-border-top-left:focus:before, :focus > .c4-border-top-left:before {
    transition-delay: 0s; }
  .c4-border-top-left.hover:after, .c4-border-top-left:hover:after, .c4-border-top-left:focus:after, :focus > .c4-border-top-left:after {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25); }
  .c4-border-top-left.hover figcaption:before, .c4-border-top-left:hover figcaption:before, .c4-border-top-left:focus figcaption:before, :focus > .c4-border-top-left figcaption:before {
    transition-delay: 0s; }
  .c4-border-top-left.hover figcaption:after, .c4-border-top-left:hover figcaption:after, .c4-border-top-left:focus figcaption:after, :focus > .c4-border-top-left figcaption:after {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25); }
  
  /* c4-border-top-right
    ----------------------------- */
  .c4-border-top-right:before, .c4-border-top-right:after,
  .c4-border-top-right figcaption:before,
  .c4-border-top-right figcaption:after {
    transform-origin: 100% 0%; }
  .c4-border-top-right:before {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25); }
  .c4-border-top-right:after {
    transition-delay: 0s; }
  .c4-border-top-right figcaption:before {
    transition-delay: 0s; }
  .c4-border-top-right figcaption:after {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25); }
  .c4-border-top-right.hover:before, .c4-border-top-right:hover:before, .c4-border-top-right:focus:before, :focus > .c4-border-top-right:before {
    transition-delay: 0s; }
  .c4-border-top-right.hover:after, .c4-border-top-right:hover:after, .c4-border-top-right:focus:after, :focus > .c4-border-top-right:after {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25); }
  .c4-border-top-right.hover figcaption:before, .c4-border-top-right:hover figcaption:before, .c4-border-top-right:focus figcaption:before, :focus > .c4-border-top-right figcaption:before {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25); }
  .c4-border-top-right.hover figcaption:after, .c4-border-top-right:hover figcaption:after, .c4-border-top-right:focus figcaption:after, :focus > .c4-border-top-right figcaption:after {
    transition-delay: 0s; }
  
  /* c4-border-bottom-left
    ----------------------------- */
  .c4-border-bottom-left:before, .c4-border-bottom-left:after,
  .c4-border-bottom-left figcaption:before,
  .c4-border-bottom-left figcaption:after {
    transform-origin: 0 100%; }
  .c4-border-bottom-left:before {
    transition-delay: 0s; }
  .c4-border-bottom-left:after {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25); }
  .c4-border-bottom-left figcaption:before {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25); }
  .c4-border-bottom-left figcaption:after {
    transition-delay: 0s; }
  .c4-border-bottom-left.hover:before, .c4-border-bottom-left:hover:before, .c4-border-bottom-left:focus:before, :focus > .c4-border-bottom-left:before {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25); }
  .c4-border-bottom-left.hover:after, .c4-border-bottom-left:hover:after, .c4-border-bottom-left:focus:after, :focus > .c4-border-bottom-left:after {
    transition-delay: 0s; }
  .c4-border-bottom-left.hover figcaption:before, .c4-border-bottom-left:hover figcaption:before, .c4-border-bottom-left:focus figcaption:before, :focus > .c4-border-bottom-left figcaption:before {
    transition-delay: 0s; }
  .c4-border-bottom-left.hover figcaption:after, .c4-border-bottom-left:hover figcaption:after, .c4-border-bottom-left:focus figcaption:after, :focus > .c4-border-bottom-left figcaption:after {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25); }
  
  /* c4-border-bottom-right
    ----------------------------- */
  .c4-border-bottom-right:before, .c4-border-bottom-right:after,
  .c4-border-bottom-right figcaption:before,
  .c4-border-bottom-right figcaption:after {
    transform-origin: 100% 100%; }
  .c4-border-bottom-right:before {
    transition-delay: 0s; }
  .c4-border-bottom-right:after {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25); }
  .c4-border-bottom-right figcaption:before {
    transition-delay: 0s; }
  .c4-border-bottom-right figcaption:after {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25); }
  .c4-border-bottom-right.hover:before, .c4-border-bottom-right:hover:before, .c4-border-bottom-right:focus:before, :focus > .c4-border-bottom-right:before {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25); }
  .c4-border-bottom-right.hover:after, .c4-border-bottom-right:hover:after, .c4-border-bottom-right:focus:after, :focus > .c4-border-bottom-right:after {
    transition-delay: 0s; }
  .c4-border-bottom-right.hover figcaption:before, .c4-border-bottom-right:hover figcaption:before, .c4-border-bottom-right:focus figcaption:before, :focus > .c4-border-bottom-right figcaption:before {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25); }
  .c4-border-bottom-right.hover figcaption:after, .c4-border-bottom-right:hover figcaption:after, .c4-border-bottom-right:focus figcaption:after, :focus > .c4-border-bottom-right figcaption:after {
    transition-delay: 0s; }
  
  /* c4-border-cc-1
    ----------------------------- */
  .c4-border-cc-1:before, .c4-border-cc-1:after,
  .c4-border-cc-1 figcaption:before,
  .c4-border-cc-1 figcaption:after {
    transition-duration: 300ms; }
  .c4-border-cc-1:before,
  .c4-border-cc-1 figcaption:after {
    transform-origin: 0 0; }
  .c4-border-cc-1:after,
  .c4-border-cc-1 figcaption:before {
    transform-origin: 100% 100%; }
  .c4-border-cc-1:before {
    transition-delay: 600ms; }
  .c4-border-cc-1:after {
    transition-delay: 0s; }
  .c4-border-cc-1 figcaption:before {
    transition-delay: 900ms; }
  .c4-border-cc-1 figcaption:after {
    transition-delay: 300ms; }
  .c4-border-cc-1.hover:before, .c4-border-cc-1:hover:before, .c4-border-cc-1:focus:before, :focus > .c4-border-cc-1:before {
    transition-delay: 300ms; }
  .c4-border-cc-1.hover:after, .c4-border-cc-1:hover:after, .c4-border-cc-1:focus:after, :focus > .c4-border-cc-1:after {
    transition-delay: 900ms; }
  .c4-border-cc-1.hover figcaption:before, .c4-border-cc-1:hover figcaption:before, .c4-border-cc-1:focus figcaption:before, :focus > .c4-border-cc-1 figcaption:before {
    transition-delay: 0s; }
  .c4-border-cc-1.hover figcaption:after, .c4-border-cc-1:hover figcaption:after, .c4-border-cc-1:focus figcaption:after, :focus > .c4-border-cc-1 figcaption:after {
    transition-delay: 600ms; }
  
  /* c4-border-ccc-1
    ----------------------------- */
  .c4-border-ccc-1:before, .c4-border-ccc-1:after,
  .c4-border-ccc-1 figcaption:before,
  .c4-border-ccc-1 figcaption:after {
    transition-duration: 400ms; }
  .c4-border-ccc-1:before,
  .c4-border-ccc-1 figcaption:after {
    transform-origin: 100% 100%; }
  .c4-border-ccc-1:after,
  .c4-border-ccc-1 figcaption:before {
    transform-origin: 0 0; }
  .c4-border-ccc-1:before {
    transition-delay: 0s; }
  .c4-border-ccc-1:after {
    transition-delay: 600ms; }
  .c4-border-ccc-1 figcaption:before {
    transition-delay: 900ms; }
  .c4-border-ccc-1 figcaption:after {
    transition-delay: 300ms; }
  .c4-border-ccc-1.hover:before, .c4-border-ccc-1:hover:before, .c4-border-ccc-1:focus:before, :focus > .c4-border-ccc-1:before {
    transition-delay: 900ms; }
  .c4-border-ccc-1.hover:after, .c4-border-ccc-1:hover:after, .c4-border-ccc-1:focus:after, :focus > .c4-border-ccc-1:after {
    transition-delay: 300ms; }
  .c4-border-ccc-1.hover figcaption:before, .c4-border-ccc-1:hover figcaption:before, .c4-border-ccc-1:focus figcaption:before, :focus > .c4-border-ccc-1 figcaption:before {
    transition-delay: 0s; }
  .c4-border-ccc-1.hover figcaption:after, .c4-border-ccc-1:hover figcaption:after, .c4-border-ccc-1:focus figcaption:after, :focus > .c4-border-ccc-1 figcaption:after {
    transition-delay: 600ms; }
  
  /* c4-border-cc-2
    ----------------------------- */
  .c4-border-cc-2:before,
  .c4-border-cc-2 figcaption:after {
    transform-origin: 0 0; }
  .c4-border-cc-2:after,
  .c4-border-cc-2 figcaption:before {
    transform-origin: 100% 100%; }
  
  /* c4-border-ccc-2
    ----------------------------- */
  .c4-border-ccc-2:before,
  .c4-border-ccc-2 figcaption:after {
    transform-origin: 100% 100%; }
  .c4-border-ccc-2:after, .c4-border-ccc-2 figcaption:before {
    transform-origin: 0 0; }
  
  /* c4-border-cc-3
    ----------------------------- */
  .c4-border-cc-3:before, .c4-border-cc-3 figcaption:after {
    transform-origin: 0 0; }
  .c4-border-cc-3:after, .c4-border-cc-3 figcaption:before {
    transform-origin: 100% 100%; }
  .c4-border-cc-3:before {
    right: 33px;
    right: calc(var(--border-margin) + var(--border-margin) + var(--border-width));
    left: 0; }
  .c4-border-cc-3:after {
    left: 33px;
    left: calc(var(--border-margin) + var(--border-margin) + var(--border-width));
    right: 0; }
  .c4-border-cc-3 figcaption:before {
    top: 33px;
    top: calc(var(--border-margin) + var(--border-margin) + var(--border-width));
    bottom: 0; }
  .c4-border-cc-3 figcaption:after {
    bottom: 33px;
    bottom: calc(var(--border-margin) + var(--border-margin) + var(--border-width));
    top: 0; }
  
  /* c4-border-ccc-3
    ----------------------------- */
  .c4-border-ccc-3:before,
  .c4-border-ccc-3 figcaption:after {
    transform-origin: 100% 100%; }
  .c4-border-ccc-3:after,
  .c4-border-ccc-3 figcaption:before {
    transform-origin: 0 0; }
  .c4-border-ccc-3:before {
    left: 33px;
    left: calc(var(--border-margin) + var(--border-margin) + var(--border-width));
    right: 0; }
  .c4-border-ccc-3:after {
    right: 33px;
    right: calc(var(--border-margin) + var(--border-margin) + var(--border-width));
    left: 0; }
  .c4-border-ccc-3 figcaption:before {
    bottom: 33px;
    bottom: calc(var(--border-margin) + var(--border-margin) + var(--border-width));
    top: 0; }
  .c4-border-ccc-3 figcaption:after {
    top: 33px;
    top: calc(var(--border-margin) + var(--border-margin) + var(--border-width));
    bottom: 0; }
  
  /* c4-border-fade
    ----------------------------- */
  .c4-border-fade:before, .c4-border-fade:after,
  .c4-border-fade figcaption:before,
  .c4-border-fade figcaption:after {
    transform: scale(1);
    opacity: 0; }
  .c4-border-fade.hover:before, .c4-border-fade.hover:after,
  .c4-border-fade.hover figcaption:before,
  .c4-border-fade.hover figcaption:after, .c4-border-fade:hover:before, .c4-border-fade:hover:after,
  .c4-border-fade:hover figcaption:before,
  .c4-border-fade:hover figcaption:after, .c4-border-fade:focus:before, .c4-border-fade:focus:after,
  .c4-border-fade:focus figcaption:before,
  .c4-border-fade:focus figcaption:after, :focus > .c4-border-fade:before, :focus > .c4-border-fade:after,
  :focus > .c4-border-fade figcaption:before,
  :focus > .c4-border-fade figcaption:after {
    opacity: 1; }
  
  .c4-image-zoom-in.hover img, .c4-image-zoom-in:hover img, .c4-image-zoom-in:focus img, :focus > .c4-image-zoom-in img {
    transform: scale(1.25); }
  .c4-image-zoom-out img {
    transform: scale(1.25); }
  .c4-image-zoom-out.hover img, .c4-image-zoom-out:hover img, .c4-image-zoom-out:focus img, :focus > .c4-image-zoom-out img {
    transform: scale(1); }
  .c4-image-pan-up img {
    transform-origin: top;
    transform: scale(1.2) translate(0, 0); }
  .c4-image-pan-up.hover img, .c4-image-pan-up:hover img, .c4-image-pan-up:focus img, :focus > .c4-image-pan-up img {
    transform: scale(1.2) translate(0, -15%); }
  .c4-image-pan-down img {
    transform-origin: bottom;
    transform: scale(1.2) translate(0, 0); }
  .c4-image-pan-down:hover img, .c4-image-pan-down:focus img, :focus > .c4-image-pan-down img {
    transform: scale(1.2) translate(0, 15%); }
  .c4-image-pan-left img {
    transform-origin: left;
    transform: scale(1.2) translate(0, 0); }
  .c4-image-pan-left.hover img, .c4-image-pan-left:hover img, .c4-image-pan-left:focus img, :focus > .c4-image-pan-left img {
    transform: scale(1.2) translate(-15%, 0); }
  .c4-image-pan-right img {
    transform-origin: right;
    transform: scale(1.2) translate(0, 0); }
  .c4-image-pan-right.hover img, .c4-image-pan-right:hover img, .c4-image-pan-right:focus img, :focus > .c4-image-pan-right img {
    transform: scale(1.2) translate(15%, 0); }
  .c4-image-blur.hover img, .c4-image-blur:hover img, .c4-image-blur:focus img, :focus > .c4-image-blur img {
    filter: blur(4px);
    transform: scale(1.1); }
  .c4-image-rotate-left img {
    transform: scale(1.1) translate(0, 0); }
  .c4-image-rotate-left.hover img, .c4-image-rotate-left:hover img, .c4-image-rotate-left:focus img, :focus > .c4-image-rotate-left img {
    transform: scale(1.3) rotate(-15deg); }
  .c4-image-rotate-right img {
    transform: scale(1.1) translate(0, 0); }
  .c4-image-rotate-right.hover img, .c4-image-rotate-right:hover img, .c4-image-rotate-right:focus img, :focus > .c4-image-rotate-right img {
    transform: scale(1.3) rotate(15deg); }
  
  .c4-delay-100,
  .c4-delay-100 > * {
    transition-delay: 100ms; }
  
  .c4-delay-200,
  .c4-delay-200 > * {
    transition-delay: 200ms; }
  
  .c4-delay-300,
  .c4-delay-300 > * {
    transition-delay: 300ms; }
  
  .c4-delay-400,
  .c4-delay-400 > * {
    transition-delay: 400ms; }
  
  .c4-delay-500,
  .c4-delay-500 > * {
    transition-delay: 500ms; }
  
  .c4-delay-600,
  .c4-delay-600 > * {
    transition-delay: 600ms; }
  
  .c4-delay-700,
  .c4-delay-700 > * {
    transition-delay: 700ms; }
  
  .c4-delay-800,
  .c4-delay-800 > * {
    transition-delay: 800ms; }
  
  .c4-delay-900,
  .c4-delay-900 > * {
    transition-delay: 900ms; }
  
  .c4-delay-1000,
  .c4-delay-1000 > * {
    transition-delay: 1000ms; }
  
  [class^='c4-fade'],
  [class*=' c4-fade'],
  [class^='c4-reveal'],
  [class*=' c4-reveal'],
  [class^='c4-rotate'],
  [class*=' c4-rotate'] {
    display: inline-block; }
    [class^='c4-fade'] > *,
    [class*=' c4-fade'] > *,
    [class^='c4-reveal'] > *,
    [class*=' c4-reveal'] > *,
    [class^='c4-rotate'] > *,
    [class*=' c4-rotate'] > * {
      display: inline-block; }
      [class^='c4-fade'] > *:last-child,
      [class*=' c4-fade'] > *:last-child,
      [class^='c4-reveal'] > *:last-child,
      [class*=' c4-reveal'] > *:last-child,
      [class^='c4-rotate'] > *:last-child,
      [class*=' c4-rotate'] > *:last-child {
        margin-bottom: 0; }
  
  [class^='c4-reveal'],
  [class*=' c4-reveal'],
  [class^='c4-rotate'],
  [class*=' c4-rotate'] {
    overflow: hidden;
    opacity: 1; }
  
  [class^='c4-fade'],
  [class*=' c4-fade'] {
    opacity: 0; }
  
  .c4-izmir.hover [class^='c4-fade'],
  .c4-izmir.hover [class*=' c4-fade'], .c4-izmir:hover [class^='c4-fade'],
  .c4-izmir:hover [class*=' c4-fade'], .c4-izmir:focus [class^='c4-fade'],
  .c4-izmir:focus [class*=' c4-fade'], :focus > .c4-izmir [class^='c4-fade'],
  :focus > .c4-izmir [class*=' c4-fade'] {
    opacity: 1;
    transform: translate(0); }
  .c4-izmir.hover [class^='c4-reveal'],
  .c4-izmir.hover [class*=' c4-reveal'],
  .c4-izmir.hover [class^='c4-rotate'],
  .c4-izmir.hover [class*=' c4-rotate'], .c4-izmir:hover [class^='c4-reveal'],
  .c4-izmir:hover [class*=' c4-reveal'],
  .c4-izmir:hover [class^='c4-rotate'],
  .c4-izmir:hover [class*=' c4-rotate'], .c4-izmir:focus [class^='c4-reveal'],
  .c4-izmir:focus [class*=' c4-reveal'],
  .c4-izmir:focus [class^='c4-rotate'],
  .c4-izmir:focus [class*=' c4-rotate'], :focus > .c4-izmir [class^='c4-reveal'],
  :focus > .c4-izmir [class*=' c4-reveal'],
  :focus > .c4-izmir [class^='c4-rotate'],
  :focus > .c4-izmir [class*=' c4-rotate'] {
    opacity: 1; }
    .c4-izmir.hover [class^='c4-reveal'] > *,
    .c4-izmir.hover [class*=' c4-reveal'] > *,
    .c4-izmir.hover [class^='c4-rotate'] > *,
    .c4-izmir.hover [class*=' c4-rotate'] > *, .c4-izmir:hover [class^='c4-reveal'] > *,
    .c4-izmir:hover [class*=' c4-reveal'] > *,
    .c4-izmir:hover [class^='c4-rotate'] > *,
    .c4-izmir:hover [class*=' c4-rotate'] > *, .c4-izmir:focus [class^='c4-reveal'] > *,
    .c4-izmir:focus [class*=' c4-reveal'] > *,
    .c4-izmir:focus [class^='c4-rotate'] > *,
    .c4-izmir:focus [class*=' c4-rotate'] > *, :focus > .c4-izmir [class^='c4-reveal'] > *,
    :focus > .c4-izmir [class*=' c4-reveal'] > *,
    :focus > .c4-izmir [class^='c4-rotate'] > *,
    :focus > .c4-izmir [class*=' c4-rotate'] > * {
      transform: translate(0) rotate(0deg); }
  
  .c4-fade-up {
    transform: translateY(1.5rem); }
  .c4-fade-down {
    transform: translateY(-1.5rem); }
  .c4-fade-left {
    transform: translateX(1.5rem); }
  .c4-fade-right {
    transform: translateX(-1.5rem); }
  .c4-reveal-up > * {
    transform: translateY(100%); }
  .c4-reveal-down > * {
    transform: translateY(-100%); }
  .c4-reveal-left > * {
    transform: translateX(100%); }
  .c4-reveal-right > * {
    transform: translateX(-100%); }
  .c4-rotate-up-right > * {
    transform-origin: bottom left;
    transform: rotate(90deg); }
  .c4-rotate-up-left > * {
    transform-origin: bottom right;
    transform: rotate(-90deg); }
  .c4-rotate-down-right > * {
    transform-origin: top left;
    transform: rotate(-90deg); }
  .c4-rotate-down-left > * {
    transform-origin: top right;
    transform: rotate(90deg); }
  
  .c4-gradient-top {
    background-image: linear-gradient(180deg, #00B4DB 0%, #0083B0 100%);
    background-image: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%); }
  .c4-gradient-left {
    background-image: linear-gradient(90deg, #00B4DB 0%, #0083B0 100%);
    background-image: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%); }
  .c4-gradient-right {
    background-image: linear-gradient(270deg, #00B4DB 0%, #0083B0 100%);
    background-image: linear-gradient(270deg, var(--primary-color) 0%, var(--secondary-color) 100%); }
  .c4-gradient-bottom {
    background-image: linear-gradient(0deg, #00B4DB 0%, #0083B0 100%);
    background-image: linear-gradient(0deg, var(--primary-color) 0%, var(--secondary-color) 100%); }
  .c4-gradient-top-left {
    background-image: linear-gradient(135deg, #00B4DB 0%, #0083B0 100%);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); }
  .c4-gradient-top-right {
    background-image: linear-gradient(225deg, #00B4DB 0%, #0083B0 100%);
    background-image: linear-gradient(225deg, var(--primary-color) 0%, var(--secondary-color) 100%); }
  .c4-gradient-bottom-left {
    background-image: linear-gradient(45deg, #00B4DB 0%, #0083B0 100%);
    background-image: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%); }
  .c4-gradient-bottom-right {
    background-image: linear-gradient(315deg, #00B4DB 0%, #0083B0 100%);
    background-image: linear-gradient(315deg, var(--primary-color) 0%, var(--secondary-color) 100%); }
  
  .c4-izmir .c4-layout-top-left {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left; }
  .c4-izmir .c4-layout-top-center {
    justify-content: flex-start; }
  .c4-izmir .c4-layout-top-right {
    justify-content: flex-start;
    align-items: flex-end;
    text-align: right; }
  .c4-izmir .c4-layout-center-left {
    align-items: flex-start;
    text-align: left; }
  .c4-izmir .c4-layout-center-right {
    align-items: flex-end;
    text-align: right; }
  .c4-izmir .c4-layout-bottom-left {
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left; }
  .c4-izmir .c4-layout-bottom-center {
    justify-content: flex-end; }
  .c4-izmir .c4-layout-bottom-right {
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right; }
  
  .c4-izmir {
    background-color: #00B4DB;
    background-color: var(--primary-color); 
  }
    .c4-izmir figcaption {
      padding: 2em;
      padding: calc(var(--padding) * 2); }
      .c4-izmir figcaption > * {
        opacity: 0; }
    .c4-izmir.hover > img, .c4-izmir:hover > img, .c4-izmir:focus > img, :focus > .c4-izmir > img {
      opacity: 0.25;
      opacity: var(--image-opacity); }
    .c4-izmir.hover figcaption > *, .c4-izmir:hover figcaption > *, .c4-izmir:focus figcaption > *, :focus > .c4-izmir figcaption > * {
      opacity: 1; }
  
  /*# sourceMappingURL=izmir.css.map */
  
  
.contact-mail {
    display: grid;
    grid-template-columns: 25% 40%;
    grid-template-rows: max-content;
    justify-content: center;
    align-items: center;
    background-color: #2e4159;
}

.contact-mail a{
    text-decoration: none;
    color: #c3cbdc
}

.contact-mail .contact-network {
    color: #c3cbdc

}

.contact-mail .contact-network p {
    margin-bottom: 5px;
    font-family: Altone-Regular;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.contact-mail .contact-network svg {
    fill: #bf8136;
}


.contact-mail .network-icon svg {
    fill: #bf8136;
    padding-right: 10px;
    margin-top: 10px;
}


.email-contato {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto auto auto;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.email-contato input {
    height: 50px;
    padding-top: 0.375rem;
    padding-right: 0.75rem;
    padding-bottom: 0.375rem;
    padding-left: 0.75rem;
    margin-bottom: 6px;
    border: 0;
    background-color: #c3cbdc;

}

.email2-contato textarea {
    width: 100%;
    height: 80px;
    border: 0;
    margin-top: 2px;
    margin-right: 20px;
    margin-bottom: 8px;
    background-color: #c3cbdc;

}

.email2-contato button {
    width: 100%;
    text-align: center;
    margin: 0 auto;

    background-color: #bf8136;
    color: #ffffff;
    border: 0;
    padding: 15px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 5px;
    border: 0;
    cursor: pointer;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
    --border-size: 2px;
    --accent-color: #d26b0a;

}

.email2-contato button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-color: var(--accent-color);
    transition: transform 300ms ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
  }
  .email2-contato button:hover::before,
  .email2-contato button:focus::before {
    transform: scaleX(1);
  }
  .email2-contato button {
    transition: color 300ms ease-in-out;
    z-index: 1;
  }
  
  .email2-contato button:hover,
  .email2-contato button:focus {
    color: white;
  }



.button-contato{
    display: grid;
    justify-content: end;
}

.email2-contato{
    margin-left: 8px;
    margin-top: 30px;
}

.contact-network svg{
    margin-right: 10px;
}

@media only screen and (max-width: 760px) {

    .email-contato {
        display: grid;
        grid-template-columns: 90%;
        grid-template-rows: auto auto auto auto auto;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .contact-mail {
        display: grid;
        grid-template-columns: 80%;
        grid-template-rows: auto auto;
        justify-content: center;
        align-items: center;
        background-color: #2e4159;
    }

    .contact-mail .contact-network {
        color: #fff;
        text-align: center;
        order: 2;
    
    }

    .contact-mail .email2-form {
        color: #fff;
        text-align: center;
        order: 1;
    
    }


}

.projeto{
    display: grid;
    grid-template-columns: 35% 40%;
    grid-template-rows: max-content;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
    
}


.texto-sobre-emp{
    font-size: 2rem;
    font-family: 'CamptonLight';
    margin-bottom: 20px;
    color: #2e4159;
}

.texto-sobre-emp img{
    width: auto;
}

.text-title{
    color: #fdc300;
    font-family: 'CamptonSemiBold';
}



.text-projeto{
    font-family: 'm-pro';
}

.imagem-projeto{
    padding-left: 30px;
}


.imagem-projeto video{
    width: 90%;
    height: auto;
}



@media only screen and (max-width: 813px) {
    .projeto{
        display: grid;
        grid-template-columns: 80%;
        grid-template-rows: max-content;
        justify-content: center;
        padding-top: 50px;
        padding-bottom: 50px;
        
    }

    .texto-sobre-emp{
        color: #C9952B;
        margin-bottom: 20px;
        order: 1;
        
    }
    
    .imagem-projeto{
        padding-left: 30px;
        order: 2;
    }
    

    .imagem-projeto {
        padding-left: 0px;
        padding-top: 0px;
    }

    .imagem-projeto iframe {
        width: 100%;
        height: 250px;
    }

}

.container {
    display: grid;
    grid-template-columns: 80%;
    justify-content: center;
    grid-gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    font-family: 'J-Regular';
    display: none;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.form-group button {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: #D3592A;
    color: #fff;
    cursor: pointer;
}

.email2-form{
    display: grid;
    grid-template-columns: 50% 50%;
}


@media only screen and (max-width: 750px) {
    .container {
        display: grid;
    }

    .container button {
        width: 100%;
        height: auto;
        background: #C9952B;
        color: #ffffff;
    }

    .texto-cadastre-se{
        font-size: 1.5rem;
        font-weight: bold;
    }
}

.slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: auto;
}

.controls {
    display: flex;
}

.controls button{
    background: #6D6E71;
    color: white;
    border: 0;
}

button {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
}

button.active {
    background-color: #96c11f;
    color: white;
    border: 0;
}

.slide-img svg{
    transform: scale(3);
}

/* botÃ£os */
#prevSlide, #nextSlide{
  background-color: transparent;
  border: 0;
  

    
}

#prevSlide img, #nextSlide img {
    width: 15px;

}

.btn-icons-social{
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 9999;
    
}

.icons-social{
    display: flex;
    flex-direction: column;
}

.implantacao {
    display: grid;
    grid-template-columns: 80%;
    grid-template-rows: max-content;
    justify-content: center;
    background-color: #96c11f;

    background-size: 100% 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.implantacao-imagem img {
    width: 100%;
    height: auto;
    padding-top: 50px;

}

.planta-imagem {
    order: 2;
}




.implantacao-descricao {
    order: 1;
    display: flex;
    column-gap: 5%;
}

.text-implantacao {
    color: #ffffff;
    font-family: 'CamptonSemiBold';
}

.texto-implantacao {
    font-size: 2rem;
    font-family: 'CamptonLight';

}

.texto-implantacao {
    padding-left: 50px;
    padding-top: 5px;
}

.subtitle-implantacao {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1rem;
    padding-left: 50px;
    font-family: 'CamptonSemiBold';
}

.lista-implantacao {
    font-family: 59px;
    padding-bottom: 50px;

    font-family: 'CamptonLight';
    margin-top: 20px;
}

.lista-implantacao li {
    margin-bottom: 8px;
}

.paleta {
    width: auto;
    height: auto;
}

@media only screen and (max-width: 813px) {
    .implantacao-descricao {
        order: 1;
        display: grid;
    }
}

@media only screen and (max-width: 1131px) {
    .implantacao-descricao {
        order: 1;
        display: grid;
        grid-template-columns: 30% 30% 30% 30%;
        column-gap: 5%;
    }

    .texto-implantacao {
        font-size: 2rem;
        font-family: 'CamptonLight';
        grid-column: 1 / span 4;
    }

}

@media only screen and (max-width: 813px) {
    .implantacao {
        display: grid;
        grid-template-columns: 90%;
        grid-template-rows: max-content;
        justify-content: center;
        background-color: #96c11f;
    }



    .subtitle-implantacao {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 1.5rem;
        color: #fff;
        padding-left: 0px;
    }

    .subtitle-implantacao p {
        display: inline;
    }

    .texto-implantacao {
        padding-left: 0px;
        padding-top: 40px;
    }

    .lista-implantacao {
        padding-left: 22px;
    }

    .implantacao-imagem img {
        width: 100%;
        height: auto;
        padding-top: 20px;
    }

    .implantacao-imagem {
        order: 2;
    }

    .implantacao-descricao {
        order: 1;
    }


}

.planta{
    display: grid;
    grid-template-columns: 35% 45%;
    grid-template-rows: max-content 40%;
    justify-content: center;
    background-color: #231f20;

    background-size: 100% 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.planta-imagem img{

    height: auto;
    margin: 0 auto;
}


#img1{
    width: 100%;
}

#img2{
    width: 60%;
}

#img3{
    width: 60%;
}

#img4{
    width: 100%;
}




.texto-planta{
    font-size: 2rem;
    font-family: 'CamptonLight';
    color: #c3cbdc
}

.texto-planta{
    padding-left: 50px;
    padding-top: 5px;
}

.subtitle-planta{
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #c3cbdc;
    padding-left: 70px;
    font-family: 'CamptonSemiBold';
}

.lista-planta{
    padding-left: 75px;
    color: var(--cor-branca);
    font-family: 59px;
    padding-bottom: 50px;
    list-style: none;
    font-family: 'CamptonLight';
}

.lista-planta li{
    margin-bottom: 8px;
}

.paleta{
    width: auto;
    height: auto;
}

@media only screen and (max-width: 813px) {
    .planta{
        display: grid;
        grid-template-columns: 90%;
        grid-template-rows: max-content;
        justify-content: center;
        background-color: #2e4159;
        margin-bottom: 20px;
    }

    .subtitle-planta {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 1.5rem;
        color: #fff;
        padding-left: 0px;
    }

    .subtitle-planta p{
        display: inline;
    }

    .texto-planta {
        padding-left: 0px;
        padding-top: 40px;
    }

    .lista-planta {
        padding-left: 22px;
        color: #C9952B;
    }

    .planta-imagem{
        order: 2;
    }

    .planta-descricao{
        order: 1;
    }
    

}



:root {
  --white: #fff;
  --black: #1c2b2d;
  --blue: #31326f;
  --light-blue: #005490;
  --color-primary: #b5a779;
  --color-sec: #db6400;
  --grey: #3ea158;
  --dark-grey: #222831;
}

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

/* html {
  font-size: 10px;
} */

/* body {
  font-family: "Open Sans", sans-serif;
} */

/* p {
  font-size: 1.6rem;
  line-height: 1.5;
} */

/* img {
  width: 100%;
} */

.container-tabs {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 0px;
  font-family: 'CamptonLight';
}
/* Start Here */
.text {
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 2px;

}

.tabs {
  display: flex;
  /* border: 1px solid var(--grey); */
  overflow: hidden;
  letter-spacing: 2px;
  flex-direction: column;
  align-items: center;

}

.tab-links {
  width: 25%;
  z-index: 1;
  display: flex;
}

button.tab-link {
  padding: 0.5rem;
  width: 100%;
  font-size: 0.9rem;
  border: none;
  outline: none;
  border: 2px solid #2c8f3b;
  color: #2c8f3b;
  font-weight: bold;
}


.tab_active {
  color: #7fae00 !important;
  border-radius: 5px;
  border: 2px solid #7fae00 !important;
}
.tab-contents {
  padding: 1rem;
  margin-left: 20px;
}

.tab-images{
    display: grid;
}

.sala {
  display: none;
  animation: slide-right 0.5s ease 1;


  

}

.tab-images{
  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  grid-template-rows: repeat('auto', 200px);
  column-gap: 2%;
  row-gap: 1%;
  justify-content: start;
}

.tab-content img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.about {
  display: block;
}

@keyframes slide-right {
  0% {
    transform: translateX(-10rem);
  }
  100% {
    transform: translateX(0);
  }
}

.title-img-estrutura{
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  padding-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .tab-links {
    width: 50%;
    display:grid;

  }

  button.tab-link{
    padding: 0.9rem;
    width: 100%;
    border: none;
    outline: none;
    border: 2px solid #7fae00;
  }

  .tab-images{
    display: grid;
    grid-template-columns: 49% 49%;
    grid-template-rows: repeat('auto', 200px);
    column-gap: 2%;
    row-gap: 1%;
    justify-content: start;
  }
  
  .tab-content img{
      width: 100%;
      height: 220px;
      object-fit: cover;
  }

  .title-img-estrutura{
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    padding-bottom: 10px;
    font-size: 0.8rem;
  }
}

.localization {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: max-content max-content;
    background: linear-gradient(to left, #96c11f 50%, #ffffff 50%);
    margin-top: 50px;

}

.title-localization {
    display: grid;
    grid-template-columns: 80%;
    grid-template-rows: max-content;
    justify-content: center;
}

.titulo-text-localizacao {
    font-family: 'CamptonSemiBold';
    color: #fdc300;


}

.text-localization {
    font-size: 3rem;
    color: #2e4159;
}

.text-localization .paleta {
    margin-bottom: 30px;

}


.localization-map {
    display: grid;
    grid-template-columns: 80%;
    grid-template-rows: max-content;
    justify-content: center;
}

.map-address iframe {
    width: 100%;
}


.list-text {
    margin-top: 20px;
}

.company-address{
    font-family: 'm-pro-r';
}


.list-text li {
    font-size: 2.0rem;
    margin-bottom: 10px;
    color: #ffff;
}

.list-text ul {
    margin-left: 90px;
}


@media only screen and (max-width: 1181px) {

    .localization {
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 90px max-content;
        background: linear-gradient(to right, #eee, 41%, #96c11f  20%);
    }




    .localization-map {
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: max-content max-content;
        justify-content: center;
    }

    .map-text {
        order: 1;
        display: grid;
        grid-template-columns: 40% 60%;
        justify-content: center;
        grid-template-rows: max-content;
    }

    .map-address {
        order: 2;
    }


    .list-text ul {
        margin-left: 60px;
        margin-bottom: 10px;
    }

    .list-text li {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #ffff;
    }

    .map-address {
        display: grid;
        grid-template-columns: 80%;
        grid-template-rows: max-content;
        justify-content: center;
    }

    .map-address iframe {
        width: 100%;
        height: 300px;

    }




}

@media only screen and (max-width: 760px) {

     .localization {
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 60px max-content;
        background: #96c11f;
    }


    .title-localization {
        display: grid;
        grid-template-columns: 80%;
        grid-template-rows: max-content;
        justify-content: center;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .text-localization {
        font-size: 2rem;
        color: #2e4159;
    }



    .text-localization {}




    .list-text {
        grid-column: 1 / span 2;
    }

    .list-text li {
        display: inline;
        padding-right: 2rem;
        font-size: 1.2rem;
    }


    .list-text li::before {
        content: "\2022";
        margin-right: 5px;
    }

    .localization-map {
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: max-content max-content;
        justify-content: center;
        margin-top: 50px;
    }



}

@media only screen and (max-width: 500px) {

    main .localization {
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 70px max-content;
        background: #bf8136;
    }

    .title-localization {
        display: grid;
        grid-template-columns: 80%;
        grid-template-rows: max-content;
        justify-content: center;
        margin-top: 0px;
        margin-bottom: 50px;
    }

    .text-localization {}


    .list-text ul {
        margin-left: 40px;
        margin-bottom: 10px;
    }

    .list-text li {
        font-size: 1rem;
        margin-bottom: 10px;
        color: #ffff;
    }

}

.address{
    display: grid;
    grid-template-columns: 80%;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
    font-family: 'altone';

}

.btn-waze button{
    padding: 15px;
    padding-left: 25px;
    padding-right: 25px;
    background-color: #96c11f;
    color: #ffffff;
    font-weight: bold;
    border: 0;
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
    --border-size: 2px;
    --accent-color: #fdc300;
}

.btn-google button{
    padding: 15px;
    padding-right: 25px;
    background-color: #96c11f;
    color: #ffffff;
    font-weight: bold;
    border: 0;
    cursor: pointer;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
    --border-size: 2px;
    --accent-color: #fdc300;
}

.btn-google button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-color: var(--accent-color);
    transition: transform 300ms ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
  }
  .btn-google button:hover::before,
  .btn-google button:focus::before {
    transform: scaleX(1);
  }
  .btn-google button {
    transition: color 300ms ease-in-out;
    z-index: 1;
  }
  
  .btn-google button:hover,
  .btn-google button:focus {
    color: white;
  }


  .btn-waze button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-color: var(--accent-color);
    transition: transform 300ms ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
  }
  .btn-waze button:hover::before,
  .btn-waze button:focus::before {
    transform: scaleX(1);
  }
  .btn-waze button {
    transition: color 300ms ease-in-out;
    z-index: 1;
  }
  
  .btn-waze button:hover,
  .btn-waze button:focus {
    color: white;
  }



  

.btns-address{
    display: grid;
    grid-template-columns: max-content max-content max-content;
    column-gap: 20px;
}



.company-address{
    font-size: 1.4rem;
    color: #5b5b5f;
    padding-top: 5px;
}

.btns-address svg{
    fill: #bf8136;
}



@media only screen and (max-width: 813px) {
   .address {
        display: grid;
        grid-template-columns:80%;
        grid-template-rows: max-content max-content;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 20px;
        justify-items: center;
    }

    .btns-address{
      display: grid;
      grid-template-columns: max-content max-content;
      column-gap: 20px;

      grid-column: 1 / span 2;
      font-size: 1rem;
  }

  .company-address p{
    font-size: 0.8rem;
  }
  
    

    .btn-google {
        margin-left: 15px;

    }

    .btn-google button{
      font-size: 0.7rem;

  }

    .btn-waze button{
        float: right;
        margin-right: 15px;
        font-size: 0.7rem;
    }

    .company-address{
        grid-column: 1 / span 3;
        font-size: 1rem;
        text-align: center;
        padding-top: 5px;
        padding-left: 0px;

    }
}

.developer{
    display: grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    background-color: #363e51;
    color: white;
    justify-content: end;
    padding-right: 10%;

    
}

.texto-developer{
    display: grid;
    grid-template-columns: max-content max-content;
    
}

.img-affinity{
    padding-top: 3px;
    padding-left: 5px;
}


:root{
    --cor-amarelo: #fdc300;
    --cor-cinza: #636466;
    --cor-cinza2: #6f7070;
    --cor-branca: #FFFFFF;
    --cor-verde: #96c11f;
    --cor-placeholder: #6D817D;
    --cor-botao: #B1B3B6;
}


.simulation {
    display: grid;
    grid-template-columns: 60%;
    grid-template-rows: auto auto 20px;
    justify-content: center;
    font-family: 'medium';
}

.simulation-title {
    font-family: 'CamptonSemiBold';
    font-size: 2.625rem;
    text-align: center;
    margin-top: 20px;
}

.simulation-descr {
    font-size: 0.9375rem;
       font-family: 'CamptonLight';
    text-align: center;
}

.form-text {
    width: 100%;
    height: 50px;
    font-family: Altone-Regular;
    padding: 10px;
    font-size: 0.9375rem;
}

.simulation-form form {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto auto auto;
    gap: 10px;
}

.form-simul-button {
    grid-column: 1 / span 2;
    width: 30%;
    margin: auto;
    padding: 10px;
    background-color: #c47135;
    color: white;
    font-weight: bold;
    border: 0;
}

.simulation-form {
    margin-top: 10px;
}

.simulation input:focus {
    outline-color: #00B4DB;

}

.simulation select:focus {
    outline-color: #00B4DB;

}


.form-register-simulacao input::placeholder {
    padding: 5px;
    font-family: 'CamptonLight';
    font-size: 1.2rem;
}

.form-register-simulacao select {
    padding: 5px;
    font-family: 'CamptonLight', sans-serif;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 1.2rem;
    color: #6D817D;
}

.form-register-simulacao input {
    border: 1px solid;
}


.simulation-form select {
    width: 100%;
    height: 50px;
    padding: 10px;
    font-family: Altone-Regular;

}

.simulation-form select::-webkit-inner-spin-button {
    margin: 20px;
}


.animated-border {
    width: 100%;
    height: auto;
    padding: 20px;
    border: 5px solid transparent;
    position: relative;
    overflow: hidden;
    font-size: 20px;
    color: #333;
    margin-bottom: 50px;
    margin-top: 50px;
}

.animated-border::before,
.animated-border::after {
    content: "";
    position: absolute;
    width: 0;
    height: 5px;
    background: linear-gradient(to right, var(--cor-verde), var(--cor-amarelo));
    /* transition: all 2s; */
}

.animated-border::before {
    top: 0;
    left: 0;
}

.animated-border::after {
    bottom: 0;
    right: 0;
}

.animated-border:hover::before,
.animated-border:hover::after {
    width: 100%;
}


.form-simul-button {
    border: none;
    padding: 12px 40px;
    background-color: #c47135;
    color: white;
    font-family: 'BenchNine';
    font-size: 22px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
  }
  
  .form-simul-button:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    top: -5px;
    left: -5px;
    border-top: 2px solid #c47135;
    border-left: 2px solid #c47135;
    transition: all 0.25s;
  }
  
  .form-simul-button:hover:before,
  .form-simul-button:hover:after {
    height: 100%;
    width: 100%;
    border-color: rgb(82, 3, 3);
  }

  .form-simul-button:hover {
    background-color: rgb(82, 3, 3);
  }
  
  .form-simul-button:after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    bottom: -5px;
    right: -5px;
    border-bottom: 2px solid #c47135;
    border-right: 2px solid #c47135;
    transition: all 0.25s;
  
  }


  .simulado-text{
    font-size: 1.2rem;
    font-family: 'CamptonLight';
  }

  .text-simulado{
    font-size: 1.2rem;
    font-family: 'CamptonLight';
  }

  .text-simulado-2{
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .simulation-descr{
    margin-top: 20px;

  }

  .img-simulacao img{
    width: 40%;
    height: auto;
  }

@media only screen and (max-width: 800px) {

    .simulation {
        display: grid;
        grid-template-columns: 90%;
        grid-template-rows: auto auto auto auto auto auto auto auto 20px;
        justify-content: center;
    }

    .simulation-title {
        font-family: 'CamptonSemiBold';
        font-size: 1.5rem;
        text-align: center;
        margin-top: 20px;
    }

.form-simul-button {
    grid-column: 1 / span 2;
    width: 60%;
    margin: auto;
    padding: 10px;
        background-color: #c47135;
    color: white;
    font-weight: bold;
    border: 0;
}

    .text-simulado{
        font-size: 1rem;
      }
    

    .simulation-descr {
  
           font-family: 'CamptonLight';
        text-align: center;
    }

    .simulation-form select {
        width: 100%;
        height: 40px;
        padding: 10px;
        font-family: Altone-Regular;
         font-size: 1rem;

    }

    .simulation-form select::-webkit-inner-spin-button {
        margin: 20px;
    }

.simulation-form form {
    display: flex;
    gap: 10px;
    flex-direction: column;


}
}

.fotos{
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: max-content;   
    margin-top: 50px;
}

.galeria-descricao{
    display: grid;
    grid-template-columns: 40% 40%;
    grid-template-rows: max-content;
    justify-content: center;
    margin-bottom: 50px;
}

.title-negocios{
    font-size: 2rem;
    color: #2e4159;
    font-family: 'CamptonLight';
}

.text-negoicos{
    font-family: 'CamptonSemiBold';
}


.texto-desfrute{
    color: black;
    font-family: 'Barlow-Light';
    margin-bottom: 20px;
    font-size: 2.3rem;
    margin-top: 20px;
}

.galeria-texto{
    padding-top: 0px;
}

.texto-bem-estar{
    font-family: 'CamptonBold';

}

.galeria-fotos img{
    width: 350px;
    height: 420px;
    object-fit: cover;
    margin-left: 10px;
}

.galeria-fotos .image-9{
    width: 300px;
}

.slick-dots li:first-child {
    display: none;
}

    /*--------- arrows ---------*/
    .slick-next{ right:45px!important; }
    .slick-prev{ left:13px!important; }
    .slick-arrow{ z-index:2!important; }

@media only screen and (max-width: 813px) {
    
    .galeria-descricao{
        display: grid;
        grid-template-columns: 90%;
        grid-template-rows: max-content max-content;
        justify-content: center;
    }

    .galeria-descricao p{
        display: inline;
    }

    .galeria-texto {
        padding-top: 0px;
        padding-bottom: 20px;
    }

    
.texto-desfrute{
    color: black;
    font-family: 'Barlow-Light';
    margin-bottom: 20px;
    font-size: 1.5rem;
    margin-top: 20px;
}

}

.map{
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: max-content 500px;
}

.map iframe{
    width: 100%;
    height: 100%;
}

.text-map{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.texto-localizacao{
    font-size: 1.2rem;
    color: #C9952B;
    font-family: 'CamptonBold';
}


.texto-endereco{
    font-size: 1.5rem;
    margin-top: 20px;
    font-family: 'Barlow-Regular';
}

.footer {
    display: grid;
    grid-template-columns: 20% 5% max-content 5% 20%;
    grid-template-rows: max-content 0px;
    justify-content: center;

    color: white;


}

footer{
    background-image: url('../image/footer/background-contato.png');
    background-size: 100% 100%;
}


.footer-company {
    display: grid;
    grid-template-columns: 50% 50%;
    column-gap: 2%;
    grid-template-rows: max-content;
    padding-top: 50px;
}

.footer .logo-company {
    grid-column: 1 / span 3;
    width: 90%;

}

.v-a{
    padding-top: 5px;
}

.footer .logo-xavier {
    margin-top: 10px;
    width: 90%;
}

.footer .logo-fort {
    margin-top: 15px;
    width: 100%;
}

.footer-map {
    padding-top: 50px;
    font-family: 'm-pro-r';
    font-size: 1rem;

}

.footer-map a {
    text-decoration: none;
    color: #eee;

}

.footer-address {
    padding-top: 50px;
    font-family: 'm-pro-r';
    font-size: 1rem;
}

.footer-address .text-address {
    letter-spacing: 4px;
    margin-bottom: 10px;

}

.footer-address .icon-networks svg {
    width: 20px;
    height: 20px;
    margin-top: 10px;
    margin-right: 10px;
}

.text-direito {
    font-size: 0.8625rem;
    color: #636363;
    padding-top: 15px; 
    display: grid;
    grid-template-columns: 70%;
    justify-content: center;
    padding-bottom: 20px;
}


.text-map-site {
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-family: 'm-pro';
}

.map-link {
    margin-bottom: 2px;
}

.hidden-arrow {
    display: none;
  }


  @media only screen and (max-width: 1108px) {
    .form-banner {
        display: none;
    }

  }

@media only screen and (max-width: 760px) {



footer{
    background-image: url('../image/footer/background-contato.png');
    background-size: 100% 100%;
}
    .footer {
        display: grid;
        grid-template-columns: 45% 40%;
        grid-template-rows: max-content 50px;
        justify-content: center;
        background-color: black;
        color: white;
        font-size: 0.7rem;
    background-image: url('../image/footer/background-contato.png');
    background-size: 100% 100%;
    }

    .footer-address {
        padding-top: 50px;
        font-family: Altone-Regular;
        font-size: 0.7rem;
    }

    .logo-affinity {
        width: 50px;
        height: 20px;
    }


    .form-banner {
        display: none;
    }

    .footer-company {
        order: 1;

    }

    .footer-map {
        order: 0;

    }

    .footer-xp {
        display: none;
    }

    .footer-address {
        order: 3;
        display: none;

    }

    /* seta para subir para cima, para tela responsiva */
#back-to-top {
    visibility: visible;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#back-to-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease-in-out;
}

#back-to-top a:hover {
    opacity: 0.7;
}

#back-to-top svg {
    height: 35px;
}



/* FIM back-to-top */

}