﻿/* ----------------------------------------- */

:root {
    --av-body-color: #000000;
    --av-body-color-opacity1: #ffffff57;
    --av-body-color-opacity2: #00000057;
    --av-body-color-rgb: 33, 37, 29;
    --av-body-bg: #F4F4F5;

    --av-brand-color1: #FEC420;
    --av-brand-color2: #4E64DF;
    --av-brand-color3: #757575;

    --av-bg-color1: #151523;
    --av-bg-color2: #34489E;
    --av-bg-color3: #e8e8e8;

    --av-brand-color2-rgb: 78, 100, 223;

    --av-light-bright: #eee;
    --av-text-light: #f8f9fa;
    --av-text-dark: #838383;
    --av-text-highlight: #34489E;
    
    --av-item-bg: #000;
    --av-text-item-bg: #fff;
    
    --av-border-color: #ddd2;
    --av-border-size: 2px;
    --av-border-radius: 0.5rem;
    --av-border-radius-sm: 5px;
    --av-border-radius-md: 15px;
    
    --av-brand-shadow: 0 2px 4px 0 rgba(21, 21, 35, 0.2);
    --av-brand-text-shadow: 0px 0px 4px rgba(0,0,0,0.9);
    --av-shadow-color: 1, 1, 1;
    
    --av-backdrop: rgba(0,0,0,0.5);
    
    --av-contrast: #ced4da;
    --av-contrast-rgb: 206,212,218;
    
    --av-disabled: #ddd;
    --av-disabled-bg: #657d95;
    
    --av-table-header: #293449;

    --av-brand-btn1: #ff004456;

    --av-brand-blur:blur(10px);
}

/* ----------------------------------------- */

html[dir=ltr] body {
    background-color: var(--av-body-bg);
    /*background-blend-mode: overlay,overlay,overlay,normal;*/
}

html[dir=rtl] body {
    font-family: PersianFont !important;
    background-color: var(--av-body-bg);
    /*background-blend-mode: overlay,overlay,overlay,normal;*/
}

::-ms-clear {
    display: none;
}

/* -------: Brand Colors - START :------- */
.bg-c1 { background: var(--av-bg-color1); }
.bg-c2 { background: var(--av-bg-color2); }
.bg-c3 { background: var(--av-bg-color3); }

.brand-color1 { color: var(--av-brand-color1) !important; }
.brand-color2 { color: var(--av-brand-color2) !important; }
.brand-color3 { color: var(--av-brand-color3) !important; } 

.brand-bgcolor1 { background-color: var(--av-brand-color1) !important; }
.brand-bgcolor2 { background-color: var(--av-brand-color2); } 
.brand-bgcolor3 { background-color: var(--av-brand-color3) !important; }


.brand-color-set1 {
    background-color: var(--av-brand-color2) !important;
    color: var(--av-body-bg);
    padding: 5px;
}

.bg-brand-glass10 { background-color: rgba(20,20,43,.1) } 
.bg-brand-glass20 { background-color: rgba(20,20,43,.2) }
.bg-brand-glass30 { background-color: rgba(20,20,43,.3) } 
.bg-brand-glass40 { background-color: rgba(20,20,43,.4) } 
.bg-brand-glass50 { background-color: rgba(20,20,43,.5) } 
.bg-brand-glass60 { background-color: rgba(20,20,43,.6) } 
.bg-brand-glass70 { background-color: rgba(20,20,43,.7) } 
.bg-brand-glass80 { background-color: rgba(20,20,43,.8) }
.bg-brand-glass90 { background-color: rgba(20,20,43,.9) }

.brd-round-sm   {border-radius: var(--av-border-radius-sm);}
.brd-round      {border-radius: var(--av-border-radius);}
.brd-round-md   {border-radius: var(--av-border-radius-md);}
/* -------: Brand Colors - END :------- */


/* -------: Reboot Class :------- */
input[type="text"], input[type=checkbox], input[type="password"], select, option, textarea {
    padding-bottom: 0 !important; /*need for dropdown and text same height*/
    font-family: PersianFont;
    transition: 500ms;
}

    input[type="text"]:focus, input[type=checkbox]:focus, input[type="password"]:focus, select:focus, option:focus, textarea:not(.cke_source):focus,
    input[type="text"]:focus:hover, input[type=checkbox]:focus:hover, input[type="password"]:focus:hover, select:focus:hover, option:focus:hover, textarea:not(.cke_source):focus:hover {
        font-family: PersianFont;
        transition: 100ms;
    }

    input[type="password"]:focus {
        transition: 100ms;
    }

input[type="tel"]:focus, input[type="email"]:focus {
    background-color: var(--av-brand-btn1) !important;
    transition: 100ms;
}

