@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

@font-face {
    font-family: "haboro-contrast-normal";
    src:
        url("https://use.typekit.net/af/f40a77/00000000000000007735bdde/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("woff2"),
        url("https://use.typekit.net/af/f40a77/00000000000000007735bdde/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("woff"),
        url("https://use.typekit.net/af/f40a77/00000000000000007735bdde/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 500;
    font-stretch: normal;
}

:root {
    --color1: #5C594F;
    --color2: #FF5561;
    --color3: #F3F3F0;
    --color4: #B0AD9C;
    --color5: #EFEDED;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth !important;
}

.cstm-container {
    max-width: 85.4%;
}

/* POSITIONING */

.vcenter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.vcenter-start {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.vcenter-end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

/* BURGER MENU */
.animated-icon1 {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 5px 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.animated-icon1 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.animated-icon1 span {
    background: var(--color1);
}

.animated-icon1 span:nth-child(1) {
    top: 0px;
}

.animated-icon1 span:nth-child(2) {
    top: 10px;
}

.animated-icon1 span:nth-child(3) {
    top: 20px;
}

.animated-icon1.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.animated-icon1.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.navbar-toggler {
    border: 1px solid #efe0d6;
}

.navbar-light .navbar-toggler {
    color: rgba(239, 224, 214, 0.1);
    border-color: rgba(239, 224, 214, 0.1);
}

.first-button {
    outline: 0 !important;
}

.logo-header {
    max-height: 212px;
    margin-top: 50px;
    transition: all ease .45s;
}

.left-part-menu,
.right-part-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.left-part-menu li,
.right-part-menu li {
    display: inline-block;
    margin: 0 40px;
}

.left-part-menu li:first-of-type {
    margin-left: 0;
}

.right-part-menu li:last-of-type {
    margin-right: 0;
    margin-left: 0;
}

.right-part-menu .social-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.right-part-menu .social-links li {
    margin: 0 20px;
}

.right-part-menu .social-links li:last-of-type {
    margin-right: 0;
}

header {
    padding: 58px 0 60px 0;
    transition: all ease-out .25s;    
}

.left-part-menu li a,
.right-part-menu li a {
    font-size: 20px;
    line-height: 1.2;
    color: var(--color1);
    text-transform: uppercase;
    font-weight: 500;
}

.social-links li a {
    font-size: 26px;
    color: var(--color1);
    line-height: 1;
}

.left-part-menu li a:hover,
.right-part-menu li a:hover {
    text-decoration: none;
    color: var(--color2);
}

.fixed {
    position: fixed !important;
    top: 0;
    width: 100%;
    left: 0;
}

.sticky {
    z-index: 999;
    left: 0;
    background-color: var(--white);
    position: sticky;
    box-shadow: 0 1px 24px 0 rgb(0 0 0 / 30%);
    width: 100% !important;
    height: auto;
}

.resize-logo {
    max-height: 70px;
    margin-top: -5px !important;
}

.resize-header {
    padding: 55px 0 35px 0 !important;
}

.banner-txt {
    font-size: 35px;
    font-weight: 300;
    color: var(--color1);
    margin-top: 86px;
    max-width: 600px;
    line-height: 1.4;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.banner-txt  h1{    
    font-weight: 300 !important;    
}

.img-arr-down {
    height: 10px;
    width: auto;
}

.go-down {
    margin-top: 50px;
    display: block;
}

.go-down:hover {
    cursor: pointer;
}

.hero-banner {
    background-repeat: no-repeat;
    background-color: rgb(255, 255, 255);
    background-size: cover;
    background-position: center center;
    background-image: url(../img/pexels-dibyendu-roy-12109061.jpg);
    height: 725px;
}

/* ABOUT */
.cstm-container2 {
    max-width: 1226px;
}

.about {
    margin-top: 75px;
}

.img-about1 {
    max-height: 592px;
    margin-bottom: 20px;
    width: auto;
    padding-left: 60px;
}

.img-about2 {
    max-height: 315px;
    max-width: 570px;
}

.general-title {
    font-size: 40px;
    color: var(--color1);
    font-family: "haboro-contrast-normal";
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.2;
}

.mt-title1 {
    margin-top: 132px;
}

.general-text {
    font-size: 18px;
    font-weight: 300;
    color: var(--color1);
    line-height: 1.5;
}

.mb-about {
    margin-bottom: 127px;
}

#about {
    scroll-margin-top: 300px;
}

#services {
    scroll-margin-top: 340px;
}

#contact {
    scroll-margin-top: 200px;
}

.mb-title2 {
    margin-bottom: 50px;
}

.small-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color1);
    margin-bottom: 7px;
}

.services .general-text {
    max-width: 530px;
}

.about .col-12,
.services .col-12 {
    padding: 0 80px;
}

.about .row,
.services .row {
    margin: 0 -80px;
}

/* PARTNER */
.partner {
    margin: 154px 0 63px 0;
}

.general-title.light {
    color: #cdcdcd;
}

.img-b4-red {
    height: 55px;
    width: auto;
    display: inline-block;
    margin: -70px 49px 0 -35px;
}

.partner .general-title {
    display: inline-block;
    margin-bottom: 55px;
    position: relative;
}

.cstm-container3 {
    max-width: 1380px;
}

.img-partner {
    max-height: 419px;
    padding-right: 10%;
}

.partner .general-title::after {
    content: "";
    height: 2px;
    width: 85px;
    background-color: var(--color3);
    position: absolute;
    right: -100px;
    bottom: 25px;
}

.list-adv {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-adv li {
    margin: 48px 0;
    display: flex;
    align-items: center;
}

.list-adv li:last-of-type {
    margin-bottom: 0;
}

.list-adv .img-adv {
    margin-right: 40px;
    width: 70px;
    height: auto;
}

.list-adv .info-adv h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color1);
    margin-bottom: 0;
    text-transform: uppercase;
}

