*,
::after,
::before {
    box-sizing: border-box
}

:root {
    /* Bg Colors */
    --bg-e0: #E0E0E0;
    --bg-f1: #f1f1f1;
    --bg-f5: #f5f5f5;
    --bg-ff: #fff;

    /* Dark Colors */
    --dark-0: #1C1C28;
    --dark-2: #555770;
    --dark-3: #8F90A6;

    /* Others Colors */
    --others-gray: rgba(194, 194, 194, 0.50);
    --others-lemon: #FCFCD4;
    --others-snow: #E6F4F1;

    --primary-main: #00C4D8;

    --primary-light-1: #007F5F;
    --primary-light-2: #328B6E;
    --primary-light-3: #4D987D;
    --primary-light-4: #65A58C;
    --primary-light-5: #7CB19C;
    --primary-light-6: #BDD8CC;
    --primary-light-7: #E9F2EE;

    --primary-dark-0: #28293D;
    --primary-dark-1: #093127;
    --primary-dark-2: #062820;
    --primary-dark-3: #042019;
    --primary-dark-4: #031812;
    --primary-dark-5: #02100C;

    --secondary-light-1: #0056A3;
    --secondary-light-2: #2867AD;
    --secondary-light-3: #4278B7;
    --secondary-light-4: #FFCF77;
    --secondary-light-5: #7199CA;
    --secondary-light-6: #FFF8ED;
    --secondary-light-7: #E7EEF7;

    --secondary-dark-1: #DEA003;
    --secondary-dark-2: #BE8802;
    --secondary-dark-3: #9E7101;
    --secondary-dark-4: #805B01;
    --secondary-dark-5: #634500;

    --secondary-darker: #005C81;

    /* System Colors */
    --system-red-1: #FF3B3B;
    --system-red-2: #FF5C5C;
    --system-red-3: #FF8080;
    --system-red-4: #FFE5E5;

    --system-green-0: #007F5F;
    --system-green-1: #06C270;
    --system-green-2: #57EBA1;
    --system-green-3: #E3FFF1;
    --system-green-4: #E3FFF1;

    --system-orange-1: #F80;
    --system-orange-2: #FDAC42;
    --system-orange-3: #FCCC75;
    --system-orange-4: #FFF8E5;

    --system-blue-0: #004A8D;
    --system-blue-1: #0063F7;
    --system-blue-2: #5B8DEF;
    --system-blue-3: #9DBFF9;
    --system-blue-4: #E5F0FF;

    --system-purple-1: #60C;
    --system-purple-2: #AC5DD9;
    --system-purple-3: #DDA5E9;
    --system-purple-4: #FFE5FF;

    --system-teal-1: #00CFDE;
    --system-teal-2: #73DFE7;
    --system-teal-3: #A9EFF2;
    --system-teal-4: #E5FFFF;

    --system-yellow-1: #FC0;
    --system-yellow-2: #FDDD48;
    --system-yellow-3: #FDED72;
    --system-yellow-4: #FFFEE5;

    --system-light-0: #E4E4EB;

    --text-bg-dark-0: #1E1E1E;
    --text-bg-dark-4: #6F6F6F;

    --text-bg-light-0: #A4A4A4;
    --text-bg-light-3: #F5F5F5;
    --text-bg-light-4: #F5F5F5;

    --text-color-0: #28293D;
    --text-color-1: #313131;
    --text-color-2: #444;
    --text-color-3: #606060;
    --text-color-4: #6F6F6F;
    --text-color-5: #BCBCBC;



    /* Stroke Colors */
    --stroke-dark: #425E6D;
    --stroke-light: #E4E4EB;
    --stroke-red: #FF3B3B;
    --stroke-green: #06C270;
    --stroke-blue: #0063F7;
    --stroke-orange: #FF8800;
    --stroke-teal: #00CFDE;
    --stroke-purple: #6600CC;

    /* Radius */
    --radius-4: 0.28rem;
    --radius-8: 0.57rem;
    --radius-12: 0.85rem;
    --radius-16: 1.14rem;
    --radius-24: 1.71rem;
    --radius-38: 2.57rem;
    --radius-57: 4rem;
    --radius-circle: 50%;
    --radius-30: 1.875rem;

    /*shadow */
    --light-shadow-3: 0px 0px 2px 0px rgba(40, 41, 61, 0.04), 0px 4px 8px 0px rgba(96, 97, 112, 0.16);
    --light-shadow-2: 0px 0px 1px 0px rgba(40, 41, 61, 0.04), 0px 2px 4px 0px rgba(96, 97, 112, 0.16);

    /*gradient*/

}

/* Color Classes */
.color-primary-main {
    color: var(--primary-main);
}

.color-primary-darker {
    color: var(--primary-darker);
}

.color-primary-lighter {
    color: var(--primary-lighter);
}

.color-primary-subtle {
    color: var(--primary-subtle);
}

.color-secondary-main {
    color: var(--secondary-main);
}

.color-secondary-darker {
    color: var(--secondary-darker);
}

.color-secondary-lighter {
    color: var(--secondary-lighter);
}

.color-secondary-subtle {
    color: var(--secondary-subtle);
}

.color-text-dark-0 {
    color: var(--text-dark-0);
}

.color-text-dark-1 {
    color: var(--text-dark-1);
}

.color-text-dark-2 {
    color: var(--text-dark-2);
}

.color-text-dark-3 {
    color: var(--text-dark-3);
}

.color-text-dark-4 {
    color: var(--text-dark-4);
}

.color-text-light-0 {
    color: var(--text-light-0);
}

.color-text-light-1 {
    color: var(--text-light-1);
}

.color-text-light-2 {
    color: var(--text-light-2);
}

.color-text-light-3 {
    color: var(--text-light-3);
}

.color-text-light-4 {
    color: var(--text-light-4);
}

.color-system-red-0 {
    color: var(--system-red-0);
}

.color-system-green-0 {
    color: var(--system-green-0);
}

.color-system-orange-0 {
    color: var(--system-orange-0);
}

.color-system-blue-0 {
    color: var(--system-blue-0);
}

.color-system-purple-0 {
    color: var(--system-purple-0);
}

.color-system-teal-0 {
    color: var(--system-teal-0);
}

.color-secondary-light-1 {
    color: var(--secondary-light-1);
}

.coloe-text-color-3 {
    color: var(--text-color-3);
}

.color-primary-light-4 {
    color: var(--primary-light-4);
}

/* Background Color Classes */
.bg-primary-main {
    background-color: var(--primary-main);
}

.bg-primary-darker {
    background-color: var(--primary-darker);
}