/* remove spin button of text box on chrome when type of text box is number */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: HeadingFont !important;
}

h1, .h1 {
    font-size: 2rem;
    line-height: 2.5rem;
}

h2, .h2 {
    font-size: 1.8rem;
    line-height: 2.3rem;
}

h3, .h3 {
    font-size: 1.6rem;
    line-height: 2.1rem;
}

h4, .h4 {
    font-size: 1.4rem;
    line-height: 1.9rem;
}

h5, .h5 {
    font-size: 1.2rem;
    line-height: 1.7rem;
}

h6, .h6 {
    font-size: 1rem;
    line-height: 1.5rem;
}
/* -------: Reboot Class :------- */


/* -------: Required Class :------- */
.required, .data-has-error {
    border-right: 3px solid #dc3545;
    background-color: #fdf5f6;
}

    .required:focus {
        border-right: 3px solid #dc3545;
    }

.required-filled, .data-has-sccuess {
    border-right: 3px solid #28a745;
    background-color: #f4fbf6;
}

    .required-filled:focus {
        border-right: 3px solid #28a745;
    }

.data-has-warning {
    border-right: 3px solid #ffc107;
    background-color: #fbfbf4;
}
/* -------: Required Class :------- */



/* -------: MasterPage Footer - START :------- */
.main-footer {
    background: var(--av-bg-color1);
    clear: both;
    color: #fff;
    padding-top: 2rem;
    margin-top: 2rem;
    overflow: hidden;
    z-index: 100;
}

    .main-footer > div > a {
        color: #B9B9C1 !important;
    }

    .main-footer h2 {
        color: #fff;
        padding-bottom: 1rem;
    }

    .main-footer > nav {
        padding: 5px 20px;
        font-size: 1.1em;
        box-sizing: border-box;
    }

    .main-footer a {
        text-decoration: none;
    }

    .main-footer .menuitem {
        list-style: none;
        margin: 0 !important;
    }

        .main-footer .menuitem li a {
            display: block;
            color: #B9B9C1;
            border-radius: 20px;
            transition-duration: 600ms;
        }

            .main-footer .menuitem li a:hover {
                background-color: var(--av-brand-color2);
                color: #fff;
                padding-right: 10px;
                transition-duration: 300ms;
            }

            .main-footer .menuitem li a img {
                width: 32px;
                margin-left: 0.5rem;
                border-radius: 3px;
                border: 1px solid #fff;
                box-shadow: 0 0 5px 1px rgba(0,0,0,0.4);
                margin-bottom: 5px;
            }

@media (max-width: 991.98px) {
    .main-footer {
        padding-bottom: 4rem;
        background-size: 100rem !important;
    }
}
/* -------: MasterPage Footer - END :------- */


/* -------: GridView - START :------- */
/*remove gridview default select button*/
.table-nofirstcol > tbody > tr:not(.gvrow-pager) > td:first-child, .table-nofirstcol > tbody > tr > th:first-child {
    width: 0px;
    display: none;
}

.table-pointer {
    cursor: pointer;
}

.gvrow-header {
    font-weight: bold;
    border-bottom: #14142b 2px solid;
    padding-top: 4px;
    padding-bottom: 4px;
    height: 35px;
    text-align: right;
    cursor: default !important;
}

    .gvrow-header:hover {
        background-color: transparent !important;
    }

    .gvrow-header th {
        text-align: right;
        padding: 0.4rem 0.5rem;
    }

.ltrtext .gvrow-header th {
    text-align: left !important;
}

.gvcell-button {
    width: 24px;
    padding: 1px;
    background-color: var(--av-brand-color2);
    text-align: center;
    vertical-align: middle;
}

.gvrow-selected {
    background-color: #aaccee;
    color: #000;
}

.gvrow-edit {
    background-color: #dda;
}

.gvrow-empty {
    color: var(--av-brand-color2);
    background-color: #ffc;
    min-height: 2rem;
    border: #14142b 2px solid;
}

    .gvrow-empty td {
        width: 100% !important;
        display: block !important;
    }

.gvrow-footer {
    background-color: #14142b;
    color: #fff;
    font-weight: bold;
    font-size: 1.1em;
}

.gvrow-command {
    background-color: #14142b;
}

.gvrow-pager {
    background-color: #14142b;
    color: #fff;
    text-align: center;
    font-size: 1.1em;
}

    .gvrow-pager a {
        color: #fff !important;
        text-decoration: underline;
    }

    .gvrow-pager span {
        color: #aaa !important;
    }

    .gvrow-pager:hover {
        background-color: #14142b !important;
        cursor: default !important;
    }
/*.gvrow-pager>td{width:100% !important;display:block !important;}*/
.gvrow-odd {
    background-color: #f4f3ef;
}

.gvrow-even {
    background-color: #fff;
}

