:root {
    --red: #e3000f;
    --white: #ffffff;
    --gray: #383937;
    --silver: #cfd0d0;
    --ash: #9d9e9e;
    --slategray: #878988;
}
@font-face {
  font-display: swap;
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/barlow-v12-latin-regular.eot'); 
  src: url('../fonts/barlow-v12-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/barlow-v12-latin-regular.woff2') format('woff2'),
       url('../fonts/barlow-v12-latin-regular.woff') format('woff'), 
       url('../fonts/barlow-v12-latin-regular.ttf') format('truetype'),
       url('../fonts/barlow-v12-latin-regular.svg#Barlow') format('svg');
}
@font-face {
  font-display: swap;
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/barlow-v12-latin-500.eot'); 
  src: url('../fonts/barlow-v12-latin-500.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/barlow-v12-latin-500.woff2') format('woff2'),
       url('../fonts/barlow-v12-latin-500.woff') format('woff'), 
       url('../fonts/barlow-v12-latin-500.ttf') format('truetype'),
       url('../fonts/barlow-v12-latin-500.svg#Barlow') format('svg');
}
@font-face {
  font-display: swap;
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/barlow-v12-latin-600.eot'); 
  src: url('../fonts/barlow-v12-latin-600.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/barlow-v12-latin-600.woff2') format('woff2'),
       url('../fonts/barlow-v12-latin-600.woff') format('woff'), 
       url('../fonts/barlow-v12-latin-600.ttf') format('truetype'),
       url('../fonts/barlow-v12-latin-600.svg#Barlow') format('svg');
}
@font-face {
  font-display: swap;
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/barlow-v12-latin-700.eot'); 
  src: url('../fonts/barlow-v12-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/barlow-v12-latin-700.woff2') format('woff2'),
       url('../fonts/barlow-v12-latin-700.woff') format('woff'), 
       url('../fonts/barlow-v12-latin-700.ttf') format('truetype'),
       url('../fonts/barlow-v12-latin-700.svg#Barlow') format('svg');
}

body {
    font-size: 1rem;
    margin: 0px;
    font-family: 'Barlow';
    padding: 0px;
    overflow-x: hidden;
}
html, body {
    overflow-x: hidden;
}
h1 , h2 , h3 , h4 , h5 , h6{
    margin: 0;
    padding: 0px;
}
h2 {
    font-size: 2.75rem;
    color: var(--red);
}
h3 {
  font-size: 2rem;
}
p {
  font-size: 1.25rem;
  margin-bottom: 0;
  font-weight: 400;
  color: var(--gray);
  line-height: 28px;
}
ul , ol{
    margin: 0;
    padding: 0px;
    list-style: none;
}
ul li , ol li{
    margin: 0;
    padding: 0px;   
    list-style: none;
}
img{
    max-width: 100%;
}
a , a:hover , a:focus , a:visited , button , input , textarea , img{
    text-decoration: none !important;
    outline: none !important;
}
address {
    margin: 0;
}
textarea{
    height: 10.363rem;
    resize: none;
    margin-top: 1.25rem;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
}
::-webkit-input-placeholder{
    opacity: 1 !important;
}
::-moz-placeholder{
    opacity: 1 !important;
}
:-ms-input-placeholder{ 
    opacity: 1 !important;
}
:-moz-placeholder{
    opacity: 1 !important;
}
section{
    position: relative;
    clear: both;
}
section:before , section:after{
    clear: both;
    display: table;
    content: "";
}