.bg-primary-lighter {
    background-color: var(--primary-lighter);
}

.bg-primary-subtle {
    background-color: var(--primary-subtle);
}

.bg-secondary-main {
    background-color: var(--secondary-main);
}

.bg-secondary-darker {
    background-color: var(--secondary-darker);
}

.bg-secondary-lighter {
    background-color: var(--secondary-lighter);
}

.bg-secondary-subtle {
    background-color: var(--secondary-subtle);
}

.bg-text-dark-0 {
    background-color: var(--text-dark-0);
}

.bg-text-dark-1 {
    background-color: var(--text-dark-1);
}

.bg-text-light-0 {
    background-color: var(--text-light-0);
}

.bg-text-light-1 {
    background-color: var(--text-light-1);
}

.bg-text-light-2 {
    background-color: var(--text-light-2);
}

.bg-text-light-3 {
    background-color: var(--text-light-3);
}

.bg-text-light-4 {
    background-color: var(--text-light-4);
}

.bg-system-red-0 {
    background-color: var(--system-red-0);
}

.bg-system-red-1 {
    background-color: var(--system-red-1);
}

.bg-system-green-0 {
    background-color: var(--system-green-0);
}

.bg-text-light-4 {
    background: var(--text-light-4);
}

.bg-secondary-light-1 {
    background-color: var(--secondary-light-1);
}

/* Border Color Classes */
.border-primary-main {
    border-color: var(--primary-main);
}

.border-primary-darker {
    border-color: var(--primary-darker);
}

.border-secondary-main {
    border-color: var(--secondary-main);
}

.border-secondary-lighter {
    border-color: var(--secondary-lighter);
}

.border-system-red-0 {
    border-color: var(--system-red-0);
}

.border-text-light-1 {
    border-color: var(--text-light-1);
}

/* Stroke Classes */
.stroke-dark {
    stroke: var(--stroke-dark);
}

.stroke-light {
    stroke: var(--stroke-light);
}

.stroke-red {
    stroke: var(--stroke-red);
}

.stroke-green {
    stroke: var(--stroke-green);
}

.stroke-blue {
    stroke: var(--stroke-blue);
}

.stroke-orange {
    stroke: var(--stroke-orange);
}

.stroke-teal {
    stroke: var(--stroke-teal);
}

.stroke-purple {
    stroke: var(--stroke-purple);
}

/*border radius*/
.b-radius-0 {
    border-radius: 0rem !important;
}

.b-radius-4 {
    border-radius: var(--b-radius-4);

    -webkit-border-radius: var(--radius-4) !important;
    -moz-border-radius: var(--radius-4) !important;
    -ms-border-radius: var(--radius-4) !important;
    -o-border-radius: var(--radius-4) !important;
}

.b-radius-8 {
    border-radius: var(--radius-8) !important;
    -webkit-border-radius: var(--radius-8) !important;
    -moz-border-radius: var(--radius-8) !important;
    -ms-border-radius: var(--radius-8) !important;
    -o-border-radius: var(--radius-8) !important;
}

.b-radius-12 {
    border-radius: var(--radius-12) !important;
    -webkit-border-radius: var(--radius-12) !important;
    -moz-border-radius: var(--radius-12) !important;
    -ms-border-radius: var(--radius-12) !important;
    -o-border-radius: var(--radius-12) !important;
}

.b-radius-16 {
    border-radius: var(--radius-16) !important;
    -webkit-border-radius: var(--radius-16) !important;
    -moz-border-radius: var(--radius-16) !important;
    -ms-border-radius: var(--radius-16) !important;
    -o-border-radius: var(--radius-16) !important;
}

.b-radius-24 {
    border-radius: var(--radius-24) !important;
    -webkit-border-radius: var(--radius-24) !important;
    -moz-border-radius: var(--radius-24) !important;
    -ms-border-radius: var(--radius-24) !important;
    -o-border-radius: var(--radius-24) !important;
}

.b-radius-38 {
    border-radius: var(--radius-38) !important;
    -webkit-border-radius: var(--radius-38) !important;
    -moz-border-radius: var(--radius-38) !important;
    -ms-border-radius: var(--radius-38) !important;
    -o-border-radius: var(--radius-38) !important;
}

.b-radius-57 {
    border-radius: var(--radius-57) !important;
    -webkit-border-radius: var(--radius-57) !important;
    -moz-border-radius: var(--radius-57) !important;
    -ms-border-radius: var(--radius-57) !important;
    -o-border-radius: var(--radius-57) !important;
}

.b-radius-circle {
    border-radius: 50% !important;
}

.b-radius-30 {
    border-radius: var(--radius-30);
}




*,
::after,
::before {
    box-sizing: border-box
}

/* CSS Document */
html,
body {
    margin: 0rem;
    padding: 0rem;
    font: normal 1rem/1.8 'IranSite', 'Arial';
    color: #666666;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;

}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
}

h1 {
    margin: 0.3571rem 0 0.7143rem 0;
}

h2 {
    margin: 0.3571rem 0 0.7143rem 0;
}

h3 {
    margin: 0.3571rem 0 0.7143rem 0;
}

h4 {
    margin: 0.3571rem 0 0.7143rem 0;
}

h5 {
    margin: 0.3571rem 0 0.7143rem 0;
}

h6 {
    margin: 0.3571rem 0 0.7143rem 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.9;
}

:-moz-placeholder {
    color: inherit;
    opacity: 0.9;
}

::-moz-placeholder {
    color: inherit;
    opacity: 0.9;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 0.9;
}

:placeholder {
    color: inherit;
    opacity: 0.9;
}

.DNNAligncenter {
    text-align: right !important;
}

a,
a:link {
    text-decoration: none;
    transition: color ease 300ms;
    -moz-transition: color ease 300ms;
    -webkit-transition: color ease 300ms;
    -o-transition: color ease 300ms;
    -ms-transition: color ease 300ms;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -0.57rem;
    margin-right: -0.57rem;
    --bs-gutter-x: 2.1429rem;
}


[class*="col-"] {
    padding-right: 0.57rem;
    padding-left: 0.57rem;
}

.container {
    /* padding-right: 0.57rem !important;
    padding-left: 0.57rem !important; */
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    width: 100%;
    padding-right: 0.57rem !important;
    padding-left: 0.57rem !important;
    margin-left: auto;
    margin-right: auto
}

.container-1332 {
    max-width: 100%;
    width: 95.14rem;
    padding-right: 0.57rem !important;
    padding-left: 0.57rem !important;
    margin-left: auto;
    margin-right: auto
}