.gvrow-odd:hover {
    background-color: #4B5B7C;
    color: #fff;
}

.gvrow-even:hover {
    background-color: #4B5B7C;
    color: #fff;
}
/* -------: GridView - END :------- */


/* -------: TreeView - START :------- */
.defaultTreeView {
    line-height: 19px;
}

    .defaultTreeView table td > a {
        margin-right: 5px;
    }
/* -------: TreeView - END :------- */


/* -------: TextArea - START :------- */
.autosize-textarea {
    max-height: 250px;
}

.autosize-textarea-tall {
    max-height: 300px;
    min-height: 200px;
}
/* -------: TextArea - END :------- */


/* -------: grid view (Master - Master-Details Layout) - START :------- */
.av-data-list {
    /* box-shadow: 0 5px 7px 1px rgba(0,0,0,0.05);*/
    border: 2px solid #dcdcdc;
}

    .av-data-list > div > div.row {
        padding: 0.25rem;
        box-sizing: border-box;
        vertical-align: bottom;
    }

        .av-data-list > div > div.row > div:first-child {
            padding-top: 0.25rem;
        }

        .av-data-list > div > div.row > div:not(:first-child):not(:last-child) {
            padding-left: 0.15rem;
            padding-right: 0.15rem;
        }

        .av-data-list > div > div.row > div:last-child:not(:first-child) {
            padding-right: 0.15rem;
        }
/* -------: grid view (Master - Master-Details Layout) - END :------- */


/* -------: form view (Details - Master-Details Layout) - START :------- */
.av-data-item {
    margin-bottom: 1rem;
    box-shadow: 0 5px 7px 1px rgba(0,0,0,0.2);
}
/* -------: form view (Details - Master-Details Layout) - END :------- */


/* -------: Page Cover - START :------- */
.cover-default, .cover-aboutus {
    height: 400px;
    background-size: cover;
    position: relative;
    background-position: center center;
}

.cover-default {
    background-image: url("../../Asset/img/portal/pagecover/default.jpg");
}

