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

:root {
    /* Primary Colors */
    --primary-main: #F03E58;
    --primary-darker: #C03246;
    --primary-lighter: #FA667C;
    --primary-subtle: #FDC9D0;

    /* Secondary Colors */
    --secondary-main: #48484E;
    --secondary-darker: #252528;
    --secondary-lighter: #6D6D78;
    --secondary-subtle: #DBDBDB;

    /* Text & Background Colors */
    --text-dark-1: #28293D;
    --text-dark-2: #555770;
    --text-dark-3: #8F90A6;
    --text-dark-4: #C7C9D9;
    --text-light-1: #EBEBF0;
    --text-light-2: #F2F2F5;
    --text-light-3: #FAFAFC;
    --text-light-4: #FFFFFF;

    /* System Colors */
    --system-red-0: #FF3B3B;
    --system-red-1: #FF5C5C;
    --system-red-2: #FF8080;
    --system-red-3: #FFE5E5;
    --system-green-0: #06C270;
    --system-green-1: #39D98A;
    --system-green-2: #57EBA1;
    --system-green-3: #E3FFF1;
    --system-orange-0: #FF8800;
    --system-orange-1: #FDAC42;
    --system-orange-2: #FCCC75;
    --system-orange-3: #FFF8E5;
    --system-blue-0: #0063F7;
    --system-blue-1: #5B8DEF;
    --system-blue-2: #9DBFF9;
    --system-blue-3: #E5F0FF;
    --system-purple-0: #6600CC;
    --system-purple-1: #AC5DD9;
    --system-purple-2: #DDA5E9;
    --system-purple-3: #FFE5FF;
    --system-teal-0: #00CFDE;
    --system-teal-1: #73DFE7;
    --system-teal-2: #A9EFF2;
    --system-teal-3: #E5FFFF;
    --system-yellow-0: #FFCC00;
    --system-yellow-1: #FDDD48;
    --system-yellow-2: #FDED72;
    --system-yellow-3: #FFFEE5;

    /* 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;
}

/* 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-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-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) !important;
}

.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);
}

/* 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-1 {
    background-color: var(--text-dark-1);
}

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

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

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

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

/* 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-secondary-subtle {
    border-color: var(--secondary-subtle) !important;
}

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

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

/* 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);
}

/* 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 {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
}

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

#dnn_content {
    min-height: 100vh;
}

@media only screen and (max-width: 70.7857rem) {
    .dng-main {
        overflow-x: hidden;
        overflow-y: hidden;
    }
}

@media only screen and (max-width: 100rem) and (orientation: landscape) {
    .dng-main {
        overflow-x: hidden;
        overflow-y: 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;
}


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: -1.0714rem;
    margin-right: -1.0714rem;
    --bs-gutter-x: 2.1429rem;
}

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

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



@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;

}

/*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;
}

/* 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-1 {
    border-radius: 0.57rem !important;
    -webkit-border-radius: 0.57rem !important;
    -moz-border-radius: 0.57rem !important;
    -ms-border-radius: 0.57rem !important;
    -o-border-radius: 0.57rem !important;
}

.border-radius-2 {
    border-radius: 0.85rem !important;
    -webkit-border-radius: 0.85rem !important;
    -moz-border-radius: 0.85rem !important;
    -ms-border-radius: 0.85rem !important;
    -o-border-radius: 0.85rem !important;
}

.border-radius-3 {
    border-radius: 1.14rem !important;
    -webkit-border-radius: 1.14rem !important;
    -moz-border-radius: 1.14rem !important;
    -ms-border-radius: 1.14rem !important;
    -o-border-radius: 1.14rem !important;
}

.border-radius-4 {
    border-radius: 1.71rem !important;
    -webkit-border-radius: 1.71rem !important;
    -moz-border-radius: 1.71rem !important;
    -ms-border-radius: 1.71rem !important;
    -o-border-radius: 1.71rem !important;
}

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

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

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

.p-sticky {
    position: sticky !important;
    top: 1rem;
}

/* */

/* 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;
    }
}

/* 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;
}

/* 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*/


/*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*/


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

/* Home Search */
.TopSearch {
    .Search {
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);

        .SearchTitle {
            background: rgba(37, 37, 40, 0.50);
            backdrop-filter: blur(2.5px);

        }

        .SearchBox {

            input {
                all: unset;

                &:first-child {
                    width: 20.9rem;
                    border-left: 0.1em solid #d8d8d8;
                }

                &:nth-child(2) {
                    border-left: 0.1em solid #d8d8d8;
                }

                &:nth-child(2),
                &:nth-child(3) {
                    width: 7.9rem;
                }

                &:nth-child(4) {
                    text-align: center;
                }
            }
        }
    }
}

/* Home Category */
.Category {
    transform: translatey(-50%);

    .CategoryBox {
        flex-shrink: 1;
        transition: all 0.5s ease-in-out;
        width: 33.33%;
        height: 100%;

        &:hover {
            width: 50%;
        }

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

        .CategoryTitle {
            top: 50%;
            right: 50%;
            transform: translate(50%, -50%);

            span {
                background: rgba(235, 235, 240, 0.60);
                line-height: 0 !important;

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

/* Banner Category */
.CategorysHomeBaner {
    .BannerDetails {
        bottom: 1rem;
    }
}

.border-b {
    border-bottom: 1px solid;
}

.QuickAccessLink {
    a {
        border-radius: 1.714rem;
        box-shadow: 0px 16px 24px 0px rgba(0, 0, 0, 0.06), 0px 2px 6px 0px rgba(0, 0, 0, 0.04), 0px 0px 1px 0px rgba(0, 0, 0, 0.04);
    }

}