.container-1600 {
    max-width: 100%;
    width: 114.21rem;
    padding-right: 0.57rem !important;
    padding-left: 0.57rem !important;
    margin-left: auto;
    margin-right: auto
}

input,
select {
    outline: none !important;
}


@media (max-width: 41.0714rem) {
    .mt-xs-reset {
        margin-top: 0rem !important;
    }

    .mr-xs-reset {
        margin-left: 0rem !important;
    }

    .mb-xs-reset {
        margin-bottom: 0rem !important;
    }

    .ml-xs-reset {
        margin-right: 0rem !important;
    }

    .ml-reset {
        margin: 0rem !important;
    }
}

@media (max-width: 54.7857rem) {
    .mt-sm-reset {
        margin-top: 0rem !important;
    }

    .mr-sm-reset {
        margin-left: 0rem !important;
    }

    .mb-sm-reset {
        margin-bottom: 0rem !important;
    }

    .ml-sm-reset {
        margin-right: 0rem !important;
    }

    .ml-reset {
        margin: 0rem !important;
    }
}

@media (max-width: 70.7857rem) {
    .mt-md-reset {
        margin-top: 0rem !important;
    }

    .mr-md-reset {
        margin-left: 0rem !important;
    }

    .mb-md-reset {
        margin-bottom: 0rem !important;
    }

    .ml-md-reset {
        margin-right: 0rem !important;
    }

    .ml-reset {
        margin: 0rem !important;
    }
}

@media (max-width: 85.6429rem) {
    .mt-lg-reset {
        margin-top: 0rem !important;
    }

    .mr-lg-reset {
        margin-left: 0rem !important;
    }

    .mb-lg-reset {
        margin-bottom: 0rem !important;
    }

    .ml-lg-reset {
        margin-right: 0rem !important;
    }

    .ml-reset {
        margin: 0rem !important;
    }
}





@media (max-width: 85.6429rem) {
    .full-lg-none.full-column-inner {
        margin-left: 0 !important;
        width: auto !important;
    }
}

@media (max-width: 70.7857rem) {
    .full-md-none.full-column-inner {
        margin-left: 0 !important;
        width: auto !important;
    }
}

@media (max-width: 54.7857rem) {
    .full-sm-none.full-column-inner {
        margin-left: 0 !important;
        width: auto !important;
    }
}

@media (max-width: 41.0714rem) {
    .full-xs-none.full-column-inner {
        margin-left: 0 !important;
        width: auto !important;
    }
}




/*left full ,right full*/
.dng-left-full,
.dng-right-full {
    max-width: none;
}

/*list*/
.list-style,
.list-style li {
    list-style: none !important;

}

.list-style {
    margin: 0 !important;
    padding: 0 !important;
}

/*Fixed Footer*/
.fixed_footer_bottom {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    max-height: 100%;
}

.fixed_footer_bottom .fixed_footer.active {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    overflow-Y: auto;
}

.fixed_footer_clone {
    background-color: #121212;
}

.dng-main.Boxed .rev_slider_wrapper.fullscreen-container {
    max-width: 100% !important;
    right: 0 !important;
}

@media only screen and (max-width: 70.7857rem) {
    .fixed_footer_bottom .fixed_footer.active {
        position: relative;
    }

    .fixed_footer_bottom,
    .fixed_footer_clone,
    .footer_box {
        height: auto !important;
        position: relative !important;
        max-height: inherit !important;
    }
}




/*color-white*/
.color-white,
.color-white p,
.color-white .Normal,
.color-white a,
.color-white a:link,
.color-white a:active,
.color-white a:visited,
.color-white a:hover,
.color-white h1,
.color-white h2,
.color-white h3,
.color-white h4,
.color-white h5,
.color-white h6 {
    color: #FFF !important;
}

/*ilightbox-noscroll*/
body.ilightbox-noscroll {
    overflow: visible;
}


[data-parallax="parallax"] {
    visibility: hidden;
}

[data-parallax="parallax"].parallax-load {
    visibility: visible;
}

/*input*/
input[type="text"] {
    border-radius: 0;
}


/*icon*/
.fa,
.fas {
    font-weight: 900 !important;
}

.sico,
.icon-svg {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}

.sico svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    vertical-align: inherit;
    vertical-align: initial;
}

p>.sico,
p>.icon-svg,
li>.sico,
li>.icon-svg {
    vertical-align: middle;
    margin-bottom: 0.2em;
}


/*icon-svg*/

.icon-svg svg {
    width: 1em;
    height: 1em;
    stroke: currentColor !important;
    opacity: 0;
    vertical-align: sub;
    color: inherit;
}

.icon-svg svg * {
    color: inherit;
}

.icon-svg svg path,
.icon-svg svg polyline,
.icon-svg svg rect,
.icon-svg svg line {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-miterlimit: 10;
}

.icon-svg.animated svg {
    opacity: 1;
}



/*btn*/
[class^='button-'],
[class*=' button-'] {
    position: relative;
    display: inline-block;
    font-size: 1.0714rem;
    font-weight: 600;
    line-height: 3.5714rem;
    height: 3.5714rem;
    padding: 0 1.7857rem;
    margin-left: 0.2143rem;
    margin-bottom: 0.2143rem;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    background-image: none;
    border: none;
    border-radius: 3.5714rem;
    -webkit-transition: all .3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
    transition: all .3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
}

body [class*='btn-']:hover {}

[class*='btn-']:focus {
    outline: 0;
    box-shadow: none;
}

body [class*='btn-'] {
    text-decoration: none !important;
}

/*social*/
[class*="social-"] {
    position: relative;
    display: inline-block;
}