@media (max-width: 575.98px) {
    .cover-default {
        margin-top: 0rem;
        height: 150px !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .cover-default {
        margin-top: 0rem;
        height: 170px !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .cover-default {
        margin-top: 0rem;
        height: 300px !important;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .cover-default {
        margin-top: 0rem;
        height: 350px !important;
    }
}

@media (min-width: 1200px) {
    .cover-default {
        margin-top: 0rem;
        height: 365px !important;
    }
}
/*.cover-aboutus  {background-image: url("../../Asset/img/portal/pagecover/bg3.jpg");}*/
/* -------: Page Cover - END :------- */


/* -------: Articles - START :------- */

/* nav icons on the header : decorated*/
.article-nav {
    background-color: #999;
    padding: 0.1rem 1rem 0 1rem;
    text-align: left;
}

    .article-nav > div > * {
        margin-right: 0.15rem;
    }

    .article-nav > div > a {
        display: inline-block;
        padding: 0.15rem 0.15rem 0 0.15rem;
        border: 1px solid transparent;
        border-radius: 3px;
        line-height: 1;
        color: #ddd;
    }

    .article-nav > div > *:hover {
        border: 1px solid #870909;
        color: #fff;
        background-color: var(--av-brand-color1);
    }

.article-header {
    height:100%;
    color: #fff;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 30%);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

    .article-header > div {
        z-index: 1; /* bugfix: opera z-index overlay */
    }

.article-footer {
    padding: 2px 1rem;
}
/* -------: Articles - END :------- */


/* :-------:-------: Special Class Style :: START :-------:-------: */
/*used for admin content top margin*/

p b, p strong { font-weight: 700 !important; }

.content-top-margin {
    margin-top: 1rem; /* HTC: calculate based on navbar height */
    /*clear:both;
    min-height:1px;*/
}

.kbd-en, .en {
    font-family: Arial, Tahoma, Verdana !important;
}

.page-title {
    margin-top: 3rem;
}

    .page-title > i {
        color: var(--av-brand-color1);
    }

    .page-title > h2 {
        display: inline-block;
    }

    .page-title > p {
        display: block;
        padding-right: 1rem;
    }

.photo-thumbnail {
    border: 1px solid #fff;
    box-shadow: 0 0 1px 2px #333;
    border-radius: 3px;
    max-width: 100%;
    max-height: 20rem;
}

.section-default {
    margin: 4em 0;
}

.fixed-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0.75;
    z-index: -1;
}

.bg-1 {
    background: #fff url(../../Asset/img/portal/background/bg1.jpg) no-repeat content-box;
    background-position: center;
    background-size: cover;
    min-height: 400px;
}

.bg-2 {
    background: #fff url(../../Asset/img/portal/background/bg2.jpg) no-repeat content-box;
    background-position: center;
    background-size: cover;
    min-height: 400px;
    background-position-y: top;
}

/* Page Style */
.reading-col {
    text-align: justify;
    text-justify: kashida;
}

    .reading-col:nth-child(odd) {
        padding: 1rem 2rem 1rem 1rem;
    }

    .reading-col:nth-child(even) {
        padding: 1rem 1rem 1rem 2rem;
    }

    .reading-col > h2, .post-text > h2 {
        color: var(--av-brand-color1);
    }

        .reading-col > h2:before, .post-text > h2:before {
            color: var(--av-brand-color1);
            content: "\f10c";
            font-family: FontAwesome;
            margin-left: 0.7rem;
            font-size: 0.6em;
        }

    .reading-col > h3, .post-text > h3 {
        color: var(--av-brand-color1);
    }

        .reading-col > h3:before, .post-text > h3:before {
            color: var(--av-brand-color1);
            content: "\f111";
            font-family: FontAwesome;
            margin-left: 0.6rem;
            font-size: 0.7em;
            vertical-align: bottom;
        }

@media (max-width: 575px) {
    .reading-col {
        padding: 1rem 2rem !important;
    }
}

.img-deco {
    width: 100%;
    margin: 2rem 0.2rem;
    border: 0.1rem solid #fff;
    border-radius: 5px;
    box-shadow: 0 5px 7px 1px rgba(0,0,0,0.2);
}

.img-deco-effect1 {
    max-width: 100%;
    border: 0.1rem solid rgba(67, 103, 203,0.2);
    border-radius: 5px;
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);
}

.photo-attachment {
    width: 100%;
    border: 0.1rem solid #fff;
    border-radius: 5px;
    box-shadow: 0 5px 7px 1px rgba(0,0,0,0.2);
}

/* POST STYLE */
/* some class are equal with reading-col, check before change */
.post-header {
    padding: 0.2rem 2rem;
    /*background-color: #14142b;*/
    color: var(--av-brand-color1);
}

.post-content {
    margin-top: 1rem;
}

.post-text {
    text-align: justify;
}

    .post-text ul {
        list-style-position: inside;
        margin-right: 1rem;
    }

.post-photo {
    border-radius: 5px;
    margin-top: 1rem;
    margin-bottom: 2rem;
    border: 3px solid #fff;
    box-shadow: 0 5px 7px 1px rgba(0,0,0,0.05);
    /*box-shadow: 0 0 15px 1px rgba(0,0,0,0.5);*/
}

.post-file {
    border-radius: 5px;
    margin-top: 1rem;
}

.post-footer {
    /*background-color: #14142b;*/
    padding: 0.2rem 2rem;
    margin-top: 1rem;
    color: var(--av-brand-color1);
}


/* End : Page Style */


/* public link, inline link */
.p-link, .i-link {
    transition: 400ms;
}

    .p-link:hover {
        text-decoration: none;
        color: var(--av-brand-color1);
        transition: 400ms;
    }

    .i-link:hover {
        color: var(--av-brand-color1);
        transition: 400ms;
    }

    .p-link:before {
        content: '\f0a8';
        font-family: FontAwesome;
        margin-left: 0.35rem;
        vertical-align: bottom;
    }

.p-linkB2, .i-link {
    transition: 400ms;
}

    .p-linkB2:hover {
        text-decoration: none;
        color: #14142b;
        transition: 400ms;
    }

    .i-link:hover {
        color: #14142b;
        transition: 400ms;
    }

    .p-linkB2:before {
        content: '\f0a8';
        font-family: FontAwesome;
        margin-left: 0.35rem;
        vertical-align: bottom;
    }

.a-light a {
    color: #fff;
}

    .a-light a:hover {
        text-decoration: none;
    }

/* transparent background over element */
.bgo-black:after {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-color: rgba(0,0,0,0.3);
    content: " ";
    padding: 0;
    margin: 0;
}

.bgo-grd-black {
    opacity: 0.5;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 5%, transparent 45%);
}

.startbar {
    background: #f04 url('../../Asset/img/portal/background/estate-pattern.png');
    padding: 1.5rem 0 1rem 0;
    font-size: 1.25rem;
    font-family: HeadingFont;
    text-align: center;
}

    .startbar a {
        color: #fff !important;
        text-shadow: 1px 1px 2px #000;
    }

.av-splash {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 70001;
    background: #f04 url('../../Asset/img/portal/background/estate-pattern.png');
}

.fixed-height {
    height: 4.5rem;
}

/*  Pseudo Button */
.pseudobtn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
}

.pseudobtn-outline-brand {
    color: #92278f;
    border-color: #92278f;
}

.pseudobtn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

