:root {
    --font-default: 'Outfit', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --font-secondary: 'Manrope', sans-serif;
    --fontawesome: "Font Awesome 5 Pro";
    --black: #000000;
    --dark: #0e2769;
    --dark-secondary: #1e3373;
    --overlay-color: rgba(30, 51, 115, 0.3);
    --white: #ffffff;
    --color-primary: #1351d8;
    --color-secondary: #9c00ff;
    --color-style-two: #B700C4;
    --color-style-three: #FF9B0D;
    --color-heading: #0e0e0e;
    --color-paragraph: #666666;
    --box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
    --box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
    --box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
    --bg-gray: #eff6fe;
    --iti-border-color: #ccc;
    --bg-gradient: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --bg-gradient-secondary: linear-gradient(0deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --bg-gradient-two: linear-gradient(90deg, var(--color-style-two) 0%, var(--color-style-three) 100%);
}

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

body,
html {
	height: 100%;
}

html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

html, body, div, span, img,
ol, ul, li, a, p, h1, h2, h3,
h4, h5, h6, option, legend, label,
table, th, td, tr, article, aside,
caption, figure, footer, header, hgroup,
mark, nav, section, time, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

.wrapper {
	height: 100%;
}

img {
	border: none;
	outline: none;
	max-width: 100%;
}

label {
	display: inline-block;
	font-weight: normal;
	margin-bottom: 5px;
	max-width: 100%;
}

a {
	outline: none;
	text-decoration: none;
	color: var(--color-heading);
}

a img {
	border: none;
}

a:active {
	outline: none;
	text-decoration: none;
	color: var(--color-heading);
	opacity: 1;
}

a:focus {
	outline: none;
	text-decoration: none;
	color: var(--color-heading);
}

a:hover {
	outline: none;
	text-decoration: none;
	color: var(--color-primary);
	opacity: 1;
}

.color-style-two a:hover {
	color: var(--color-style-three);
}

button {
	outline: medium none;
}

iframe {
	border: none;
}

hr {
	margin-top: 0;
	margin-bottom: 0;
	border: 0;
	border-top: 1px solid #eeeeee;
}

pre {
	display: block;
	margin: 0 0 30px;
	padding: 9.5px;
	word-wrap: break-word;
	word-break: break-all;
	color: #333333;
	border: 1px solid #ededed;
	border-radius: inherit;
	background-color: #f9f9f9;
	font-size: 13px;
	line-height: 1.42857143;
}

input {
	border: 1px solid #e7e7e7;
	border-radius: inherit;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	min-height: 50px;
}

input:focus {
	outline: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

textarea:focus {
	outline: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

select:focus {
	outline: none;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-default);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--color-paragraph);
}

body.no-scroll {
    overflow: hidden!important;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1320px;
    height: 100%;
    margin: 0 auto;
    padding-left: .75rem;
    padding-right: .75rem;
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0;
}

.button {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.7;
    color: var(--white);
    border: none;
    background: var(--color-primary);
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.button:hover {
    color: var(--white);
}

/* === Эффект при наведении (анимация подложки) === */
.button::after {
    position: absolute;
    top: 0;
    left: -5%;
    content: "";
    height: 150px;
    width: 115%;
    z-index: -1;
    background-color: var(--color-heading);
    transition: all 0.25s ease-in-out;
    transform: translateY(-45%) skew(25deg) scale(0);
}

.button:hover::after {
    transform: translateY(-45%) skew(25deg) scale(1.2);
}

.colored {
    padding-left: 36px;
    padding-right: 36px;
    font-weight: 500;
    background: var(--bg-gradient);
}

.colored::after {
    background-color: var(--dark-secondary);
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

h1 {
    font-size: 4.25rem;
    color: var(--color-heading);
    line-height: 1.1;
}

p {
    font-size: 17px;
    color: var(--color-heading);
    line-height: 1.7;
}


/* ================================================================= */
/* START - HERO SECTION */
/* ================================================================= */
.hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    max-height: 80vh;
    min-height: 740px;
    z-index: 1;
}

.hero-text {
    max-width: 50%;
    padding: 80px 0;
    z-index: 10;
}

.hero-text p {
    margin: 30px 0 40px 0;
}

.hero-image {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 0;
    bottom: 0;
    height: 95%;
    overflow: hidden;
}

.shape-circle::after {
    content: '';
    position: absolute;
    left: -120px;
    top: 50%;
    height: 500px;
    width: 500px;
    z-index: -1;
    background: var(--white);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-50%) translateX(80px) scale(0.9);
    animation: elementAppear 0.8s ease-out 0.3s forwards;
}
@keyframes elementAppear {
    to {
        transform: translateY(-50%) translateX(0) scale(1);
        opacity: 0.6;
    }
}

.banner-shape-right {
    position: absolute;
    right: 0px;
    bottom: 0px;
    height: 70%;
    width: 30%;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: right bottom !important;
}

.section-description {
  font-size: 20px;
}

.pricing-options li {
  line-height: 1.5;
}

.pricing-options li:not(:last-of-type) {
  margin-bottom: 10px;
}

.service-card__header {
  margin-bottom: 10px;
}

/* ================================================================= */
/* END - HERO SECTION */
/* ================================================================= */


@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }

    .pricing-content .price h2 {
      font-size: 43px;
    }
}


@media only screen and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    .hero-image {
        display: none;
    }
    .hero-text {
        max-width: 70%;
    }
}


@media only screen and (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .button {
        padding: 10px 20px;
    }
    .hero-text {
        max-width: 100%;
    }
}


@media only screen and (max-width: 767px) {
    .container {
        max-width: 540px;
    }

    .hero-container {
      min-height: 570px;
    }

    h1 {
      font-size: 3.75rem;
    }
}

@media only screen and (max-width: 540px) {
    h1 {
        font-size: 3.25rem;
    }
}