/* section-no-padding */
.d-wrapper .section-no-padding.is-box .is-container {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* col-no-padding */
.row.col-no-padding {
    margin-right: 0;
    margin-left: 0;
}

.row.col-no-padding [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.is-container.no-space {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.layout-no-mt .is-container {
    margin-top: 0 !important;
}

.layout-no-mb .is-container {
    margin-bottom: 0 !important;
}

.layout-no-plr .is-container {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

/*border radius*/
.border-radius-0 {
    border-radius: 0rem !important;
}

.border-radius-3 {
    border-radius: 0.2143rem !important;
}

.border-radius-circle {
    border-radius: 50% !important;
}

/*border radius*/
.position-relative {
    position: relative !important;
}

.position-static {
    position: static !important;
}

.icon-cross {
    width: 1em;
    height: 1em;
    display: inline-block;
    position: relative;
}

.icon-cross::after,
.icon-cross::before {
    content: "";
    border-right: 0.1429rem solid currentColor;
    position: absolute;
    height: 94%;
    margin-top: 3%;
    right: 50%;
    border-radius: 0.2143rem;
    margin-right: -0.0714rem;
}

.icon-cross::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.icon-cross::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* */

/* Adjustment for Default & Foundation */
.d-wrapper .container>.row,
.d-wrapper .container>div>.row {
    padding-top: 0.7143rem;
    padding-bottom: 0.7143rem;
    margin-top: 0;
    margin-bottom: 0;
}

.d-wrapper .container-fluid>.row,
.d-wrapper .container-fluid>div>.row {
    padding-top: 0.7143rem;
    padding-bottom: 0.7143rem
}

.d-wrapper a:hover {
    text-decoration: none;
}

.d-wrapper img {
    max-width: 100%;
}

@media all and (max-width: 73.1429rem) {
    .margin-left-1024-reset {
        margin-right: 0rem !important;
    }

    .margin-right-1024-reset {
        margin-left: 0rem !important;
    }
}



/* Container for All Sections */
.d-wrapper {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 100%;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.d-wrapper>div {
    display: table;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    position: relative;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.d-wrapper .is-wrapper {
    position: relative;
}

.d-wrapper::after {
    content: "";
    clear: both;
    display: block;
    overflow: hidden;
}

.d-wrapper .d-placeholder {
    display: none;
}

/* Boxes */
.is-box {
    vertical-align: middle;
}

.is-boxes {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    position: relative;
}

.is-boxes:empty {
    min-height: 3.5714rem;
}

.is-overlay+.is-boxes>.is-box-centered:empty {
    height: 19.6429rem;
}

@media all and (max-width: 70.7857rem) {
    .is-overlay+.is-boxes:empty {
        min-height: 19.6429rem;
    }

    .is-overlay+.is-boxes>.is-box-centered:empty {
        height: 19.6429rem;
    }
}

.no-min-height {
    min-height: auto;
}

.is-box-centered {
    display: table-cell;
    width: 100%;
    position: relative;
    vertical-align: middle;
}

.is-stretch>div:not(.is-arrow-down) {
    position: relative;
    right: 0rem;
    top: 0rem;
    width: 100%;
    height: 100%;
    display: table;
}

.flexi-position {
    position: relative;
}

.is-stretch .flexi-position {
    position: absolute;
}

.is-section.is-stretch {
    min-height: 21.4286rem;
}

.is-section.layout-hidden-content {
    display: none !important;
}

/* New */

@media all and (max-width: 70.7857rem) {

    /*   .is-section:not(.is-stretch), .is-section-100:not(.is-stretch) { height: auto !important; } is-stretch is an exception */
    .is-section:not(.is-box) {
        height: auto !important;
    }

    /* .is-boxes { height: auto !important; }
    .is-boxes {
        height: 100% !important;
    }
 */
    /* new */

    .is-box-img {
        height: 21.4286rem !important;
    }

    .is-box-img .is-boxes {
        height: 100% !important;
    }



    /* .is-box-centered {display:block;} */
    .is-box-centered {
        display: table-cell;
    }

    .is-box {
        display: table !important;
    }

    /* new */
}

.is-container {
    margin: 0 auto;
    padding: 0 1.0714rem;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}


/* Boxed Layout */
.d-wrapper .is-boxed-layout .is-container {
    padding: 3.5714rem;
    background: #fff;
}

/* 5.7143rem */
@media all and (max-width: 91.4286rem) {
    .d-wrapper .is-boxed-layout .is-container {
        padding: 2.1429rem;
    }
}

@media all and (max-width: 73.1429rem) {
    .d-wrapper .is-boxed-layout .is-container {
        padding: 2.1429rem;
    }

    /*     .d-wrapper .is-boxed-layout .is-overlay {
        display: none !important;
    }
    .d-wrapper .is-boxed-layout {
        background: #fff !important;
    } */
}

/* Default Layout */

/* Middle */
.d-wrapper .is-box .is-container {
    margin-top: 7.1429rem;
    margin-bottom: 7.1429rem;
}

.has-sidebar .d-wrapper .is-box .is-container {
    margin-top: 2.8571rem;
    margin-bottom: 2.8571rem;
}

.sidebar_pos_left .is-container,
.sidebar_pos_right .is-container {
    padding: 0;
}

.sidebar_pos_fixleft .sidebar_dynamic .is-container,
.sidebar_pos_fixright .sidebar_dynamic .is-container,
.sidebar_pos_fixleftfull .sidebar_dynamic .is-container,
.sidebar_pos_fixrightfull .sidebar_dynamic .is-container {
    padding: 0;
}



@media all and (max-width: 70.7857rem) {
    .d-wrapper .is-box .is-container {
        margin-top: 4.2857rem;
        margin-bottom: 4.2857rem;
    }

    .has-sidebar .d-wrapper .is-box .is-container {
        margin-top: 1.4286rem;
        margin-bottom: 1.4286rem;
    }
}



/* Overlay */
.is-overlay {
    position: absolute;
    right: 0rem;
    top: 0rem;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /*z-index:1;*/
}

/*.is-boxes, .is-box-centered {z-index:1}*/
.is-overlay .is-overlay-bg {
    position: absolute;
    right: 0rem;
    top: 0rem;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 60%;
}

.is-overlay .is-overlay-bg.is-scale-animated.is-appeared {
    animation: is-scale 25s ease forwards;
    -ms-animation: is-scale 25s ease forwards;
    -webkit-animation: is-scale 25s ease forwards;
    -o-animation: is-scale 25s ease forwards;
    -moz-animation: is-scale 25s ease forwards;
}

@keyframes is-scale {
    from {
        transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        -o-transform: scale(1);
        -moz-transform: scale(1);
    }

    to {
        transform: scale(1.2);
        -ms-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -o-transform: scale(1.2);
        -moz-transform: scale(1.2);
    }
}

.is-overlay .is-overlay-color {
    position: absolute;
    right: 0rem;
    top: 0rem;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    opacity: 0.05;
}

.is-overlay .is-overlay-content {
    position: absolute;
    right: 0rem;
    top: 0rem;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: inherit;
    /* dec 2017 */
}

.is-overlay .is-overlay-content.content-selectable {
    z-index: 1
}

.overlay-responsive .is-overlay-mobile-bg {
    display: none;
}

@media (max-width: 54.7857rem) {
    .overlay-responsive .is-overlay-bg {
        display: none;
    }

    .overlay-responsive .is-overlay-mobile-bg {
        display: block;
        position: absolute;
        right: 0rem;
        top: 0rem;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

.is-overlay-Video-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
    top: 0;
    right: 0;
}

.is-overlay-Video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* dec 2017 
.is-container {
    z-index: 1
}
*/
/* dec 2017 */

/* Section & Content Styles */

/* Background Color */
.is-bg-grey,
.d-wrapper>div.is-bg-grey {
    background-color: #eeeff0
}

.is-bg-dark,
.d-wrapper>div.is-bg-dark {
    background-color: #111
}

.is-bg-light,
.d-wrapper>div.is-bg-light {
    background-color: #fff
}

.d-wrapper>div.is-bg-none {
    background-color: transparent;
}

/* Text Color */
.is-light-text,
.is-light-text h1,
.is-light-text h2,
.is-light-text h3,
.is-light-text h4,
.is-light-text h5,
.is-light-text h6,
.is-light-text p,
.is-light-text li,
.is-light-text div,
.is-light-text span:not(.sico) {
    color: #fff;
}

.is-dark-text .is-light-text {
    color: #fff;
}



/* Vertical Alignment */
.is-content-top {
    vertical-align: top;
}

.is-content-bottom {
    vertical-align: bottom
}

/* Horizontal Alignment */
.is-container.is-content-left {
    margin-right: 7.1429rem;
}

.is-container.is-content-right {
    margin-left: 7.1429rem;
}

@media all and (max-width: 85.7143rem) {
    .is-container.is-content-left {
        margin-right: 4.2857rem
    }

    .is-container.is-content-right {
        margin-left: 4.2857rem;
    }
}

@media all and (max-width: 70.7857rem) {
    .is-container.is-content-left {
        margin-right: auto;
    }

    .is-container.is-content-right {
        margin-left: auto;
    }
}


/* Vertical Alignment */
.is-content-top {
    vertical-align: top;
}

.is-content-bottom {
    vertical-align: bottom
}

.is-content-top>.is-boxes>.is-container {
    align-self: flex-start;
}

.is-content-bottom>.is-boxes>.is-container {
    align-self: flex-end;
}

/* Text Alignment */
.is-align-right {
    text-align: left;
}

.is-align-center {
    text-align: center;
}

.is-align-left {
    text-align: right;
}

.is-align-justify {
    text-align: justify;
}

/* Section Height */



@media (max-width: 570.4271rem) {
    #Body .is-section-xs-50 {
        height: 50vh;
    }

    #Body .is-section-xs-auto {
        height: auto;
        min-height: auto;
    }
}

@media (max-width: 760.57rem) {
    #Body .is-section-sm-50 {
        height: 50vh;
    }

    #Body .is-section-sm-auto {
        height: auto;
        min-height: auto;
    }
}

@media (max-width: 990.1414rem) {
    #Body .is-section-md-50 {
        height: 50vh;
    }

    #Body .is-section-md-auto {
        height: auto;
        min-height: auto;
    }
}

@media (max-width: 1190.7129rem) {
    #Body .is-section-lg-50 {
        height: 50vh;
    }

    #Body .is-section-lg-auto {
        height: auto;
        min-height: auto;
    }
}