.pseudobtn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.pseudobtn-outline-success {
    color: #28a745;
    border-color: #28a745;
}

.pseudobtn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}

.pseudobtn-outline-warning {
    color: #ffc107;
    border-color: #ffc107;
}

.pseudobtn-outline-info {
    color: #17a2b8;
    border-color: #17a2b8;
}

.pseudobtn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa;
}

.pseudobtn-outline-dark {
    color: #343a40;
    border-color: #343a40;
}

.fixed-icon-whatsapp {
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 1030;
    line-height: 1;
    transition: 1s;
    overflow: hidden
}

@media(max-width:575.98px) {
    .fixed-icon-whatsapp {
        bottom: 25px;
        left: 25px;
        width: 72px;
        right: auto
    }
}

@media(min-width:576px) and (max-width:767.98px) {
    .fixed-icon-whatsapp {
        bottom: 50px;
        right: calc(50% - 36px);
        left: auto;
        width: 72px
    }
}

.hot-link {
    color: var(--av-brand-color2) !important
}

    .hot-link:hover {
        color: #14142b !important
    }

/* font size rsp1 */
.font-size-rsp {
    font-size: 1rem;
    color: var(--av-text-dark);
    font-weight: 200;
    font-size: 1rem;
    text-align: justify;
    line-height: 1.8;
}

