@import url("https://fonts.googleapis.com/css?family=Open+Sans:300i,400,400i,600,700|Montserrat:200,200i,300,300i,400,500,500i,600,700,800,900&display=swap");

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: 'RobotoBold';
    src: url('../fonts/Roboto-Bold.ttf');
}

@font-face {
    font-family: 'RobotoCondensed';
    src: url('../fonts/RobotoCondensed-Regular.ttf');
}

@font-face {
    font-family: 'RobotoCondensedBold';
    src: url('../fonts/RobotoCondensed-Bold.ttf');
}

:root {
    --accent-color-darker: #0961B7;
    --accent-color-dark: #0961B7;
    --accent-color-middle: #0F76C8;
    --accent-color-light2: #199ce8;
    --accent-color-light: #20B2FB;
    --accent-color-lighter: #3a6cc780;
    --accent-color-lightest: #EDF5FF;
    --secondary-color: #20B2FB;
    --color-shadow: #0961b710;
    --back-alt1-color: #f8f8f8;
    /*  --accent-color-lighter: #b8bfed;*/
    --text-color-default: #303030;
    --text-color-dark: #191d34;
    --text-color-description: #707070;
    --text-color-light: #a0a0a0;
    --text-color-placeholder: #c0c0c0;

    --section-margin: 70px;
    --color-viber: #7B519C;

    --card-border-radius: 8px;
}

@media (max-width: 767px) {
    :root {
        --section-margin: 40px;
    }
}

i {
    font-style: normal;
    color: var(--text-color-light);
}

.flex-center-start {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
}

.overlay::before {
    background-image: -moz-linear-gradient(170deg, rgba(34, 34, 34, 0) 0%, black 100%);
    background-image: -webkit-linear-gradient(170deg, rgba(34, 34, 34, 0) 0%, black 100%);
    background-image: -ms-linear-gradient(170deg, rgba(34, 34, 34, 0) 0%, black 100%);
}

/* Normal desktop :1200px. */
/* Normal desktop :992px. */
/* Tablet desktop :768px. */
/* small mobile :320px. */
/* Large Mobile :480px. */
/* 1. Theme default css */

body {
    font-family: Roboto, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 17px;
    line-height: 1.5;

    position: relative;
    visibility: visible;
    overflow-x: hidden;
    background-color: #fff;
    /*padding-right: 0 !important;*/
}

.larger {
    font-size: 19px;
}

.smaller {
    font-size: 15px;
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    .larger {
        font-size: 17px;
    }

    .smaller {
        font-size: 13px;
    }
}