/* Stretched container (not used yet) */
.is-container.is-stretch-w {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0 !important;
    padding-left: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.is-container.is-stretch-h {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.is-container.is-stretch-w>div {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.is-container.is-stretch-w>div>div {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.is-container.is-stretch-h>div {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.is-container.is-fullheight {
    height: 100%
}

.is-container.is-container-fluid {
    max-width: none;
    width: auto;
}

.bg-attachment-fixed,
.bg-attachment-fixed .is-overlay-bg {
    background-attachment: fixed !important;
}

/*ipad background attachment*/
@media only screen and (min-device-width: 54.8571rem) and (max-device-width: 73.1429rem) and (-webkit-min-device-pixel-ratio: 1) {

    .bg-attachment-fixed,
    .bg-attachment-fixed .is-overlay-bg {
        background-attachment: scroll !important;
    }
}

@media only screen and (min-device-width: 54.8571rem) and (max-device-width: 73.1429rem) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {

    .bg-attachment-fixed,
    .bg-attachment-fixed .is-overlay-bg {
        background-attachment: scroll !important;
    }

}

@media only screen and (min-device-width: 54.8571rem) and (max-device-width: 73.1429rem) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {

    .bg-attachment-fixed,
    .bg-attachment-fixed .is-overlay-bg {
        background-attachment: scroll !important;
    }

}

@media only screen and (min-device-width: 54.8571rem) and (max-device-width: 73.1429rem) and (-webkit-min-device-pixel-ratio: 2) {

    .bg-attachment-fixed,
    .bg-attachment-fixed .is-overlay-bg {
        background-attachment: scroll !important;
    }
}

@media only screen and (min-device-width: 54.8571rem) and (max-device-width: 73.1429rem) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {

    .bg-attachment-fixed,
    .bg-attachment-fixed .is-overlay-bg {
        background-attachment: scroll !important;
    }

}

@media only screen and (min-device-width: 54.8571rem) and (max-device-width: 73.1429rem) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {

    .bg-attachment-fixed,
    .bg-attachment-fixed .is-overlay-bg {
        background-attachment: scroll !important;
    }

}

@media only screen and (min-device-width: 59.5714rem) and (max-device-width: 79.4286rem) and (-webkit-min-device-pixel-ratio: 2) {

    .bg-attachment-fixed,
    .bg-attachment-fixed .is-overlay-bg {
        background-attachment: scroll !important;
    }

}

@media only screen and (min-device-width: 59.5714rem) and (max-device-width: 59.5714rem) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {

    .bg-attachment-fixed,
    .bg-attachment-fixed .is-overlay-bg {
        background-attachment: scroll !important;
    }

}

@media only screen and (min-device-width: 79.4286rem) and (max-device-width: 79.4286rem) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {

    .bg-attachment-fixed,
    .bg-attachment-fixed .is-overlay-bg {
        background-attachment: scroll !important;
    }

}

@media only screen and (min-device-width: 73.1429rem) and (max-device-width: 97.5714rem) and (-webkit-min-device-pixel-ratio: 2) {

    .bg-attachment-fixed,
    .bg-attachment-fixed .is-overlay-bg {
        background-attachment: scroll !important;
    }

}

@media only screen and (min-device-width: 73.1429rem) and (max-device-width: 73.1429rem) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {

    .bg-attachment-fixed,
    .bg-attachment-fixed .is-overlay-bg {
        background-attachment: scroll !important;
    }

}

@media only screen and (min-device-width: 97.5714rem) and (max-device-width: 97.5714rem) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {

    .bg-attachment-fixed,
    .bg-attachment-fixed .is-overlay-bg {
        background-attachment: scroll !important;
    }
}

/* Others */

.is-hidden {
    display: none !important;
}

.gm-style {
    font-family: inherit !important;
}

/*.is-rounded-button-medium*/
.is-rounded-button-medium {}

.is-rounded-button-medium a {
    display: inline-block;
    text-align: center;
    margin: 0 1.4286rem;
    border-radius: 35.7143rem;
    width: 5rem;
    height: 5rem;
    background-color: #aaa;
    overflow: hidden;
}

.is-rounded-button-medium a i {
    display: inline-block;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    color: #ffffff;
    font-size: 2.1429rem;
    line-height: 5rem;
}

.is-rounded-button-medium a:first-child {
    margin: 0 0 0 1.4286rem;
}

.is-rounded-button-medium a:last-child {
    margin: 0 1.4286rem 0 0;
}


/*custom module loading*/
@-webkit-keyframes loading-rotate {
    0% {
        -webkit-transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes loading-rotate {
    0% {
        -moz-transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@keyframes loading-rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.custom-module .swiper-container.loading,
.custom-module .soon.loading {
    min-height: 7.1429rem;
    max-height: 50vh;
    position: relative;
}

.custom-module .swiper-container.loading>*,
.custom-module .soon.loading>* {
    visibility: hidden;
}

.custom-module .swiper-container.loading:after,
.custom-module .soon.loading:after {
    content: "";
    width: 2.8571rem;
    height: 2.8571rem;
    display: inline-block;
    border: 0.3571rem solid #E3E3E3;
    border-top-color: #555;
    border-right-color: #555;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 2.1429rem;
    right: 50%;
    margin-right: -1.4286rem;
    -webkit-animation: loading-rotate 0.7s infinite;
    -moz-animation: loading-rotate 0.7s infinite;
    animation: loading-rotate 0.7s infinite;
    z-index: 101;
}

.custom-module .soon {
    display: none;
}

.custom-module .number {
    color: currentColor;
}

#Body:not(.builder-editor-mode) .custom-module .ajaxform .from-error {
    display: none;
}

/*video*/
.html5-video {
    position: relative;
}

.html5-video video {
    width: 100%;
}

.html5-video .play-button {
    position: absolute;
    right: 50%;
    top: 50%;
    margin: -2.5714rem -2.5714rem 0 0;
    cursor: pointer;
}

/*tabs*/


/* section-carousel-bg*/
.section-slider-bgcarousel .is-overlay,
.section-slider-bgcarousel .is-overlay-content.content-selectable,
.section-slider-bgcarousel .swiper-container,
.section-slider-bgcarousel .is-overlay {
    z-index: initial;
}

.section-carousel-bg .swiper-wrapper-overflow {
    height: 100%;
}

.section-carousel-bg .swiper-slide {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-carousel-bg .swiper-pagination {
    bottom: 2.1429rem;
    margin: 0;
    position: absolute;
}

.section-carousel-bg .swiper-wrapper-overflow {
    padding: 0;
}

@media only screen and (min-width: 992px) {

    .section-carousel-bg.swiper-container .swiper-button-next,
    .section-carousel-bg.swiper-container .swiper-button-prev {
        width: 3.2143rem;
        height: 3.2143rem;
        margin: -1.6429rem 0 0 !important;
    }

    .section-carousel-bg.swiper-container .swiper-button-next {
        left: 1.7857rem;
        right: auto;
    }

    .section-carousel-bg.swiper-container .swiper-button-prev {
        right: 1.7857rem;
    }

    .section-carousel-bg.swiper-container .swiper-button-next span,
    .section-carousel-bg.swiper-container .swiper-button-prev span {
        width: 2.1429rem;
        height: 2.1429rem;
        border-width: 0.1429rem;
        margin-top: -1.0714rem;
    }
}

/*menu img size*/
.gomenu a img {
    width: 1em;
    vertical-align: middle;
    margin-left: 0.3571rem;
    margin-bottom: 0.1429rem;
}

/**************************************************** Metriom Styles ****************************************************/

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
}

* {
    scroll-margin-top: 10rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

.nowrap-scroll {
    overflow-x: auto;
    white-space: nowrap;

    &::-webkit-scrollbar {
        height: 0;
        width: 0;
    }

    &::-webkit-scrollbar-thumb {
        background: none;
    }

    &::-webkit-scrollbar-track {}

    &::-webkit-scrollbar-thumb:hover {}
}

.auto-scroll {
    overflow-x: auto;
    white-space: nowrap;

    &::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }

    &::-webkit-scrollbar-thumb {
        background: var(--accent-color);
    }

    &::-webkit-scrollbar-track {}

    &::-webkit-scrollbar-thumb:hover {}
}

.page-breadcrumbs {
    text-align: right !important;
}

.text-right {
    text-align: right;
    justify-content: start;
}

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

.text-left {
    text-align: left;
}

.area-right {
    justify-content: end;
}

.area-center {
    justify-content: center;
}

.area-left {
    justify-content: start;
}

.list-loading-wrapper {
    background: rgba(230, 230, 230, 0.37);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.list-loading-wrapper .list-loading {
    background: url(../_images/list-loading.gif) no-repeat center center #fff;
    border-radius: 12px;
    box-shadow: 0 0 35px 1px #ddd;
    position: absolute;
    left: calc(50% - 110px);
    top: 75px;
    text-align: center;
    width: 220px;
    height: 128px;
    opacity: 0.8;
    padding-top: 100px;
}

.mbd-list-default {
    display: block;
    position: relative;
    padding: 5px;
    margin: 0;
}

.mbd-list-default .ld-item {
    background-color: #f2f2f2;
    border: solid 1px #ddd;
    margin-bottom: 25px;
    padding: 0;
    height: 300px;
}

.mbd-list-default .ld-image-weapper {
    width: 100%;
    height: 170px;
    overflow: hidden;
    position: relative;
}

.mbd-list-default .ld-image-weapper img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 100%;
    max-height: 150px;
}

.mbd-list-default .ld-title {
    margin: 12px 12px 5px;
    font-size: 20px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.5;
}

.mbd-list-default .ld-title>a {
    color: #333;
    text-decoration: none;
}

.mbd-list-default .ld-categories {
    padding: 10px;
    font-size: 14px;
}

.mbd-list-default .ld-rate {
    margin: 0 10px;
}


.Home-banner {
    position: relative;
    margin-bottom: 5.42rem;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 70%;
        max-width: 100%;
        background: var(--primary-light-7);
        border-radius: 0 0 0 var(--radius-24);
    }

    .img-box {
        width: 57.42rem;
        max-width: 100%;
        aspect-ratio: 2/1.74;
        position: absolute;
        top: 1rem;
        left: 0;
        z-index: 1;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0 1rem 1rem 0;
        }
    }

    .rightSide {
        /* background-color: var(--primary-light-7); */
        width: 98rem;
        max-width: 100%;
        z-index: 2;
        padding: 9rem 10% 10.57rem 1rem;


        .content-box {
            width: 29rem;
            max-width: 100%;
            margin-left: auto;

            strong {
                font-size: 2rem;
            }
        }

        .searchBox {
            width: 72.92rem;
            max-width: 100%;
            z-index: 2;
            margin-top: 8rem;

            .apartment-wrapper {
                gap: 7.42rem;
                width: max-content;
                max-width: 100%;

                .apartment-box {
                    max-width: 100%;

                    .svg-bg {
                        margin: 0 auto;
                        display: flex;
                        width: 6rem;
                        height: 6rem;
                        justify-content: center;
                        align-items: center;
                        border-radius: var(--radius-circle);
                        background-color: var(--primary-light-6);

                        svg {
                            max-width: 4rem !important;
                            max-height: 4rem !important;
                            fill: var(--primary-light-3);
                        }
                    }

                    span {
                        font-size: 0.91rem;
                        color: var(--text-color-1);
                        font-weight: 500;
                    }
                }
            }

            .search {
                background-color: #fff;
                margin-bottom: 2rem;
                gap: 1.71rem;
                padding: 1.14rem 2.85rem;

                .searchbtn {
                    background-color: var(--primary-light-1);

                    svg {
                        width: 1.5rem;
                        height: 1.5rem;
                        fill: #fff;
                        stroke: #fff;
                    }
                }

                .searchbar {
                    .label {
                        display: block;
                        font-size: 0.87rem;
                        font-weight: 700;
                    }

                    select {
                        width: 100%;
                        border: none;
                        border-bottom: 1px solid var(--bg-e0);
                        font-size: 0.87rem;
                        color: var(--text-color-5);
                        padding-bottom: 0.3rem;
                    }
                }
            }

        }
    }

    @media (max-width: 1600px) {

        .rightSide {
            .searchBox {
                .apartment-wrapper {
                    gap: 7.42rem;
                    width: max-content;
                    max-width: 100%;
                    background: #ffffff91;
                    padding: 1rem;
                    border-radius: var(--radius-8);
                }
            }
        }
    }

    @media (max-width: 1200px) {
        .img-box {
            width: 100%;
            aspect-ratio: unset;
            right: 0;
            bottom: 0;


        }

        .rightSide {
            padding-left: 2rem;
            padding-right: 2rem;

            .searchBox {
                display: flex;
                justify-content: center;
                align-items: center;

                .search {
                    width: 100%;
                }
            }
        }
    }

    @media (max-width: 768px) {
        .rightSide {
            .searchBox {
                .apartment-wrapper {
                    gap: 3.42rem;
                    justify-content: space-between !important;

                    .apartment-box {
                        flex: 0 0 calc(50% - 4rem);
                    }
                }
            }
        }
    }

}







/******************** Begin Buying Reasons ******************/
.buying-reasons {
    gap: 2rem;
    margin-bottom: 14.28rem;

    .img-box {
        width: 42.7rem;
        max-width: 40%;
    }

    .txt-wrapper {
        width: 61.14rem;
        max-width: 60%;


        .content-wrapper {
            flex-wrap: wrap;
            gap: 1.14rem;

            .item {
                width: 28rem;
                max-width: 48%;
                flex-shrink: 0;
            }
        }

        .title {
            svg {
                max-height: 2.2rem;
                max-width: 2.2rem;
                fill: var(--primary-light-1);
            }
        }

        .icon-box {
            svg {
                max-width: 5.7rem;
                max-height: 5.7rem;
                fill: var(--primary-light-1);

            }
        }
    }

    @media(max-width: 990px) {
        flex-direction: column;
        gap: 4rem;

        .img-box {
            width: auto;
            max-width: 90%;
            flex-shrink: unset;
        }

        .txt-wrapper {
            width: 100%;
            max-width: 100%;
            margin: auto;


            .content-wrapper {

                .item {
                    width: 28rem;
                    max-width: 100%;
                    flex-shrink: 0;
                }
            }
        }
    }

    @media(max-width: 768px) {
        .txt-wrapper {
            .content-wrapper {
                flex-direction: column;
                gap: 2rem !important;

                .item {
                    width: 100%;
                    max-width: 100%;

                    .icon-box {
                        gap: 0.87rem;

                        svg {
                            max-width: 4rem;
                            max-height: 4rem;
                        }
                    }
                }
            }
        }
    }
}


/******************** End Buying Reasons ******************/

/******************** Begin investment ******************/

.investment-start {
    margin-bottom: 14.28rem;

    .content-box {
        position: absolute;
        top: 45%;
        right: 10%;
    }

    .content-box-8 {
        position: absolute;
        top: 40%;
        right: 10%;
    }

    .content-box-4 {
        position: absolute;
        top: 15%;
        right: 5%;
    }

    .start {
        background-color: var(--primary-light-5);
        font-size: 1.5rem;

        .svg-circle {
            display: flex;
            justify-content: center;
            width: 1.5rem;
            height: 1.5rem;
            background-color: var(--White);
            border-radius: var(--radius-circle);

            svg {
                width: 0.4rem;
                fill: var(--primary-light-1);
            }

        }
    }

    .item {
        overflow: hidden;
        min-height: 22.6rem;

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

    @media(max-width: 570px) {
        .item {
            aspect-ratio: 2/1;
        }

        .start {
            font-size: 1rem;
        }
    }
}

/******************** End investment ******************/

.rectangle {
    background-color: var(--secondary-light-7);
    padding: 4.8rem 0;

    .items-wrapper {
        gap: 0.87rem;

        .item {
            text-align: center;
        }
    }

    .quantity {
        direction: ltr;
        color: var(--secondary-light-3);
        font-size: 5.7rem;
        font-weight: 800;
    }

    @media(max-width: 990px) {
        .items-wrapper {

            .item {
                flex: 0 0 calc(50% - 0.87rem);
            }
        }

    }

    @media(max-width: 480px) {
        .items-wrapper {

            .item {
                flex: 0 0 calc(100% - 0.87rem);
            }
        }

    }
}

/*************** Home Steps **************/
.steps-wrapper {
    margin-top: 3.14rem;
    margin-bottom: 14.28rem;

    .item {
        padding: 3.42rem 0;
        border-left: solid 1px var(--primary-light-6);

        .content {
            position: relative;
            min-height: 100%;
            border: solid 1px var(--primary-light-6);
            border-right: none;
            border-left: none;
            padding: 0 3.14rem;

            .step-caption {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 1rem;
                transform: translateY(-50%);

                .caption {
                    border: solid 1px var(--primary-light-6);
                    font-size: 0.91rem;
                    font-weight: 500;
                    border-radius: 1rem;
                    padding: 0rem 0.57rem;
                    background-color: var(--White);
                }
            }

            .icon {
                position: absolute;
                top: -1.1rem;
                left: -1.14rem;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 2.28rem;
                height: 2.28rem;
                border-radius: var(--radius-circle);
                border: solid 1px var(--primary-light-6);
                background-color: var(--White);
                z-index: 10;

                svg {
                    width: 1.71rem;
                    height: 1.71rem;
                    stroke: var(--primary-light-6);
                    fill: var(--primary-light-6);
                }
            }

            .text-holder {
                margin: 1.92rem 0 3rem;

                .title {
                    display: block;
                    font-size: 1.14rem;
                    font-weight: 800;
                    margin-bottom: 0.87rem;
                }

                .desc {
                    font-size: 0.91rem;
                    font-weight: 500;
                    line-height: 1.8rem;
                }
            }
        }

        &:last-child {
            .content {
                .icon {
                    display: none;
                }
            }
        }

    }

    @media(min-width: 990px) {
        .item {
            &:first-child {
                .content {
                    padding-right: 0;
                }
            }

            &:last-child {
                border-left: none;
            }
        }
    }

    @media(max-width: 990px) {
        .item {
            padding-bottom: 0;

            .content {
                border-bottom: none;
            }
        }
    }
}

/*******************  Begin Collaboration ****************/
.Collaboration {
    margin-bottom: 14.28rem;
    display: flex;
    justify-content: center;
    background: url('/Portals/0/images/hero-banner-bg1.jpg') no-repeat center;
    background-size: cover;
    padding-bottom: 23.6rem;

    .items-wrapper {
        width: 68.28rem;
        gap: 1.14rem 1.71rem;
        margin-top: 2.8rem;
        justify-content: center;
        align-items: center;

    }

    .img-box {
        mix-blend-mode: multiply;
        flex: 0 0 calc(33.333% - 1.14rem);
    }

    @media (max-width: 900px) {
        .img-box {
            flex: 0 0 calc(50% - 1.14rem);

        }
    }
}

/*******************  End Collaboration ****************/


/*******************  Begin Footer ****************/
.footer {
    margin: 1.71rem 0;

    .dngTextBox {
        max-width: 100%;
        width: 100%;
    }

    .logo-box {

        svg {
            max-width: 5.7rem;
            max-height: 5.7rem;
            fill: var(--secondary-light-6);
        }
    }

    .footer-description {
        color: #fff;
    }



}

.center-text {
    align-content: center;
    text-align: center;
}

.footer-links {
    justify-content: center;
    gap: 0.71rem;
    display: flex;
    flex-direction: column;
    color: var(--White);
    align-items: flex-start;

    span {
        padding: 0.57rem 0;
        border-bottom: 1px solid var(--secondary-light-7);

    }

    a:link {
        color: var(--White);
    }

    svg {
        max-width: 0.92rem;
        fill: var(--White);
    }

    .item {
        align-items: center;
    }
}

.footer-map {
    * {
        max-width: 100%;
    }

    span {
        border-bottom: 1px solid var(--secondary-light-7);
        padding: 0.57rem;
    }

    .map {
        margin: 1.14rem 0;
        /* width: 30.5rem; */
        width: 100%;
        max-width: 100%;

        iframe {
            max-width: 100%;
            height: auto;

        }
    }

    .map-app {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        color: var(--White);
    }

    .app {
        gap: 1.14rem;
        padding: 0.35rem;
        max-width: 100%;
        background-color: #00274F;
        display: flex;
        border-radius: 0.35rem;
        flex: 1;
        justify-content: center;
        align-items: center;
    }

    .img-box {
        width: 1.71rem;
        max-width: 100%;
        height: 1.71rem;

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

}

.footer-social {
    padding: 0.85rem 0;

    .social-media {
        display: flex;
        gap: 1.71rem;

        svg {
            fill: var(--White);
            max-width: 1.21rem;
            max-height: 1.21rem;
        }
    }
}

.middle-footer {
    padding: 4.57rem 5.64rem;

}



.phone-number-TLfooter {
    margin: 1.71rem 0;
    display: flex;
    color: var(--secondary-darken-5);
    border-radius: var(--radius-30);
    background-color: var(--secondary-light-7);
    justify-content: center;
    align-items: center;
    padding: 0.85rem 1.14rem;
    gap: 0.57rem;
}

/*******************  End Footer ****************/


/**************** Begin Why-BuyMetric ****************/

.why-BuyMetric {
    margin-bottom: 9.07rem;

    .content-box {
        width: 30%;
        top: 40%;
        right: 4.8rem;

        strong {
            font-size: 2.5rem;
        }

        p {
            font-size: 1.71rem;
        }
    }
    @media(max-width:1380px){
        top: 25%;
    }
    @media(max-width:1200px){
        top: 15%;
    }
}

.why-BuyMetric-sec2 {
    margin-bottom: 9.07rem;
}

.smart-investment {
    margin-bottom: 29.07rem;
    gap: 18.14rem;
    position: relative;
    z-index: 1;

    img {
        mix-blend-mode: multiply;
    }
    /* ::before{
        content: "";
        position: absolute;
        top: 0;
        left: -21rem;
        width: 50rem;
        height: 50rem;
        background: radial-gradient(50% 50% at 50% 50%, rgba(0, 86, 163, 0.20) 0%, rgba(0, 86, 163, 0.00) 100%);
        border-radius: 50%;
        transform: translate(-30%, -30%);
        z-index: -1;
    }
    ::after{
        content: "";
        position: absolute;
        top: 20rem;
        right: -50rem;
        width: 60.17rem;
        height: 60.17rem;
        background: radial-gradient(50% 50% at 50% 50%, rgba(0, 86, 163, 0.20) 0%, rgba(0, 86, 163, 0.00) 100%);
        border-radius: 50%;
        transform: translate(-30%, -30%);
        z-index: -1;
    } */
}
@media(max-width:990px){
    .smart-investment{
        flex-direction: column;
        gap: 8.14rem;

    }
}
.byMetric-reasons{
    margin-bottom: 9.07rem;
    .item{
        gap: 1.14rem;
        flex: 1;
        background-color: var(--primary-light-7);
    }
        svg{
            max-width: 10.85rem;
            fill: var(--primary-light-1);
            max-height: max-content;
        }
    }

/**************** End Why-BuyMetric ****************/