@media(min-width:330px) {
    .font-size-rsp {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media(min-width:576px) {
    .font-size-rsp {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media(min-width:768px) {
    .font-size-rsp {
        font-size: 1rem;
        line-height: 1.8;
    }
}

@media(min-width:992px) {
    .font-size-rsp {
        font-size: 1rem;
        line-height: 1.8;
    }
}

@media(min-width:1200px) {
    .font-size-rsp {
        font-size: 1rem;
        line-height: 1.8;
    }
}

@media(min-width:1400px) {
    .font-size-rsp {
        font-size: 1rem;
        line-height: 1.8;
    }
}
/* END font size rsp1 */

/* H font size */
.font-size-h {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--av-text-dark);
    line-height: 1.8;
    text-align: justify;
}

@media(min-width:330px) {
    .font-size-h {
        font-size: 1rem;
        font: 700 !important;
    }
}

@media(min-width:576px) {
    .font-size-h {
        font-size: 1.2rem;
        font: 700;
    }
}

@media(min-width:768px) {
    .font-size-h {
        font-size: 1.1rem;
        font: 700;
    }
}

@media(min-width:992px) {
    .font-size-h {
        font-size: 1.3rem;
        font: 700;
    }
}

@media(min-width:1200px) {
    .font-size-h {
        font-size: 1.4rem;
        font: 700;
    }
}

@media(min-width:1400px) {
    .font-size-h {
        font-size: 1.4rem;
        font: 700;
    }
}
/* END font size rsp1 */

/* H2 font size */
.font-size-h2 {
    font-size: 1rem;
    font-weight: bold;
    color: var(--av-text-dark);
    line-height: 1.8;
    text-align: justify;
}

@media(min-width:330px) {
    .font-size-h2 {
        font-size: 1rem;
        font: bold;
        line-height: 1.6rem;
        padding: 0.3rem;
    }
}

@media(min-width:576px) {
    .font-size-h2 {
        font-size: 1rem;
        font: bold;
        line-height: 1.8;
    }
}

@media(min-width:768px) {
    .font-size-h2 {
        font-size: 1rem;
        font: bold;
        line-height: 1.8;
    }
}

@media(min-width:992px) {
    .font-size-h2 {
        font-size: 1rem;
        font: bold;
        line-height: 1.8;
    }
}

@media(min-width:1200px) {
    .font-size-h2 {
        font-size: 1rem;
        font: bold;
        line-height: 1.8;
    }
}

@media(min-width:1400px) {
    .font-size-h2 {
        font-size: 1rem;
        font: bold;
        line-height: 1.8;
    }
}
/*END H2 font size */

/* photo size  */
.photo-size {
    width: 75%;
}

@media(min-width:330px) {
    .photo-size {
        width: 60%;
    }
}

@media(min-width:576px) {
    .photo-size {
        width: 55%;
    }
}

@media(min-width:768px) {
    .photo-size {
        width: 100%;
    }
}

@media(min-width:992px) {
    .photo-size {
        width: 100%;
    }
}

@media(min-width:1200px) {
    .photo-size {
        width: 100%;
    }
}
/* END font size rsp1 */

/* start yellow background */
.bg-color-yellow {
    background-image: repeating-linear-gradient(135deg, rgba(242,242,242, 0.08) 0px, rgba(242,242,242, 0.08) 1px,transparent 1px, transparent 9px),repeating-linear-gradient(45deg, rgba(242,242,242, 0.08) 0px, rgba(242,242,242, 0.08) 1px,transparent 1px, transparent 9px),linear-gradient(90deg, rgb(255,170,0),rgb(203,139,0));
}

.bg-color-gray {
    background-image: radial-gradient(circle at center center, rgba(238,26,26, 0),rgb(232,231,231)),repeating-linear-gradient(135deg, rgb(232,231,231) 0px, rgb(232,231,231) 1px,transparent 1px, transparent 4px),repeating-linear-gradient(45deg, rgb(246,246,246) 0px, rgb(246,246,246) 5px,transparent 5px, transparent 6px),linear-gradient(90deg, rgb(232,231,231),rgb(232,231,231));
}
/* end yellow background */

/* start Navy blue background */
.bg-color-Navyblue {
    background-image: repeating-linear-gradient(135deg, rgba(172, 176, 216,0.08) 0px, rgba(172, 176, 216,0.08) 1px,transparent 1px, transparent 9px),repeating-linear-gradient(45deg, rgba(172, 176, 216,0.08) 0px, rgba(172, 176, 216,0.08) 1px,transparent 1px, transparent 9px),linear-gradient(90deg, rgb(52,72,158),rgb(25,38,95));
}
/* end Navy blue background */

/* Icon Services */
.icon-Services {
    width: 85px;
    height: 85px;
    margin: 8px 10px 10px 8px;
}

@media(min-width:330px) {
    .icon-Services {
        width: 85px;
        height: 85px;
        margin: 10px 10px 10px 8px;
    }
}

@media(min-width:576px) {
    .icon-Services {
        width: 100px;
        height: 100px;
        margin: 15px 15px 15px 15px;
    }
}

@media(min-width:768px) {
    .icon-Services {
        width: 150px;
        height: 150px;
        margin: 15px 15px 15px 15px;
    }
}

@media(min-width:992px) {
    .icon-Services {
        width: 210px;
        height: 210px;
        margin: 15px 15px 15px 15px;
    }
}

@media(min-width:1200px) {
    .icon-Services {
        width: 210px;
        height: 210px;
        margin: 15px 15px 15px 15px;
    }
}

@media(min-width:1400px) {
    .icon-Services {
        width: 210px;
        height: 210px;
        margin: 15px 15px 15px 15px;
    }
}
/* Extra small devices (portrait phones, less than 576px) */

/* En Menu */
.en-menu {
    color: var(--av-brand-color2) !important;
}

.en-menu-margin {
    z-index: 5000;
    width: 200px;
    margin: 15px 15px 15px 15px;
}

@media(min-width:330px) {
    .en-menu-margin {
        width: 17rem;
        margin-top: 4px;
    }
}

@media(min-width:576px) {
    .en-menu-margin {
        width: 18rem;
        margin-top: 6px;
    }
}

@media(min-width:768px) {
    .en-menu-margin {
        width: 24rem;
        margin-top: 2px;
    }
}

@media(min-width:992px) {
    .en-menu-margin {
        width: 12rem;
        margin-top: 14px;
    }
}

@media(min-width:1200px) {
    .en-menu-margin {
        width: 14rem;
        margin-top: 16px;
    }
}

@media(min-width:1400px) {
    .en-menu-margin {
        width: 12rem;
        margin-top: 15px;
    }
}

/* En Menu */

/* margin-top-bottom Menu */
.margin-top-bottom {
    margin-top: 7rem !important;
}

@media(min-width:330px) {
    .margin-top-bottom {
        margin-top: 4rem !important;
    }
}

@media(min-width:576px) {
    .margin-top-bottom {
        margin-top: 5rem !important;
    }
}

@media(min-width:768px) {
    .margin-top-bottom {
        margin-top: 6rem !important;
    }
}

@media(min-width:992px) {
    .margin-top-bottom {
        margin-top: 7rem !important;
    }
}

@media(min-width:1200px) {
    .margin-top-bottom {
        margin-top: 8rem !important;
    }
}


@media(min-width:1400px) {
    .margin-top-bottom {
        margin-top: 8rem !important;
    }
}

.radiusbrand {
    border-radius: 15px !important;
}
/* margin-top-bottom end */

/* start boxbrand*/
.boxbrand {
    position: relative;
    display: block;
    background-color: var(--av-body-color-opacity1);
    padding: 60px 50px 60px 50px;
    box-shadow: var(--av-brand-shadow);
    z-index: 2;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}
/* end */

/* Brand Button */
.btn-brand {
    color: #fff !important;
    background-color: var(--av-brand-color2) !important;
    padding: 15px 34px !important;
    border-radius: var(--av-border-radius-md);
    font-weight: 900;
    font-size: 18px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    line-height: 25px;
}

    .btn-brand:hover {
        color: var(--av-bg-color3) !important;
        background-color: var(--av-brand-color1) !important;
    }

    .btn-brand:focus, .btn-brand.focus {
        box-shadow: 0 0 0 0.2rem var(--av-body-color-opacity1);
    }

    .btn-brand.disabled, .btn-brand:disabled {
        color: var(--av-bg-color3);
        background-color: var(--av-body-color-opacity1);
        border-color: var(--av-body-color-opacity1);
    }

    .btn-brand:not(:disabled):not(.disabled):active, .btn-brand:not(:disabled):not(.disabled).active,
    .show > .btn-brand.dropdown-toggle {
        color: var(--av-bg-color3);
        background-color: var(--av-brand-color1);
        border-color: var(--av-brand-color1);
    }

        .btn-brand:not(:disabled):not(.disabled):active:focus, .btn-brand:not(:disabled):not(.disabled).active:focus,
        .show > .btn-brand.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem var(--av-body-color-opacity1);
        }
/* End Brand Button */

/* Brand Button */
.btn-brandlight {
    color: var(--av-bg-color1) !important;
    background-color: var(--av-bg-color3) !important;
    padding: 15px 34px !important;
    border-radius: 30px;
    font-weight: 900;
    font-size: 18px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 17px;
    line-height: 25px;
}

    .btn-brandlight:hover {
        color: var(--av-bg-color3) !important;
        background-color: var(--av-brand-color1) !important;
    }

.btn-brand:focus, .btn-brand.focus {
    box-shadow: 0 0 0 0.2rem var(--av-body-color-opacity1);
}

.btn-brandlight.disabled, .btn-brand:disabled {
    color: var(--av-bg-color3);
    background-color: var(--av-body-color-opacity1);
    border-color: var(--av-body-color-opacity1);
}

.btn-brandlight:not(:disabled):not(.disabled):active, .btn-brand:not(:disabled):not(.disabled).active,
.show > .btn-brand.dropdown-toggle {
    color: var(--av-bg-color3);
    background-color: var(--av-brand-color1);
    border-color: var(--av-brand-color1);
}

    .btn-brandlight:not(:disabled):not(.disabled):active:focus, .btn-brandlight:not(:disabled):not(.disabled).active:focus,
    .show > .btn-brandlight.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem var(--av-body-color-opacity1);
    }
/* End Brand Button */

.strip > div.row:nth-child(2n+1) {
    background-color: rgba(176, 176, 153,0.2);
    margin: 0;
    padding: 3px 0;
}

.strip > div.row:nth-child(2n) {
    background-color: rgba(176, 176, 153,0.05);
    margin: 0;
    padding: 3px 0;
}

.boxbrand2 {
    border: 2px solid var(--av-brand-color2);
    padding: 20px 20px 50px 20px;
    border-radius: 20px;
    background-color: var(--av-body-color-opacity1);
    backdrop-filter: blur(10px);
}

.boxbtn {
    margin-top: -15px !important;
}

.boxbtn2 {
    margin-top: -30px !important;
}

/* start Btn product */
.btn-prd {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 25px;
    transition: all 0.3s ease-in;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    color: var(--av-bg-color1);
    z-index: 1;
    font-weight: 200;
}

    .btn-prd:before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%) scaleY(1) scaleX(1.25);
        top: 100%;
        width: 140%;
        height: 180%;
        background-color: rgba(0, 0, 0, 0.05);
        border-radius: 50%;
        display: block;
        transition: all 0.7s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
        z-index: -1;
    }

    .btn-prd:after {
        content: "";
        position: absolute;
        left: 55%;
        transform: translateX(-50%) scaleY(1) scaleX(1.45);
        top: 180%;
        width: 160%;
        height: 190%;
        background-color: var(--av-brand-color2);
        border-radius: 50%;
        display: block;
        transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
        z-index: -1;
    }

    .btn-prd:hover {
        color: var(--av-bg-color3);
        border: 1px solid var(--av-brand-color2);
    }

        .btn-prd:hover:before {
            top: -35%;
            background-color: var(--av-brand-color2);
            transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
        }

        .btn-prd:hover:after {
            top: -45%;
            background-color: var(--av-brand-color2);
            transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
        }
