@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
    --black: #000000;
    --orange: #FF9000;
    --light: #939393;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    background: var(--black);
    color: #fff;
}

a, input, button {
    outline: none;
    font-family: "Inter", sans-serif !important;
    transition: all .3s ease;
    cursor: pointer;
}

a {
    text-decoration: none;
}

.container12 {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.container13 {
    width: 1300px;
    margin: 0 auto;
    position: relative;
}

.container14 {
    width: 1440px;
    margin: 0 auto;
    position: relative;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #482800;
}

.navList {
    display: flex;
    gap: 15px;
}

.navList a {
    color: #fff;
}

.navList a:hover {
    color: var(--orange);
}

.logo:hover {
    opacity: 0.7;
}

.btn {
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.btnOutlineOr {
    color: var(--orange);
    font-size: 16px;
    border: 2px solid var(--orange);
    padding: 10px 25px;
    border-radius: 50px;
}

.btnDark {
    color: var(--black);
    font-size: 16px;
    border: 2px solid var(--black);
    padding: 10px 25px;
    border-radius: 50px;
}

.btnBodyOr:hover,
.btnOutlineOr:hover {
    box-shadow: 0 0 0 10px rgba(255, 144, 0, 0.2);
}

.btnDark:hover {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.2);
}

.btnBodyOr {
    background: var(--orange);
    font-size: 16px;
    border: 2px solid var(--orange);
    padding: 10px 25px;
    border-radius: 50px;
    color: var(--black);
}

.headDesc {
    border-radius: 20px;
    overflow: hidden;
    padding: 60px;
    width: -webkit-fill-available;
    width: fill-available;
    background: url(../img/header.jpg) top center no-repeat;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.headDesc h1 {
    font-weight: 900;
    font-size: 64px;
    text-transform: uppercase;
}

.headDesc h2 {
    line-height: 30px;
}

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

.media {
    display: flex;
    gap: 10px;
}

.media a:hover {
    opacity: 0.7;
}

.timer {
    background: var(--orange);
    color: var(--black);
    height: 140px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    border-radius: 150px;
}

.timerWrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.timerRow {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
}

.timerCol {
    background: var(--black);
    color: var(--orange);
    font-size: 40px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    width: 77px;
    height: 77px;
}

.timerWrapper span {
    font-weight: 600;
    font-size: 40px;
    position: relative;
    top: -15px;
}

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

.timerTitle {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.timerText p {
    line-height: 24px;
    font-size: 15px;
}

.timerText p span {
    font-weight: 800;
}

.digitalImages {
    position: relative;
    width: 482px;
}

.digitalIco {
    position: absolute;
    bottom: 0;
    right: 0;
    overflow: hidden;
    border-radius: 15px;
}

.title {
    text-transform: uppercase;
    font-size: 64px;
    font-weight: 900;
}

.sbTitle {
    font-size: 36px;
    color: var(--light);
}

.digitalWrapper {
    display: grid;
    grid-template-columns: 482px 1fr;
    align-items: center;
    gap: 80px;
    margin-top: 80px;
}

.digitalRow {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: start;
    position: relative;
}

.digitalRow p {
    line-height: 28px;
}

.shape1 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    z-index: -1;
    opacity: 0.3;
}

.toolkitWrapper {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.toolkitIcons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    border: 1px dashed var(--orange);
    padding: 40px 0;
    border-radius: 60px;
    position: relative;
}

.shape2 {
    position: absolute;
    bottom: -72px;
    left: -68px;
}

.shape3 {
    position: absolute;
    bottom: -72px;
    right: -68px;
    transform: rotate(180deg);
}

.solutionsWrapper {
    margin-top: 150px;
    position: relative;
}

.solutionsWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.solutionsBlockRow {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    width: -webkit-fill-available;
    width: fill-available;
}

.solutionsBlockCol {
    background: #1E1E1E;
    border: 1px solid #2E2E2E;
    padding: 40px;
    width: -webkit-fill-available;
    width: fill-available;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.solutionsBlockCol p {
    line-height: 28px;
}

.solTitle {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 24px;
    line-height: 30px;
}

.solutionsWrapper .shape4 {
    position: absolute;
    left: -300px;
    top: 50%;
    transform: translate(0, -40%) rotate(180deg);
    z-index: -1;
    opacity: 0.3;
}

.solutionsWrapper .shape5 {
    position: absolute;
    right: -300px;
    top: 50%;
    z-index: -1;
    transform: translate(0, -35%);
    opacity: 0.3;
}

.solutionsBlockCol.active {
    box-shadow: 0 0 100px rgba(255, 144, 0, 0.4);
    position: relative;
    z-index: 2;
}

.solutionsWrapper .btn {
    margin-top: 20px;
}

.mainWrapper {
    overflow: hidden;
}

.sectionSolut {
    margin-bottom: 100px;
}

.sectionProjects {
    padding-top: 100px;
    background: url(../img/projects.jpg) top center no-repeat;
}

.projectsWrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.projectsRow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: space-between;
}

.projectsRow a img {
    border-radius: 20px;
}

.projectsRow a:hover {
    opacity: 0.7;
}

.projectsRow a {
    position: relative;
}

.size {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: var(--black);
    width: 65px;
    height: 65px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.projectsWrapper .btnWrapper {
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.clientWrapper {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.clientImg {
    border-radius: 20px;
}

.shape6 {
    transform: rotate(-90deg) translate(0, -50%);
    position: absolute;
    top: -400px;
    left: 50%;
    z-index: -1;
    opacity: 0.3;
}

.sectionClient {
    margin-bottom: 80px;
}

.clientRow {
    position: relative;
}

.clientCarousel {
    position: absolute;
    z-index: 10;
    bottom: 85px;
    right: 85px;
    width: 540px;
}

.item {
    background: #1E1E1E;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item p {
    line-height: 26px;
}

.itemTitle {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
}

.itemStars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.carouselLeft, .carouselRight {
    background: var(--black);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border: none;
    position: absolute;
}

.carouselLeft:hover, .carouselRight:hover {
    opacity: 0.7;
}

.carouselLeft {
    top: 50%;
    left: -40px;
    transform: translate(0, -50%);
}

.footer {
    padding-bottom: 80px;
    background: url(../img/bLogo.svg) top right 200px no-repeat;
    background-size: 40%;
}

.carouselRight {
    top: 50%;
    right: -40px;
    transform: translate(0, -50%);
}

.formTitle {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 15px;
    margin-top: 50px;
}

.formSbtitle {
    color: var(--light);
}

.inputGrid input {
    height: 45px;
    width: -webkit-fill-available;
    width: fill-available;
    border-radius: 50px;
    background: none;
    border: 1px solid var(--orange);
    padding-left: 15px;
    color: #fff;
    font-size: 16px;
    background: var(--black);
}

.inputGrid textarea {
    height: 100px;
    width: -webkit-fill-available;
    width: fill-available;
    border-radius: 20px;
    background: none;
    border: 1px solid var(--orange);
    padding-left: 15px;
    padding-top: 15px;
    color: #fff;
    font-size: 16px;
    background: var(--black);
}

.inputGrid input::placeholder,
.inputGrid textarea::placeholder {
    color: #fff;
}

.inputWrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.inputGrid {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contactForm {
    margin-top: 50px;
}

.cpr {
    color: var(--light);
    line-height: 26px;
}

.cpr span {
    font-weight: 800;
}

.mobileHeader {
    display: none;
    background: var(--black);
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    height: 60px;
    border-bottom: 1px solid #482800;
}

.mobileNavBtn {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: none;
    border: none;
}

.mobileNavBtn span {
    width: 100%;
    height: 3px;
    background: var(--orange);
}