.img {
    max-width: 100%;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

a {
    color: var(--accent-color-middle);
}

a,
.button {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

a:focus,
.button:focus, button:focus {
    text-decoration: none;
    outline: none;
}

a:focus {
    text-decoration: none;
}

a:focus,
a:hover,
.portfolio-cat a:hover,
.footer-menu li a:hover {
    text-decoration: none;
}

a,
button {
    outline: medium none;
    text-decoration: none;
    /*color: var(--text-color-default);*/
}

h1, h2, h3, h4, h5 {
    font-family: "Montserrat", sans-serif;
    color: var(--text-color-dark);
}

h1 {
    font-size: 62px;
    font-weight: 800;
    color: var(--accent-color-middle);
}

.inverse h1 {
    color: #ffffff;
    text-shadow: 0 4px 12px #00000020;
}

h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    /*letter-spacing: normal;*/
    color: var(--accent-color-middle);
    margin-bottom: 20px;
}

h2 b {
    font-weight: 800;
    line-height: 60px;
    color: var(--accent-color-light2);
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 22px;
    font-weight: 700;
    /*margin-bottom: 10px;*/
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

@media (max-width: 1280px) {
    h1 {
        font-size: 46px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    h2 {
        font-size: 48px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 28px;
        font-weight: 700;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 16px;
        font-weight: 600;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

ul {
    margin: 0;
    padding: 0 0 0 18px;
}

li {
    list-style: none;
    color: var(--text-color-default);
}

p {
    font-weight: 400;
    color: var(--text-color-default);
    margin-bottom: 0.75em;
}

label {
    color: #7e7e7e;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

*::-moz-selection {
    background: #444;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #444;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #444;
    color: #fff;
    text-shadow: none;
}

*::-webkit-input-placeholder,
*:-ms-input-placeholder,
*::-ms-input-placeholder,
input::placeholder,
*::placeholder {
    color: var(--text-color-placeholder);
    font-size: inherit;
}

.overlay {
    position: relative;
    z-index: 0;
}

.overlay::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section {
    padding-top: var(--section-margin);
    padding-bottom: var(--section-margin);
    margin: 0;
}

/* button style */

.owl-carousel .owl-nav div {
    height: 54px;
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 54px;
    background-color: white;
    border-radius: 50%;
    left: -26px;
    font-size: 18px;
    line-height: 54px;
    color: #000;
}

.header-navigation a {
    color: var(--text-color-dark);
    text-decoration: none;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
}

.header-navigation a:hover {
    color: var(--accent-color-dark);
    text-decoration: none;
}

.owl-carousel .owl-nav div.owl-next {
    left: auto;
    right: -30px;
}

.owl-carousel .owl-nav div.owl-next i {
    position: relative;
    right: 0;
    top: 1px;
}

.owl-carousel .owl-nav div.owl-prev i {
    position: relative;
    right: 1px;
    top: 0;
}

.owl-carousel:hover .owl-nav div {
    opacity: 1;
    visibility: visible;
}

.owl-carousel:hover .owl-nav div:hover {
    color: #fff;
    background: var(--accent-color-dark);
}

.contact_anipat {
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.boxed-btn {
    background: #fff;
    display: inline-block;
    padding: 18px 44px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid var(--accent-color-dark);
    letter-spacing: 3px;
    text-align: center;
    color: var(--accent-color-dark) !important;
    text-transform: uppercase;
    cursor: pointer;
}

.boxed-btn:hover {
    background: var(--accent-color-dark);
    color: #fff !important;
    border: 1px solid var(--accent-color-dark);
}

.boxed-btn:focus {
    outline: none;
}

.boxed-btn.large-width {
    width: 220px;
}

.boxed-btn-solid {
    background: var(--accent-color-middle);
    /*background: linear-gradient(0deg, #20B2FB 0%, #0961B7 100%);*/
    /*background-image: -moz-linear-gradient(0deg, #5d8adc 0%, #5d8adc 99%);
  background-image: -webkit-linear-gradient(0deg, #5d8adc 0%, #5d8adc 99%);
  background-image: -ms-linear-gradient(0deg, #5d8adc 0%, #5d8adc 99%);*/
}

.buttons-row {
    display: flex;
    column-gap: 20px;
    row-gap: 10px;
    flex-wrap: wrap;
}

.buttons-row.smaller-gap {
    column-gap: 10px;
}

@media (max-width: 500px) {
    .buttons-row {
        column-gap: 10px;
        row-gap: 10px;
    }
}

.boxed-btn-solid {
    height: 64px;
    display: flex;
    align-items: center;
    column-gap: 15px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    padding: 18px 36px;
    font-family: "Montserrat", sans-serif;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    background-position: 0 0;
    width: fit-content;
    text-align: center;
    justify-content: center;
    border: 0;
    outline: none;
}

@media (max-width: 767px) {
    .boxed-btn-solid {
        height: 56px;
        padding: 16px 20px;
    }
}

.boxed-btn-solid:hover {
    color: #fff;
    background: var(--secondary-color);
}

a.boxed-btn-solid img,
button.boxed-btn-solid img {
    height: 24px;
    width: 24px;
    margin: 0 !important;
}

.boxed-btn-solid:focus {
    outline: none;
}

.boxed-btn-viber {
    background: white;
    font-size: 18px;
    font-weight: 500;
    border: 2px solid var(--color-viber);
    color: var(--color-viber);
    /*color: var(--accent-color-middle);*/
    padding: 16px 28px;
    font-family: "Montserrat", sans-serif;
    display: inline-block;
    -webkit-border-radius: var(--card-border-radius);
    -moz-border-radius: var(--card-border-radius);
    border-radius: var(--card-border-radius);
}

.boxed-btn-viber:hover {
    color: black;
}

.boxed-btn-viber:focus {
    outline: none;
}

.button-viber,
.boxed-btn-outline {
    text-align: center;
    background: transparent;
    height: 64px;
    font-size: 1rem;
    font-weight: 500;
    min-width: 160px;
    border: 2px solid var(--accent-color-middle);
    color: var(--accent-color-dark);
    padding: 16px 36px;
    vertical-align: middle;
    font-family: "Montserrat", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    column-gap: 10px;
    width: fit-content;
    line-height: 1.3;
}

.link-button-light img,
.boxed-btn-outline img {
    height: 18px;
    width: 18px;
    margin: 0;
}

.button-viber {
    border: 2px solid var(--color-viber);
    color: var(--color-viber);
}

.button-viber img {
    height: 28px;
    width: 28px;
    margin: 0;
}

@media (max-width: 767px) {
    .button-viber,
    .boxed-btn-outline {
        text-align: center;
        background: white;
        height: 56px;
        font-weight: 600;
        min-width: 140px;
        padding: 14px 20px;
    }
}

.main-screen-call-button {
    padding: 16px 40px 16px 32px;
}

@media (max-width: 500px) {
    .main-screen-call-button {
        padding: 16px 20px;
    }
}

.button-viber:hover,
.boxed-btn-outline:hover {
    border: 2px solid var(--secondary-color);
    color: white !important;
    background-color: var(--secondary-color);
}

.button-viber:focus,
.boxed-btn-outline:focus {
    outline: none;
}

.button-viber:focus,
.button-viber:hover {
    border: 2px solid var(--color-viber);
    color: white !important;
    background-color: var(--color-viber);
}

.button-viber:hover img {
    content: url('../img/icons/icon-viber-white.svg');
}

.achievement-icon {
    width: 80px;
}

.line-button {
    color: #919191;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    position: relative;
    padding-right: 5px;
    padding-bottom: 2px;
}

.line-button::before {
    position: absolute;
    content: "";
    background: #919191;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
}

.line-button:hover {
    color: #009DFF;
}

.line-button:hover::before {
    background: #009DFF;
}

.section_title {
    margin-bottom: 30px;
}

.mb-100 {
    margin-bottom: 100px;
}

@media (max-width: 767px) {

    .mb-100 {
        margin-bottom: 40px;
    }
}

.section_title2 i {
    font-size: 45px;
    color: var(--accent-color-light);
    display: block;
}

.section_title2 h3 {
    font-size: 42px;
    font-weight: 400;
    line-height: 52px;
    color: var(--accent-color-dark);
    position: relative;
    padding-bottom: 30px;
    margin-top: 10px;
}

.section_title2 h3::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 1px;
    background: #BC9321;
    bottom: 0;
    left: 50%;
    margin-left: -40px;
}

@media (max-width: 767px) {

    .section_title2 h3 {
        font-size: 30px;
        line-height: 36px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .section_title2 h3 {
        font-size: 36px;
        line-height: 42px;
    }
}

.section_title3 h3 {
    font-size: 60px;
    color: #FFFFFF;
    font-weight: 900;
    text-transform: capitalize;
}

@media (max-width: 767px) {

    .section_title3 h3 {
        font-size: 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .section_title3 h3 {
        font-size: 35px;
    }
}

@media (max-width: 767px) {

    .mobile_menu {
        position: absolute;
        right: 0;
        width: 100%;
        z-index: 9;
    }
}

.slicknav_menu .slicknav_nav {
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);*/
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
    float: right;
    width: 100%;
    padding: 0;
    border-radius: 0;
    position: absolute;
    left: 0;
    right: 0;
    /*margin: 5px auto auto;*/
    top: 11px;
}

.slicknav_menu .slicknav_nav a:hover {
    background: transparent;
    color: #009DFF;
}

.slicknav_menu .slicknav_nav a.active {
    color: #009DFF;
}

@media (max-width: 767px) {

    .slicknav_menu .slicknav_nav a i {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .slicknav_menu .slicknav_nav a i {
        display: none;
    }
}

.slicknav_menu .slicknav_nav .slicknav_btn {
    background-color: transparent;
    cursor: pointer;
    margin-bottom: 10px;
    margin-top: -40px;
    position: relative;
    z-index: 99;
    border: 1px solid #ddd;
    right: 5px;
    top: -36px;
}

.slicknav_menu .slicknav_nav .slicknav_btn .slicknav_icon {
    margin-right: 6px;
    margin-top: 3px;
    position: relative;
    padding-bottom: 3px;
    top: -11px;
    right: -5px;
}

@media (max-width: 767px) {

    .slicknav_menu {
        margin-right: 0;
    }
}

.slicknav_nav .slicknav_arrow {
    float: right;
    font-size: 22px;
    position: relative;
    top: -9px;
}

.slicknav_btn {
    background-color: transparent;
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    z-index: 99;
    border: none;
    border-radius: 3px;
    padding: 5px;
    right: 5px;
    margin-top: -5px;
    top: -31px;
}

.slicknav_btn {
    background-color: transparent;
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    z-index: 99;
    border: none;
    border-radius: 3px;
    padding: 5px;
    right: 0;
    margin-top: -5px;
    top: -36px;
}

.slicknav_btn {
    background-color: transparent;
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    z-index: 99;
    border: none;
    border-radius: 3px;
    padding: 5px;
    right: 0;
    margin-top: -5px;
    top: -80px;
}

.slicknav_icon-bar {
    background: #000 !important;
}

.header-area {
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    z-index: 9;
}

@media (max-width: 767px) {

    .header-area {
        padding-top: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .header-area {
        padding-top: 0;
    }
}

.header-area .main-header-area {
    background: #fff;
}

@media (max-width: 767px) {

    .header-area .main-header-area {
        padding: 10px 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .header-area .main-header-area {
        padding: 10px 10px;
    }
}

.header-area .main-header-area .logo-img {
    width: 150px;
    text-align: center;
}

@media (max-width: 767px) {

    .header-area .main-header-area .logo-img {
        text-align: left;
        width: 120px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .header-area .main-header-area .logo-img {
        text-align: left;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {

    .header-area .main-header-area .logo-img {
        text-align: left;
    }
}

@media (max-width: 767px) {

    .header-area .main-header-area .logo-img img {
        width: 70px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .header-area .main-header-area .logo-img img {
        width: 70px;
    }
}

.header-area .main-header-area .main-menu {
    text-align: right;
}

.header-area .main-header-area .main-menu ul li {
    display: inline-block;
    position: relative;
    margin-left: 30px;
}

.header-area .main-header-area .main-menu ul li a {
    color: var(--accent-color-darker);
    /*  color: var(--accent-color-dark);*/
    font-size: 20px;
    font-weight: normal;
    display: inline-block;
    padding: 37px 0;
    font-family: Montserrat, sans-serif;
    /*font-family: "Montserrat Narrow", sans-serif;*/
    position: relative;
    text-transform: capitalize;
}

@media (min-width: 992px) and (max-width: 1200px) {

    .header-area .main-header-area .main-menu ul li a {
        font-size: 18px;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {

    .header-area .main-header-area .main-menu ul li a {
        font-size: 18px;
    }
}

.header-area .main-header-area .main-menu ul li a i {
    font-size: 18px;
}

@media (max-width: 767px) {

    .header-area .main-header-area .main-menu ul li a i {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .header-area .main-header-area .main-menu ul li a i {
        display: none !important;
    }
}

.header-area .main-header-area .main-menu ul li a::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scaleX(0);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.header-area .main-header-area .main-menu ul li a:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.header-area .main-header-area .main-menu ul li a.active::before {
    opacity: 1;
    transform: scaleX(1);
}

.header-area .main-header-area .main-menu ul li:hover > a {
    color: var(--accent-color-light) !important;
}

.header-area .main-header-area .main-menu ul li a::before {
    position: absolute;
    content: "";
    background: var(--accent-color-middle);
    width: 100%;
    height: 2px;
    bottom: 20px;
    left: 0;
    opacity: 0;
    transform: scaleX(0);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.header-area .main-header-area .main-menu ul li a:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.header-area .main-header-area .main-menu ul li a.active::before {
    opacity: 1;
    transform: scaleX(1);
}

.header-area .main-header-area .main-menu ul li:hover > a {
    color: var(--accent-color-middle) !important;
}

.header-area .main-header-area .main-menu ul li .submenu {
    position: absolute;
    left: 0;
    top: 120%;
    background: #fff;
    width: 200px;
    z-index: 9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    text-align: left;
}

.header-area .main-header-area .main-menu ul li .submenu li {
    display: block;
    margin-left: 0;
}

.header-area .main-header-area .main-menu ul li .submenu li a {
    padding: 10px 15px;
    position: inherit;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: block;
    color: #000;
}

.header-area .main-header-area .main-menu ul li .submenu li a::before {
    display: none;
}

.header-area .main-header-area .main-menu ul li .submenu li:hover a {
    color: #000;
}

.header-area .main-header-area .main-menu ul li:hover > .submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.header-area .main-header-area .main-menu ul li:hover > a::before {
    opacity: 1;
    transform: scaleX(1);
}

.header-area .main-header-area .main-menu ul li:first-child a {
    padding-left: 0;
}

.header-area .main-header-area.sticky {
    position: fixed;
    width: 100%;
    top: -70px;
    left: 0;
    right: 0;
    z-index: 99;
    transform: translateY(70px);
    transition: transform 500ms ease, background 500ms ease;
    -webkit-transition: transform 500ms ease, background 500ms ease;
    background: rgba(255, 255, 255, 0.96);
}

.header-area .main-header-area.shadow {
    box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {

    .header-area .main-header-area.sticky {
        padding: 10px 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .header-area .main-header-area.sticky {
        padding: 10px 10px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header-area .main-header-area.sticky {
        padding: 10px 20px;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .header-area .main-header-area.sticky {
        padding: 0 20px;
    }
}

.header-area .main-header-area.sticky .main-menu {
    padding: 0;
}

.header-area .header-top_area {
    padding: 19px 0;
    background: white;
    color: #000000a0;
}

.header-area .header-top_area a {
    text-decoration: none;
    color: var(--text-color-default);
}

.header-social-buttons {
    align-items: center;
    gap: 20px
}

.header-social-buttons a {
    align-items: center;
    vertical-align: middle;
    color: var(--text-color-default);
    text-decoration: none;
    padding-top: 5px;
    padding-bottom: 5px;
}

.header-social-buttons a:hover {
    color: var(--accent-color-dark);
}

header .header-phone-style {
    display: flex;
    flex-direction: column;
    /*row-gap: 5px;*/
    margin-left: 0;
    align-items: flex-end;
    padding: 0;
    font-size: 24px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
}

.header-phone-style span {
    font-size: 13px;
    color: var(--text-color-light);
}

@media (max-width: 500px) {
    header .header-phone-style {
        font-size: 16px;
    }
}

a.header-phone-style b:hover {
    color: var(--accent-color-middle);
}

.header-area .header-top_area .social_media_links {
    text-align: right;
}

@media (max-width: 767px) {
    .header-area .header-top_area .social_media_links {
        text-align: center;
    }
}

.header-area .header-top_area .social_media_links a {
    font-size: 18px;
    color: #C7C7C7;
    margin-left: 32px;
}

.header-area .header-top_area .social_media_links a:hover {
    color: var(--accent-color-light);
}

.header-area .header-top_area .short_contact_list {
    text-align: left;
}

@media (max-width: 767px) {
    .header-area .header-top_area .short_contact_list {
        text-align: center;
    }
}

.header-area .header-top_area .short_contact_list ul li {
    display: inline-block;
}

.header-area .header-top_area .short_contact_list ul li a {
    font-size: 16px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin-right: 50px;
}

@media (max-width: 767px) {
    .header-area .header-top_area .short_contact_list ul li a {
        margin-left: 0;
        margin-right: 5px;
        font-size: 14px;
        margin-bottom: 10px;
        display: inline-block;
    }
}

header .logo img {
    height: 80px;
}

footer .footer_logo img {
    height: 80px;
}

.slider_bg_1 {
}

.slider_area {
    position: relative;
    z-index: 3;
}

.slider_area .single_slider {
    height: auto;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: static;
}

.slider_area .single_slider .container {
    /*margin-top: 200px;*/
    position: static;
}

.bradcam_area .container {
    margin-top: 50px;
    margin-bottom: 50px;
}

/*
@media (max-width: 500px) {
    .slider_area .single_slider {
        height: 600px;
        margin-top: 80px;
    }
}

@media (max-width: 991px) {
    .slider_area .single_slider {
        height: 600px;
        margin-top: 100px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .slider_area .single_slider {
        height: 600px;
        margin-top: 150px;
    }
}

@media (min-width: 1200px) and (max-width: 1700px) {
    .slider_area .single_slider {
        height: 600px;
        margin-top: 100px;
    }
}*/

.service_options li {
    list-style-type: disc;
    list-style-position: inherit;
    /*font-size: 18px;*/
}

.slider_area .service_slider {
    height: auto;
    /*height: 600px;*/
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-top: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}

.section-hero-2,
.inverse.slider_area .service_slider {
    height: 600px;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.section-hero-2 .container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .section-hero-2,
    .inverse.slider_area .service_slider {
        height: auto;
    }
}

.section-hero-2 .container .row {
    width: 100%;
}

.hero2-content-row ul {
    padding: 0;
}

.hero2-content-row {
    position: absolute;
    bottom: 0;
    width: 100%;
}

@media (max-width: 991px) {
    .section-hero-2 h1 {
        padding-top: 50px;
        padding-bottom: 50px;
        margin-bottom: 0;
    }

    .hero2-content-row {
        position: static;
    }
}

.hero2-content p {
    margin-bottom: 0;
    padding-bottom: 0.5em;
}

.section-hero-2 {

}

.inverse.slider_area .single_slider .container {
    position: static;
}

.inverse.slider_area .service_slider h1 {
    /*padding-top: 200px;*/
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 50%;
}

@media (max-width: 767px) {
    .inverse.slider_area .service_slider h1 {
        padding-top: 100px;
        padding-bottom: 100px;
        margin-bottom: 0;
    }
}

.slider_area .single_slider .slider_text {
    position: relative;
    z-index: 6;
}

.slider_area .single_slider .slider_text h3 {
    color: var(--accent-color-dark);
    font-size: 40px;
    font-weight: 200;
    margin-bottom: 4px;
    /*line-height: 53px;*/
}

.slider_area .single_slider .slider_text h3 span {
    font-weight: 400;
}

@media (max-width: 767px) {
    .slider_area .single_slider .slider_text h3 {
        font-size: 32px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .slider_area .single_slider .slider_text h3 {
        font-size: 32px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .slider_area .single_slider .slider_text h3 {
        font-size: 32px;
    }
}

.slider_area .single_slider .slider_text p {
    font-size: 20px;
    font-weight: 100;
    color: black;
    line-height: 32px;
    display: inline-block;
    margin-bottom: 40px;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .slider_area .single_slider .slider_text p br {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .slider_area .single_slider .slider_text p br {
        display: none;
    }
}

.slider_area .dog_thumb {
    position: absolute;
    text-align: right;
    right: 10%;
    z-index: 1;
}

@media (min-width: 992px) and (max-width: 1200px) {

    .slider_area .dog_thumb {
        right: 0;
        text-align: right;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {

    .slider_area .dog_thumb {
        right: 10%;
        text-align: right;
    }
}

@media (min-width: 1501px) and (max-width: 1700px) {

    .slider_area .dog_thumb {
        right: 10%;
        text-align: right;
    }
}

.slider_area .dog_thumb img {
    max-height: 550px;
}

.service_area {
    padding-top: var(--section-margin);
    padding-bottom: var(--section-margin);
    /*    padding-bottom: 106px;*/
}

.service_area .single_service {
    min-height: 284px;
    padding: 30px 20px 30px 20px;
    -webkit-border-radius: var(--card-border-radius);
    -moz-border-radius: var(--card-border-radius);
    border-radius: var(--card-border-radius);
    /*    margin-bottom: 30px;*/
    height: 100%;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border: 2px solid transparent;
}

.service_area2 .single_service {
    background-color: white;
    min-height: 10px;
    align-items: center;
    -webkit-border-radius: var(--card-border-radius);
    -moz-border-radius: var(--card-border-radius);
    border-radius: var(--card-border-radius);
    margin-bottom: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border: 2px solid white;
    box-shadow: 0 4px 16px var(--color-shadow);
}

.service_area .srv_adapt {
    display: flex;
    padding: 20px 20px 20px 20px;
}

@media (max-width: 767px) {
    .service_area .srv_adapt {
        flex-direction: column;
        padding: 20px 15px 20px 15px;
        align-items: flex-start;
    }

    .service_area .srv_adapt img {
        margin-bottom: 10px;
    }
}

.service_area2 .single_service2 {
    padding: 0 10px;
    display: flex;
}

@media (max-width: 576px) {
    .service_area2 .single_service2 {
        padding: 0;
        display: flex;
    }
}

.service_area .single_service:hover {
    border: 2px solid var(--accent-color-lighter);
}

.service_area .single_service:hover h3 {
    color: var(--accent-color-middle);
}

.service_area2 img {
    width: 150px;
    height: 150px;
    margin-right: 20px;
}

@media (max-width: 767px) {
    .service_area2 img {
        width: 75px;
        height: 75px;
        margin-right: 0;
    }
}

.service_area2 .single_service .small img {
    width: 80px;
    height: 80px;
    padding: 10px;
    margin-right: 10px;
}

.bradcam_text {
    text-align: center;
}

.service_area .single_service .service_content h3 {
    margin-top: 43px;
    margin-bottom: 22px;
}

.service_area2 .single_service .service_content h3 {
    margin-top: 0;
    margin-bottom: 0;
}

.service_area .single_service .service_content h4 {
    margin-top: 43px;
    margin-bottom: 0;
    min-height: 65px;
}

.service_area2 .single_service .service_content h4 {
    min-height: 10px;
    margin-top: 0;
    margin-bottom: 0;
}

.service_area .single_service .service_content p {
    /*margin-bottom: 0;*/
    /*    min-height: 110px;*/
}

.service_area2 .single_service .service_content p {
    margin-top: 10px;
    margin-bottom: 0;
    /*color: var(--text-color-description);*/
}

.pricing_area .single_service {
    min-height: 80px;
    font-weight: 400;
    color: var(--accent-color-dark);
}

.pricing_area img {
    width: 60px;
    height: 60px;
    padding: 5px;
    margin-right: 10px;
    margin-left: 0;
}

.price_cell {
    color: var(--accent-color-dark);
    text-align: end;
    width: 90px;
}

.image_cell {
    width: 70px;
}

.prices_table {
    border: 0;
    width: 100%;
}

.prices_table {
    font-size: 18px;
}

.prices_table tr td {
    min-height: 32px;
    height: 32px;
}

.header_cell {
    column-span: 2;
    font-size: 24px;
    font-weight: 600;
}

.header_row td {
    padding-top: 20px;
}

.clients_area .single_client {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: var(--card-border-radius);
    -moz-border-radius: var(--card-border-radius);
    border-radius: var(--card-border-radius);
    margin-bottom: 20px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    box-shadow: 0 4px 16px #00000010;
    border: 2px solid white;
}

@media (max-width: 767px) {
    .clients_area .single_client {
        padding: 10px;
    }
}

.shadow {
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 2, 0.08) !important;
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 2, 0.08) !important;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 2, 0.08) !important;
}

.clients_area .single_client:hover {
    border: 2px solid var(--accent-color-lighter);
}

.clients_area .single_client img {
    /*padding: 10px 10px 10px 10px;*/
    width: 100%;
    height: 80px;
    object-fit: contain;
    overflow: hidden;
}

@media (max-width: 767px) {
    .clients_area .single_client img {
        /*max-height: 90px;*/
        height: 60px;
    }
}

.clients_area .single_client .service_thumb .service_icon img {
    width: auto;
}

.clients_area .single_client .service_content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 43px;
    margin-bottom: 22px;
}

.clients_area .single_client .service_content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 43px;
    margin-bottom: 0;

    min-height: 65px;
}

.clients_area .single_client .service_content p {
    margin-bottom: 0;
    min-height: 120px;
}

.team_area {
    padding-top: var(--section-margin);
    padding-bottom: var(--section-margin);
}

.team_area .single_team {
    -webkit-border-radius: var(--card-border-radius);
    -moz-border-radius: var(--card-border-radius);
    border-radius: var(--card-border-radius);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border: 0 solid transparent;
    padding-bottom: 20px;
    /*margin-left: 30px;
  margin-right: 30px;*/
}

.team_area .single_team .thumb {
    -webkit-border-radius: var(--card-border-radius);
    -moz-border-radius: var(--card-border-radius);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    /*box-shadow: 0 4px 16px var(--color-shadow);*/
    box-shadow: 0 4px 16px -5px #0961b740;
}

.team_area .single_team .thumb img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.team_area .single_team .member_name {
    /*-webkit-transform: translateY(-20px);*/
    /*-moz-transform: translateY(-20px);*/
    /*-ms-transform: translateY(-20px);*/
    /*transform: translateY(-20px);*/
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.team_area .single_team .member_name .member_inner {
    border-radius: var(--card-border-radius);
    display: inline-block;
    padding: 14px 0 10px 0;
}

.team_area .single_team .member_name .member_inner h4 {
    font-size: 24px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0;
}

.team_area .single_team .member_name .member_inner p {
    margin-bottom: 0;
    font-size: 16px;
}

.team_area .row.team-blocks {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    column-gap: calc(var(--bs-gutter-x) * .5);
    row-gap: 40px;
}

.team_area .row.team-blocks div {
    padding: 0;
    flex: 1;
}

@media (max-width: 991px) {
    .team_area .row.team-blocks div {
        min-width: 45%;
    }
}

#test-form .white-popup-block .popup_inner .gj-datepicker span {
    color: red;
}

#test-form .white-popup-block input {
    width: 100%;
    height: 50px;
}

.gj-datepicker input {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    padding: 17px;
    font-size: 12px;
    color: #919191;
    margin-bottom: 20px;
}

.gj-datepicker-md [role="right-icon"] {
    position: absolute;
    right: 0;
    font-size: 14px;
    color: #919191;
    margin-right: 15px;
    top: 16px;
}

#timepicker {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    padding: 20px;
    text-transform: capitalize;
    color: #919191;
}

.gj-timepicker.gj-timepicker-md.gj-unselectable i {
    top: 16px;
    right: 12px;
    font-size: 18px;
    color: #919191;
}

.popup_inner input {
    width: 100%;
    height: 50px;
    margin-bottom: 30px;
    color: #000;
    padding: 18px;
    border: 1px solid #ddd;
}

.popup_inner input:focus {
    outline: none;
}

.popup_inner input::placeholder {
    color: #919191;
    font-size: 16px;
}

.footer {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /*background: var(--back-alt1-color);*/
    background: var(--accent-color-lightest);
    /*background-image: url(../img/photos/footer-back.jpg);*/
    position: relative;
    z-index: 0;
    margin-top: 0;
}

.footer-bottom {
    background: var(--accent-color-lightest);
}

footer {
    padding-top: var(--section-margin);
    padding-bottom: var(--section-margin);
}

.mini_icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 767px) {

    .footer .footer_top .footer_widget {
        margin-bottom: 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .footer .footer_top .footer_widget {
        margin-bottom: 30px;
    }
}

.footer .footer_top .footer_widget .address_line li {
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    font-family: "Montserrat", sans-serif;
    color: var(--text-color-default);
}

.footer .footer_top .footer_widget .links {
    position: relative;
    top: 0;
}

.footer .footer_top .footer_widget .links.double_links li {
    width: 50%;
    float: left;
}

.footer .footer_top .footer_widget .footer_logo {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 35px;
}

@media (max-width: 767px) {

    .footer .footer_top .footer_widget .footer_logo {
        margin-bottom: 20px;
    }
}

.footer .footer_top .footer_widget p {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: #AAB1B7;
}

.footer .footer_top .footer_widget a {
    margin-right: 15px;
}

.footer .footer_top .footer_widget p a {
    color: #AAB1B7;
}

.footer .footer_top .footer_widget ul li {
    color: var(--text-color-default);
    font-size: 16px;
    line-height: 40px;
}

.footer .footer_top .footer_widget ul li a {
    color: var(--text-color-default);
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
}

.footer .footer_top .footer_widget table tr td a {
    color: var(--text-color-default);
    font-weight: 600;
}

.footer .footer_top .footer_widget table tr td {
    color: var(--text-color-default);
    font-weight: 600;
    vertical-align: top;
    padding-right: 10px;
    padding-top: 10px;
    text-align: left;
}

.footer_widget_icon {
    width: 32px;
    height: 32px;
    /*margin-right: 20px;*/
}

.contacts-social-button {
    width: 36px;
    height: 36px;
    margin-right: 24px;
}

.colored-back {
    background-color: var(--accent-color-lightest);
    padding-top: 50px;
    padding-bottom: 50px;
}

.call-req-form-input-cont {
    position: relative;
    display: block;
    width: 100%;
}

.call-req-form-input-cont img {
    position: absolute;
    left: 13px;
    top: 13px;
    width: 24px;
    height: 24px;
}

.call-req-form-input-cont input, select {
    padding-left: 45px;
    padding-right: 20px;
    -webkit-appearance: none;
    appearance: none;
}

.select-wrapper {
    position: relative;
}

/*.select-wrapper::after {
    content: "▼";
    
    font-size: 1rem;
    top: 13px;
    right: 15px;
    color: #808080;
    position: absolute;
}*/

.popup_box .boxed-btn-solid {
    width: 100%;
    text-transform: capitalize;
}

.popup_box .nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    /* border-radius: 5px; */
    border: solid 1px #E2E2E2;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;

    /* height: 42px; */
    line-height: 50px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
    border-radius: 0;
    margin-bottom: 30px;
    height: 50px !important;
    font-size: 16px;
    font-weight: 400;
    color: #919191;
}

.popup_box .nice-select::after {
    content: "\f0d7";
    display: block;
    height: 5px;
    margin-top: -5px;
    pointer-events: none;
    position: absolute;
    right: 17px;
    top: 3px;
    transition: all 0.15s ease-in-out;
    width: 5px;
    font-family: fontawesome;
    color: #919191;
    font-size: 15px;
}

.popup_box .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    height: 200px;
    overflow-y: scroll;
}

.popup_box .nice-select.list {
    height: 200px;
    overflow-y: scroll;
}

#test-form {
    display: inline-block;
    margin: auto;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (max-width: 767px) {

    #test-form {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.adapt_area {
    padding-top: var(--section-margin);
    padding-bottom: var(--section-margin);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.clients_area {
    padding-top: var(--section-margin);
    padding-bottom: var(--section-margin);
}

.adapt_area .adapt_help .section_title p {
    margin-bottom: 30px;
    margin-top: 30px;
}

.adapt_area .adapt_about .single_adapt {
    padding: 40px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px 40px 20px;
}

.adapt_area .adapt_about .single_adapt .adapt_content,
.adapt_area .adapt_about .single_adapt .prices {
    display: grid;
    position: relative;
    z-index: 1;
}

.adapt_area .adapt_about .single_adapt:before {
    display: flex;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    box-shadow: 0 8px 16px #00000015;
    transform: rotate(349deg);
    background-color: white;
    z-index: 0;
}

@media (max-width: 767px) {
    .adapt_area .adapt_about .single_adapt {
        padding: 30px 15px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 0 30px 0;
    }
}

.single_adapt_back {
    width: 100%;
    height: 100%;
    background-color: white;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 2, 0.08);
}

@media (max-width: 767px) {
    .adapt_area .adapt_about .single_adapt {
        padding: 20px 10px;
    }
}

.prices {
    display: grid;
}

.adapt_area .adapt_about .single_adapt .adapt_content h3,
.adapt_area .adapt_about .single_adapt .prices h3 {
    font-size: 48px;
    color: var(--accent-color-dark);
    display: inline-block;
    margin-bottom: 2px;
    margin-top: 22px;
    line-height: 1;
}

@media (max-width: 1440px) {
    .adapt_area .adapt_about .single_adapt .adapt_content h3,
    .adapt_area .adapt_about .single_adapt .prices h3 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .adapt_area .adapt_about .single_adapt .adapt_content h3,
    .adapt_area .adapt_about .single_adapt .prices h3 {
        font-size: 24px;
        margin-top: 10px;
    }
}

.adapt_area .adapt_about .single_adapt .prices p,
.adapt_area .adapt_about .single_adapt .adapt_content p {
    margin-bottom: 2px;
    margin-top: 22px;
}

@media (max-width: 767px) {
    .adapt_area .adapt_about .single_adapt .prices p,
    .adapt_area .adapt_about .single_adapt .adapt_content p {
        margin-bottom: 2px;
        margin-top: 10px;
    }
}

.adapt_area .adapt_about .single_adapt .prices p {
    font-size: 30px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    display: inline-block;
    margin-bottom: 2px;
    margin-top: 22px;
    line-height: 1;
}

@media (max-width: 400px) {
    .adapt_area .adapt_about .single_adapt .prices p {
        font-size: 20px;
        margin-top: 10px;
    }
}

@media (min-width: 401px) and (max-width: 1200px) {
    .adapt_area .adapt_about .single_adapt .prices p {
        font-size: 24px;
        margin-top: 10px;
    }
}

.anipat_bg_1 {
}

.contact_anipat {
    padding-bottom: var(--section-margin);
    padding-top: var(--section-margin);
    background-size: 100% 100%;
    background: no-repeat center center;
}

@media (max-width: 767px) {
    .contact_anipat {
        background-size: cover;
    }
}

.phone-link {
    color: var(--text-color-default);
    font-weight: 600;
}

/*=================== contact banner start ====================*/

.dropdown .dropdown-menu {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/*=================== contact banner end ====================*/
/*=================== contact form start ====================*/

.contact-title {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-contact label {
    font-size: 14px;
}

.form-contact .form-group {
    margin-bottom: 30px;
}

.form-contact .form-control {
    border: 1px solid #e5e6e9;
    border-radius: 0;
    height: 48px;
    padding-left: 18px;
    font-size: 13px;
    background: transparent;
}

.form-contact .form-control:focus {
    outline: 0;
    box-shadow: none;
}

.form-contact .form-control::placeholder {
    font-weight: 300;
    color: #999999;
}

.form-contact textarea {
    border-radius: 0;
    height: 100% !important;
}

/*=================== contact form end ====================*/
/* Contact Success and error Area css
============================================================================================ */

.modal-message .modal-dialog {
    position: absolute;
    top: 36%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) !important;
    margin: 0;
    max-width: 500px;
    width: 100%;
}

.modal-message .modal-dialog .modal-content .modal-header {
    text-align: center;
    display: block;
    border-bottom: none;
    padding-top: 50px;
    padding-bottom: 50px;
}

.modal-message .modal-dialog .modal-content .modal-header .close {
    position: absolute;
    right: -15px;
    top: -15px;
    padding: 0;
    color: #fff;
    opacity: 1;
    cursor: pointer;
}

.modal-message .modal-dialog .modal-content .modal-header h2 {
    display: block;
    text-align: center;
    padding-bottom: 10px;
}

.modal-message .modal-dialog .modal-content .modal-header p {
    display: block;
}

.text-heading {
    margin-bottom: 30px;
    font-size: 24px;
}

b {
    font-weight: bold;
}

.slider_area .single_slider {
    margin-bottom: 0;
    padding: var(--section-margin) 0;
}

.main-hero-h1-row {
    background: linear-gradient(90deg, var(--accent-color-dark) 0%, var(--accent-color-light) 100%);
}

.hero-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    right: 0;
}

.hero-img img {
    width: min(648px, 100%);
    height: 100%;
    object-fit: contain;
}

.slider_area h1 b {
    font-weight: inherit;
}

.hero-buttons-block {
    margin-top: 50px;
}

@media (max-width: 767px) {
    .hero-buttons-block {
        margin-top: 30px;
    }
}

.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
    color: #828bb2;
}

.button-area {
    background: #fff;
}

.button-area .border-top-generic {
    padding: 70px 15px;
    border-top: 1px dotted #eee;
}

.button-group-area .genric-btn {
    margin-right: 10px;
    margin-top: 10px;
}

.button-group-area .genric-btn:last-child {
    margin-right: 0;
}

.genric-btn {
    display: inline-block;
    outline: none;
    line-height: 40px;
    padding: 0 30px;
    font-size: .8em;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.genric-btn:focus {
    outline: none;
}

.genric-btn.e-large {
    padding: 0 40px;
    line-height: 50px;
}

.genric-btn.large {
    line-height: 45px;
}

.genric-btn.medium {
    line-height: 30px;
}

.genric-btn.small {
    line-height: 25px;
}

.genric-btn.radius {
    border-radius: 3px;
}

.genric-btn.circle {
    border-radius: 20px;
}

.genric-btn.arrow {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.genric-btn.arrow span {
    margin-left: 10px;
}

.genric-btn.default {
    color: #415094;
    background: #f9f9ff;
    border: 1px solid transparent;
}

.genric-btn.default:hover {
    border: 1px solid #f9f9ff;
    background: #fff;
}

.genric-btn.default-border {
    border: 1px solid #f9f9ff;
    background: #fff;
}

.genric-btn.default-border:hover {
    color: #415094;
    background: #f9f9ff;
    border: 1px solid transparent;
}

.genric-btn.primary {
    color: #fff;
    background: #222222;
    border: 1px solid transparent;
}

.genric-btn.primary:hover {
    color: #222222;
    border: 1px solid #222222;
    background: #fff;
}

.genric-btn.primary-border {
    color: #222222;
    border: 1px solid #222222;
    background: #fff;
}

.genric-btn.primary-border:hover {
    color: #fff;
    background: #222222;
    border: 1px solid transparent;
}

.genric-btn.success {
    color: #fff;
    background: #4cd3e3;
    border: 1px solid transparent;
}

.genric-btn.success:hover {
    color: #4cd3e3;
    border: 1px solid #4cd3e3;
    background: #fff;
}

.genric-btn.success-border {
    color: #4cd3e3;
    border: 1px solid #4cd3e3;
    background: #fff;
}

.genric-btn.success-border:hover {
    color: #fff;
    background: #4cd3e3;
    border: 1px solid transparent;
}

.genric-btn.info {
    color: #fff;
    background: #38a4ff;
    border: 1px solid transparent;
}

.genric-btn.info:hover {
    color: #38a4ff;
    border: 1px solid #38a4ff;
    background: #fff;
}

.genric-btn.info-border {
    color: #38a4ff;
    border: 1px solid #38a4ff;
    background: #fff;
}

.genric-btn.info-border:hover {
    color: #fff;
    background: #38a4ff;
    border: 1px solid transparent;
}

.genric-btn.warning {
    color: #fff;
    background: #f4e700;
    border: 1px solid transparent;
}

.genric-btn.warning:hover {
    color: #f4e700;
    border: 1px solid #f4e700;
    background: #fff;
}

.genric-btn.warning-border {
    color: #f4e700;
    border: 1px solid #f4e700;
    background: #fff;
}

.genric-btn.warning-border:hover {
    color: #fff;
    background: #f4e700;
    border: 1px solid transparent;
}

.genric-btn.danger {
    color: #fff;
    background: #f44a40;
    border: 1px solid transparent;
}

.genric-btn.danger:hover {
    color: #f44a40;
    border: 1px solid #f44a40;
    background: #fff;
}

.genric-btn.danger-border {
    color: #f44a40;
    border: 1px solid #f44a40;
    background: #fff;
}

.genric-btn.danger-border:hover {
    color: #fff;
    background: #f44a40;
    border: 1px solid transparent;
}

.genric-btn.link {
    color: #415094;
    background: #f9f9ff;
    text-decoration: underline;
    border: 1px solid transparent;
}

.genric-btn.link:hover {
    color: #415094;
    border: 1px solid #f9f9ff;
    background: #fff;
}

.genric-btn.link-border {
    color: #415094;
    border: 1px solid #f9f9ff;
    background: #fff;
    text-decoration: underline;
}

.genric-btn.link-border:hover {
    color: #415094;
    background: #f9f9ff;
    border: 1px solid transparent;
}

.genric-btn.disable {
    color: #222222;
    opacity: 0.3;
    background: #f9f9ff;
    border: 1px solid transparent;
    cursor: not-allowed;
}

.generic-blockquote {
    padding: 30px 50px 30px 30px;
    background: #f9f9ff;
    border-left: 2px solid #222222;
}

.progress-table-wrap {
    overflow-x: scroll;
}

.progress-table {
    background: #f9f9ff;
    padding: 15px 0 30px 0;
    min-width: 800px;
}

.progress-table .serial {
    width: 11.83%;
    padding-left: 30px;
}

.progress-table .country {
    width: 28.07%;
}

.progress-table .visit {
    width: 19.74%;
}

.progress-table .percentage {
    width: 40.36%;
    padding-right: 50px;
}

.progress-table .table-head {
    display: flex;
}

.progress-table .table-head .serial,
.progress-table .table-head .country,
.progress-table .table-head .visit,
.progress-table .table-head .percentage {
    color: #415094;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 500;
}

.progress-table .table-row {
    padding: 15px 0;
    border-top: 1px solid #edf3fd;
    display: flex;
}

.progress-table .table-row .serial,
.progress-table .table-row .country,
.progress-table .table-row .visit,
.progress-table .table-row .percentage {
    display: flex;
    align-items: center;
}

.progress-table .table-row .country img {
    margin-right: 15px;
}

.progress-table .table-row .percentage .progress {
    width: 80%;
    border-radius: 0;
    background: transparent;
}

.progress-table .table-row .percentage .progress .progress-bar {
    height: 5px;
    line-height: 5px;
}

.progress-table .table-row .percentage .progress .progress-bar.color-1 {
    background-color: #6382e6;
}

.progress-table .table-row .percentage .progress .progress-bar.color-2 {
    background-color: #e66686;
}

.progress-table .table-row .percentage .progress .progress-bar.color-3 {
    background-color: #f09359;
}

.progress-table .table-row .percentage .progress .progress-bar.color-4 {
    background-color: #73fbaf;
}

.progress-table .table-row .percentage .progress .progress-bar.color-5 {
    background-color: #73fbaf;
}

.progress-table .table-row .percentage .progress .progress-bar.color-6 {
    background-color: #6382e6;
}

.progress-table .table-row .percentage .progress .progress-bar.color-7 {
    background-color: #a367e7;
}

.progress-table .table-row .percentage .progress .progress-bar.color-8 {
    background-color: #e66686;
}

.single-gallery-image {
    margin-top: 30px;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    height: 200px;
}

.list-style {
    width: 14px;
    height: 14px;
}

.unordered-list li {
    position: relative;
    padding-left: 30px;
    line-height: 1.82em !important;
}

.unordered-list li:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border: 3px solid #222222;
    background: #fff;
    top: 4px;
    left: 0;
    border-radius: 50%;
}

.ordered-list {
    margin-left: 30px;
}

.ordered-list li {
    list-style-type: decimal-leading-zero;
    color: #222222;
    font-weight: 500;
    line-height: 1.82em !important;
}

.ordered-list li span {
    font-weight: 300;
    color: #828bb2;
}

.ordered-list-alpha li {
    margin-left: 30px;
    list-style-type: lower-alpha;
    color: #222222;
    font-weight: 500;
    line-height: 1.82em !important;
}

.ordered-list-alpha li span {
    font-weight: 300;
    color: #828bb2;
}

.ordered-list-roman li {
    margin-left: 30px;
    list-style-type: lower-roman;
    color: #222222;
    font-weight: 500;
    line-height: 1.82em !important;
}

.ordered-list-roman li span {
    font-weight: 300;
    color: #828bb2;
}

.single-input {
    display: block;
    width: 100%;
    line-height: 40px;
    border: none;
    outline: none;
    background: #f9f9ff;
    padding: 0 20px;
}

.single-input:focus {
    outline: none;
}

.input-group-icon {
    position: relative;
}

.input-group-icon .icon {
    position: absolute;
    left: 20px;
    top: 0;
    line-height: 40px;
    z-index: 3;
}

.input-group-icon .icon i {
    color: #797979;
}

.input-group-icon .single-input {
    padding-left: 45px;
}

.default-switch {
    width: 35px;
    height: 17px;
    border-radius: var(--card-border-radius);
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.default-switch input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.default-switch input + label {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #222222;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.default-switch input:checked + label {
    left: 19px;
}

.primary-switch {
    width: 35px;
    height: 17px;
    border-radius: var(--card-border-radius);
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.primary-switch input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.primary-switch input + label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.primary-switch input + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: var(--card-border-radius);
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.primary-switch input + label:after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.primary-switch input:checked + label:after {
    left: 19px;
}

.primary-switch input:checked + label:before {
    background: #222222;
}

.confirm-switch {
    width: 35px;
    height: 17px;
    border-radius: var(--card-border-radius);
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.confirm-switch input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.confirm-switch input + label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.confirm-switch input + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: var(--card-border-radius);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
}

.confirm-switch input + label:after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.confirm-switch input:checked + label:after {
    left: 19px;
}

.confirm-switch input:checked + label:before {
    background: #4cd3e3;
}

.primary-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.primary-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.primary-checkbox input + label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

.primary-checkbox input:checked + label {
    background: url(../img/elements/primary-check.png) no-repeat center center/cover;
    border: none;
}

.confirm-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.confirm-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.confirm-checkbox input + label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

.confirm-checkbox input:checked + label {
    background: url(../img/elements/success-check.png) no-repeat center center/cover;
    border: none;
}

.disabled-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.disabled-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.disabled-checkbox input + label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

.disabled-checkbox input:disabled {
    cursor: not-allowed;
    z-index: 3;
}

.disabled-checkbox input:checked + label {
    background: url(../img/elements/disabled-check.png) no-repeat center center/cover;
    border: none;
}

.primary-radio {
    width: 16px;
    height: 16px;
    border-radius: var(--card-border-radius);
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.primary-radio input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.primary-radio input + label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--card-border-radius);
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

.primary-radio input:checked + label {
    background: url(../img/elements/primary-radio.png) no-repeat center center/cover;
    border: none;
}

.confirm-radio {
    width: 16px;
    height: 16px;
    border-radius: var(--card-border-radius);
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.confirm-radio input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.confirm-radio input + label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--card-border-radius);
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

.confirm-radio input:checked + label {
    background: url(../img/elements/success-radio.png) no-repeat center center/cover;
    border: none;
}

.disabled-radio {
    width: 16px;
    height: 16px;
    border-radius: var(--card-border-radius);
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

.disabled-radio input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.disabled-radio input + label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--card-border-radius);
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

.disabled-radio input:disabled {
    cursor: not-allowed;
    z-index: 3;
}

.disabled-radio input:checked + label {
    background: url(../img/elements/disabled-radio.png) no-repeat center center/cover;
    border: none;
}

.default-select {
    height: 40px;
}

.default-select .nice-select {
    border: none;
    border-radius: 0;
    height: 40px;
    background: #f9f9ff;
    padding-left: 20px;
    padding-right: 40px;
}

.default-select .nice-select .list {
    margin-top: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    padding: 10px 0 10px 0;
}

.default-select .nice-select .list .option {
    font-weight: 300;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    line-height: 28px;
    min-height: 28px;
    font-size: 12px;
    padding-left: 20px;
}

.default-select .nice-select .list .option.selected {
    color: #222222;
    background: transparent;
}

.default-select .nice-select .list .option:hover {
    color: #222222;
    background: transparent;
}

.default-select .current {
    margin-right: 50px;
    font-weight: 300;
}

.default-select .nice-select::after {
    right: 20px;
}

.form-select {
    height: 40px;
    width: 100%;
}

.form-select .nice-select {
    border: none;
    border-radius: 0;
    height: 40px;
    background: #f9f9ff;
    padding-left: 45px;
    padding-right: 40px;
    width: 100%;
}

.form-select .nice-select .list {
    margin-top: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    padding: 10px 0 10px 0;
}

.form-select .nice-select .list .option {
    font-weight: 300;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    line-height: 28px;
    min-height: 28px;
    font-size: 12px;
    padding-left: 45px;
}

.form-select .nice-select .list .option.selected {
    color: #222222;
    background: transparent;
}

.form-select .nice-select .list .option:hover {
    color: #222222;
    background: transparent;
}

.form-select .current {
    margin-right: 50px;
    font-weight: 300;
}

.form-select .nice-select::after {
    right: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.section-top-border {
    padding: 50px 0;
    border-top: 1px dotted #eee;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.switch-wrap {
    margin-bottom: 10px;
}

.contacts-table td {
    vertical-align: top;
    padding-right: 10px;
    padding-top: 10px;
    text-align: left;
}

@media (max-width: 767px) {
    .contact_anipat .contact_text .section_title p {
        color: black;
        margin-top: 35px;
        margin-bottom: 50px;
    }
}

.medium_icon {
    width: 24px;
    height: 24px;
    margin-right: 20px;
}

.main_block_list li {
    margin: 10px 0;
    list-style-type: none;
}

.main_block_list img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.service_area .service_variant {
    padding: 30px;
    /*min-height: 150px;*/
    box-shadow: 0 4px 16px #00000010;
}

@media (max-width: 767px) {
    .service_area .service_variant {
        padding: 20px;
    }
}

.service_area p.price,
.service_area .service_variant .service_content p.price {
    margin-bottom: 0;
    padding-top: 20px;
    min-height: 20px;
    font-size: 35px;
    font-weight: normal;
}

@media (max-width: 767px) {
    .service_area p.price,
    .service_area .service_variant .service_content p.price {
        font-size: 19px;
    }
}

.service_area p.price strong,
.service_area .service_variant .service_content p.price strong {
    color: var(--accent-color-middle);
    font-weight: normal;
}

.service_area .service_variant .service_content h3 {
    margin-top: 25px;
    margin-bottom: 25px;
}

.section-seo-regions .service_content img {
    width: 50px;
    height: 50px;
}

.service-site-option-cover {
    width: 100%;
    object-fit: contain;
    max-height: 600px;
    margin-top: -50px;
}

@media (max-width: 1280px) {
    .service-site-option-cover {
        max-height: 400px;
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .service-site-option-cover {
        max-height: 350px;
        margin-top: -30px;
        margin-bottom: 20px;
    }
}

.site-preview {
    width: 100%;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .mobile-half {
        width: 50%;
    }
}

.section-prices .row .col-12:nth-child(2n) {
    background: #0961b708;
}

.prices-block {
    display: flex;
    padding-top: 15px;
    padding-bottom: 15px;
}

.prices-text-block {
    display: grid;
    width: 100%;
    padding-top: 10px;
}

.prices-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 400px) {
    .prices-line h3 {
        font-size: 18px;
    }
}

.prices-line p {
    color: var(--accent-color-dark);
    margin-bottom: 5px;
    min-width: 100px;
    padding-left: 10px;
    text-align: end;
}

.v-gap {
    row-gap: 30px;
}

@media (max-width: 767px) {
    .v-gap {
        gap: 30px;
    }
}

.section-android-portfolio h3 {
    color: black;
    font-size: 30px;
    margin: 0;
}

@media (max-width: 1280px) {
    .section-android-portfolio h3 {
        font-size: 22px;
    }
}

@media (max-width: 500px) {
    .section-android-portfolio h3 {
        font-size: 18px;
    }
}

.section-android-portfolio a {
    margin-bottom: 20px;
    width: 100%;
}

@media (max-width: 990px) {
    .section-android-portfolio a {
    }
}

.section-android-portfolio img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .section-android-portfolio img {
        max-height: 300px;
    }
}

/*# sourceMappingURL=style_v1.css.map */

.footer-contacts li {
    margin-bottom: 10px;
}

.footer-contacts p,
.footer-contacts a {
    display: flex;
    column-gap: 15px;
}

.footer-contacts a:hover {
    color: var(--accent-color-middle);
}

.footer-contacts p img,
.footer-contacts a img {
    width: 24px;
    height: 24px;
}

.contacts-block {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.contacts-block p,
.contacts-block a {
    display: flex;
    column-gap: 10px;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: var(--text-color-dark);
}

@media (max-width: 1440px) {
    .contacts-block p,
    .contacts-block a {
        font-size: 17px;
        font-weight: normal;
    }
}

@media (max-width: 767px) {
    .contacts-block p,
    .contacts-block a {
        font-size: 17px;
        font-weight: normal;
    }

    .contacts-block p {
        font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    }
}

.contacts-block a:hover {
    color: var(--accent-color-dark);
}

.contacts-block p {
    align-items: flex-start;
}

.contacts-block p img,
.contacts-block a img {
    height: 32px;
    width: 32px;
}

.contacts-block > * {
    width: fit-content;
}

.contacts-block a .hint {
    font-weight: normal;
    font-size: 15px;
    color: var(--text-color-light);
}

@media (max-width: 767px) {
    .contacts-block a .hint {
        font-size: 13px;
    }
}

.section-contacts form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    max-width: 320px;
}

.section-contacts iframe {
    max-height: 500px;
    width: 100%;
    border-radius: var(--card-border-radius);
}

.section-contacts form h4 {
    margin-bottom: 20px;
    text-align: center;
}

.section-contacts label {
    margin: 10px 0;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    width: 100%;
}

input,
textarea,
.nice-select,
select {
    padding: 10px 20px 10px 50px;
    border: 0 solid var(--accent-color-lighter);
    border-radius: 5px;
    outline: none;
    width: 100%;
    resize: none;
    min-height: 50px;
}

.modal-body form input,
.modal-body form textarea,
.modal-body form .nice-select,
.modal-body form select {
    border: 2px solid var(--accent-color-lighter);
}

/*.modal-body form button[type="submit"],
.section-contacts button[type="submit"] {
    background-color: var(--accent-color-middle);
    color: white;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    padding: 14px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}*/

.section-contacts button[type="submit"]:hover {
    background-color: var(--secondary-color);
}

.social-buttons {
    display: flex;
    column-gap: 20px;
    align-items: center;
}

.social-buttons a:not(.boxed-btn-solid):not(.boxed-btn-outline) img {
    height: 40px;
    width: 40px;
    margin: 0;
}

/*noinspection CssInvalidPseudoSelector*/
*:has(> img.photo-zoom) {
    overflow: hidden;
    /*noinspection CssInvalidPropertyValue*/
    overflow-wrap: anywhere;
}

img.photo-zoom {
    display: flex;
    align-items: flex-end;

    transform-origin: center;
    transition: transform 1.5s cubic-bezier(.22, 1, .36, 1);

    grid-area: overlap;
    align-self: center;
    justify-self: center;
}

*:has(> img.photo-zoom):hover > img.photo-zoom,
img.photo-zoom:hover {
    transform: scale(1.06);
}

/*.header-area .header-container,*/
/*.header-area .header-container .row {*/
.header-area > * > * > *,
.header-area > * > *,
.header-area > * {
    height: 100%;
}

.nice-select {
    width: 100%;
    line-height: inherit;
    display: flex;
    align-items: center;
}

.nice-select span {
    font-size: 16px;
}

.nice-select::after {
    height: 10px;
    width: 10px;
    right: 20px;
}

form {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 500px) {
    .slider-area .main_block_list ul li {
        font-size: 14px;
    }
}

.header-mobile .header-contacts {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 20px;
    justify-content: flex-end;
    align-items: center;
}

.offcanvas-body .header-contacts {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 40px;
}

.offcanvas-body .header-contacts .header-phone-style b {
    font-size: 20px;
}

.main_block_list {
    list-style-image: url('./../img/icons/icon-checkbox.svg');
}

.slider_area table tr td,
.slider_area table tr {
    display: flex;
    align-items: flex-start;
}

.slider_area table tr td {
    padding-top: 10px;
}

.slider_area table tr td img {
    margin-right: 10px;
}

div:has(> .portfolio-item) {
    padding-bottom: 0;
}

.portfolio-item:has(> img.photo-zoom),
.portfolio-item {
    /*background-color: var(--back-alt1-color);*/
    padding: 15px;
    /*height: 500px;*/
    /*overflow: hidden;*/
    overflow: initial;
    /*border-bottom: 1px solid #f0f0f0;*/
    display: block;
}

.portfolio-item img {
    width: 100%;
    max-height: 700px;
    /*height: auto;*/
    object-fit: cover;
    object-position: top;
    box-shadow: 0 0 20px 0 #00000040;
}

.portfolio-item h4 {
    margin-bottom: 16px;
    /* color: var(--text-color-description); */
    color: #707088;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}

@media (max-width: 767px) {
    .portfolio-item:has(> img.photo-zoom),
    .portfolio-item {
        padding: 0;
    }

    .portfolio-item img {
        max-height: 400px;
    }

    .portfolio-item h4 {
        margin-bottom: 10px;
    }
}

.hero2-content {
    background-color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 30px 30px 0 30px;
    position: relative;
}

.hero2-content:after,
.hero2-content:before {
    content: url(../img/icons/icon-white-corner-right.svg);
    position: absolute;
    bottom: 0;
    line-height: 0.1;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hero2-content:before {
    content: url(../img/icons/icon-white-corner-right.svg);
    left: 0;
    transform: translateX(-100%);
}

.hero2-content:after {
    content: url(../img/icons/icon-white-corner-left.svg);
    right: 0;
    transform: translateX(100%);
}

div:has(> .hero2-content) {
    overflow: hidden;
}

.hero2-content h3,
.hero2-content li {
    font-family: Roboto, sans-serif;
    font-size: 22px;
}

@media (max-width: 767px) {
    .hero2-content h3,
    .hero2-content li {
        font-size: 16px;
    }
}

.hero2-content h3 {
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--accent-color-middle);
}

.hero2-content ul {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.hero2-content ul li {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    line-height: 1;
}

.hero2-content ul li:before {
    content: url('../img/icons/icon-checked-round.svg');
    margin-right: 10px;
    line-height: 1;
    /*height: 1em;*/
}

.hero-2-buttons-area .buttons-row {
    padding: 0 10px 0 30px;
}

@media (max-width: 767px) {
    .hero2-content h3 {
        margin-bottom: 10px;
    }

    .hero2-content {
        background-color: white;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 20px 15px 0 15px;
    }

    .hero2-content ul {
        row-gap: 10px;
    }

    .hero-2-buttons-area .buttons-row {
        padding: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
}

.hero-2-buttons-area .buttons-row button,
.hero-2-buttons-area .buttons-row a {
    margin: 0;
}

.hero-2-buttons-area {
    padding-top: 40px;
}

@media (max-width: 767px) {
    .hero-2-buttons-area {
        padding-top: 30px;
    }
}

.slider_area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.row:has(.services-add-block) {
    margin-top: 30px;
}

.services-add-block {
    border-radius: var(--card-border-radius);
    /*border: 2px solid #f0f0f0;*/
    /*padding: 20px;*/
}

@media (max-width: 767px) {
    .services-add-block {
        padding: 20px 0;
    }
}

.services-add-block:hover {
    /*border: 2px solid var(--accent-color-lighter);*/
}

.services-add-block ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
}

.services-add-block ul li {
    list-style: none;
    line-height: 1.3;
    margin-bottom: 0;
    background-color: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 16px var(--color-shadow);
    transition: 0.3s;
}

.services-add-block ul li a {
    color: var(--text-color-default);
}

.services-add-block ul li:hover {
    /*background-color: var(--accent-color-lighter);*/
    box-shadow: 0 4px 16px var(--color-shadow), inset 0 0 0 2px var(--accent-color-lighter);
}

.column-gap-20 {
    column-gap: 20px;
}

.row-gap-10 {
    row-gap: 10px;
}

.flex-column {
    flex-direction: column;
}

a.social img {
    width: 36px;
    height: 36px;
}

a.social.larger img {
    width: 48px;
    height: 48px;
}

.align-items-center {
    align-items: center;
}

.text-color-light {
    color: var(--text-color-light);
}

.align-items-end {
    align-items: flex-end;
}

.adapt_area .section_title {
    margin-bottom: 40px;
}

footer a {
    /*color: var(--text-color-dark);*/
    color: var(--text-color-default);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.col-12.colored-back {
    border-radius: var(--card-border-radius);
}

footer ul {
    padding-left: 0;
}

footer h4 {
    margin-bottom: 16px;
}

footer ul li {
    margin-bottom: 0.5em;
}

footer ul li a:hover {
    color: var(--accent-color-middle);
}

footer .footer-contacts a {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.footer-social {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.footer-social img {
    transition: 0.3s;
}

.footer-social img:hover {
    transform: scale(1.1);
}

.copyright {
    color: #9DA5AF;
    margin-bottom: 10px;
}

.section-contacts .row,
footer .row {
    row-gap: 30px;
}

body > .wrapper {
    width: 100%;
    overflow-x: hidden;
}

.offcanvas-body .header-contacts {
    margin-left: 0;
}

.modal-body h4 {
    margin-bottom: 20px;
}

.section-portfolio h5 {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .section-portfolio .row .col-12:nth-child(2n) {
        transform: translateY(40%);
    }
}

.section-portfolio {
    background-color: var(--accent-color-lightest);
    /*border-bottom: 2px solid var(--accent-color-darker);*/
    overflow-y: hidden;
    padding-top: 20px;
    /*padding-top: calc(3 * var(--section-margin));*/
    /*padding-bottom: calc(3 * var(--section-margin));*/
}

@media (max-width: 991px) {
    .section-portfolio {
        /*padding-bottom: var(--section-margin);*/
    }
}

.list-style-disc li,
li.list-style-disc {
    list-style: disc;
}

.section-seo-regions {
    padding-top: 0;
}

.section-seo-regions .service_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.section-service-site-options ul {
    margin-top: 10px;
    color: var(--text-color-dark);
}

.section-service-site-options ul li {
    color: var(--text-color-dark);
    font-size: 1.125em;
}

.section-service-site-options h3 {
    margin-bottom: 15px;
}

.section-service-site-options .row {
    margin-bottom: 50px;
}

@media (max-width: 767px) {

    .section-service-site-options h3 {
        text-align: center;
    }

    .section-service-site-options #service-site-landing {
        content: url('../img/photos/service-site-landing-mobile.png');
    }

    .section-service-site-options #service-site-business {
        content: url('../img/photos/service-site-business-mobile.png');
    }

    .section-service-site-options #service-site-shop {
        content: url('../img/photos/service-site-shop-mobile.png');
    }
}

.section-service-android .single_service img {
    max-height: 400px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .section-service-android .single_service img {
        max-height: 300px;
    }
}

.small-icons img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

#modal-contact-all-ways .contacts-block {
    row-gap: 0;
}

#modal-contact-all-ways .modal-body p,
#modal-contact-all-ways .modal-body h4 {
    margin-bottom: 10px;
}

#modal-contact-all-ways .contacts-block h5 {
    margin-top: 30px;
}

#modal-contact-all-ways .contacts-block form {
    row-gap: 10px;
}

#modal-contact-all-ways .contacts-block form button {
    margin: 0;
}

.requisites {
    opacity: 0.5;
    margin-top: 20px;
}

.pay-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.pay-logos img {
    height: 30px;
    width: auto;
}

.font-small {
    font-size: 14px;
    color: #696969;
}

@media (max-width: 767px) {
    .font-small {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .clients-logos.row > * {
        padding-right: calc(var(--bs-gutter-x) * .25);
        padding-left: calc(var(--bs-gutter-x) * .25);
    }
}

.portfolio-category-buttons-group {
    display: flex;
    align-items: start;
    column-gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .portfolio-category-buttons-group {
        column-gap: 5px;
    }
}

.portfolio-category-buttons-group {

}

.portfolio-category-buttons-group::before {
    content: "";
    background-color: var(--accent-color-middle);
    height: 2px;
    width: 100vw;
    position: absolute;
    top: 68px;
    left: 0;
    z-index: 1;
}

.section-portfolio {
    position: relative;
    overflow-x: hidden;
}

.portfolio-category-button {
    flex: 1;
    background-color: white;
    padding: 0 24px;
    border-top: 2px solid white;
    border-left: 2px solid white;
    border-right: 2px solid white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    color: black;
    width: fit-content;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
    font-size: 1.125rem;
    font-weight: 500;
    box-shadow: 0 -2px 8px #00000015;
    cursor: pointer;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .portfolio-category-button {
        padding: 0 5px 0 10px;
        font-size: 0.85rem;
    }
}

.portfolio-category-button.active {
    border-top: 2px solid var(--accent-color-middle);
    border-left: 2px solid var(--accent-color-middle);
    border-right: 2px solid var(--accent-color-middle);
    border-bottom: 2px solid white;
    z-index: 2;
}

.portfolio-block {
    display: none;
}

.portfolio-block.active {
    display: block;
}