/* end Btn product */

::-moz-selection { /* Code for Firefox */
    color: var(--av-bg-color3) !important;
    background: var(--av-brand-color2) !important;
}

::selection {
    color: var(--av-bg-color3) !important;
    background: var(--av-brand-color2) !important;
}

a {
    color: var(--av-text-dark);
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: var(--av-brand-color2);
    text-decoration: none;
    background-color: transparent;
}


.menu-btn-bars {
    margin-bottom:-5rem;
}

.menu-btn-bg1, .menu-btn-bg2, .menu-btn-bg3 
 {
    background-size: cover;
    background-position:center;
    background-repeat:no-repeat;
    min-height:300px;
    border-radius: var(--av-border-radius-md);
    overflow:hidden;
}

.menu-btn-bg1 { background-image: url('../../Asset/img/portal/deco/menu-bg1.jpg'); min-height:300px;}
.menu-btn-bg2 { background-image: url('../../Asset/img/portal/deco/menu-bg1.jpg'); min-height:300px;}
.menu-btn-bg3 { background-image: url('../../Asset/img/portal/deco/menu-bg1.jpg'); min-height:300px;}



.product-summary {
    border-radius: var(--av-border-radius-md);
    background:var(--av-body-bg);
    overflow:hidden;
    padding:7px;
    margin-bottom:1rem;
}
.product-summary img {
    border-radius: var(--av-border-radius-md);
}