/*MOBILE HUMBERGER */
.hamburger-menu{
  display: flex;
  width: auto;
  position: relative;
  z-index: 999999;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  display: none;
}
.hamburger-menu a{
  display: inline-block;
  width: 40px;
  height: 35px;
}
.burger {
  height: 3em;
  width: 34px;
  position: relative;
  font-size: 0.75rem;
  cursor: pointer;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  -webkit-tap-highlight-color: transparent;
}
.burger::after {
  content: "";
  display: block;
  position: absolute;
  height: 150%;
  width: 150%;
  top: -25%;
  left: -25%;
}
.burger.burger-squeeze .burger-lines::after, .burger.burger-squeeze .burger-lines::before {
  width: 2em;
}
.burger .burger-lines::after {
  left: 0;
  top: -0.8em;
}
.burger .burger-lines::before {
  left: 0em;
  top: 0.8em;
}
.burger.burger-squeeze .burger-lines, .burger.burger-squeeze .burger-lines::after, .burger.burger-squeeze .burger-lines::before {
  transition: top .2s .2s,left .1s,transform .2s,background-color .4s .2s;
}
.burger .burger-lines, .burger .burger-lines::after, .burger .burger-lines::before {
  pointer-events: none;
  display: block;
  content: "";
  width: 100%;
  border-radius: .25em;
  background-color: var(--red);
  height: .25em;
  position: absolute;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.hamburger-menu-on.active .burger .burger-lines, .hamburger-menu-on.active .burger .burger-lines::after, .hamburger-menu-on.active .burger .burger-lines::before{
  background: rgba(255, 255, 255, 0.3);
}
.hamburger-menu.hamburger-menu-on.active {
  position: relative;
  margin-left: 0.938rem;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.close-humb .burger .burger-lines, .close-humb .burger .burger-lines::after, .close-humb .burger .burger-lines::before{
  background: var(--white);
}
.burger .burger-lines {
  top: 50%;
  margin-top: -.125em;
  width: 2.5em;
}
.burger.burger-squeeze .burger-lines::after, .burger.burger-squeeze .burger-lines::before {
  width: 34px;
  left: -.3em;
}
.burger.burger-squeeze.open .burger-lines::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.burger.burger-squeeze.open .burger-lines::after, .burger.burger-squeeze.open .burger-lines::before {
  left: 0;
  top: 0;
}
.burger.burger-squeeze.open .burger-lines, .burger.burger-squeeze.open .burger-lines::after, .burger.burger-squeeze.open .burger-lines::before {
  transition: background-color .2s,top .2s,left .2s,transform .2s .15s;
}
.burger.burger-squeeze.open .burger-lines::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.burger.burger-squeeze.open .burger-lines {
  background-color: initial;
}

.header_wrapper {
  position: relative;
}
.header_inner {
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  z-index: 99;
}
.nav_blck {
  display: flex;
}
.nav_right {
  margin-top: 1.375rem;
}
.nav_top span, .nav_bottom span {
  display: block;
  font-size: 2.813rem;
  color: var(--white);
  font-weight: 500;
}
.nav_bottom li {
  display: inline-block;
}
.nav_bottom li a {
  font-size: 1.438rem;
  color: var(--gray);
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.nav_bottom li a.act, .nav_bottom li a:hover {
    color: var(--white);
}
.nav_bottom li a::before {
    transition: height 0.2s;
    height: 0;
    content: "";
    background-color: var(--red);
    position: absolute;
    top: -8px;
    left: -30px;
    width: calc(100% + 61px);
    z-index: -1;
}
.nav_bottom li a.active:before {
    height: 59px;
}
.nav_bottom li a.active {
    color: var(--white);
}
.header_inner.sticky.sticky-fixed .nav_bottom ul {
  position: fixed;
  top: 0;
  background-color: var(--white);
  width: 100%;
  left: 0;
  box-shadow: 0 0 6px #000;
  padding-bottom: 0.938rem;
  text-align: center;
  padding-top: 0.625rem;
}
.nav_bottom li a.act::before, .nav_bottom li a:hover::before {
    height: 59px;
}
.nav_top, .nav_bottom {
  position: relative;
  padding-left: 6rem;
}
.nav_top {
  padding-top: 2.438rem;
}
.nav_bottom {
  padding-top: 0.5rem;
}
.nav_top::before {
  content: "";
  background-color: var(--red);
  position: absolute;
  width: calc(100% * 5);
  top: 0;
  left: 30px;
  height: 115px;
  z-index: -1;
  margin-left: 0.625rem;
}
.nav_bottom::before {
  content: "";
  background-color: rgba(255,255,255,0.80);
  position: absolute;
  top: 9px;
  margin-left: 0.625rem;
  width: calc(100% * 5);
  height: 143px;
  left: 30px;
  z-index: -1;
}
.nav_bottom span {
    color: var(--red);
}
.nav_bottom ul {
  padding-top: 2rem;
  transition: background-color 0.4s;
}
.nav_bottom li {
  display: inline-block;
  padding-right: 3.5rem;
  position: relative;
}
.nav_bottom li:last-child {
  padding-right: 0;
}
.nav_bottom li::before {
  content: "";
  background-color: var(--ash);
  width: 1px;
  height: 47px;
  bottom: -10px;
  position: absolute;
  z-index: -1;
  right: 25px;
}
.nav_bottom li:last-child::before {
    content: unset;
}
.nav_left img {
  width: 151px;
}

.banner_wrapper > img {
  width: 100%;
  min-height: 1073px;
  object-fit: cover;
}
.ctr_box {
  width: 1414px;
  margin: 0 auto;
  transform: translateX(100px);
}
.banner_content, .content_wrapper .ctr_box {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.banner_left {
  width: calc(40% - 43px);
  background-color: var(--silver);
  margin-right: 0px;
  margin-top: -2.5rem;
  padding: 2.188rem 3.75rem 1.563rem 3.438rem;
}
.banner_left span {
  padding-left: 1.75rem;
  display: inline-block;
  padding-bottom: 2rem;
}
.banner_left span img {
  width: 303px;
  height: 337px;
  object-fit: contain;
}
.banner_left h4 {
  font-size: 1.875rem;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.banner_left li a {
  font-size: 1.25rem;
  color: var(--gray);
  transition: color 0.4s;
  font-weight: 500;
}
.banner_left li a:hover {
    color: var(--red);  
    text-decoration: underline !important;
}

.banner_right, .desp_block {
  width: 67%;
  background-color: var(--white);
  position: relative;
  margin-left: -3.75rem;
  z-index: 9;
  padding: 1.875rem 3.438rem 1.25rem 3.75rem;
}
.banner_right span, .desp_block span {
  font-size: 1.438rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--slategray);
}
.banner_right h1 {
  font-size: 2.75rem;
  color: var(--red);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1.625rem;
}
.banner_right p, .desp_block p {
  margin-bottom: 0.938rem;
}
.banner_right p b, .desp_block p b {
  font-weight: 600;
}
.banner_left li {
  padding-bottom: 0.25rem;
}
.banner_left li img {
  width: 22px;
  object-fit: contain;
  height: 25px;
  margin-right: 0.313rem;
}
.banner_left li img, .banner_left li a {
  vertical-align: middle;
}
.bmail {
  text-decoration: underline !important;
  text-underline-offset: 6px;
}

.steps_wrapper {
  padding-top: 10.313rem;
  padding-bottom: 11.563rem;
}
.step_box {
  position: relative;
  text-align: center;
  min-height: 480px;
}
.step_box::before {
  content: "";
  background-color: var(--silver);
  width: 2px;
  height: calc(100% - 38px);
  position: absolute;
  right: -22px;
  top: 50px;
}
.steps_block .col-lg-4:nth-child(3) .step_box::before {
    content: unset;
}
.steps_wrapper h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}
.steps_block .gx-6 {
    --bs-gutter-x: 2.625rem;
}
.step_img {
  height: 340px;
  margin-left: -2.813rem;
}
.step_img span {
  font-size: 4.438rem;
  color: var(--red);
  font-weight: 700;
  vertical-align: baseline;
  margin-top: 0.313rem;
  transform: translateY(4px);
  display: inline-block;
  margin-right: 0.313rem;
}
.steps_block .col-lg-4:nth-child(1) .step_icon {
    margin-left: -1.563rem;
}
.steps_block .col-lg-4:nth-child(2) .step_img span {
  transform: translateY(1px);
}
.step_bg {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 320px;
  z-index: -1;
  padding-top: 0 !important;
}
.step_icon {
  padding-top: 6.25rem;
}
.step_img h3 {
  font-size: 1.875rem;
  color: var(--red);
  font-weight: 500;
  line-height: 37.5px;
  margin-top: 1.25rem;
}
.step_box p b {
  font-weight: 500;
}
.step_box p a {
  color: var(--gray);
  font-weight: 500;
  transition: color 0.4s;
  text-decoration: underline !important;
  text-underline-offset: 4px;
}
.step_box p a:hover {
    color: var(--red);
}

.finance_wrap {
    background-image: url(../images/finance_step1_bg.jpg);
}
.content_wrapper {
  min-height: 763px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 0.313rem;
}
.content_wrapper .ctr_box {
  display: flex;
}
.desp_block {
  min-height: 603px;
}
.desp_block h2 {
  line-height: 1.1;
  margin-bottom: 1.563rem;
}
.content_img {
  transform: translateY(-40px);
}
.content_img img {
  width: 523px;
  height: 523px;
  object-fit: cover;
}
.finance_btn {
  margin-top: 3.438rem;
}
.finance_btn span {
    text-transform: none;
    vertical-align: middle;
}
.btn_bg {
  display: inline-block;
  background-color: var(--red);
  min-height: 60px;
  line-height: 60px;
  padding: 0 1.813rem;
  transition: background-color 0.4s;
  margin-right: 2.188rem;
}
.btn_bg:hover {
    background-color: #b60a07;
}
.btn_bg img {
  vertical-align: middle;
  margin-right: 0.625rem;
}
.btn_bg span {
  color: var(--white);
}
.btn_plain span {
  color: var(--red);
  transition: color 0.4s;
}
.btn_plain:hover span {
    color: #b60a07;
}
.btn_plain img {
  margin-right: 0.438rem;
  transition: filter 0.4s;
}
.btn_plain:hover img {
    filter: brightness(75%);
}



.pricredit_wrap {
    background-image: url(../images/private_bg.jpg);
}
.pricredit_wrap .desp_block {
  margin-left: -11.875rem;
  margin-right: -3.125rem;
  padding: 1.875rem 4.063rem 0 3.75rem;
}

.prodev_wrap {
    background-image: url(../images/property_bg.jpg);
}
.prodev_wrap .content_img {
  width: 523px;
  min-height: 523px;
  background-color: var(--red);
  padding: 1.875rem 5rem 1.875rem 4.188rem;
}
.prodev_wrap .content_img img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin-left: -8px;
}
.prodev_wrap .ctr_box {
  align-items: flex-start;
}
.content_img h3 {
  font-size: 1.875rem;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  margin-bottom: 2rem;
}
.content_img h3 span {
  margin-bottom: 0.375rem;
  margin-left: 0.875rem;
}
.content_img li {
  font-size: 1.25rem;
  line-height: 28px;
  color: var(--white);
  position: relative;
  padding-left: 0.438rem;
  margin-bottom: 0.938rem;
}
.content_img li::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--white);
  position: absolute;
  left: -6px;
  top: 14px;
}