.list-adv .info-adv span {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--color1);
    margin-bottom: 0;
}

/* CONTACT */
.contact {
    padding: 166px 0;
    background-color: #DADAD2;
    background-size: 600px auto;
    background-repeat: no-repeat;
    background-position: center left 85%;
    background-image: url(../img/contact.png);
}

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

.contact input[type=text],
.contact input[type=email],
.contact input[type=tel],
.contact textarea {
    border: 0;
    border-radius: 0;
    padding: 4.5px 10px;
    line-height: 1.5;
    color: var(--color4);
    font-size: 16px;
    font-weight: 300;
    background-color: var(--color3);
}

.contact textarea {
    height: 105px;
}

.contact .form-group {
    margin-bottom: 10px;
}

.contact input::placeholder,
.contact textarea::placeholder {
    color: var(--color4);
    font-size: 16px;
    font-weight: 300;
    opacity: 1;
}

.contact input:-ms-input-placeholder,
.contact input textarea:-ms-input-placeholder {
    color: var(--color4);
    font-size: 16px;
    font-weight: 300;
}

.contact input::-ms-input-placeholder,
.contact input textarea::-ms-input-placeholder {
    color: var(--color4);
    font-size: 16px;
    font-weight: 300;
}

.contact input:focus,
.contact textarea:focus,
.contact input:active,
.contact textarea:active,
.contact select:focus,
.contact select:active {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    background-color: var(--color3);
}

.contact select {
    border-radius: 0;
    padding: 4.5px 10px 4.5px 30px;
    max-height: 33px;
    line-height: 1.5;
    color: var(--color4);
    font-size: 16px;
    font-weight: 300;
    background-color: var(--color3);
    border: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: url(../img/caret-down-solid.png) no-repeat left var(--color3);
    background-position-x: 2%;
}

.contact .form-check-label {
    font-size: 16px;
    color: var(--color1);
    font-weight: 300;
    margin-bottom: 10px;
}