.product-summary:hover {
    background: #fff;
    box-shadow:var(--av-brand-shadow);
}




.product-note {
    background: rgba(var(--av-brand-color2-rgb), 0.1);
    border: 2px solid var(--av-brand-color2);
    border-radius: var(--av-border-radius-md);
    box-shadow: 0 2px 4px 0 rgba(21,21,35,0.2);
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    padding: 24px;
    position: relative;
    align-self: baseline;
}

.product-note.pn-brand     > h3 { color: var(--av-brand-color2); }
.product-note.pn-primary   > h3 { color: var(--primary); }
.product-note.pn-secondary > h3 { color: var(--secondary); }
.product-note.pn-success   > h3 { color: var(--success); }
.product-note.pn-info      > h3 { color: var(--info); }
.product-note.pn-warning   > h3 { color: var(--warning); }
.product-note.pn-danger    > h3 { color: var(--danger); }
.product-note.pn-light     > h3 { color: var(--light); }
.product-note.pn-dark      > h3 { color: var(--dark); }

.product-note.pn-brand     { background: rgba(var(--av-brand-color2-rgb), 0.1); border: 2px solid var(--av-brand-color2); }
.product-note.pn-primary   { background: rgba(var(--primary-rgb), 0.1);         border: 2px solid var(--primary); }
.product-note.pn-secondary { background: rgba(var(--secondary-rgb), 0.1);       border: 2px solid var(--secondary); }
.product-note.pn-success   { background: rgba(var(--success-rgb), 0.1);         border: 2px solid var(--success); }
.product-note.pn-info      { background: rgba(var(--info-rgb), 0.1);            border: 2px solid var(--info); }
.product-note.pn-warning   { background: rgba(var(--warning-rgb), 0.1);         border: 2px solid var(--warning); }
.product-note.pn-danger    { background: rgba(var(--danger-rgb), 0.1);          border: 2px solid var(--danger); }
.product-note.pn-light     { background: rgba(var(--light-rgb), 0.1);           border: 2px solid var(--light); }
.product-note.pn-dark      { background: rgba(var(--dark-rgb), 0.1);            border: 2px solid var(--dark); }






/* START LOGIN - SIGN UP */
.basket-container {
    position:relative;
    display:inline;
    float:left;
    padding:0.5rem 0;
}

.basket-item {
/*    background:#fff;*/
/*    border-radius:7px;*/
    color: var(--av-brand-color1);
}

/*.basket-item:hover {
    color: var(--av-brand-color1) !important;
}*/

.basket-container:hover .basket-details, .basket-container .basket-item:focus+.basket-details {
    display:block;
    top:45px;
}
.basket-details {
    position:absolute;
    left:0;
    display:none;
    /*background-color:var(--av-brand-color2);*/
    /*color:#fff;*/
    background:#fff;
    color:#333;
    margin-top:10px;
    padding:0.5rem;
    border-radius:0.5rem;
    z-index:70000;
}

.basket-details:before {
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  content:" ";
  position:absolute;
  top:-10px;
  left:10px;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 767.98px) {
    .basket-details {
        width:300px;
    }
    .basket-container {
        float: none;
        position: absolute;
        top: 115px;
        left: 10px;
        z-index: 10000;
    }
    .basket-item > span {
        display: none;
    }
}

@media (min-width: 768px) {
    .basket-details {
        width:384px;
    }
    .basket-item > span {
        display: inline-block;
    }
    .basket-item > i.fa-user-circle-o {
        margin-left: 0.25rem;
    }
    .basket-item > i.fa-angle-down {
        margin-right: 0.25rem;
    }
}
/* END LOGIN - SIGN UP */

.goto-top {
    position:fixed;
    left: 1.8rem;
    bottom: 2.2rem;
}

@media (max-width: 575.98px) {
    .goto-top {bottom:8rem;}
}

.img-bgfit {
    width:100%;
    height:300px;
    background-size:cover;
    background-position: center center;
}