body {
    margin: 0;
    font-family: "Barlow", sans-serif;
}

html {
    scroll-behavior: smooth;
}

*,
::after,
::before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: currentColor;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
}

blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
    margin: 0;
}

[role="button"],
button {
    cursor: pointer;
}

:disabled {
    cursor: default;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
    display: block;
    vertical-align: middle;
}

img,
video {
    max-width: 100%;
    height: auto;
}

.header__nav .btn {
    padding: 11px 29px;
}

.btn {
    display: inline-block;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    font-family: "Rubik", sans-serif;
    border-radius: 31px;
    padding: 15px 30px;
    text-transform: uppercase;
    -webkit-border-radius: 31px;
    -moz-border-radius: 31px;
    -ms-border-radius: 31px;
    -o-border-radius: 31px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    cursor: pointer;
}

.btn--primary {
    background-color: #fd902b;
    color: #000;
}

.btn--primary:hover,
.btn--outline:hover,
.rating-action .btn:hover {
    /* background-color: #a5b80f; */
    border-color: #fb272d;
    color: #fff;
    transform: scale(1.02);
    background-image: linear-gradient(110deg, #fb272d, #fd9f29 100%);
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    display: block;
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}


/* Header css start  */

.section-header {
    padding: 10px 0;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99;
    top: 0;
    width: 100%;
    background: #fff;
}

.header--fixed {
    box-shadow: 0 5px 40px 0 rgb(0 0 0 / 10%);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: space-between;
    width: 100%;
}

.header-mob__logo img,
.header__logo img,
.footer__logo img {
    max-width: 140px;
}

.logo {
    font-size: 32px;
    background: linear-gradient(110deg, #fb272d, #fd9f29 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.logo span {
    display: block;
    font-size: 13px;
    margin-top: 5px;
    text-transform: uppercase;
    text-align: center;
}

.nav-block {
    display: flex;
    align-items: center;
    /* gap: 24px; */
}

.header__nav>ul>li+li {
    margin-left: 5px;
}

.nav-link,
.action-number {
    font-size: 18px;
    font-weight: 500;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    text-decoration: none;
    color: #333333;
    position: relative;
    display: block;
    border-radius: 40px;
}

.nav-list a:hover,
.nav-list.active a {
    background: #f1f1f1;
}

.nav-list .btn--primary:hover {
    background-image: linear-gradient(110deg, #fb272d, #fd9f29 100%) !important;
}

.humber-open {
    display: none;
}
.humber-open img{
    border-radius: 50%;
}
.humber-close img{
    border-radius: 50%;
    height: 40px;
    width: 40px;
}
.header-mob {
    display: none;
}

.header-block {
    display: flex;
}

.phone-button {
    padding: 11px 20px !important;
}

.phone-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
}

.phone-button:hover a {
    background: transparent;
    color: #fff;
}

.phone-button:hover svg {
    fill: #fff;
}

.phone-button svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    fill: #000;
}

.mob-btn {
    display: none;
}


/* section--hero css start  */

.middle-section {
    position: relative;
    top: 80px;
}

.section {
    position: relative;
}

.section--hero {
    padding-top: 40px;
}

.hero-overlay {
    background: linear-gradient(180deg, #FFF6ED 0%, #FFF9F9 100%);
    padding: 60px;
    border-radius: 25px;
}

.hero__row {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.hero {
    flex: 0 0 65%;
}

.hero__image img {
    max-width: 100%;
}

.hero .hero__text {
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
    color: #000;
    margin: 0;
}

.hero__contact .form-title {
    font-size: 22px;
}

.hero .hero__text span {
    background: linear-gradient(65deg, #fb272d, #fd9f29 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__contact {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
}

.hero__contact {
    flex: 0 0 28%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: transparent;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    background-color: #FFF6ED;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    border-bottom: 1px solid #FFB672;
}

.contact-form button {
    background: #FD902B;
    color: #000;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
}

.form-title {
    margin-top: 0;
    color: #FF0000;
    margin-bottom: 40px;
}


/* section--marketing css start  */

.section--marketing {
    padding: 80px 0;
}

.certo {
    border-radius: 1.5rem;
    padding: 50px 40px;
    background-color: rgb(245 251 251);
}

.certo-main {
    display: flex;
}

.certo-main__header {
    flex: 0 0 35%;
}

.certo-main__content {
    flex: 0 0 65%;
}

.certo-block {
    gap: 5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.certo-box__img {
    margin-bottom: 1.75rem;
}

.certo-box__img img {
    height: 90px;
}

.certo-box__title {
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 10px;
}

.section--onze.service--onze {
    margin-top: 70px;
    padding: 40px 0 30px;
}


/* section--materials css start  */

.section--materials {
    padding: 40px 0;
    background-color: #c5dc09;
}

.materials-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.materials__left {
    flex: 0 0 40%;
}

.materials-text {
    color: #333333;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
}

.materials-list {
    display: flex;
    align-items: center;
    gap: 55px;
}

.materials-list__item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.materials-list__img {
    border: 1px solid rgba(102, 102, 102, 0.48);
    border-radius: 4px;
    padding: 10px;
    width: 68px;
    height: 68px;
}

.materials-list__title {
    font-size: 22px;
    line-height: 30px;
    color: #333333;
}

.materials-list__img img {
    max-width: 48px;
    object-fit: contain;
}


/* section--services css strat  */

.section--services {
    padding: 80px 0;
}

.section--services .services--title {
    text-align: center;
    color: #333333;
    display: block;
    font-size: 40px;
    line-height: normal;
}

.services-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
    padding-bottom: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.services {
    padding-right: 0;
    padding-bottom: 0;
    text-align: center;
}

.services__img {
    display: flex;
    width: 90px;
    height: 90px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    padding-bottom: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-style: solid;
    border-width: 1px;
    border-color: #fd902b;
    border-radius: 100%;
    background-color: transparent;
}

.services__img img {
    height: 50px;
}

.services__title {
    display: flex;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: center;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    justify-content: center;
}

.services-heading {
    display: block;
    color: #000;
    font-size: 22px;
    font-weight: 500;
}

.service-action {
    display: block;
    margin-top: 10px;
    text-align: center;
}


/* section--client css start  */

.section--client {
    background-color: #eeeff0;
    padding: 40px 0;
}

.client-list {
    display: block;
}

.client-list__item img {
    height: 120px;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.client-list__item:hover img {
    mix-blend-mode: unset;
}


/* section--portfolio css start  */

.section--portfolio {
    padding: 80px 0;
    background-color: #eeeff0;
}

.portfolio-block .page-title {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-wrapper {
    margin: 20px;
}

.portfolio-row {
    display: flex;
    /* box-shadow: 0px 10px 20px rgb(51 51 51 / 5%), 0px 20px 100px rgb(51 51 51 / 15%); */
    background-color: #fff;
    box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 10%);
}

.portfolio-row__img {
    flex: 0 0 50%;
}

.portfolio-row__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-row__content {
    flex: 0 0 50%;
    padding: 80px 74px 20px 80px;
}

.portfolio-title {
    color: #333333;
    font-size: 28px;
    line-height: 33px;
    margin: 0 0 24px;
}

.portfolio-text {
    color: #666666;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    margin: 0 0 10px;
}

.portfolio__action {
    margin-top: 50px;
    text-align: center;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 40px 0 0;
}

.slick-dots li {
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #88888891;
    padding: 0;
}

.slick-dots li.slick-active button {
    background-color: #fd902b;
}

.portfolio__slider .slick-dots {
    margin: 0;
}

.portfolio__slider .slick-arrow {
    padding: 0;
    position: absolute;
    width: 33px;
    height: 149px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: transparent;
}

.portfolio__slider .slick-prev {
    left: -50px;
}

.portfolio__slider .slick-next {
    right: -50px;
}


/* onze--section css start  */

.section--onze {
    background-color: #eeeff0;
    padding: 80px 0;
}

.onze__list {
    margin: 50px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 88px;
}

.onze-list__item img {
    height: 100px;
    object-fit: contain;
}

.onze__title {
    text-align: center;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 50px;
    color: #333333;
    position: relative;
}

.onze__title:before {
    position: absolute;
    content: "";
    bottom: -8px;
    left: 50%;
    width: 65px;
    height: 3px;
    transform: translate(-50%, 0);
    background: linear-gradient(110deg, #fb272d, #fd9f29 100%);
    -webkit-text-fill-color: transparent;
}


/* .section--work css start  */

.section--work {
    padding: 80px 0;
    background-color: #fff;
}

.work-title {
    font-size: 36px;
    line-height: 43px;
    color: #333333;
}

.work-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin: 80px 0 0;
}

.work-row__content {
    flex: 0 0 40%;
}

.work-row__media {
    flex: 0 0 50%;
    position: relative;
}

.work-row__media img {
    position: relative;
    z-index: 9;
    width: 100%;
}

.work-list__item {
    display: flex;
}

.work-list__item::before {
    content: "";
    background-image: url(../images/tick-lightgreen.svg);
    background-size: 25px;
    background-repeat: no-repeat;
    width: 40px;
    height: 20px;
    display: block;
    margin-top: 5px;
    flex: 0 0 40px;
}

.work-list__content {
    flex: 1 1 auto;
}

.work-list__title {
    margin: 0 0 16px;
    color: #333333;
    font-size: 20px;
    line-height: 24px;
}

.work-list__text {
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    color: #666666;
    margin: 0 0 36px;
}

.work-pattern {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: linear-gradient(110deg, #fb272d, #fd9f29 100%);
    right: -30px;
    bottom: -30px;
}

.work-row--reverse {
    margin: 0;
    flex-direction: row-reverse;
}

.work-top--img {
    position: absolute;
    top: -85px;
    right: -120px;
}


/* section--getintouch css start  */

.section--getintouch {
    padding: 60px 0;
    background-color: #eeeff0;
}

.getintouch__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 71px;
}

.getintouch-count {
    font-size: 48px;
    line-height: 67px;
    color: #333333;
    position: relative;
    display: inline-block;
}

.getintouch-text {
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
    color: #333333;
    margin: 19px 0 0;
}

.getintouch-count::after,
.getintouch-count::before {
    content: "";
    width: 28px;
    height: 28px;
    background-color: #eeeff0;
    position: absolute;
}

.getintouch-count::after {
    border-top: 4px solid #fd902b;
    border-left: 4px solid #fd902b;
    left: -30px;
}

.getintouch-count::before {
    border-bottom: 4px solid #fd902b;
    border-right: 4px solid #fd902b;
    right: -30px;
    bottom: 0;
}


/* section--guarantee css start  */

.section--guarantee {
    padding: 135px 0;
}

.guarantee {
    padding: 80px 102px;
    background-image: url(../images/guarantee-image.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.guarantee__block {
    max-width: 556px;
}

.guarantee__title,
.page-title.guarantee__title span {
    font-size: 36px;
    line-height: 43px;
}

.guarantee__text {
    color: #fff;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    margin: 36px 0 24px;
}

.guarantee__list {
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin: 0 0 42px;
}

.guarantee-list__item {
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 16px;
}

.guarantee__pattern {
    width: 150px;
    height: 150px;
    position: absolute;
    background-color: #c5dc09;
    top: -40px;
    left: -40px;
    z-index: -1;
}

.guarantee-list__number {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border: 1px solid #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* section--rating css strat  */

.section--rating {
    padding: 80px 0;
    background-color: #eeeff0;
}

.rating__block {
    max-width: 772px;
    margin: auto;
    background-color: #ffffff;
    box-shadow: 0px 10px 20px rgb(51 51 51 / 5%), 0px 20px 100px rgb(51 51 51 / 15%);
    padding: 23px 20px 30px;
}

.rating-title {
    color: #a5b80f;
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 10px;
}

.rating-title span {
    color: #333333;
}

.rating-review {
    color: #333333;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
}

.rating-list {
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating-header {
    display: flex;
    justify-content: space-between;
}

.rating-client__list {
    display: flex;
    align-items: center;
    justify-content: end;
}

.rating-client__item {
    margin-right: -7px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.rating-client__item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.rating-client__text {
    margin: 8px 0 0;
    color: #666666;
    font-size: 14px;
    line-height: 16px;
    text-align: right;
}

.rating-client__text span {
    color: #a5b80f;
}

.rating-header__row {
    display: flex;
    align-items: center;
    gap: 9px;
}

.rating-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 22px 0 0;
}

.rating-content__item {
    display: flex;
    padding: 20px 23px;
    background-color: #e9eee5;
    gap: 24px;
}

.rating-content__left img {
    width: 100%;
    height: 40px;
    object-fit: contain;
    max-width: 40px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.rating-content__left {
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.client-name {
    color: #333333;
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
}

.review-date {
    color: #333333;
    font-size: 12px;
    line-height: 14px;
    font-weight: 600;
    opacity: 0.6;
}

.review-text {
    max-width: 448px;
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
    color: #333333;
    margin: 14px 0 0;
    opacity: 0.8;
}

.rating-action {
    margin: 30px 0 0;
    text-align: center;
}

.rating-action .btn {
    color: #333333;
    border-color: #333333;
}


/* aboutus css start  */

.section--aboutus {
    padding: 80px 0;
}

.aboutus__row {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.aboutus-row__media {
    flex: 0 0 45%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 70px;
    align-items: center;
}

.shadow-img img {
    box-shadow: 0px 10px 20px rgb(51 51 51 / 5%), 0px 20px 100px rgb(51 51 51 / 15%);
}

.aboutus-row__content {
    flex: 0 0 40%;
}

.aboutus-title {
    font-size: 36px;
    line-height: 43px;
    color: #fd902b;
    margin: 0 0 24px;
}

.aboutus-title span {
    color: #333333;
}

.aboutus-text {
    color: #666666;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin: 0 0 10px;
}

.aboutus-action {
    margin: 30px 0 0;
}

.aboutus-pattern {
    background: linear-gradient(110deg, #fb272d, #fd9f29 100%);
    width: 149px;
    height: 149px;
    position: absolute;
    bottom: -45px;
    left: -45px;
    z-index: -1;
}

.aboutus-media__img {
    position: relative;
}

.aboutus-media__img img,
.aboutus-media__left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutus--media1 {
    height: 168px;
    width: 168px;
    flex: 0 0 168px;
    margin-right: 50px;
}

.aboutus-media__left {
    position: absolute;
    left: -40px;
    top: 70px;
    width: 258px;
    height: 258px;
}


/* section--faq css strat  */

.section--faq {
    padding: 80px 0 92px;
    background-color: #eeeff0;
}

.faq-heading {
    color: #333333;
    font-size: 36px;
    list-style: 43px;
    margin: 0 0 40px;
    text-align: center;
}

.faq-title {
    font-size: 20px;
    line-height: 24px;
    color: #333333;
    max-width: 500px;
}

.faq-content {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    gap: 20px;
    padding: 24px;
    align-items: center;
}

summary {
    list-style: none;
}

details,
details summary {
    padding-left: 0;
    background-image: none;
    -webkit-appearance: none;
}

details summary::-webkit-details-marker {
    display: none;
}

.faq {
    max-width: 772px;
    margin: auto;
}

.faq-details[open] .faq-icon {
    transform: rotate(45deg);
    transition: 0.3s all ease-in-out;
}

details[open] summary~* {
    animation: sweep 0.5s ease-in-out;
}

@keyframes sweep {
    0% {
        opacity: 0;
        margin-top: -10px;
    }
    100% {
        opacity: 1;
        margin-top: 0px;
    }
}

.faq-icon {
    flex: 0 0 30px;
}

.faq-details[open] .faq-icon path {
    stroke: #000000;
}

.faq-details[open] summary {
    background-image: linear-gradient(110deg, #fb272d, #fd9f29 100%);
    transition: 0.3s all ease-in-out;
}

.faq-details {
    background-color: #fff;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-answer.section-text {
    padding: 12px 24px 28px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #333333;
}


/* section-contact css start  */

.section--contact {
    /* background-color: rgba(238, 239, 240, 0.2); */
    padding: 80px 0 0px;
}

.contact-width {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    padding: 162px 0 140px;
}

.contact {
    background: #ffffff;
    box-shadow: 0px 10px 20px rgb(51 51 51 / 5%), 0px 20px 100px rgb(51 51 51 / 15%);
    max-width: 833px;
    margin: auto;
    position: relative;
}

.contact__block {
    max-width: 665px;
    margin: auto;
    padding: 60px 0 40px;
}

.contact-title {
    text-align: center;
    color: #fd902b;
    font-size: 28px;
    line-height: 33px;
    margin: 0 0 5px;
}

.contact-text {
    text-align: center;
    color: #666666;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 14px;
}

.contact-number {
    text-align: center;
    font-size: 28px;
    line-height: 39px;
    margin: 0 0 40px;
}

.contact-title span {
    color: #333333;
}

.form-input {
    margin-bottom: 16px;
}

.input-field {
    background: rgba(238, 239, 240, 0.3);
    border: 1px solid rgba(102, 102, 102, 0.44);
    border-radius: 4px;
    width: 100%;
    padding: 16px 24px;
}

.input-field::placeholder {
    color: #666666;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-family: "Barlow", sans-serif;
}

.input-field:hover {
    border-color: #fd902b;
}

.input-field:focus,
.input-field:active {
    border-color: #666666;
    outline: none;
}

.form-input textarea {
    height: 100px;
}

.error {
    display: block;
    text-align: left;
    color: red;
    font-size: 14px;
    margin-top: 8px;
}

.form-action {
    text-align: center;
    margin-top: 24px;
}

.form-checkbox label {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #666666;
    padding-left: 30px;
    cursor: pointer;
}

.contact-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 384px;
    height: 384px;
}

.contact-img img {
    width: 100%;
    height: 100%;
}

.contact-patten {
    width: 200px;
    height: 200px;
    background-image: linear-gradient(110deg, #fb272d, #fd9f29 100%);
    position: absolute;
    right: -50px;
    bottom: -50px;
    z-index: -1;
}

.form-checkbox {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.input-checkbox {
    position: absolute;
    opacity: 0;
    left: -9999px;
    cursor: pointer;
}

.input-checkbox[type="checkbox"]:not(:checked)+label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(102, 102, 102, 0.44);
    background: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.input-checkbox[type="checkbox"]:checked+label:after {
    content: "";
    width: 20px;
    height: 20px;
    background-size: 18px;
    background-position: center;
    background-image: url(../images/tick.svg);
    font-size: 20px;
    position: absolute;
    top: 0px;
    left: 0px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-repeat: no-repeat;
    background-size: 12px;
    border: 1px solid rgba(102, 102, 102, 0.44);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}


/* footer css start  */

footer.section-footer {
    background-color: #3b3b3b;
    position: relative;
    padding: 40px 0 28px;
}

.footer {
    display: grid;
    margin-bottom: 40px;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 2fr 1fr 1fr 1fr;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}

.footer__logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 64px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.footer__copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    border-top: 1px solid #fff;
    padding-top: 20px;
}

.footer__logo a {
    /* color: #fff; */
    background: linear-gradient(110deg, #fb272d, #fd9f29 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer__logo p {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
}

.footer-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-weight: 600;
}

.footer-heading {
    font-size: 24px;
    margin-bottom: 20px;
    -webkit-transition: opacity 150ms, color 250ms;
    transition: opacity 150ms, color 250ms;
    color: #fff;
    font-weight: 500;
    display: block;
}

.footer-link {
    display: inline-block;
    width: 179px;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-bottom: 10px;
    -webkit-transition: opacity 150ms, color 250ms;
    transition: opacity 150ms, color 250ms;
    color: #fff;
    font-size: 16px;
}

.footer-address {
    color: #fff;
    font-style: normal;
}

.footer__content {
    display: flex;
    gap: 36px;
    flex: 1;
    margin-left: 128px;
}

.footer-text {
    color: #dce0e3;
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
}

.pipe {
    opacity: 40%;
    height: 40px;
    background-color: #fff;
    width: 1px;
}

.footer-number {
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
    color: #dce0e3;
}

.footer-mail {
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
    color: #a5b80f;
    text-transform: uppercase;
}

.footer-row {
    display: flex;
    align-items: center;
}

.copyright-list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-row span {}

.footer-row {
    display: flex;
    align-items: center;
    color: #dce0e3;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
}

.footer-row .line {
    margin: 0 3px;
}

.copyright-leadi {
    color: #dce0e3;
    text-decoration: underline;
    margin-left: 4px;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
}

.social-icon img {
    filter: grayscale(1) brightness(1.1);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    -webkit-filter: grayscale(1) brightness(1.1);
}

.social-icon:hover {
    background: #fff;
}

a.social-icon:hover img {
    filter: none;
}


/* popup modal css start  */

.section-enquery {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 100vh;
    width: 100%;
    overflow: auto;
    background-color: white;
    transition-duration: 700ms;
    padding: 60px 0;
    z-index: 1000;
    display: none;
}

.enquery__close img {
    margin-left: auto;
    cursor: pointer;
}

.enquery__content {
    margin-bottom: 50px;
}

.enquery__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.enquery-hero {
    flex: 0 0 45%;
}

.enquery-hero img {
    width: 100%;
}

.enquery-form {
    flex: 0 0 50%;
}


/* Services page css */

.breadcrumb-section {
    padding: 60px 0 40px;
}

.breadcrumb {
    display: flex;
}

.breadcrumb a {
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    text-decoration: none;
    margin-right: 10px;
}

.breadcrumb a+span {
    text-transform: uppercase;
    margin-left: 10px;
    letter-spacing: 1px;
}

.nain-title {
    font-size: 40px;
    margin-top: 10px;
    background: linear-gradient(0deg, #fb272d, #fd9f29 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.service-main {
    padding-bottom: 60px;
}

.service-list {
    display: flex;
    margin: 0 -15px;
    margin-top: 30px;
}

.service-list__row {
    flex: 0 0 50%;
    padding: 0 15px;
}

.service {
    box-shadow: 0 10px 40px rgb(0 0 0 / 10%);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom right;
}

.service__header {
    padding: 20px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
    color: #fff;
}

.graphics-card .service__header {
    background-image: linear-gradient(110deg, rgb(251, 39, 45), rgb(253, 159, 41) 100%);
    /*background-image: linear-gradient(-90deg, #651fff 0%, #2979ff 100%);*/
}

.apps-card .service__header {
    background-image: linear-gradient(110deg, rgb(251, 39, 45), rgb(253, 159, 41) 100%);
    /*background-image: linear-gradient(-90deg, #00e5ff 0%, #00e676 100%);*/
}

.web-card .service__header {
    background-image: linear-gradient(110deg, rgb(251, 39, 45), rgb(253, 159, 41) 100%);
    /*background-image: linear-gradient(-90deg, #c51252 0%, #d500f9 100%);*/
}

.marketing-card .service__header {
    background-image: linear-gradient(110deg, rgb(251, 39, 45), rgb(253, 159, 41) 100%);
    /*background-image: linear-gradient(110deg, #fb272d, #fd9f29 100%);*/
}

.service__content {
    display: flex;
    padding: 40px;
}

.service__list {
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1 1 auto;
}

ul.service__list li {
    font-size: 18px;
}

.service__list>li+li {
    margin-top: 15px;
}

.service__list>li>a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
}

.service__icon {
    justify-content: flex-end;
    align-self: flex-end;
    flex: 0 0 auto;
}

.service__icon img {
    width: 100px;
}


/* media query */

@media screen and (max-width: 1440px) {
    .contact-width {
        max-width: 100%;
    }
}

@media only screen and (max-width: 1024px) {
    .materials-block {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .services-pattern {
        right: -10px;
        bottom: -10px;
    }
    .work-pattern {
        right: -15px;
        bottom: -15px;
    }
    .guarantee__pattern {
        top: -10px;
        left: -10px;
    }
    .portfolio__slider .slick-prev {
        left: auto;
        top: auto;
        right: 50px !important;
    }
    .portfolio__slider .slick-arrow {
        background-color: #a5b80f;
        z-index: 9;
        width: 44px;
        height: 44px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 0;
        bottom: 30px;
    }
    .portfolio__slider .slick-next {
        top: auto;
        right: 20px;
    }
    .portfolio__slider .slick-prev {
        left: auto;
        top: auto;
        right: 70px !important;
    }
    .nav-link,
    .action-number {
        padding: 0 15px;
    }
    .hero .hero__text {
        font-size: 40px;
        line-height: normal;
    }
    .hero-overlay {
        padding: 40px;
    }
    .hero .hero__text span {
        display: block;
    }
}

@media only screen and (max-width: 992px) {
    .humber-open {
        display: block;
    }
    .hero {
        margin-bottom: 28px;
    }
    .mob-btn {
        display: block;
        background: #fd902b;
        padding: 10px;
        border-radius: 50%;
        margin-right: 15px;
    }
    .mob-btn svg {
        height: 20px;
        width: 20px;
        fill: #fff;
    }
    .header-mob {
        position: fixed;
        background-color: white;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 10px 20px;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        z-index: 99;
    }
    .header .header__nav,
    .header .header__action {
        display: none;
    }
    .header-mob__wraper {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }
    .header__nav {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        bottom: 0;
    }
    li.nav-list {
        margin-bottom: 10px;
    }
    .header__action {
        display: flex;
        align-items: center;
    }
    .nav-block {
        flex-direction: column;
    }
    .nav-link,
    .action-number {
        font-size: 24px;
        line-height: 32px;
    }
    .services-block {
        flex-direction: column;
        gap: 40px;
    }
    .services-list {
        max-width: 100%;
    }
    .services-pattern {
        right: -70px;
        bottom: -70px;
    }
    .work-row {
        flex-direction: column;
        gap: 40px;
    }
    .client-list {
        flex-wrap: wrap;
        column-gap: unset;
        row-gap: 30px;
    }
    .onze__list {
        flex-wrap: wrap;
        column-gap: unset;
        row-gap: 20px;
    }
    .onze-list__item {
        flex: 0 0 30%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .certo {
        padding: 0;
        background-color: transparent;
    }
    .certo-main {
        display: block;
    }
    .certo-main__header {
        margin-bottom: 40px;
    }
    .service-list {
        flex-wrap: wrap;
    }
    .service-list__row {
        flex: 0 0 100%;
        padding: 0 15px;
    }
    .hero__row {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    .services-wrap {
        flex-wrap: wrap;
        max-width: 550px;
        margin: 40px auto 0;
    }
    .services {
        flex: 0 0 50%;
        margin-bottom: 24px;
    }
    .section--marketing {
        padding: 60px 0;
    }
    .section--hero {
        height: auto;
    }
    .portfolio-row {
        flex-direction: column-reverse;
        gap: 34px;
    }
    .ferna-icon {
        display: none;
    }
    .hero {
        width: 100%;
    }
    .hero-list_item+.hero-list_item {
        margin-left: 0;
    }
    .hero-list_item::before {
        width: 30px;
        margin-right: 10px;
    }
    .page-title,
    .page-title .page-title__span,
    .page-title.guarantee__title span {
        font-size: 50px;
        line-height: 53px;
    }
    .hero__list {
        flex-direction: column;
        gap: 24px;
        justify-content: start;
        align-items: start;
    }
    .contact-width {
        padding: 0;
    }
    .services__right {
        margin-left: -95px;
    }
    .work-pattern {
        display: none;
    }
    .work-row__media {
        width: 100%;
    }
    .work-row__media img {
        width: 100%;
    }
    .work-row {
        margin: 40px -15px 0;
    }
    .work-row__content {
        padding: 0 16px;
    }
    .work-row--reverse .work-row__media img {
        width: auto;
    }
    .work-top--img {
        right: 210px;
    }
    .work-row--reverse .work-row__media {
        margin-top: 50px;
    }
    .guarantee {
        padding: 16px;
        margin: 0 -16px;
    }
    .guarantee__block {
        max-width: 100%;
    }
    .section--guarantee {
        padding: 60px 0;
    }
    .rating-header {
        flex-direction: column;
    }
    .getintouch__list {
        gap: 70px;
        flex-direction: column;
        max-width: 300px;
        margin: auto;
        padding-left: 0px;
    }
    .aboutus__row {
        flex-direction: column-reverse;
        gap: 40px;
        margin: 0 -15px;
    }
    .aboutus-row__content {
        padding: 0 16px;
    }
    .aboutus-row__media {
        width: 100%;
    }
    .aboutus-media__left {
        left: 0px;
        width: 370px;
        height: 370px;
    }
    .aboutus-media__img {
        position: relative;
        width: 450px;
        height: 450px;
    }
    .aboutus--media1 {
        height: 168px;
        width: 168px;
    }
    .faq-column {
        margin: 0 -16px;
    }
    .contact-patten {
        display: none;
    }
    .contact-wrapper {
        display: flex;
        flex-direction: column-reverse;
        margin: 0 -16px;
        gap: 40px;
    }
    .contact-img {
        position: static;
    }
    .contact-img img {
        width: 100%;
    }
    .contact {
        box-shadow: none;
        max-width: 100%;
        width: 100%;
        padding: 0 16px;
    }
    .contact-img {
        width: 100%;
        height: auto;
    }
    .section--contact {
        padding: 60px 0;
    }
    .footer__copyright {
        align-items: center;
        justify-content: center;
        margin-top: 36px;
        gap: 24px;
    }
    .copyright-list {
        gap: 8px;
    }
    .footer__content {
        margin: 0;
    }
    .footer-link {
        width: 100%;
    }
    .enquery__box {
        flex-direction: column-reverse;
    }
    .enquery__close {
        margin: 0 0 20px;
        display: block;
    }
    .footer__logo img {
        margin: auto;
    }
    .footer__social {
        justify-content: center;
    }
    .footer__content {
        margin: 24px 0;
        justify-content: center;
    }
    .enquery-form {
        display: block;
        width: 100%;
    }
    .section-enquery {
        padding: 40px 0;
    }
    .contact-number {
        margin-bottom: 30px;
    }
    .enquery__content {
        margin-bottom: 30px;
    }
    .getintouch-count {
        font-size: 34px;
        line-height: 70px;
    }
    .hero .hero__text {
        font-size: 36px;
    }
}

@media only screen and (max-width: 575px) {
    .section--services .services--title {
        font-size: 28px;
        line-height: 34px;
    }
    .services-heading {
        font-size: 18px;
    }
    .certo-block {
        gap: 12px;
    }
    .aboutus-media__img {
        width: 350px;
        height: 350px;
    }
    .aboutus-media__left {
        width: 280px;
        height: 280px;
    }
    .aboutus--media1 {
        flex: 0 0 150px;
        width: 150px;
        height: 150px;
    }
    .portfolio-wrapper {
        margin: 10px;
    }
    .portfolio-row {
        box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 5%);
    }
    .materials-list {
        flex-direction: column;
        align-items: start;
        gap: 16px;
    }
    .services-pattern {
        right: 5px;
        bottom: -50px;
    }
    .services__right {
        padding-right: 50px;
    }
    .page-title,
    .page-title span,
    .page-title .page-title__span,
    .page-title.guarantee__title span {
        font-size: 22px !important;
        line-height: normal;
    }
    /* .section--hero {
        padding: 90px 0;
    } */
    .hero .hero__text {
        font-size: 28px;
        line-height: normal;
    }
    .page-title.guarantee__title span {
        display: inline;
    }
    .hero__list {
        margin: 0 0 36px;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .materials-text {
        font-size: 18px;
        line-height: 25px;
    }
    .section--services {
        padding: 60px 0;
    }
    .services__right {
        padding-right: 10px;
    }
    .services-pattern {
        width: 100px;
        height: 100px;
        right: -15px;
        bottom: -23px;
    }
    /* .client-list {
    flex-direction: column;
  } */
    .section--client {
        padding: 40px 0 40px;
    }
    .section--portfolio,
    .section--onze {
        padding: 60px 0;
    }
    .portfolio-row__content {
        padding: 40px 24px 0;
    }
    .portfolio-title {
        font-size: 22px;
        line-height: 26px;
    }
    .onze-list__item {
        flex: 0 0 50%;
    }
    .onze-list__item--full {
        flex: 0 0 100%;
    }
    .section--work {
        padding: 60px 0 0;
    }
    .work-row--reverse .work-row__media {
        padding-right: 90px;
    }
    .work-top--img {
        right: 0px;
        top: -120px;
    }
    .guarantee {
        padding: 60px 16px;
        background-position: center;
    }
    .section--guarantee {
        padding: 0;
    }
    .rating-content__left {
        flex: 0 0 40px;
    }
    .rating__block {
        box-shadow: none;
        padding: 14px 0 24px;
    }
    .section--rating {
        padding: 60px 0;
        background-color: #fff;
    }
    .section--aboutus {
        padding: 20px 0 60px;
    }
    .aboutus-pattern {
        width: 100px;
        height: 100px;
        bottom: -30px;
        left: -30px;
    }
    .section--faq {
        padding: 40px 0;
    }
    .contact__block {
        padding: 0;
    }
    .pipe {
        transform: rotateZ(90deg);
        -webkit-transform: rotateZ(90deg);
        -moz-transform: rotateZ(90deg);
        -ms-transform: rotateZ(90deg);
        -o-transform: rotateZ(90deg);
    }
    .footer__content {
        flex-direction: column;
        align-items: center;
        gap: unset;
    }
    footer.section-footer {
        padding: 40px 0;
    }
    .footer {
        width: 100%;
        display: flow-root;
    }
    .footer__logo {
        padding: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .footer__column {
        width: 33.33%;
        float: left;
        margin-top: 20px;
    }
    .footer-heading {
        margin-bottom: 10px;
    }
    .footer-link {
        margin-bottom: 5px;
    }

}

@media only screen and (max-width: 480px) {
    .aboutus-media__left {
        left: 0px;
        top: 100px;
        width: 200px;
        height: 200px;
    }
    .aboutus-media__img {
        width: 270px;
        height: 270px;
    }
    .aboutus--media1 {
        flex: 0 0 120px;
        width: 120px;
        height: 120px;
    }
    .footer__column {
        width: 100%;
        display: block;
    }
    .footer__copyright {
        display: flex;
        flex-direction: column-reverse;
        border: none;
        margin: 0;
        padding: 0;
    }
    .service__content {
        padding: 20px;
    }
    .hero-overlay,
    .hero__contact {
        padding: 20px;
    }
    .hero .hero__text {
        font-size: 22px;
    }
    .hero {
        margin-bottom: 20px;
    }
    .form-title{
        margin-bottom: 28px;
    }
    .certo-box__img img {
        height: 60px;
    }
    .aboutus-title{
        font-size: 22px;
        line-height: normal;
    }
    .onze-list__item img{
        height: 60px;
    }
    .services__img{
        width: 60px;
        height: 60px;
    }
    .services__img img {
        height: 30px;
    }
    .footer-heading{
        font-size: 20px;
    }
    h3.service__title {
        font-size: 20px;
        text-transform: math-auto;
    }
    p, .aboutus-text{
        font-size: 16px;
    }
    .services-wrap{
        justify-content: center;
    }
}

@media only screen and (max-width: 375px) {
    .aboutus-media__left {
        width: 160px;
        height: 160px;
    }
}

@media only screen and (max-width: 350px) {
    .aboutus-media__left {
        width: 150px;
        height: 150px;
    }
    .aboutus-media__img {
        width: 200px;
        height: 200px;
    }
    .aboutus--media1 {
        flex: 0 0 115px;
        width: 115px;
        height: 115px;
        margin-right: 20px;
    }
    p.footer-row {
        flex-direction: column;
    }
    .footer-row .line {
        display: none;
    }
    .footer-row span {
        display: block;
        margin: 0 0 3px;
    }
    .copyright-leadi {
        margin: 4px 0 0;
    }
}

.btn-disabled:hover {
    background-color: #333333;
    color: #fff;
}

span.msg.success {
    color: green;
    margin-top: 10px;
    display: block;
}