.footer_wrapper {
  background-color: var(--silver);
  position: relative;
  padding-top: 5.625rem;
  padding-bottom: 0.938rem;
}
.footer_wrapper::before {
  content: "";
  background-color: var(--red);
  position: absolute;
  width: calc(100% - 163px);
  top: 0;
  right: 0;
  height: 10px;
}
.footer_left {
  display: flex;
  position: relative;
}
.footer_left::before {
  content: "";
  width: 2px;
  height: 196px;
  background-color: var(--white);
  position: absolute;
  right: 0;
  top: -10px;
}
.footer_logo {
    font-size: 1.25rem;
    color: var(--gray);
    width: 45%;
    line-height: 28px;
}
.flogo {
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
}
.footer_logo .flogo span {
    color: var(--red);
}
.flogo img, .flogo span {
  vertical-align: middle;
}
.footer_logo span {
  color: var(--gray);
}
.footer_logo address b {
  font-weight: 600;
  color: var(--red);
}
.fmail {
  display: block;
  color: var(--gray);
  font-weight: 600;
  text-decoration: underline !important;
  text-underline-offset: 6px;
  transition: color 0.4s;
  text-decoration-thickness: 2px !important;
}
.fmail:hover {
    color: var(--red);
    text-decoration: underline !important;
}
.footer_left li a {
  font-size: 1.438rem;
  color: var(--gray);
  text-transform: uppercase;
}
.footer_left li a:hover {
    text-decoration: underline !important;
}

