*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    position: relative;
    right: 0px;
    height: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    transition: right 0.4s ease;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hidden {
    display: none !important;
}

.absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

body {
    background-color: #fff;
}




.co-topbar {
    display: none;
    background-color: #222;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

@media (min-width: 992px) {
.co-topbar {
    display: block;
}}

.co-topbar .page {
    margin: 0 10px;
}

@media (min-width: 360px) {
.co-topbar .page {
    margin: 0 15px;
}}

@media (min-width: 768px) {
.co-topbar .page {
    max-width: 720px;
    margin: 0 auto;
}}

@media (min-width: 992px) {
.co-topbar .page {
    max-width: 940px;
}}

@media (min-width: 1200px) {
.co-topbar .page {
    max-width: 1140px;
}}

@media (min-width: 1400px) {
.co-topbar .page {
    max-width: 1360px;
}}

.co-topbar .box {
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    padding: 2px 0 7px 0;
}

.co-topbar a {
    text-decoration: none;
}

.co-topbar svg {
    display: inline-block; 
    fill:#ffffff;
    margin: 6px 2px -6px 0;
}

.co-topbar span {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
}


@media (min-width: 1200px) {
.co-topbar span {
    font-size: 17px;
}}








.co-nav {
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .33);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.co-nav .page {
    margin: 0 10px;
}

@media (min-width: 360px) {
.co-nav .page {
    margin: 0 15px;
}}
    
@media (min-width: 992px) {
.co-nav .page {
    max-width: 940px;
    margin: 0 auto;
}}

@media (min-width: 1200px) {
.co-nav .page {
    max-width: 1140px;
}}

@media (min-width: 1400px) {
.co-nav .page {
    max-width: 1360px;
}}



.co-nav .header {
    height: 140px;
    overflow: hidden;
}

@media (min-width: 992px) {
.co-nav .header {
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    height: 140px;
}}
    



.co-nav .logo {
    display: block;
    width: 250px;
    padding: 6px 0 0 0;
}

.co-nav .logo a {
    display: block;
    max-width: 280px;
    text-decoration: none;
}

.co-nav .logo a img {
    display: block;
    width: 100%;
    height: auto;
}

/*
@media (min-width: 400px) {
.co-nav .logo {
    width: 300px;
    padding: 6px 0 0 0;
}}
*/

@media (min-width: 992px) {
.co-nav .logo {
    flex: 0 0 400px;
    max-width: 400px;
    padding: 6px 0 0 0;
}
.co-nav .logo a {
    display: block;
    max-width: 250px;
    text-decoration: none;
}}
    
    

@media (max-width: 991px) {
.co-nav .menu {
    position: absolute;
    background-color: #222;
    top: 140px;
    left: 0px;
    width: 100%;
    height: 192px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s, -webkit-transform .3s;
    overflow: hidden;
    z-index: 10;
}
.co-nav .menu.open {
    transform: scaleY(1);
}
.co-nav .menu ul {
    padding: 0;
    margin: 0;
}
.co-nav .menu ul > li {
    display: block;
    position: relative;
    white-space: nowrap; 
}
.co-nav .menu ul > li > a {
    display: block;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 48px;
    text-decoration: none;
    padding: 0 20px;
    transition: background-color 0.3s;
    cursor: pointer;
}
.co-nav .menu ul > li.current > a {
    background-color: #ED7D33;
    color:#fff;
}
.co-nav .menu ul > li:hover > a {
    background-color: #ED7D33;
}
.co-nav .menu ul > li.mobile svg  {
    display: inline-block;
    fill: #fff;
    transition: fill 0.3s;
    margin: 2px 5px -2px 0;
}
.co-nav .menu ul > li.mobile span {
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
}}




@media (min-width: 992px) {
.co-nav .menu {
    flex: 0 0 calc(100% - 400px);
    max-width: calc(100% - 400px);
    text-align: right;
}
.co-nav .menu ul {
    display: inline-block;
    padding: 0;
    margin: 50px 0 0 0;
}
.co-nav .menu ul > li {
    display: inline-block;
    margin: 0 10px;
}
.co-nav .menu ul > li > a {
    display: block;
    color: #222;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 48px;
    text-decoration: none;
    padding: 0 15px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}
.co-nav .menu ul > li.current > a {
    background-color: #ED7D33;
    color: #fff;
}
.co-nav .menu ul > li:hover > a {
    background-color: #ED7D33;
    color: #fff;
}
.co-nav .menu ul > li.mobile  {
    display: none;
}}

@media (min-width: 1200px) {
.co-nav .menu ul {
    margin: 50px 150px 0 0;
}
.co-nav .menu ul > li > a {
    font-size: 20px;
}}

@media (min-width: 1400px) {
.co-nav .menu ul {
    margin: 50px 200px 0 0;
}
.co-nav .menu ul > li {
    margin: 0 12px;
}
.co-nav .menu ul > li > a {
    font-size: 22px;
    padding: 0 25px;
}}
    
        



.co-nav .hamburger {
    display: block;
    position: absolute;
    top: 50px;
    right: 10px;
}

@media (min-width: 992px) {
.co-nav .hamburger {
    display: none;
}}
        
.co-nav .hamburger .button {
    display: block;
    position: relative;
    background-color: #ED7D33;
    width: 44px;
    height: 40px;
    font: inherit;
    color: inherit;
    text-transform: none;
    outline: 0;
    border: 0;
    margin: 0;
    padding: 10px;
    overflow: visible; 
    cursor: pointer;
}

.co-nav .hamburger .button::before,
.co-nav .hamburger .button::after,
.co-nav .hamburger span {
    display: block;
    content: '';
    height: 3px;
    background-color: #fff;
    border-radius: 4px;
    transition: transform 0.3s ease-in-out;
}

.co-nav .hamburger span {
    margin: 6px 0;
}

.co-nav .hamburger .button.is-active::before {
    transform: translateY(9px) rotate(-135deg);
}
.co-nav .hamburger .button.is-active::after {
    transform: translateY(-9px) rotate(135deg);
}
.co-nav .hamburger .button.is-active span {
    transform: scale(0);
}









.co-footer {
    position: relative;
    background-color: #222;
    padding: 60px 0 40px 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
}

.co-footer .page {
    padding: 0 10px;
}

@media (min-width: 360px) {
.co-footer .page {
    padding: 0 15px;
}}

@media (min-width: 768px) {
.co-footer .page {
    max-width: 740px;
    margin: 0 auto;
    padding: 0;
}}

@media (min-width: 992px) {
.co-footer .page {
    max-width: 960px;
}}

@media (min-width: 1200px) {
.co-footer .page {
    max-width: 1160px;
}}

@media (min-width: 1400px) {
.co-footer .page {
    max-width: 1360px;
}}


.co-footer .icon-whatsapp {
    position: relative;
    display: inline-block;
    line-height: 22px;
    padding: 0 0 0 32px;
}

.co-footer .icon-whatsapp::before {
    display: block;
    position: absolute;
    content: ' ';
    top: 0px;
    left: 0px;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' viewBox='0 0 256 256' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'><g transform='matrix(0.88123,0,0,0.88123,-92.3075,-72.0388)'><g><path d='M393.134,223.318C393.134,300.32 330.219,362.758 252.608,362.758C227.961,362.758 204.805,356.464 184.675,345.407L106.866,370.133L132.229,295.322C119.43,274.305 112.071,249.658 112.071,223.318C112.071,146.3 174.986,83.866 252.608,83.866C330.218,83.866 393.134,146.3 393.134,223.318ZM252.608,106.076C187.443,106.076 134.451,158.662 134.451,223.319C134.451,248.96 142.804,272.724 156.955,292.059L142.2,335.591L187.597,321.166C206.248,333.404 228.597,340.549 252.607,340.549C317.745,340.549 370.752,287.959 370.752,223.319C370.753,158.661 317.746,106.076 252.608,106.076ZM323.571,255.436C322.7,254.009 320.402,253.154 316.971,251.444C313.524,249.738 296.578,241.46 293.425,240.327C290.272,239.19 287.958,238.617 285.676,242.033C283.378,245.452 276.774,253.154 274.758,255.436C272.754,257.722 270.75,258 267.303,256.291C263.852,254.585 252.747,250.963 239.595,239.334C229.361,230.261 222.447,219.08 220.427,215.661C218.427,212.246 220.228,210.397 221.934,208.691C223.489,207.152 225.385,204.699 227.107,202.711C228.833,200.707 229.405,199.276 230.554,196.994C231.703,194.712 231.131,192.724 230.26,191.014C229.405,189.308 222.511,172.486 219.636,165.636C216.781,158.805 213.907,159.06 211.887,159.06C209.883,159.06 206.165,159.656 206.165,159.656C206.165,159.656 199.259,160.511 196.107,163.93C192.954,167.345 184.056,175.623 184.056,192.429C184.056,209.247 196.389,225.509 198.111,227.775C199.836,230.061 221.935,265.702 256.959,279.387C291.983,293.068 291.983,288.504 298.301,287.927C304.607,287.371 318.678,279.665 321.552,271.681C324.426,263.698 324.426,256.851 323.571,255.436Z' style='fill:%23FFFFFF;'></path></g></g></svg>");
}

.co-footer .icon-phone {
    position: relative;
    display: inline-block;
    line-height: 22px;
    padding: 0 0 0 32px;
}

.co-footer .icon-phone::before {
    display: block;
    position: absolute;
    content: ' ';
    top: 0px;
    left: 0px;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' viewBox='0 0 500 500' version='1.1' xmlns='http://www.w3.org/2000/svg'><g transform='translate(0,500) scale(0.083333,-0.083333)' fill='%23FFFFFF' stroke='none'><path d='M1022 5495 c-287 -67 -533 -127 -546 -133 -45 -20 -94 -72 -116 -123 -21 -49 -22 -61 -15 -223 3 -94 13 -243 21 -331 82 -898 417 -1697 1012 -2415 131 -158 468 -492 632 -626 732 -599 1514 -918 2450 -999 223 -19 449 -20 493 -2 47 20 95 64 117 106 15 30 248 1000 268 1114 11 69 -40 172 -102 204 -17 9 -287 126 -601 261 -522 224 -575 244 -627 244 -106 0 -127 -18 -395 -345 -131 -160 -243 -298 -250 -307 -10 -13 -22 -10 -100 29 -250 123 -529 325 -784 568 -380 361 -629 673 -807 1012 -54 103 -55 104 -35 120 134 106 565 463 587 486 41 42 66 102 66 158 0 41 -37 134 -244 619 -135 314 -259 593 -275 620 -38 61 -92 88 -171 87 -32 -1 -271 -52 -578 -124z'></path></g></svg>");
}

.co-footer .icon-email {
    position: relative;
    display: inline-block;
    line-height: 22px;
    padding: 0 0 0 32px;
}

.co-footer .icon-email::before {
    display: block;
    position: absolute;
    content: ' ';
    top: 0px;
    left: 0px;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' viewBox='0 0 500 500' version='1.1' xmlns='http://www.w3.org/2000/svg'><g transform='translate(0.000000,500.000000) scale(0.090909,-0.090909)' fill='%23FFFFFF' stroke='none'><path d='M577 4690 c-128 -22 -272 -133 -328 -255 -39 -83 -51 -167 -47 -323 5 -195 -8 -179 345 -446 307 -233 401 -303 1053 -779 223 -163 468 -343 545 -401 181 -134 214 -155 311 -204 103 -52 192 -82 242 -82 51 0 146 32 247 82 97 49 130 71 310 205 77 57 210 154 295 215 302 217 1237 908 1448 1071 189 146 196 156 200 333 7 234 -25 339 -137 452 -71 73 -155 117 -247 132 -72 12 -4167 11 -4237 0z'></path><path d='M4968 3357 c-274 -207 -773 -572 -1110 -814 -103 -74 -247 -181 -320 -239 -279 -220 -433 -315 -608 -376 -89 -31 -103 -33 -230 -32 -120 0 -144 3 -220 28 -132 43 -367 182 -535 315 -120 95 -317 244 -495 372 -257 186 -780 569 -960 703 -96 72 -184 136 -195 143 -29 18 -52 16 -75 -7 -20 -20 -20 -33 -20 -1038 0 -605 4 -1041 10 -1076 30 -185 191 -346 376 -376 80 -13 4148 -13 4228 0 185 30 346 191 376 376 6 35 10 471 10 1077 l0 1018 -25 24 c-13 14 -28 25 -34 25 -5 0 -83 -55 -173 -123z'></path></g></svg>");
}

.co-footer .box {
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    max-width: 280px;
    margin: 0 auto;
}

.co-footer .item-1,
.co-footer .item-2,
.co-footer .item-3 {
    position: relative;
    flex: 0 0 100%;
    max-width: 100%;
}

.co-footer .logo a {
    display: block;
    text-decoration: none;
}

.co-footer .logo img {
    display: block;
    width: 100% !important;
    height: auto !important;
}

.co-footer .contact {
    margin: 50px 0 0 0;
}

.co-footer .linkage {
    margin: 40px 0 0 0;
}


.co-footer .contact h3,
.co-footer .linkage h3 {
    color: #ED7D33;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
}

.co-footer .contact li,
.co-footer .linkage li {
    display: block;
    margin: 0 0 15px 0;
}

.co-footer .contact a,
.co-footer .contact span,
.co-footer .linkage a,
.co-footer .linkage span {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
}


@media (min-width: 400px) {
.co-footer .contact h3,
.co-footer .linkage h3 {
        font-size: 22px;
}
.co-footer .contact a,
.co-footer .contact span,
.co-footer .linkage a,
.co-footer .linkage span {
    font-size: 17px;
}}


@media (min-width: 992px) {
.co-footer .box {
    max-width: unset;
}
.co-footer .logo {
    max-width: 280px;
}
.co-footer .item-1 {
    flex: 0 0 30%;
    max-width: 30%;
}
.co-footer .item-2 {
    flex: 0 0 30%;
    max-width: 40%;
}
.co-footer .item-3 {
    flex: 0 0 20%;
    max-width: 20%;
}
.co-footer .contact {
    margin: unset;
}
.co-footer .linkage {
    margin: unset;
}
.co-footer .contact h3,
.co-footer .linkage h3 {
    font-size: 22px;
    margin: 0 0 22px;
}
.co-footer .contact a,
.co-footer .contact span,
.co-footer .linkage a,
.co-footer .linkage span {
    font-size: 18px;
    letter-spacing: 1px;
}}
        







.co-copyright {
    background-color: #313131;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 25px 0 85px;
    overflow: hidden;
}

@media (min-width: 768px) {
.co-copyright {
    padding: 25px 0;
}}


.co-copyright .page {
    padding: 0 10px;
}

@media (min-width: 360px) {
.co-copyright .page {
    padding: 0 15px;
}}

@media (min-width: 768px) {
.co-copyright .page {
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
}}

@media (min-width: 992px) {
.co-copyright .page {
    max-width: 940px;
}}

@media (min-width: 1200px) {
.co-copyright .page {
    max-width: 1140px;
}}

@media (min-width: 1400px) {
.co-copyright .page {
    max-width: 1360px;
}}


.co-copyright p {
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    margin: 0;
}


@media (min-width: 1200px) {
.co-copyright p {
    font-size: 16px;
}}
    
    


        
.co-breadcrumb {
    background-color: #ED7D332B;
    overflow: hidden;
    padding: 3px 0;
}

.co-breadcrumb .page {
    margin: 0 10px;
}

@media (min-width: 360px) {
.co-breadcrumb .page {
    margin: 0 15px;
}}

@media (min-width: 768px) {
.co-breadcrumb .page {
    max-width: 740px;
    margin: 0 auto;
}}
    
@media (min-width: 992px) {
.co-breadcrumb .page {
    max-width: 960px;
}}

@media (min-width: 1200px) {
.co-breadcrumb .page {
    max-width: 1160px;
}}

@media (min-width: 1400px) {
.co-breadcrumb .page {
    max-width: 1360px;
}}

    

.co-breadcrumb a {
    display: inline-block;
    color: #222;
    font-size: 16px;
    line-height: 32px;
    text-decoration: none;
}

.co-breadcrumb a:hover {
    text-decoration: underline;
}

.co-breadcrumb i {
    display: inline-block;
    color: #222;
    font-size: 16px;
    line-height: 32px;
    font-style: normal;
    padding: 0 5px;
    cursor: default;
}

.co-breadcrumb span {
    display: inline-block;
    color: #222;
    font-size: 16px;
    line-height: 32px;
    cursor: default;
}





.co-mobilephone {
    position: fixed;
    left: 0;
    bottom: 0px;
    height: 60px;
    width: 100%;
    background-color: #222;
    border-top: 1px solid #ED7D33;
    text-align: center;
    transition: left 0.4s ease;
    overflow: hidden;
}

.co-mobilephone a {
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
}

.co-mobilephone svg {
    display: inline-block;
    margin: 6px 3px -6px 0;
}

.co-mobilephone p {
    display: inline-block;
    padding-right: 20px;
    margin: 8px 0 0 0;
}

.co-mobilephone span.online {
    display: block;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 15px;
    padding: 0 0 5px 0;
}

.co-mobilephone span.online::before {
    display: inline-block;
    content: '●';
    color: #94c11f;
    font-size: 18px;
    line-height: 2px;
    margin-right: 3px;
}

.co-mobilephone span.phone {
    display: block;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 20px;
    letter-spacing: 0.5px;
    transform: skewX(-10deg);
}

@media (min-width: 768px) {
.co-mobilephone {
    display: none;
}}




.co-cookie {
    position: fixed;
    background: #000000A0;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
    z-index: 1000;
}

.co-cookie .card {
    position: absolute;
}

.co-cookie .card {
    background-color: #222;
    box-shadow: 0 5px 15px #00000080;
    width: calc(100% - 30px);
    max-width: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.co-cookie .content {
    padding: 25px 15px;
    overflow: hidden;
}

.co-cookie .content span.title {
    display: block;
    color: #ED7D33;
    font-weight: 600;
    font-size: 25px;
    line-height: 25px;
    margin: 0;
}

.co-cookie .content p {
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    margin: 20px 0 0;
}

.co-cookie .select {
    margin: 25px 0 0;
}

.co-cookie .entry {
    position: relative;
    min-height: 32px;
}

.co-cookie .entry.neccessary {
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    padding: 12px 0;
    margin: 20px 0 0;
}

.co-cookie .entry.analysis,
.co-cookie .entry.marketing {
    position: relative;
    border-bottom: 1px solid #aaa;
    padding: 12px 0;
}

.co-cookie .entry .arrow {
    display: block;
    position: absolute;
    content: ' ';
    top: 15px;
    right: 10px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.co-cookie .entry .arrow svg {
    display: block;
    width: 16px;
    height: 16px;
    transform: rotate(-90deg);
    transition: transform 0.4s ease;
}

.co-cookie .entry.open .arrow svg {
    transform: rotate(0deg);
}

.co-cookie .entry .box {
    display: flex;
    flex-wrap: wrap;
    width: 150px;
    margin-left: 15px;
    cursor: pointer;
}

.co-cookie .entry .check {
    border: 2px solid #ccc;
    border-radius: 3px;
    flex: 0 0 22px;
    max-width: 22px;
}

.co-cookie .entry .check svg {
    display: none;
}

.co-cookie .entry.checked .check svg {
    display: block;
    margin: 2px auto;
}

.co-cookie .entry .title {
    flex: 0 0 calc(100% - 22px);
    max-width: calc(100% - 22px);
    padding-left: 15px;
}

.co-cookie .entry .title span {
    color: #ccc;
    line-height: 22px;
}

.co-cookie .entry .explain {
    cursor: pointer;
}

.co-cookie .entry .explain p {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin: 10px 35px 5px 52px;
}

.co-cookie .content button.accept {
    display: block;
    background-color: #ED7D33;
    border-radius: 4px;
    border: unset;
    width: 100%;
    max-width: 300px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding: 12px 0;
    margin: 30px auto 0;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.co-cookie .content button.setup,
.co-cookie .content button.save {
    display: block;
    background-color: transparent;
    border: unset;
    width: 100%;
    font-weight: 500;
    text-align: center;
    margin: 25px auto 0;
    cursor: pointer;
}

.co-cookie .content button.setup {
    font-size: 14px;
    color: #ccc;
}

.co-cookie .content button.save {
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.5px;
}


@media (min-width: 400px) {
.co-cookie .content {
    padding: 30px 25px;
}
.co-cookie .content p {
    font-size: 16px;
    line-height: 25px;
}}


@media (min-width: 768px) {
.co-cookie {
    background: #00000080;
}
.co-cookie .content {
    padding: 30px;
}
.co-cookie .content span.title {
    font-size: 28px;
    line-height: 28px;
}
.co-cookie .content p {
    letter-spacing: 0.75px;
}
.co-cookie .content p.info {
    text-align: justify;
}}







.co-connect {
    position: fixed;
    top: calc(75% - 69px);
    right: -46px;
    width: 46px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 100;
    transition: right 1s ease;
}

.co-connect a,
.co-connect div.link {
    display: block;
    position: relative;
    text-decoration: none;
    padding: 10px 0;
    background-color: #ED7D33;
    transition-property: background-color, border-radius;
    transition-duration: 0.4s;
    transition-timing-function: ease;
    cursor: pointer;
}

.co-connect div.whatsapp {
    border-top-left-radius: 10px;
    padding: 10px 0 8px;
    
}

.co-connect div.whatsapp:hover {
    border-top-left-radius: unset;
}

.co-connect a.phone {
    padding: 9px 0 9px;
}

.co-connect a.email {
    padding: 9px 0 9px;
}

.co-connect a.booking {
    border-bottom-left-radius: 10px;
    padding: 8px 0 10px;
}

.co-connect a.booking:hover {
    border-bottom-left-radius: unset;
}

.co-connect a:hover,
.co-connect div.link:hover {
    background-color: #ED7D33;
}

.co-connect a svg,
.co-connect div.link svg {
    display: block;
    margin: 0 auto;
}

.co-connect a span,
.co-connect div.link span {
    background-color: #ED7D33;
    position: absolute;
    top: 0;
    left: 10px;
    width: 140px;
    height: 100%;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 46px;
    padding-left: 20px;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: -1;
}

.co-connect a:hover span,
.co-connect div.link:hover span {
    left: -140px;
    background-color: #ED7D33;
}