.contact .form-check-input {
    border-radius: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact .form-check-label:hover {
    cursor: pointer;
}

.contact .form-check-label a {
    color: var(--color1);
    text-decoration: underline;
}

.submit-btn {
    background-color: #D9D8CF;
    border: 2px solid var(--color1);
    color: var(--color1);
    padding: 8px 28px;
    line-height: 1;
    font-size: 16px;
    font-weight: 600;
}

.submit-btn:hover {
    text-decoration: none;
    color: var(--color1);
    background-color: var(--color3);
}

.contact .form-check-label {
    position: relative;
    cursor: pointer;
}

.contact .form-check-label:before {
    content: '';
    background-color: transparent;
    border: 2px solid var(--color1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 5px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.contact input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    left: 4px;
    width: 7px;
    height: 10px;
    border: solid var(--color1);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact .form-check {
    padding-left: 0;
}

/* FOOTER */
footer {
    padding: 40px 0 28px 0;
    background-color: var(--color1);
}

.cstm-container4 {
    max-width: 1640px;
}

.logo-footer {
    max-height: 80px;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 10px;
    padding-left: 20px;
}

footer ul li,
footer ul li a {
    font-weight: 300;
    color: var(--white);
    font-size: 18px;
}

footer ul li a:hover {
    color: var(--white);
    text-decoration: none;
}

footer .social-links li {
    display: inline-block;
    margin-left: 40px;
}

footer .social-links li a {
    font-size: 26px;
    color: var(--white);
    line-height: 1;
}

footer hr {
    margin-top: 25px;
    margin-bottom: 25px;
    border: 0;
    border-top: 1px solid var(--color4);
}

.img-star {
    height: 26px;
    width: auto;
}

footer .copyright {
    font-weight: 300;
    font-size: 18px;
    color: var(--white);
    display: block;
}

footer .strx-site-branding {
    padding: 0;
    width: 100%
}

footer .strx-site-branding a {
    text-decoration: none;
}

footer .strx-site-branding-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .strx-site-branding .strx-text-wrapper {
    display: block;
    overflow: hidden;
    transition: max-width .8s ease-in-out 128ms;
    margin-right: 9px;
    width: calc(100% - 9px);
    max-width: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: right;
    white-space: nowrap;
}

footer .strx-site-branding .strx-text {
    transition: color 384ms ease-in-out 128ms;
    color: var(--white);
    font-weight: 300;
}

.strx-text-wrapper {
    max-width: calc(100% - 10px - 24px);
}

footer .strx-site-branding .strx-name {
    transition: color 384ms ease-in-out 128ms;
    color: var(--white);
    font-weight: 300;
}


footer .strx-site-branding a:hover .strx-text-wrapper {
    max-width: calc(100% - 10px - 24px);
}

footer .strx-site-branding a:hover .strx-name {
    color: #ffffff;
    font-weight: 300;
}

footer .strx-site-branding a:hover svg {
    transform: rotate(360deg);
    fill: #ffffff;
}

footer .strx-site-branding svg {
    transform: rotate(0deg);
    transition: transform 640ms ease-in-out, fill 640ms ease-in-out;
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

/* COOKIES */
.cookies {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    padding: 38px 33px 26px 33px;
    background-color: var(--white);
    border: 2px solid var(--color2);
    text-align: center;
    box-shadow: 0px 3px 30px #00000029;
    width: 760px;
    z-index:999;
}

.cookies .cookie-title {
    font-size: 14px;
    color: var(--color1);
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 600;
}

.cookies .cookie-description {
    font-size: 14px;
    color: var(--color1);
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 20px;
    max-width: 65%;
    margin-left: auto;
    margin-right: auto;
}

.mb-40 {
    margin-bottom: 40px;
}

.cookies .txt-btn {
    font-size: 14px;
    color: var(--color1);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 0;
    text-decoration: underline;
}

.cookies .txt-btn:hover {
    text-decoration: underline;
    color: var(--color1);
    opacity: .7;
}

.cookies .small-text {
    font-size: 12px;
    color: var(--color1);
    font-weight: 300;
    line-height: 1.5;
    display: block;
}

.cookies.advanced {
    padding: 21px 27px;
    text-align: left;
}

.cookies.advanced .cookie-title {
    margin-bottom: 0;
    line-height: 1;
}

/* The switch - the box around the slider */
.cookies .wrap-cookie .switch {
    width: 45px;
    flex: 0 0 45px;
    margin-bottom: 0;
    position: relative;
}

/* Hide default HTML checkbox */
.cookies .wrap-cookie .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.cookies .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color3);
    -webkit-transition: .4s;
    transition: .4s;
    width: 35px;
    height: 17px;
}

.cookies .slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: var(--white);
    -webkit-transition: .4s;
    transition: .4s;
}

.cookies input:checked+.slider {
    background-color: var(--color4);
}

.cookies input:focus+.slider {
    box-shadow: 0 0 1px var(--color3);
}

.cookies input:checked+.slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

/* Rounded sliders */
.cookies .slider.round {
    border-radius: 9px;
}

.cookies .slider.round:before {
    border-radius: 50%;
}

.cookies .slider.round:hover {
    cursor: pointer;
}

.cookies .wrap-cookie {
    display: flex;
    margin-bottom: 13px;
    align-items: center;
}

.cookies.advanced .txt-btn {
    display: inline-block;
    margin: 0 auto;
}

.wrap-info-cookie {
    margin-left: 10px;
    display: inline-block;
}


.switch-p input {
    opacity: 0;
    width: 0;
    height: 0;
}

label.switch-p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 37px;
    position: absolute;
    border: 2px solid var(--color2);
    border-radius: 22px;
    cursor: pointer;
}

.pacman {
    position: absolute;
    border-radius: 800px;
    width: 32px;
    height: 32px;
    background: var(--color2);
    right: 71%;
    cursor: pointer;
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 50%, 50% 50%, 50% 0%);
    rotate: 45deg;
    transition: transform 0.8s ease;
    z-index: 99;
    animation: bite 0.4s ease infinite;
    /*-webkit-transform:rotate(45deg) scale(1);
    transform:rotate(45deg) scale(1);*/
}

.circleOne {
    position: absolute;
    background: var(--color4);
    width: 3px;
    height: 3px;
    right: 63%;
    border-radius: 50%;
    transition: background 0s 0.1s;
}

.circleTwo {
    position: absolute;
    background: var(--color4);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    right: 56%;
    transition: background 0s 0.11s;
}

.circleThree {
    position: absolute;
    background: var(--color4);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    right: 49%;
    transition: background 0s 0.22s;
}
.circleFour {
    position: absolute;
    background: var(--color4);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    right: 42%;
    transition: background 0s 0.32s;
}
.circleFive {
    position: absolute;
    background: var(--color4);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    right: 35%;
    transition: background 0s 0.42s;
}

@keyframes bite {
    0% {
        clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 50%, 50% 50%, 50% 0%);
    }

    50% {
        clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 10%, 50% 50%, 90% 0%);
    }

    100% {
        clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 50%, 50% 50%, 50% 0%);
    }
}

.pos-s {
    display: inline-block;
    height: 37px;
    width: 120px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.pacman__eye {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    top: 9px;
    left: 9px;
    background: var(--white);
    transition: all .5s ease;
  }

.img-biscuit{
    position: absolute;
    height: 24px;
    right: 5px;
    transition: all 1.25s linear;
}