.footer_right {
  display: flex;
  padding-left: 2.188rem;
}
.footer_pricy:nth-child(1) {
  width: 52%;
}
.footer_pricy h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray);
  line-height: 28px;
}
.footer_pricy p {
  font-size: 1.063rem;
}
.footer_pricy h4 {
  font-size: 1.063rem;
  font-weight: 600;
  line-height: 28px;
}
.footer_bot {
  padding-left: 2.188rem;
  display: flex;
  justify-content: space-between;
  padding-top: 2.813rem;
  align-items: center;
}
.footer_bot p {
  font-size: 1rem;
}

/*MODAL CONTENT*/
.modal-body h1{
    font-size: 4.313rem;
    line-height: normal;
}
.modal-body h2{
    font-size: 1.875rem;
    line-height: normal;
}
.modal-body h3{
    font-size: 1.188rem;
    line-height: normal;
    font-weight: bold;
}
.modal-body h4 {
  font-size: 2.375rem;
  line-height: 3rem;
}
.modal-body h1, .modal-body h2, .modal-body h3, .modal-body h4 {
    margin-bottom: 0.938rem;
    color: var(--theme-color);
}
.modal-body p {
  font-size: 1.25rem;
  line-height: 31.25px;
  margin-bottom: 1.25rem;
}
.modal-body a {
    color: var(--secn-color);
}
.modal{
    z-index: 111111;
}
.modal-backdrop{
    z-index: 11111;
}
.modal-dialog{
    max-width: 50%;
}
.modal-body {
    max-height: 670px;
    overflow-x: auto;
    padding: 0 1.25rem;
}
.modal-content {
    padding: 1.563rem;
    padding-top: 0.938rem;
}
.btn-close:focus{
    box-shadow: none;
}
.btn-close {
  position: absolute;
  right: -45px;
  top: 10px;
  background-color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

@media screen and (min-width: 1801px) {
    .container {
        max-width: 1618px;
    }
}

@media screen and (max-width:1199px) {

    .hamburger-menu, .nav_blck {
        display: block;
    }
    .nav_top, .nav_bottom {
        padding-left: 0.938rem;
    }
    .nav_bottom::before {
        content: unset;
    }
    .nav_bottom li a::before, .nav_bottom li::before {
        content: unset;
    }
    .nav_bottom li .active, .nav_bottom li a:hover {
        background-color: var(--red);
    }
    .nav_bottom li {
        display: block;
        padding-right: 0;
        text-align: left;
        margin-bottom: 0.938rem;
    }
    .nav_bottom li a {
        font-size: 1.125rem;
        padding: 0.625rem;
        color: var(--white);
    }
    .nav_top, .nav_bottom span {
        display: none;
    }
    .nav_right {
        margin-top: 0;
        display: block;
        position: fixed;
        width: 85%;
        height: 100%;
        background-color: #000;
        top: 0;
        right: -1199px;
        padding-top: 9.375rem;
        transition: right 0.5s;
        padding-left: 0;
        text-align: left;
    }
    .nav_right.active {
        right: 0;
    }
    .header_inner {
        background-color: rgba(255, 255, 255, 0.8);
        padding: 0.938rem 0;
        position: fixed;
        top: 0;
    }
    .nav_left {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav_left img {
        width: 80px;
        transition: width 0.2s;
    }
    .header_inner.sticky-fixed .nav_left img {
        width: 60px;
    }
    .header_inner.sticky.sticky-fixed .nav_bottom ul {
        position: unset;
        background-color: transparent;
    }
    .body-hide {
        overflow: hidden;
    }
    .banner_wrapper > img {
        min-height: 320px;
    }
    .banner_content, .content_wrapper .ctr_box {
        width: 95%;
        margin: 0 auto;
        position: relative;
        display: block;
        transform: translateX(0);
    }
    .banner_left {
        width: 100%;
        background-color: var(--silver);
        margin-right: 0;
        margin-top: -6.25rem;
        padding: 1.25rem;
    }
    .banner_left span {
        padding-left: 0;
        display: block;
        padding-bottom: 0.938rem;
        text-align: center;
    }
    .banner_left span img {
        height: 235px;
        text-align: center;
    }
    .banner_left h4 {
        font-size: 1.625rem;
    }
    .banner_left li a {
        font-size: 1.125rem;
    }
    section br {
        display: none;
    }
    .banner_right, .desp_block {
        width: 100%;
        background-color: var(--white);
        position: relative;
        margin-left: 0;
        z-index: 9;
        padding: 2.5rem 0.625rem 1.25rem 0.625rem;
    }
    .banner_right span, .desp_block span {
        font-size: 1.25rem;
    }
    .banner_right h1, h2 {
        font-size: 1.75rem;
    }
    p {
        font-size: 1.125rem;
        line-height: 26px;
    }
    .steps_wrapper {
        padding-top: 3.125rem;
        padding-bottom: 5.625rem;
    }
    .step_img {
        height: 100%;
        margin-left: 0;
    }
    .step_box {
        min-height: 100%;
    }
    .step_box::before {
        content: unset;
    }
    .step_img span {
        font-size: 2.5rem;
        margin-right: 0.625rem;
    }
    .step_bg {
        width: 260px;
    }
    .steps_block .col-lg-4:nth-child(1) .step_icon {
        margin-left: -0.938rem;
    }
    .step_icon {
        padding-top: 3.75rem;
        width: 100px;
    }
    .step_img h3 {
        font-size: 1.5rem;
        line-height: 32px;
        margin-bottom: 0.938rem;
    }
    .steps_block .gx-6 {
        --bs-gutter-x: 1;
    }
    .content_wrapper {
        padding: 2.5rem 0;
    }
    .content_img {
        transform: translateY(40px);
        position: relative;
        z-index: 98;
        text-align: center;
    }
    .content_img img {
        width: 90%;
        height: 100%;
        object-fit: cover;
    }
    .desp_block {
        width: 100%;
        background-color: var(--white);
        position: relative;
        margin-left: 0;
        z-index: 9;
        padding: 4.375rem 0.938rem 1.25rem 0.938rem;
    }
    .btn_bg {
        min-height: 50px;
        line-height: 43px;
        padding: 0 0.938rem;
        margin-bottom: 0.938rem;
        margin-right: 0;
    }
    .btn_bg img {
        margin-right: 0.313rem;
        width: 22px;
    }
    .banner_right span, .desp_block span {
        font-size: 1rem;
    }
    .pricredit_wrap .ctr_box {
        display: flex;
        flex-direction: column-reverse;
    }
    .pricredit_wrap .desp_block {
        margin-left: 0;
        margin-right: 0;
        padding: 4.375rem 0.938rem 1.25rem 0.938rem;
    }
    .prodev_wrap .content_img {
        width: 90%;
        min-height: auto;
        padding: 0.938rem 1.25rem;
        text-align: left;
        margin: 0 auto;
    }
    .content_img h3 {
        font-size: 1.5rem;
        margin-bottom: 1.563rem;
    }
    .prodev_wrap .content_img img {
        width: 62px;
        height: 62px;
    }
    .content_img li {
        font-size: 1.125rem;
        line-height: 24px;
    }
    .content_img li::before {
        left: -5px;
        top: 10px;
    }
    .footer_wrapper {
        padding-top: 3.75rem;
    }
    .footer_wrapper::before {
        width: calc(100% - 15px);
        height: 6px;
    }
    .footer_left, .footer_right {
        display: block;
    }
    .footer_logo {
        width: 100%;
    }
    .footer_pricy h3, .footer_pricy h4, .footer_logo {
        font-size: 1.125rem;
        line-height: 26px;
    }
    .footer_left li {
        padding-top: 0.313rem;
    }
    .footer_left li a {
        font-size: 1.25rem;
    }
    .footer_right {
        padding-left: 0;
    }
    .footer_pricy:nth-child(1) {
        width: 100%;
    }
    .footer_left::before {
        content: unset;
    }
    .footer_bot {
        padding-left: 0;
        display: block;
        padding-top: 0;
    }
    .footer_logo {
        margin-bottom: 0.938rem;
    }
    .footer_left {
        margin-bottom: 1.875rem;
    }
    .footer_pricy {
        margin-bottom: 1.875rem;
    }
    .footer_bot p {
        font-size: 0.875rem;
        margin-bottom: 0.625rem;
    }
    .modal-dialog {
        max-width: 95%;
    }
    .modal-content {
        padding: 0.313rem;
        padding-top: 0.313rem;
    }
    .modal.show .modal-dialog {
        margin-top: 5rem;
    }
    .btn-close {
        right: 0;
        top: -45px;
    }
    .modal-body {
        padding: 0;
    }
    .modal-body h1 {
        font-size: 2.313rem;
    }
    .modal-body p {
        font-size: 1.063rem;
        line-height: 24.25px;
        margin-bottom: 0.938rem;
    }
    .modal-body h2 {
        font-size: 1.375rem;
    }
    .modal-body h4 {
        font-size: 1.575rem;
        line-height: 2rem;
    }
  
}

@media screen and (max-width: 1199px) and (min-width: 768px) {

    .nav_right {
        width: 45%;
    }
    .nav_bottom li {
        margin-bottom: 1.875rem;
    }
    .banner_content {
        margin-top: -110px;
        display: flex;
        align-items: flex-start;
    }
    .banner_left {
        width: 70%;
        margin-top: -1.875rem;
        margin-right: -1.563rem;
    }
    .banner_right {
        padding: 2.5rem 2.5rem 1.25rem 1.875rem;
    }
    .banner_wrapper > img {
        min-height: 380px;
    }
    .content_wrapper {
        padding: 6.25rem 0 2.5rem 0;
    }
    .content_wrapper .ctr_box {
        display: flex;
        flex-direction: unset !important;
        align-items: flex-start;
    }
    .content_img {
        transform: translateY(-30px);
        position: relative;
        z-index: 1;
        text-align: center;
        margin-right: -2.5rem;
    }
    .desp_block {
        z-index: 9;
        padding: 1.875rem 1.875rem 1.25rem 1.875rem !important;
    }
    .content_img img {
        width: 100%;
    }
    .pricredit_wrap .desp_block {
        margin-right: -3.125rem;
    }
    .pricredit_wrap .content_img {
        margin-right: 0;
    }
    a.btn_plain {
        display: block;
    }
    .prodev_wrap .content_img {
        padding: 0.938rem 3.75rem 0.938rem 1.25rem;
        margin-right: -3.125rem;
    }
    .footer_left::before {
        content: unset;
    }
    .desp_block {
        min-height: 100%;
    }
    
}

@media screen and (max-width: 1800px) and (min-width: 1200px) {

    .container {
        max-width: 1200px;
    }
    .nav_left img {
        width: 135px;
    }
    .nav_top, .nav_bottom {
        padding-left: 4.688rem;
    }
    .nav_top {
        padding-top: 1.563rem;
    }
    .nav_top::before {
        height: 79px;
    }
    .nav_bottom::before {
        height: 94px;
    }
    .nav_top span, .nav_bottom span {
        font-size: 1.875rem;
    }
    .nav_bottom ul {
        padding-top: 0.938rem;
    }
    .nav_bottom li {
        padding-right: 1.563rem;
    }
    .nav_bottom li::before {
        height: 37px;
        bottom: -9px;
        right: 10px;
    }
    .nav_bottom li a {
        font-size: 1.125rem;
    }
    .nav_bottom li a::before {
        top: -8px;
        left: -22px;
        width: calc(100% + 37px);
    }
    .nav_bottom li a.active:before, 
    .nav_bottom li a.act::before, 
    .nav_bottom li a:hover::before {
        height: 47px;
    }
    .ctr_box {
        width: 1200px;
        transform: translateX(0px);
    }
    .banner_wrapper > img {
        min-height: 950px;
    }
    .banner_left {
        width: calc(40% - 65px);
        margin-top: -2.5rem;
        padding: 2.188rem 6.25rem 1.563rem 2.5rem;
    }
    .banner_left span {
        padding-left: 0;
    }
    .banner_left span img {
        width: 245px;
        height: 260px;
    }
    .banner_left h4, .step_img h3 {
        font-size: 1.625rem;
    }
    .banner_left li a {
        font-size: 1.125rem;
    }
    .banner_right span, .desp_block span {
        font-size: 1.25rem;
    }
    .banner_right h1 {
        font-size: 2.25rem;
    }
    p {
        font-size: 1.125rem;
        line-height: 26px;
    }
    section br {
        display: none;
    }
    .content_wrapper {
        min-height: 785px;
    }
    .banner_right p, .desp_block p {
        margin-bottom: 0.75rem;
    }
    .steps_block .gx-6 {
        --bs-gutter-x: 1.5rem;
    }
    .steps_wrapper {
        padding-top: 6.875rem;
        padding-bottom: 8.125rem;
    }
    .step_img span {
        font-size: 3.125rem;
        margin-right: 0.313rem;
    }
    .step_icon {
        width: 100px;
    }
    .step_box::before {
        width: 1px;
        right: -10px;
    }
    .step_img {
        height: 300px;
        margin-left: 0;
    }
    .step_img h3 {
        line-height: 32.5px;
        width: 80%;
        margin: 0 auto;
        margin-top: 1.25rem;
    }
    .step_bg {
        width: 340px;
    }
    h2 {
        font-size: 2.25rem;
    }
    .desp_block h2 {
        margin-bottom: 0.938rem;
    }
    .modal-dialog {
        max-width: 80%;
    }
    .pricredit_wrap .desp_block {
        margin-left: 0;
    }
    .footer_wrapper::before {
        width: calc(100% - 95px);
        height: 8px;
    }
    .prodev_wrap .content_img img {
        width: 72px;
        height: 72px;
    }
    .content_img h3 {
        font-size: 1.625rem;
    }
    .content_img li, .footer_logo, .footer_pricy h3 {
        font-size: 1.125rem;
        line-height: 26px;
    }
    .footer_wrapper {
        padding-top: 4.375rem;
    }
    .footer_logo {
        width: 55%;
    }
    .footer_left li a {
        font-size: 1.25rem;
    }
    .footer_pricy:nth-child(1) {
        width: 65%;
    }
    .footer_pricy h4 {
        font-size: 1rem;
        line-height: 26px;
    }
    .footer_pricy p {
        font-size: 1rem;
    }
    .footer_right, .footer_bot {
        padding-left: 0.938rem;
    }

    .modal-body h1 {
        font-size: 3.313rem;
    }
    .modal-body h2 {
        font-size: 1.775rem;
    }
    .modal-body p {
        font-size: 1.125rem;
        line-height: 26.25px;
        margin-bottom: 0.938rem;
    }
    .modal-body h4 {
        font-size: 2.075rem;
        line-height: 2.6rem;
    }
   
}