@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
}

.loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    z-index: 999999;
}

.loader-logo {
    width: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: fade 2s linear infinite;
}

@keyframes fade {
    100% {
        opacity: 0;
    }
}

.loader-logo img {
    width: 100%;
}

.header {
    width: 100%;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px 20px 40px;
    transition: .3s ease-in-out;
    position: relative;
}

.header.active {
    bottom: 0px;
}

.menuIcon,
.mobileMenu {
    display: none;
}

.header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header nav ul li {
    position: relative;
}

.header nav ul li ul {
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 30px;
    background: #fff;
    width: 300px;
    left: 0;
    transition: .3s ease-in-out;
    display: none;
    z-index: 9999;
}

.header nav ul li:hover ul {
    display: block;
}

.header nav ul li ul li,
.header nav ul li ul li a {
    display: block;
    color: #000;
    width: 100%;
    border-radius: 0;
}

.header nav ul li a {
    color: #fff;
    margin-right: 5px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: .3s ease-in-out;
}

.header nav ul li a:hover {
    background: #616161;
    color: #ffffff;
}

.header nav ul li a.active {
    background: #fff;
    color: #000;
}

.header .logo {
    height: 120px;
    z-index: 999;
    background: #000;
    position: absolute;
    top: 0;
    right: 20px;
    padding: 10px;
    border-radius: 5px;
    /* background: #F7F7F7; */
    text-align: center;
}

.header .logo img {
    height: 100%;
    object-fit: contain;
}

.hero {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* .hero .site-logo{
    position: absolute;
    left: 50px;
}
*/
.hero .site-logo img {
    width: 150px;
}

.hero-content {
    width: 100%;
    padding: 5px 20px;
    border-radius: 10px;
    background: linear-gradient(rgba(1, 8, 22, 0.94), rgba(1, 8, 22, 0.94)), url('../img/bg-1.jpg');
    background-size: cover;
    background-position: top center;
    text-align: center;
    padding-bottom: 10px;

}

.hero-content.home {
    display: grid;
    grid-template-columns: 1fr 3fr;
}

.hero-content h1 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 30px;
}

.hero-content p {
    text-align: center;
    color: #999;
    margin: 10px auto;
}

.hero-content .hero-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.hero-content p b {
    color: #fff;
}

.hero-content .hero-btn a {
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    background: #fff;
    color: #000;
}


.hero-content .hero-btn a:last-child {
    color: #fff;
    background: #c78800;
}




.title {
    width: 100%;
    display: block;
    margin: 15px auto;
    text-align: center;
    text-transform: uppercase;
}

.clients {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;

}

.clients .box {
    width: 100%;
    background: #ffffff;
    text-align: center;
    margin: 20px auto;
    position: relative;
}

.clients .box button,
.client-center button {
    display: inline-block;
    padding: 10px;
    /* background: #ff4a4a; */
    color: #ff4a4a;
    background: transparent;
    border: 0;
    outline: 0;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 0;
}

.clients .box img {
    width: 100%;
    object-fit: contain;
}

.clients .box a.btn {
    display: block;
    width: 100%;
    background: #000;
    color: #fff;
    margin-top: 15px;
    text-decoration: none;
    padding: 10px;
}

.spacer {
    display: block;
    padding: 80px;
}

.page-header {
    width: 100%;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    flex-direction: column;
    text-align: center;
}

.payment {
    align-items: center;
    display: grid;
    grid-template-columns: 400px 2fr;
    gap: 20px;
}

.payment h4 {
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 20px;
}

.qr-image img {
    width: 100%;
    border: 1px solid #000;
}

.payment table {
    width: 100%;
}

.payment table tr th {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px;

}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 25px 0px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 25px 0px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 25px 0px;
}

.grid-1-3 {
    display: grid;
    gap: 20px;
    grid-template-columns: 300px 1fr;
    margin: 25px 0px;
}

.table-info table {
    margin: 25px 0px;
    width: 100%;
    display: table;
    text-align: center;
}

.table-info table tr td,
.table-info table tr th {
    padding: 10px;
    width: auto;
    border: 1px solid #8d8d8d;
}

.table-info table tr:nth-child(odd) {
    /* background: #d6d6d6; */
}

.product-page p {
    font-size: 16px;
    line-height: 25px;
    color: #2c2c2c;
    display: block;
    margin-bottom: 15px;
}

.products-box {
    width: 100%;
}

.products-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.products-box h4 {
    font-size: 16px;
    text-align: center;
    margin: 15px auto;
    padding: 10px;
    text-transform: uppercase;
    color: #fff;
    background: #000;
}

.pro-div {
    width: 100%;
    border: 1px solid #bbbbbb;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.03);
}

.pro-div img {
    width: 100%;
    height: 150px;
    padding: 20px 0px;
    object-fit: contain;
}

.pro-div h4 {
    padding: 10px;
    text-align: center;
    color: #fff;
    background: #0B0766;
}

.pro-div p {
    padding: 10px;
    color: #4d4d4d;
}


.table-design {
    display: block;
    width: 100%;
    margin: 20px auto;
}

.table-design tr td {
    display: block;
    padding: 10px;
    width: 100%;
    border: 1px solid #777;
}

.company img {
    width: 100%;
    border: 1px solid #000;
}



.contact_form {
    width: 100%;
    margin: 0px auto;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: flex-start;
    align-items: start;
}

.contact_details {
    width: 40%;
    border-radius: 10px;
    background: #020c3b;
    padding: 30px;
}

.contact_details h1 {
    color: #fff;
    font-size: 19px;
    font-weight: 400;
}

.contact_details p {
    font-size: 14px;
    color: #fff;
}

.contact_details h3 {
    font-size: 16px;
    color: #5886a8;
    font-weight: 500;
    margin-top: 40px;
}

.contact_details .icon_list {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.contact_details .icon_list i {
    margin-right: 10px;
    background: #999;
    color: #000;
    padding: 5px;
    border-radius: 10px;
}

.contact_details .icon_list a {
    color: #ffffff;
    text-decoration: none;
}

.contact_details iframe {
    width: 100%;
    height: 250px;
    margin-top: 20px;
    border: 0;
    outline: 0;
    border-radius: 15px;
}

.contact_form form {
    padding: 25px;
    width: 60%;
}

.contact_form form h1 {
    font-size: 22px;
    color: #000;
    font-weight: 600;
}

.contact_form form p {
    font-size: 15px;
}

.contact_form form label {
    margin-top: 20px;
    display: inline-block;
    font-size: 13px;
}

.contact_form form input,
.contact_form form textarea {
    width: 100%;
    resize: none;
    padding: 5px 10px;
    font-size: 10px;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid #888;
    outline: 0;
    display: block;
}

.contact_form form button {
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 5px;
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    border: 0;
    outline: 0;
    margin-top: 10px;
    transition: 0.3s ease-in-out;
}

.contact_form form button:hover {
    background: #222;
    transform: skew(-5deg);
}

.col {
    padding: 0px 10px;
}

.col-1 {
    width: 100%;
}

.col-2 {
    width: 50%;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.footer {
    width: 100%;
    background: #000;
    padding: 10px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.footer a,
.footer span {
    text-decoration: none;
    color: #d8a109;
}

@media (max-width: 768px) {

    .header {
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

   

    .clients,
    .payment {
        grid-template-columns: 1fr;
    }


    .header nav {
        display: none;
    }

    .menuIcon {
        display: inline-flex;
        padding: 10px 20px;
        border-radius: 30px;
        color: #0a0a0a;
        background: #f5f5f5;
        cursor: pointer;
    }

    .menuIcon i {
        margin-right: 15px;
    }

    .mobileMenu.active {
        top: 85px;
    }

    .mobileMenu {
        width: 100%;
        position: fixed;
        z-index: 9999;
        top: -100%;
        left: 0;
        background: #040218;
        padding: 20px;
        transition: .3s ease-in-out;
        display: block;
    }

    .mobileMenu ul li {
        list-style: none;
    }

    .mobileMenu ul li ul {
        padding: 0px 20px;
    }

    .mobileMenu ul li a {
        padding: 10px;
        color: #fff;
        text-decoration: none;
        display: block;
    }

    .contact_form {
        flex-direction: column-reverse;
    }

    .contact_details {
        width: 100%;
    }

    .contact_form form {
        width: 100%;
    }

    .col-2 {
        width: 100%;
    }



    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5,
    .grid-1-3 {
        grid-template-columns: 1fr;
    }
}








#container {
    position: relative;
    display: flex;
}

#profile {
    flex: 30%;
    display: block;
    position: relative;
    margin: 5% 2% 0 10%;
    width: 100%;
    height: 100%;
}

#info-cards {
    flex: 55%;
    display: block;
    margin-top: 5%;
    margin-right: 10%;
    width: 100%;
    height: 100%;
}

#image {
    position: relative;
    overflow: hidden;
}

#image,
#profile-photo {
    position: relative;
    width: 300px;
    height: 300px;
    padding-bottom: 10px;
    border-radius: 10px;
}

#image>a {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5) !important;
    height: 100%;
    width: 100%;
    display: none;
}

#image>a>i {
    -webkit-text-stroke: 1px #ffffffdd;
    padding: 40%;
}

#image:hover a {
    display: block;
}

#name {
    font-size: 18px !important;
    line-height: 20px !important;
}

#about,
.card>ul>li {
    padding: 0 0 0 15px;
    position: relative;
    display: inline-block;
    line-height: 3vw;
    width: 100%;
}

#about {
    font-size: 20px !important;
    padding: 0 !important;
}

#name,
#about>p {
    font-weight: bolder;
    font-family: 'Open Sans', sans-serif;
}

#email {
    font-size: 15px !important;
    font-weight: bold !important;
    font-family: 'Cutive Mono', monospace;
}

#college,
#email,
#year-graduation,
#education,
#more-about,
#telephone,
#fax {
    color: #555;
    font-size: 13.5px;
}



#social-links,
#about {
    display: inline-block;
}

#social-links {
    margin-bottom: 12px;
}

#social-links a {
    margin: 0 10px;
}

#edit-intro {
    display: block;
    color: #097bbf;
    font-family: 'Nunito', sans-serif;
}

.fab {
    font-size: 1.1em;
}

.fab,
.fas {
    color: whitesmoke;
}

#about>a {
    top: 4px;
    right: 8px;
}

.edit {
    top: 19px;
    right: 10px;
}

#about>a,
.edit {
    position: absolute;
    font-size: 15px !important;
}

.stroke-transparent {
    -webkit-text-stroke: 1px #000;
    -webkit-text-fill-color: transparent;
}

.blue {
    color: #097bbf !important;
    font-size: 13px;
}

.stroke-transparent-blue {
    -webkit-text-stroke: 1px #097bbf;
    -webkit-text-fill-color: transparent;
}

.card {
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .1);
    overflow-x: hidden;
    margin-bottom: 30px;
    padding: 15px 30px 30px 30px;
    background-color: #fff;
}

.card>p {
    color: #0e141e;
    font-weight: bolder;
    font-size: 18px;
    line-height: 2;
}

.card>p>i {
    font-size: 18px;
}

.card>a {
    font-weight: 400;
    font-size: 15px;
    margin: 0;
    margin-left: 25px;
    padding: 0;
    border: 0;
    height: auto;
    background: transparent;
    color: #097bbf;
    outline: none;
    cursor: pointer;
}

.card>ul {
    list-style-type: none;
}

.tags {
    font-size: 17px;
    font-weight: bolder;
}

.tags~a {
    display: none !important;
}

.tags span {
    font-size: 14px;
    font-weight: normal;
    color: #0e141e;
}

.tags span span {
    color: #738f93;
}

@media screen and (max-width:1090px) {
    #profile {
        margin-left: 5%;
    }
}

@media screen and (max-width:850px) {
    #container {
        display: block;
    }

    #profile {
        width: 90%;
    }

    .card {
        margin: 0 5%;
        margin-bottom: 30px;
    }
}






ul li {
    list-style: none
}

table {
    border-collapse: collapse
}

.fcp_bdcrm_58 {
    margin-top: 3px;
    height: 30px;
    width: 100%
}

.FCP .fcp_bdcrm_58,
.FM_m13 {
    margin-bottom: 5px
}

.fcp_bdcrm_58 .fcp_bdcrm_wrap {
    width: 2000px;
    box-sizing: border-box;
    margin: 1px auto
}

.fcp_bdcrm_58 .fcp_bdcrm_wrap p {
    font-size: 12px;
    color: #000;
    display: inline-block;
    margin: 3px 0 0;
    height: 30px;
    line-height: 14px;
    background-color: transparent;
    position: relative;
    box-sizing: border-box
}

.FCP .fcp_bdcrm_58 .fcp_bdcrm_wrap p {
    margin: 0 0 0 1px
}

.fcp_bdcrm_58 .fcp_bdcrm_wrap p a {
    color: #5d5d5d
}

.fcp_bdcrm_58 .fcp_bdcrm_wrap p a,
.fcp_bdcrm_58 .fcp_bdcrm_wrap p span.fcp_bdcrm_last {
    display: block;
    padding: 0 0 1px 12px;
    float: left;
    margin-top: 5px
}

.fcp_bdcrm_58 .fcp_bdcrm_wrap p:first-of-type a {
    padding: 0 0 1px
}

.FM_Ftnav li a:hover,
.fcp_bdcrm_58 .fcp_bdcrm_wrap p a:hover {
    color: #000;
    text-decoration: underline
}

.fcp_bdcrm_58 .fcp_bdcrm_wrap p .fcp_bdcrm_l_tngl,
.fcp_bdcrm_58 .fcp_bdcrm_wrap p .fcp_bdcrm_r_tngl {
    position: absolute;
    color: #5d5d5d;
    top: 5px;
    font-size: 12px
}


.FM_ds20 {
    align-content: flex-start
}

.FM_ds21 {
    justify-content: space-around
}

.FM_jcSb {
    justify-content: space-between
}

.FM_fl,
.ftr4 li {
    float: left
}

.FM_fr {
    float: right
}

.FM_cb {
    clear: both
}

.FM_cp {
    cursor: pointer
}

.FM_cpdef,
.FM_cpdef a {
    cursor: default
}

.FM_COntus .bgin15,
.FM_bo,
.FM_dlvlBtn:hover,
.FM_sRtHvrLft span:first-child,
.FM_sortng,
.height_sectn h3:hover,
.mdc_cert .fwm {
    font-weight: 700
}

#header_pnsno>span.FM_f13,
.FM_bo1,
.FM_fwn,
.FM_nav>ul>li.active:hover,
.FM_snglNav .ddnav .FM_bo,
.mdc_cert .fwn,
.stkyH span.FM_bo {
    font-weight: 400
}

.FM_pa,
.abslt {
    position: absolute
}

.FM_COntus .bepdpreq,
.FM_Franch .bepdpreq,
.FM_npdpP_io .FM_prdpge>.FM_ps,
.FM_p_glry .vigB,
.FM_pfleSaU_actv,
.FM_pr,
.FM_stky_frm .FM_be-mfrm .bepdpreq,
.mdc_cert .pr {
    position: relative
}

.FM_ps {
    position: sticky;
    position: -webkit-sticky
}

.FM_OP .m61_dn_ar:after,
.FM_pfleSaU .m63_dn_ar:after,
.FM_pfleSaU .m63_dn_ar:before,
.FM_ps_r,
.stmp .m64_dn_ar {
    right: 0
}

.FM_nav .prdNavall2,
.FM_ps_l,
.FM_sidsdr.FM_fstHvr:hover .FM_mPlaHvr,
.fcp_bdcrm_58 .fcp_bdcrm_wrap p .fcp_bdcrm_l_tngl,
.stkyH .FM_nav .ddnav.ddnav_1 {
    left: 0
}

.FM_ps_2 {
    left: 19px
}

.FM_ps_b {
    bottom: 0
}

.FM_ps_14 {
    bottom: 14px
}

.FM_ps_t {
    top: 0
}

.FM_ps_t3,
.stkyH .rdtsp>span:first-child {
    top: 14px
}

.FM_ps_r2 {
    right: 19px
}

.FCP .FM_prdpge>.FM_ps_t {
    top: 110px
}

.CWSIM .FM_prdpge>.FM_ps_t,
.MDC .FM_prdpge>.FM_ps_t,
.TDWIM .FM_prdpge>.FM_ps_t {
    top: 80px
}

.MDC .FM_ps_t1,
.TDWIM .FM_ps_t1 {
    top: 331px
}

.FCP .FM_ps_t1,
.FCP .stkyH {
    top: 55px
}

.FM_sid_contr,
.FM_zx1 {
    z-index: 1
}

.FM_RELTD .FM_sid_contr {
    z-index: 0
}

.FM_zx3 {
    z-index: 2
}

.FM_zx2 {
    z-index: -1
}

.FM_wRW {
    word-wrap: break-word
}

.FM_bo_sp {
    border-spacing: 0
}

.FM_bo_sp1 {
    border-spacing: 80px 0
}

.FM_PRD .FM_PrdR span.FM_Btn1:hover,
.FM_dlBoxN_innr ul li:hover a,
.FM_dlBoxN_innr>a:hover,
.FM_dlBoxN_innr>div a:hover,
.FM_nav .ddnav li a:hover,
.FM_pDlSecN>span:hover a,
.FM_pfleSaU>ul li a:hover,
.FM_shp_prd .FM_sidimg>span:hover .FM_shp_prdCTA,
.FM_siteafp,
.FM_sldrB:hover .FM_sldrTxt .fasC:hover,
.FM_sldrB:hover .FM_sldrTxt .hvr_txt span:hover,
.FM_td,
.FM_tdu,
.FM_tduHvr:hover,
.FM_txt_d a,
.FM_vcdBtn:hover span {
    text-decoration: underline
}

.FM_Pr-dR a .FM_tdu:hover,
.FM_Txtn,
.FM_ftrGD:hover,
.FM_gbqBtn_get>div span:hover,
.FM_nav>ul>li:hover a.nvHvr:hover,
.FM_sidsdrAfp:hover,
.FM_txt_d a:hover,
.VpNpdp span:hover {
    text-decoration: none
}

.FM_COPV .FM_Social,
.FM_m0,
.FM_nav .ddnav li ul li,
.FM_nav .prdNav li ul li {
    margin: 0
}

.FM_npdpP .Fm_pName .FM_PpPV>p,
.fcp_m1 {
    margin: 0 auto
}

.fcp_m2 {
    margin-left: 28px
}

.FM_m3,
.FM_pSsec:first-of-type {
    margin-left: 10px
}

.FM_PpPV p:first-child>a,
.FM_PpPV p:first-child>span:nth-of-type(2),
.FM_PpPV p:first-child>span:nth-of-type(3),
.FM_ml15 {
    margin-left: 15px
}

.FM_m4,
.mdc_cert .mr10 {
    margin-right: 10px
}

.FM_COntus .becnd,
.FM_Franch .becnd,
.FM_m5,
.mdc_cert .mt10 {
    margin-top: 10px
}

.FM_m6 {
    margin-left: 12px
}

.FM_m8 {
    margin-top: 9px
}

.FM_COntus .bemt15,
.FM_COntus .contactBLin .belft,
.FM_COntus .enqLogInp.inllog,
.FM_PAdd:nth-child(2),
.FM_m9 {
    margin-top: 30px
}

.FM_m10 {
    margin-left: 20px
}

.FM_m11 {
    margin-bottom: 40px
}

.FM_m12 {
    margin-top: 40px
}

.FM_m14 {
    margin-top: 24px
}

.FM_m15,
.Fm_pName:nth-last-of-type(2),
.loadbtn {
    margin-bottom: 20px
}

.FM_mtn25 {
    margin-top: 25px
}

.FM_m16 {
    margin-left: 16px
}

.FM_m17 {
    margin-left: -10px
}

.FM_NSlde .FM_Abt .FM_AaRt:nth-of-type(4),
.FM_m18 {
    margin-right: 30px
}

.FM_m19 {
    margin-left: 30px
}

.FM_m20 {
    margin-left: 5px
}

.FM_Franch .bedvh,
.FM_m21 {
    margin-top: 15px
}

.FM_m22 {
    margin-top: 4px
}

.FM_m23 {
    margin-left: 141px
}

.FM_m24 {
    margin-top: 8px
}

.FM_m27 {
    margin-top: 2px
}

.FM_m28 {
    margin: 15px 53px 18px
}

.FM_m30 {
    margin: 0 0 19px
}

.FM_m31 {
    margin: 0 0 13px
}

.FM_m32 {
    margin-top: 11px
}

.FM_m33 {
    margin-top: 13px
}

.FM_COPV .FM_Social ul li,
.FM_m34 {
    margin-left: 6px
}

.FM_m35 {
    margin: 10px auto 0
}

.FM_m36 {
    margin-top: 17px
}

.FM_m37 {
    margin-top: 12px
}

.FM_m38 {
    margin-bottom: 17px
}

.FM_m39 {
    margin: 20px 0 0
}

.FM_m40 {
    margin-right: 5px
}

.FM_m41 {
    margin-top: -2px
}

.FM_HvidsS.FM_m42,
.FM_m42,
.FM_pflePrd .FM_Hsr>h2 {
    margin-bottom: 30px
}

.FM_m43 {
    margin: 12px 19px 0
}

.FM_m44 {
    margin-left: 2px
}

.FM_m45 {
    margin: 20px 0
}

.FM_m46 {
    margin-right: 20px
}

.FM_m47 {
    margin: 7px 0 20px
}

.FM_m48 {
    margin: 20px 4px 0
}

.FM_m49 {
    margin: 0 5px
}

.FM_m50 {
    margin: 16px 16px 0 0
}

.FM_m51 {
    margin-top: 7px
}

.FM_m52 {
    margin-left: 40px
}

.FM_m53 {
    margin: 20px 20px 0
}

.FM_ftrfrmRvw,
.FM_m56 {
    margin-top: 50px
}

.FM_m57 {
    margin: 40px auto
}

.FM_m58 {
    margin: 15px 65px 0
}

.FM_m60 {
    margin: 0 6px -5px 0
}

.FM_mb10 {
    margin-bottom: 10px
}

.FM_mb12 {
    margin-bottom: 12px
}

.FM_mb15,
.FM_pfleSaU:nth-last-of-type(2) {
    margin-bottom: 15px
}

.FM_mb16 {
    margin-bottom: 18px
}

.FM_mb38 {
    margin-bottom: 38px
}

.FM_mb17 {
    margin-top: 1px
}

.FM_m54 {
    margin-top: 36px
}

.FM_p2 {
    padding-right: 10px
}

.FM_p3 {
    padding-bottom: 41px
}

.FM_p4 {
    padding: 0 8px
}

.FM_NtsRH,
.FM_p5 {
    padding: 10px 10px 0
}

.FM_p6 {
    padding: 23px 0
}

.FM_p7 {
    padding: 0 80px 10px 0
}

.FM_p8 {
    padding: 0 0 5px
}

.FM_p9 {
    padding: 0 0 6px
}

.FM_p10,
.FM_p51 {
    padding: 10px
}

.pt12 {
    padding-top: 11px
}

.pb12 {
    padding-bottom: 12px
}

.FM_p11 {
    padding: 11px 10px 12px
}

.FM_p12 {
    padding: 0 15px
}

.FM_p13 {
    padding: 12px 0 11px
}

.FM_p14 {
    padding: 13px 10px
}

.FM_p16 {
    padding-bottom: 14px
}

.FM_p17 {
    padding: 0 13px
}

.FM_p18,
.mdc_cert .pb30 {
    padding-bottom: 30px
}

.FM_p19 {
    padding-left: 10px
}

.FM_cinPge .FM_fShtCntnt>div,
.FM_p15,
.FM_p20 {
    padding: 15px
}

.FM_p21 {
    padding: 17px 0 15px
}

.FM_p22,
.mdc_cert .p20 {
    padding: 20px
}

.FM_p23 {
    padding: 0 15px 49px
}

.FM_p24 {
    padding: 6px
}

.FM_p25 {
    padding: 20px 98px
}

.FM_p26 {
    padding: 38px 48px
}

.FM_p27 {
    padding: 14px 90px
}

.FM_p28 {
    padding: 14px 59px
}

.FM_p29 {
    padding-top: 3px
}

.FM_p30 {
    padding-top: 19px
}

.FM_p31 {
    padding: 9px 21px
}

.FM_COntus .bepdpreq .be-lbl,
.FM_Franch .bepdpreq .be-lbl,
.FM_p32 {
    padding-bottom: 2px
}

.FM_p33 {
    padding: 14px 2px
}

.FM_p34 {
    padding-top: 9px
}

.FM_pb10,
.mdc_cert .pb10 {
    padding-bottom: 10px
}

.pb15 {
    padding-bottom: 15px
}

.FM_p52 {
    padding-top: 10px
}

.FM_p53 {
    padding-left: 15px
}

.pl30 {
    padding-left: 30px
}

.pr30 {
    padding-right: 30px
}

.FM_p54 {
    padding-right: 15px
}

.FM_p55 {
    padding-top: 15px
}

.FM_pb25 {
    padding-bottom: 25px
}

.FM_p56 {
    padding-top: 20px
}

.FM_p57 {
    padding: 17px 0 40px
}

.FM_ptb1210 {
    padding: 12px 10px
}

.FM_f11,
.mdc_cert .fs10 {
    font-size: 11px
}

.FM_f12,
.mdc_cert .fs11 {
    font-size: 12px
}

.FM_f13,
.FM_sid_txt,
.FM_stky_frm .FM_be-mfrm .bedblk,
.mdc_cert .fs12,
.mdc_cert .fs13 {
    font-size: 13px
}

.FM_f14,
.FM_shp_prd .FM_f14,
.FM_shp_prd .FM_sid_txt,
.mdc_cert .fs14 {
    font-size: 14px
}

.FM_COntus .be-flisq,
.FM_Franch .be-flisq,
.FM_f15,
.FM_pnsExt #header_pnsno,
.mdc_cert .fs15 {
    font-size: 15px
}

.FM_f16,
.mdc_cert .fs16 {
    font-size: 16px
}

.FM_Ftnav li,
.FM_f17 {
    font-size: 17px
}

.FM_Hsr .FM_rvwC .FM_sRt,
.FM_f18,
.mdc_cert .fs18,
.stkyH .FM_Lsp1.FM_f28.FM_bo {
    font-size: 18px
}

.FM_f20,
.mdc_cert .fs27 {
    font-size: 20px
}

.FM_f22 {
    font-size: 22px
}

.FM_f26 {
    font-size: 26px
}

.FM_f28,
.FM_jobV .FM_pflePrd h2:nth-last-of-type(2) {
    font-size: 28px
}

.FM_lh {
    line-height: 1.75
}

.FM_lh1 {
    line-height: 1.11
}

.FM_lh2,
.Fm_lh4 {
    line-height: 2.38
}

.Fm_lh3 {
    line-height: 1.56
}

.Fm_lh5 {
    line-height: 1.18
}

.Fm_lh6 {
    line-height: 1.22
}

.Fm_lh7 {
    line-height: 1.13
}

.Fm_lh8 {
    line-height: 1.14
}

.Fm_lh9 {
    line-height: 1.29
}

.FM_Ftnav li,
.Fm_lh10 {
    line-height: 1.2
}

.Fm_lh11 {
    line-height: 2
}

.Fm_lh12 {
    line-height: 1.71
}

.Fm_lh13 {
    line-height: 1.3
}

.Fm_lh15 {
    line-height: 1.44
}

.Fm_lh16 {
    line-height: 1.19
}

.Fm_lh17 {
    line-height: 1.43
}

.Fm_lh18 {
    line-height: 1.25
}

.Fm_lh20 {
    line-height: 1.4
}

.Fm_lh21,
.Fm_lh22 {
    line-height: 1.5
}

.Fm_lh23 {
    line-height: 1.15
}

.FM_lh05 {
    line-height: 1.05
}

.FM_slrRtnng .FM_f16,
.lh28 {
    line-height: 18px
}

.FM_Lsp,
.FM_Lsp6,
.Fm_lh19 {
    letter-spacing: -.1px
}

.FM_Lsp1 {
    letter-spacing: -.2px
}

.FM_Lsp2 {
    letter-spacing: .2px
}

.FM_Ftnav li,
.FM_Lsp3 {
    letter-spacing: .8px
}

.FM_Lsp4 {
    letter-spacing: .6px
}

.FM_Lsp5 {
    letter-spacing: .3px
}

.FM_Lsp7 {
    letter-spacing: .5px
}

.FM_Lsp8 {
    letter-spacing: .4px
}

.FM_Lsp9 {
    letter-spacing: .1px
}

.FM_bRds,
.hPR_ni>figure img {
    border-radius: 3px
}

.FM_bRds1,
.FM_fShtH:nth-child(2) {
    border-radius: 3px 3px 0 0
}

.FM_bor {
    border: 1px solid #e5e5e5
}

.FM_bor6,
.ftr5:after {
    border-right: 1px solid #ded9d9
}

.FM_bor1 {
    border-bottom: 1px solid #efefef
}

.FM_bor3 {
    border-radius: 50%
}

.FM_bor6 {
    height: 40px;
    margin: 0 6px
}

.FM_bor7 {
    border: 1px solid #efefef
}

.FM_bor8,
.tbl_data table {
    border: 1px solid #d1d0d0
}

.FM_bor10 {
    border-right: 1px solid #efefef
}

.FM_bor11 {
    border: 1px solid #e9eaf4
}

.FM_Blbor,
.MDC .FM_Head,
.TDWIM .FM_Head {
    border-top: 5px solid #2d3192
}

.bb1 {
    border-bottom: 1px solid #eaeaea
}

.FM_PRD>.FM_Pr-dR article:hover,
.FM_bSw {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16)
}

.FM_bSw1,
.prd_bdyN .FM_RELTD.wdiL .FM_AaRt1:hover {
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, .1)
}

.FM_bSw2 {
    box-shadow: 0 0 6px 0 rgba(128, 128, 128, .1)
}

.FM_bSw3 {
    box-shadow: 0 3px 6px 0 rgba(123, 123, 123, .1)
}

.ftr5:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 50px;
    right: -8px;
    margin: auto 0;
    top: -8px;
    bottom: 0
}

.ftr4 li:first-of-type {
    margin: 22px 19px 0
}

.FM_COPRe .FM_w700 iframe,
.FM_Franch .FM_w3,
.FM_NtsRH .FM_w3,
.FM_snglCat .FM_gbqBtn:nth-of-type(2),
.FM_w1,
.Fm_pDes table,
.cat_indx .FM_w3,
.cin_pgTbl table,
.tbl_data table {
    width: 100%
}

.FM_w2 {
    width: 235px
}

.FM_w3 {
    width: 897px
}

.prd_bdyN .FM_w3 {
    width: 1108px
}

.FCP .prd_bdyN .FM_w3.FCP_pNew {
    width: 935px
}

.testinggg {
    object-fit: scale-down
}

.FM_h153 {
    min-height: 152px
}

.FM_h600 {
    min-height: 600px
}

.FCP section.p010,
.mdc_cert .plr20,
.mdc_cert hgroup {
    padding: 0 20px
}

.FM_rgtAdd {
    height: 600px;
    width: 160px;
    border-radius: 3px
}

.FM_rgtAddStk {
    position: sticky;
    top: 120px
}

.FCP .FM_COPRe .FM_p25 {
    padding: 20px 166px
}

.FCP .FM_COPV .FM_p25 {
    padding: 20px 77px
}

#editicon,
.fm_SVff {
    fill: #fff
}

.FM_pcn:hover {
    box-shadow: 0 0 8px 0 rgba(85, 85, 85, .1);
    border: 1px solid #e4e5ff !important
}

.FM_pcn {
    margin-bottom: 27px
}

.FM_COntus .FM_be_btmm,
.FM_stky_frm .FM_be_btmm {
    width: auto !important;
    padding: 7px 10px 10px !important;
    display: block !important;
    margin: 0 auto;
    font-weight: 400
}

.FM_w5 {
    width: 98.5%
}

.FM_w6 {
    width: 1296px
}

.FM_w7 {
    width: 72%
}

.FM_w8 {
    width: 59%
}

.FM_w12 {
    width: 225px
}

.FM_w13 {
    width: 507px
}

.FM_w14,
.FM_w82 {
    width: 82%
}

.FM_w15,
.FM_w18 {
    width: 18%
}

.FM_w16 {
    width: 970px
}

.FM_w20 {
    width: 20px
}

.FM_w26 {
    width: 145px
}

.FM_w21 {
    width: 342px
}

.FM_w190 {
    width: 190px
}

.FM_COntus .FM_be-mfrm .beemail,
.FM_Franch .FM_be-mfrm .beemail,
.FM_w400 {
    width: 400px
}

.FM_w250 {
    width: 250px
}

.FM_w24 {
    width: 24%
}

.FM_w22,
.FM_w80 {
    width: 90%
}

.FM_w95 {
    width: 95%
}

.FM_wm280 {
    max-width: 280px
}

.FM_w25,
.FM_w280 {
    width: 280px
}

.FM_w68 {
    width: 63px
}

.FM_w69 {
    width: 22px
}

.FM_wm200 {
    max-width: 200px
}

.FM_nPDP .wdiL .FM_w430,
.FM_w412,
.prd_bdyN .wdiL .FM_w430 {
    width: 412px
}

.FM_w150 {
    width: 150px
}

.FM_w27 {
    width: 200px
}

.FM_wm150 {
    min-width: 150px
}

.FM_w275 {
    width: 275px
}

.FM_w570 {
    max-width: 653px
}

.FM_w700 {
    width: 700px
}

.FM_w430 {
    width: 430px
}

.FM_h400 {
    height: 400px
}

.FM_h_M198 {
    min-height: 199px
}

.FM_h200 {
    height: 200px
}

.FM_h185 {
    height: 185px
}

.FM_h_M280 {
    min-height: 280px
}

.FM_h159 {
    height: 159px
}

.FM_h68 {
    height: 63px
}

.FM_h1 {
    height: 458px
}

.FM_h2 {
    height: 140px
}

.FM_h3 {
    min-height: 150px
}

.FM_hm200 {
    max-height: 200px
}

.FM_hmIN200 {
    min-height: 200px
}

.FM_h45,
.FM_stky_frm .FM_be-mfrm .be-flg,
.FM_stky_frm .FM_be-slbox,
.FM_stky_frm .FM_bedvh .be-flisq,
.FM_stky_frm .be-input.FM_benords.FM_benords,
.FM_stky_frm .be-row .FM_be-slbox {
    height: 45px
}

.FM_h46 {
    height: 24px
}

.FM_h47,
.FM_spmnt {
    height: 16px
}

.FM_h150 {
    height: 150px
}

.FM_h4 {
    height: 35px
}

.FM_h5 {
    height: 90px
}

.FM_h6 {
    height: 5px
}

.FM_h20 {
    height: 20px
}

.FM_h32 {
    height: 32px
}

.FM_Opc {
    opacity: .1
}

.FM_Opc1 {
    opacity: 1
}

.FM_logo {
    height: 90px;
    border: 1px solid #ebebeb;
    border-radius: 3px;
    width: 90px
}

.FM_logo img {
    max-width: 90px;
    min-width: 90px;
    max-height: 90px
}

.FM_Gmp {
    width: 12px;
    height: 14.8px;
    margin: -4px 9px 0 0
}

.FM_nav>ul>li:first-of-type a {
    text-align: center;
    width: 90px;
    max-width: 90px;
    min-width: 90px;
    padding: 10px
}

.FM_HsnTbl p:first-child,
.FM_bgH,
.FM_bgH.FM_Opc1:after,
.FM_nav>ul>li.active,
.FM_pfleSaU>ul li:hover:after {
    background-color: #2d3192
}

.FM_nav>ul>li.Active_blue:hover {
    background-color: #2d3192 !important
}

.FM_nav>ul>li>a {
    display: block;
    padding: 11px 27px 10px;
    text-align: center;
    line-height: 1.17;
    min-width: 50px;
    max-width: 253px
}

.fcp_srch {
    font-size: 14px;
    padding: 11px 11px 10px 34px;
    border: 0;
    width: 80%;
    border-top: 1px solid #efefef;
    border-right: 1px solid #efefef;
    border-bottom: 1px solid #efefef
}

.FM_gst_l,
.FM_trs_l,
.FM_vrf_l {
    width: 17px;
    height: 18px
}

input.FM_sRCH:focus {
    border-top: 1px solid #2d3192;
    border-right: 1px solid #2d3192;
    border-bottom: 1px solid #2d3192
}

.FM_stky_frm .FM_be-mfrm input:focus::-webkit-input-placeholder,
input.FM_sRCH:focus::-webkit-input-placeholder {
    opacity: .5
}

.FM_stky_frm .FM_be-mfrm input:focus:-ms-input-placeholder,
input.FM_sRCH:focus:-ms-input-placeholder {
    opacity: .5
}

.FM_stky_frm .FM_be-mfrm input::-moz-placeholder,
input.FM_sRCH::-moz-placeholder {
    color: #acacac;
    opacity: 1;
    transition: opacity 250ms ease-in-out
}

.FM_stky_frm .FM_be-mfrm input:focus::-moz-placeholder,
input.FM_sRCH:focus::-moz-placeholder {
    opacity: .5
}

.FM_stky_frm .FM_be-mfrm input:-moz-placeholder,
input.FM_sRCH:-moz-placeholder {
    color: #acacac;
    opacity: 1;
    transition: opacity 250ms ease-in-out
}

input.FM_sRCH:focus:-moz-placeholder.FM_stky_frm .FM_be-mfrm input:focus:-moz-placeholder {
    opacity: .5
}

.FM_sRCH {
    border-left: 2px solid #696ba4;
    border-radius: 0 5px 5px 0
}

.FM_vrf_l {
    margin: 0 0 0 7px
}

.FM_vrf_2 {
    width: 18px;
    height: 18px;
    margin: -3px 5px 0 0
}

.FM_Iso_l {
    width: 17px;
    height: 17px;
    margin: 0 0 0 7px
}

.FM_mob_l {
    width: 18px;
    height: 18px;
    margin: -1px 10px 0 0
}

.FM_seHd {
    width: 19px;
    height: 16px;
    margin: -2px 12px 0 0
}

.Fm_trst {
    background-position: 0 0;
    width: 66px;
    height: 68px
}

.FM_Adic,
.FM_gst_l,
.FM_trs_l {
    margin: -1px 5px 0 0
}

.FM_mbl {
    background-position: -95px -45px;
    width: 19px;
    height: 32px;
    margin-right: 8px
}

.FM_MISO,
.FM_Mtrst {
    width: 67px;
    height: 67px
}

.FM_src_l {
    left: 8px;
    top: 9px
}

.FM_Btn {
    border: 1px solid #068076;
    color: #068076;
    background-color: #fff
}

.FM_Btn1 {
    background-color: #03776d;
    color: #fff;
    border: 1px solid #03776d
}

.FM_Btn2 {
    border: 1px solid #068076;
    color: #068076
}

.FM_afsCTA,
.FM_cont_sec .FM_Btn2:hover,
.FM_gbqBtn_get .FM_Btn2:hover,
.fcp_raw-item .FM_Btn:hover {
    border: 1px solid #02a699
}

.Fm_pCat_Btn,
.fcp_raw-item .FM_Btn {
    transition: .4s 0;
    -webkit-transition: .4s 0;
    -moz-transition: .4s 0;
    -ms-transition: .4s 0;
    -o-transition: .4s 0
}

.FM_gbqBtn_get .FM_Btn:hover {
    box-shadow: 0 0 0 1px #628381;
    border: 1px solid #068076;
    color: #068076;
    background: #fff
}

.FM_Stk svg {
    stroke-width: 1.5px
}

.FM_Stk1 svg {
    stroke-width: .5px
}

.FM_Stk2 svg {
    stroke-width: 0
}

.FM_RELTD.wdiL,
.wrapper {
    max-width: 1296px
}

.main_img-1 img {
    max-width: 178px;
    max-height: 178px
}

.FM_COPRe .FM_Btn1,
.FM_COPV .FM_Btn1,
.FM_COntus .FM_be_btmm,
.FM_Txtn:after,
.FM_gbqBtn>a,
.FM_gbqBtn>span,
.FM_gbqBtn>span:hover,
.FM_jobV .FM_Btn1,
.FM_jobV .FM_Btn1:hover,
.FM_stky_frm .FM_be_btmm,
.Fm_pCat_Btn:after,
.vigB:after,
.vigB:hover:after,
footer .FM_Btn1,
footer .FM_Social svg {
    -webkit-transition: .2s linear;
    -moz-transition: .2s linear;
    -o-transition: .2s linear;
    -ms-transition: .2s linear;
    transition: .2s linear
}

.FM_Head .FM_Btn1 {
    -webkit-transition: box-shadow .2s linear;
    -moz-transition: box-shadow .2s linear;
    -o-transition: box-shadow .2s linear;
    -ms-transition: box-shadow .2s linear;
    transition: box-shadow .2s linear
}

.vigB:hover:after {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1)
}

.FM_PRD .FM_Btn1 {
    border: 2px solid #fff
}

.FM_PRD .FM_PrdR {
    margin: 0 14px 23px
}

.FM_VID .FM_PrdR {
    margin: 0 118px 15px 0
}

.FM_Pr-dR .FM_text li {
    margin: 0 0 28px 10px;
    color: #777;
    line-height: 1.14;
    position: relative;
    width: 95%
}

.FM_Pr-dR .FM_text li:first-of-type {
    margin: 11px 0 28px 10px
}

.FM_Pr-dR .FM_text li:last-of-type {
    margin: 11px 0 10px 10px
}

.FM_PRD .FM_text li:first-of-type:before {
    background: 0 0
}

.FM_Pr-dR article.FM_PrdR span,
.FM_VID .FM_Pr-dR .FM_aRTV.FM_PrdR span {
    right: 0;
    left: 0;
    bottom: 0
}

.FM_PrdR figure img,
.FM_rvw_img img,
.FM_smpnew .FM_Scat li span img {
    max-width: 250px;
    max-height: 250px
}

.FM_Abt .FM_AaRt:last-of-type,
.FM_Abt .FM_AaRt:nth-of-type(4),
.FM_COPV .FM_Marg:nth-child(11),
.FM_COPV .FM_Marg:nth-child(14),
.FM_COPV .FM_Marg:nth-child(17),
.FM_COPV .FM_Marg:nth-child(8),
.FM_HvidsS_in:nth-of-type(4),
.FM_Limg .FM_m4:nth-child(4n),
.FM_NSlde.FM_NSlde1 .FM_Abt .FM_AaRt:nth-of-type(3),
.FM_REL .FM_Pr-dR .FM_AaRt2:nth-child(4),
.FM_RELTD .FM_Pr-dR .FM_AaRt1:nth-child(3n),
.FM_prdcat .Fm_pCat ul li:last-of-type,
.FM_rAdCindx .FM_prdcat .Fm_pCat ul li:last-of-type,
.FM_rvw_img>span:nth-of-type(3n),
.FM_rvw_img_ftr>span:nth-of-type(8n),
.FM_smpnew .FM_Scat li:nth-of-type(4n),
.FM_smpnew.FM_smpnew2 .FM_Scat li:nth-of-type(2n),
.FM_smpnew.FM_smpnew2 ul.FM_Scat li:last-child,
.FM_tpup_tn li:last-child,
.MDC .FM_VID .FM_Pr-dR .FM_aRTV:nth-child(3n+3),
.prd_bdyN .FM_RELTD.wdiL .FM_Pr-dR .FM_AaRt1:nth-child(3n) {
    margin-right: 0
}

.FM_REL .FM_Pr-dR .FM_AaRt2.FM_PrdR span {
    right: 0;
    left: 0;
    bottom: 14px
}

.FM_REL .FM_PrdR figure img,
.FM_recimg img {
    max-width: 198px;
    max-height: 198px
}

.FM_REL .FM_PrdR {
    margin: 0 15px 0 0
}

.FM_REL .FM_mob_l {
    width: 18px;
    height: 18px;
    margin: -3px 10px 0 0
}

.FM_RELTD .FM_PrdR figure img {
    max-width: 150px;
    max-height: 150px
}

.FM_RELTD .FM_AaRt1,
.wdiL .FM_AaRt1 {
    margin: 0 16px 15px 0
}

.FM_VID figure img {
    max-width: 280px;
    max-height: 159px;
    min-width: 280px
}

.FM_prdcat .Fm_pCat ul li {
    float: left;
    margin-right: 14px
}

.Fm_pCat .FM_pcat_fc {
    max-height: 60px
}

.FM_prdcat .main_img-1 img {
    max-width: 200px;
    max-height: 200px
}

.FM_Sin-dR .FM_m48 {
    margin: 0 3px 20px
}

.FM_Sin-dR,
.FM_pSsec .FM_stky_frm,
.FM_recsec>div:first-of-type,
.stkyH>div:first-of-type .FM_m3 {
    margin-left: 0
}

.Fm_pCat .FM_pcat_fc a {
    bottom: 4px;
    background: linear-gradient(to right, rgba(258, 258, 258, 0) 0, #fff 20%, #fff 100%) rgba(0, 0, 0, 0);
    padding-left: 20px;
    padding-top: 4px
}

.vigB:before {
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 16px solid #fff;
    z-index: 1
}

.vigB:after,
.vigB:before,
.viginstfb-1:after,
.viginstfb-1:before,
.viginstfb-2:after,
.viginstfb-2:before,
.viginstfb:after,
.viginstfb:before {
    cursor: pointer;
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 0
}

.vigB:after {
    width: 50px;
    height: 38px;
    background: #f61c0d;
    border-radius: 8px;
    z-index: 0
}

.FM_Mtrst {
    background-position: 110px -51px
}

.FM_MISO {
    background-position: -114px -167px
}

.FM_pAYi {
    background-position: 0 0;
    width: 114px;
    height: 40px
}

.main_img-1.FM_bor4 {
    border-left: 0
}

.prd_hd {
    width: 35px;
    height: 3px
}

.FCP .namePlace,
.FCP .namePlace-1 {
    top: -130px
}

.MDC .namePlace,
.TDWIM .namePlace {
    margin-top: -140px;
    padding-top: 15px
}

.FCP .FM_rvw1 .namePlace {
    top: -211px
}

.FM_Ftnav li {
    margin: 8px 0 -2px;
    color: #333
}

.FM_Pay ul li,
.FM_Social ul li {
    float: left;
    margin-left: 10px
}

.FM_Social.FM_m55 {
    margin-right: 187px
}

.FM_stky_frm {
    width: 480px;
    padding: 10px 45px;
    min-height: 515px;
    border-radius: 4px;
    top: 10px;
    right: 10px;
    border: 1px solid #eaeaea
}

.FM_stky_frm .FM_be-lbl {
    font-size: 13px;
    color: #333;
    margin-left: 0;
    padding: 5px 10px 4px;
    background-color: #fff;
    position: absolute;
    left: 11px;
    top: -12px
}

.FM_stky_frm .FM_be-slbox,
.FM_stky_frm .be-input.FM_benords {
    color: #999
}

.FM_stky_frm .FM_be-mfrm textarea.FM_be-slbox {
    height: 130px;
    font-size: 14px;
    padding: 11px 9px
}

.FM_stky_frm .FM_be-mfrm input,
.FM_stky_frm textarea.FM_be-slbox {
    border-radius: 3px;
    border: 1px solid #dbdbdb
}

.FM_stky_frm .FM_benords {
    border-radius: 3px !important
}

.FM_stky_frm .FM_be-mfrm .penqbt {
    font-size: 16px;
    font-weight: 700;
    background-color: #068076 !important;
    border: 1px solid #068076;
    width: 190px
}

.FM_stky_frm .FM_be-mfrm .bebdr {
    border: 1px solid #dbdbdb;
    background-color: transparent
}

.FM_stky_frm .FM_be-mfrm .beW3 {
    width: 389px;
    padding: 2px 0 0 55px
}

.FM_stky_frm .FM_be-mfrm .beemail {
    padding: 2px 0 0 54px
}

.FM_stky_frm .FM_be-mfrm .bT1-st3,
.FM_stky_frm .FM_be-slbox {
    width: 390px;
    box-sizing: border-box
}

.FM_stky_frm .FM_bgin15 {
    font-size: 22px;
    color: #2e3192;
    margin-bottom: 15px
}

.FM_stky_frm .FM_be-mfrm .beW6,
.MDC .FM_nPDP .FM_rvw.FM_us .FM_pbarC,
.TDWIM .FM_nPDP .FM_rvw.FM_us .FM_pbarC {
    width: 260px
}

.FM_stky_frm .FM_be-mfrm .bemgb15 {
    margin-bottom: 12px !important
}

.FM_stky_frm .FM_be-mfrm .beerrp6 {
    left: 56px
}

.FM_stky_frm .FM_bedvh .be-flisq {
    position: absolute;
    top: 13px;
    border: none;
    height: 23px;
    border-left: 1px solid #dbdbdb;
    font-size: 15px;
    background-color: #fff;
    border-right: #fff !important
}

.FM_stky_frm .FM_beerrp,
.FM_stky_frm .FM_beerrp1 {
    left: 62px;
    top: -15px
}

.FM_COntus input:focus,
.FM_COntus textarea:focus,
.FM_Franch input:focus,
.FM_Franch textarea:focus,
.FM_stky_frm .FM_be-mfrm input:focus,
.FM_stky_frm textarea.FM_be-slbox:focus {
    border: 1px solid #6769a1;
    color: #000
}

.FM_stky_frm .FM_be-mfrm .FM_bedvh {
    display: block;
    min-height: 52px
}

.FM_stky_frm .FM_be-mfrm .bemt15 {
    margin-top: 21px
}

.FM_stky_frm .FM_be-mfrm .becnd {
    margin-bottom: -10px;
    margin-top: 4px
}

.FM_stky_frm .FM_be-mfrm .bemt2 {
    margin-top: 0 !important
}

.FM_stky_frm .FM_be-mfrm .dropdown dd ul {
    width: 298px !important;
    left: -4px;
    top: 5px
}

.FM_stky_frm .FM_be-mfrm .dropdown {
    position: absolute;
    top: -3px;
    border: none;
    left: 3px;
    height: 36px
}

.FM_Ard:hover,
.FM_clr,
.FM_stky_frm .FM_be-mfrm .beW11:focus-within .FM_be-lbl,
.FM_stky_frm .FM_be-mfrm .bemt15:focus-within .FM_be-lbl {
    color: #2d3192
}

.FM_stky_frm .FM_be-mfrm input:-webkit-autofill,
.FM_stky_frm .FM_be-mfrm input:-webkit-autofill:active,
.FM_stky_frm .FM_be-mfrm input:-webkit-autofill:focus,
.FM_stky_frm .FM_be-mfrm input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important
}

.FM_stky_frm .FM_be-mfrm #t0401_enrichform_maindiv .be-flisq {
    position: static;
    top: 0;
    left: 0;
    height: 45px;
    border: 1px solid #dbdbdb
}

.FM_COntus .FM_w3,
.FM_pfle .FM_fSht {
    width: 740px
}

.FM_COntus .beerrp,
.FM_Franch .beerrp {
    left: 160px
}

.FM_COntus input,
.FM_COntus textarea,
.FM_Franch input,
.FM_Franch textarea,
.FM_bg16,
.FM_bg9,
.FM_cont_sec.footr:after,
.cin_pgTbl table tr:nth-of-type(odd) {
    background-color: #f8f8f8
}

.FM_COntus input,
.FM_COntus textarea,
.FM_Franch .be-flg,
.FM_Franch input,
.FM_Franch textarea {
    border: 1px solid #dcdcdc
}

.FM_COntus textarea.be-txtarea,
.FM_Franch textarea.be-txtarea {
    height: 93px;
    margin-top: 9px;
    width: 100%
}

.FM_Franch textarea.be-txtarea {
    height: 143px
}

.FM_COntus .be-slbox,
.FM_Franch .be-slbox {
    padding: 12px 2% 12px 15px
}

.FM_COntus .be-lbl,
.FM_COntus .bgin15,
.FM_Franch .be-lbl {
    font-size: 18px;
    color: #000
}

.FM_be-mfrm .be-input,
.FM_be-slbox {
    height: 34px;
    padding: 0 0 0 8px
}

.FM_COntus .be-flg,
.FM_COntus .be-flisq,
.FM_COntus .be-input,
.FM_COntus .be-slbox,
.FM_Franch .be-flg,
.FM_Franch .be-flisq,
.FM_Franch .be-input,
.FM_Franch .be-slbox {
    height: 42px
}

.FM_COntus .FM_gst_l,
.FM_Franch .FM_gst_l {
    width: 11px;
    height: 11px;
    margin: 0
}

.FM_COntus .FM_Adn,
.FM_Franch .FM_Adn {
    background-color: #f0f0f0
}

.FM_COntus .penqbt,
.FM_Franch .penqbt {
    font-size: 20px;
    background-color: #068076 !important;
    border-radius: 3px;
    width: 300px;
    border: 1px solid #068076
}

.FM_COntus .FM_be-mfrm .beW6,
.FM_Franch .FM_be-mfrm .beW6,
.FM_snglCat .Fm_pName:nth-last-of-type(2) {
    width: 500px
}

.FM_COntus .FM_be-mfrm .beW3,
.FM_Franch .FM_be-mfrm .beW3 {
    width: 403px
}

.FM_Franch .as_arrow {
    top: 13%
}

.FM_COntus .dropdown dt a span,
.FM_Franch .dropdown dt a span {
    margin: 7px 3px
}

.FM_COntus,
.FM_Franch {
    min-height: 468px
}

.FM_NtsRH .FM_bor7.FM_p22 {
    margin: 20px auto;
    width: 740px
}

.FM_COntus .be-row,
.FM_COntus .bgin15,
.FM_Franch .be-row {
    margin-bottom: 25px
}

.FM_COntus .bemgb15,
.FM_Franch .bemgb15 {
    margin-bottom: 40px !important
}

.FM_COntus .bgin15 {
    color: #2e3192;
    font-size: 20px
}

.FM_COntus .redc {
    color: #000 !important
}

.FM_COntus .bepdpreq .beerrp6,
.FM_Franch .bepdpreq .beerrp6 {
    left: 178px
}

.contactBLin .belft {
    margin-top: 15px;
    float: none;
    width: auto
}

.FM_COntus .bemt2,
.FM_Franch .bemt2 {
    margin-top: 1px !important
}

.FM_COntus .contactBLin .dropdown dd ul,
.FM_Franch .contactBLin .dropdown dd ul {
    left: -4px;
    top: 12px
}

.FM_COntus .bemlsec .beW11 .be-flisq {
    width: 52px
}

.embh embed,
.embh iframe,
.embh object {
    height: 394px !important
}

.embw div,
.embw embed,
.embw iframe,
.embw object {
    width: 700px !important
}

.FM_COPV .FM_Marg,
.FM_Franch .FM_bor7.FM_p22.FM_m9,
.FM_Franch .penqbt,
.mdc_cert .mt20,
.mt20 {
    margin-top: 20px
}

.FM_COPV .FM_Social ul li a {
    margin-top: 4px;
    display: inline-block
}

.FM_COPV .FM_VbTM {
    bottom: 38px
}

.FM_COPV .FM_VbTM1 {
    padding-bottom: 130px
}

.FM_COPV .vid-cont img {
    max-width: 700px
}

.FM_COPRe .FM_p25 {
    padding: 20px 237px
}

.FM_COPRe .FM_w700,
.FM_Franch .belft {
    width: 600px
}

.FM_COPRe .mr-g>div {
    width: 600px !important
}

.FM_ofa {
    overflow: auto
}

.m63_dn_ar:after,
.m63_dn_ar:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    right: -23px
}

.m63_dn_ar:after {
    border-top: 9px solid #fff;
    top: -19px
}

.m63_dn_ar:before {
    border-top: 9px solid #03776d;
    top: -16px
}

.m63_tgl .m63_dn_ar:before {
    border-bottom: 9px solid #03776d;
    top: -16px;
    border-top: none
}

.m63_tgl .m63_dn_ar:after {
    border-bottom: 9px solid #fff;
    top: -13px;
    border-top: none
}

.abtM .m61_dn_ar:before,
.abtM .m63_dn_ar:after,
.abtM .m63_dn_ar:before {
    right: -23px
}

.FM_c16 {
    color: #03776d
}

.dtl_arw {
    bottom: 5px;
    color: #068076;
    font-weight: 700
}

.dtl_arw .m64_dn_ar:before {
    border-left-color: #03776d
}

a.dtl_arw:hover .m64_dn_ar:before {
    border-left-color: #005e56
}

.dtl_arw:hover {
    color: #005e56;
    text-decoration: underline
}

.dtl_arw .m64_dn_ar:after,
.dtl_arw .m64_dn_ar:before {
    top: -14px
}

.FM_fveStr {
    padding-top: 2px;
    color: #acacac
}

.FM_slrRtnngIcn {
    width: 20px;
    height: 18px;
    fill: #777;
    margin: -1px 5px 0 0
}

.FM_sRt {
    unicode-bidi: bidi-override;
    color: #ccc;
    margin-left: 3px
}

.FM_flsRt {
    color: #fdc12a;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden
}

.FM_sRtHvrLft {
    min-width: 155px;
    max-width: 155px
}

.FM_rvw {
    padding-left: 35px;
    padding-right: 35px;
    margin-right: 30px
}

.FM_rvw:nth-last-of-type(2) {
    border-right: 1px solid #dcdcdc
}

.FM_pbarC {
    height: 11px;
    margin-left: 15px;
    margin-right: 15px;
    display: inline-block;
    background-color: #ccc
}

.FM_rvw .FM_pbarC {
    width: 228px
}

.FM_pbarL {
    left: 0;
    top: 0;
    bottom: 0
}

.FM_pbarGrn {
    background-color: #72ae44
}

.FM_pbarTealL {
    background-color: #72bfbc
}

.FM_sRt:after {
    left: 0;
    top: 100%;
    background: 0 0;
    right: 0;
    height: 20px;
    position: absolute;
    content: ''
}

.fig-bgk:before,
ul.recViewitemFcp li .pimbyr,
ul.recViewitemFcp li figure {
    width: 200px !important;
    height: 200px !important
}

footer .FM_cont_sec {
    min-height: 535px
}

.ecom_header_nav .ddnav {
    left: -478px !important
}

.ecom_header_nav .ddnav_single {
    left: 0 !important
}

.ui-menu .ui-menu-item a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ui-menu .hd_ctfltr .ui-menu-item a {
    white-space: normal
}

.sug-ss.as_ui-widget-content li,
.sug-ss.ui-menu.ui-widget {
    width: 250px !important
}

.ctFcp {
    color: #111 !important;
    font-size: 26px !important;
    text-transform: inherit !important;
    margin: 35px 0 0;
    font-weight: 700 !important
}

.ctFcp:after,
.nfav:after {
    background: #fff !important
}

.btbgFcp {
    width: auto !important;
    height: auto !important;
    padding: 12px 13px 10px 0 !important;
    display: inline !important
}

#recent_item_widget3 {
    width: 100%;
    overflow: hidden
}

.wrapperT1-box {
    background-color: #fff !important;
    margin: -37px 0 0 !important;
    display: block !important;
    overflow: hidden
}

.prd_tbl,
.pup {
    overflow-x: auto
}

ul.recViewitemFcp li .bxbgp {
    margin: 15px 0 45px !important
}

.btnbtm {
    bottom: 18px !important
}

ul.recViewitemFcp li {
    position: relative;
    padding: 0 0 35px !important;
    margin: 0 5px 50px 7px !important;
    box-sizing: border-box;
    width: 305px !important;
    background: #fff;
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, .1) !important;
    list-style: none;
    display: table-cell;
    text-align: center
}

ul.recViewitemFcp {
    margin: 20px auto 0;
    text-align: center;
    table-layout: fixed;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important
}

ul.recViewitemFcp li .pimbyr {
    border: 1px solid #efefef !important
}

ul.recViewitemFcp li figure img {
    max-width: 200px !important;
    max-height: 200px !important
}

.blur-fcp-img {
    background-size: 200px 200px !important
}

ul.recViewitemFcp li .nfav {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #2e3192 !important
}

a.valtxt,
a.valtxt:hover {
    color: #068076 !important;
    margin: 0 11px 10px 15px !important
}

.Fm_trst.FM_pTs {
    height: 41px;
    width: 40px;
    background-size: 100%
}

.FM_fShtCntnt>div div {
    min-width: 345px;
    max-width: 345px
}

.FM_mt5,
.mdc_cert .mt5 {
    margin-top: 5px
}

.FM_pfleSaU h3 {
    margin-bottom: 3px
}

.FM_pSsec h3 {
    background-color: #f2f2f2;
    padding: 8px 10px
}

.FM_pfleSaU li a,
.Fm_pDes .prd_tbl table>tbody>tr>td,
.acc-inner2 li {
    padding: 7px 10px
}

.FM_pfleSaU li a {
    display: block
}

.FM_vie {
    width: 74px;
    height: 60px
}

.FM_pfleSaU_actv:after {
    background-color: #2d3192 !important;
    position: absolute;
    content: '';
    top: 5px;
    right: 0;
    bottom: 5px;
    width: 3px
}

.FM_Limg img,
.FM_Limg-2 img,
.pup img {
    top: 0;
    left: 0;
    position: absolute
}

.FM_bckgndT,
.FM_pfleSaU>ul li:after {
    background-color: transparent
}

.FM_gbqBtn_get .FM_seHd {
    width: 18px;
    height: 13px;
    margin: 0 6px 0 0
}

.FM_pfleSaU_actv a {
    color: #2d3192;
    font-weight: 700
}

.FM_pfleSaU>ul ul li {
    list-style: circle
}

.FM_pfleSaU>ul ul li a {
    font-size: 15px;
    padding: 6px 0
}

.FM_pfleSaU .m63_dn_ar {
    margin-top: -6px
}

.FM_pfleSaU .m63_dn_ar:after {
    border-top: 10px solid #f8f8f8
}

.FM_pfleSaU .m63_tgl .m63_dn_ar:after {
    top: -13px;
    border-bottom: 10px solid #f8f8f8
}

.FM_pfleSaU .m63_tgl .m63_dn_ar:before {
    top: -5px
}

.fs_tbl table tr td {
    padding: 10px 30px;
    font-size: 18px
}

.fs_tbl table tr td:first-child {
    color: #f57f01;
    line-height: 1.13;
    width: 30%;
}

.fs_tbl table tr td:nth-child(2) {
    line-height: 1.28;
    color: #111;
    width: 70%;
    background-color: #fff
}

.p010 {
    padding: 0 30px 0 20px
}

.FM_COPRe.p010,
.FM_COPV.p010,
.FM_VID.p010,
.FM_cinPge.p010 {
    padding: 0 10px 0 20px
}

.FM_Franch .bgin15,
.FM_cinPge .FM_fShtCntnt>div div:last-child,
.FM_cinPge .FM_fShtH,
.FM_rvw1:nth-of-type(2),
.stmp>ul>li:last-child {
    margin-bottom: 0
}

.cin_pgTbl table tr td {
    width: 25%;
    padding: 10px 20px
}

.cin_pgTbl table tr {
    font-size: 15px;
    color: #777
}

.cin_pgTbl table tr:first-child {
    font-size: 16px;
    color: #111
}

.fasC {
    align-self: center
}

.fasS {
    align-self: flex-start
}

.FM_pflePrd h2,
.FM_pflePrd h3,
.FM_pflePrd h4 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px
}

.FM_Limg-2 figure {
    max-width: 422px;
    min-width: 422px;
    max-height: 422px;
    min-height: 422px
}

.FM_Limg-2 img {
    max-width: 420px;
    max-height: 420px;
    bottom: 0;
    right: 0;
    margin: auto
}

.FM_Limg .FM_mb10,
.FM_Limg-2 .FM_mb10 {
    margin-bottom: 16px
}

.FM_Limg .FM_m4,
.FM_Limg-2 .FM_m4 {
    margin-right: 16px
}

.FM_Limg figure {
    max-width: 200px;
    min-width: 200px;
    max-height: 200px;
    min-height: 200px
}

.FM_Limg img {
    max-width: 198px;
    max-height: 198px;
    bottom: 0;
    right: 0;
    margin: auto
}

.height_sectn .main_img-1:hover {
    box-shadow: 0 0 10px 0 rgba(203, 203, 203, .5)
}

.FM_COPRe .FM_Btn1,
.FM_COPV .FM_Btn1,
.FM_Head .FM_Btn1,
footer .FM_Btn1 {
    background: #02625a;
    background: -webkit-gradient(linear, left top, left bottom, from(#058b80), to(#02625a));
    background: -moz-linear-gradient(top, #058b80, #02625a);
    border: 1px solid #02625a
}

footer .FM_Social svg:hover {
    transform: rotate(360deg)
}

.FM_Txtn:after,
.Fm_pCat_Btn:after {
    position: absolute;
    width: 0;
    background: 0 0;
    content: '';
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1
}

.Fm_pCat_Btn:hover {
    color: #fff;
    border-color: #2e3192
}

.Fm_pCat_Btn:hover:after {
    background: #2e3192;
    width: 100%
}

.FM_nav .ddnav ul:nth-of-type(2)>li:nth-of-type(4) a:hover,
.FM_nav .prdNav ul:nth-of-type(2)>li:nth-of-type(4) a:hover {
    color: #fff;
    border-color: #068076;
    text-decoration: none !important
}

.FM_Txtn:hover:after {
    background: #068076;
    width: 100%
}

#gbqicn,
.fm_Sgr {
    fill: #068076
}

.FM_pflePrd figure,
.FM_recimg {
    max-width: 200px;
    min-width: 200px;
    max-height: 200px;
    min-height: 200px;
    margin: 0 10px 0 0
}

.FM_pflePrd figure img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    overflow: hidden;
    max-width: 498px;
    max-height: 498px
}

.FM_pfle .FM_pflePrdCntnt>div {
    max-height: 340px;
    overflow: hidden
}

.FM_jobV .FM_Btn1 {
    width: 248px;
    background-color: #2d3192;
    border-color: #2d3192
}

#img_popProf {
    background-color: rgba(0, 0, 0, .6);
    position: fixed;
    z-index: 9999
}

.pup {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    margin-left: -300px;
    margin-top: -300px
}

.FM_mAuto,
.pup img {
    margin: auto
}

.pup img {
    bottom: 0;
    right: 0
}

.close-thik {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #000
}

.close-thik:after,
.close-thik:before {
    position: absolute;
    width: 2px;
    height: 15px;
    background-color: #000;
    content: '';
    top: 7px;
    left: 14px
}

.close-thik:after {
    transform: rotate(30deg)
}

.close-thik:before {
    transform: rotate(-30deg)
}

.FM_bs {
    box-sizing: border-box
}

.FM_prdpge .FM_gbqBtn:nth-child(3)>span {
    padding: 14px 0;
    width: 258px;
    font-weight: 400
}

.FM_prdpge img {
    max-width: 400px;
    max-height: 400px;
    z-index: 1
}

.FM_prdimg {
    width: 402px;
    height: 402px
}

.Fm_pDes table>tbody>tr>td:first-child {
    color: #848484;
    width: 40%
}

.Fm_pDes .prd_tbl table th,
.Fm_pDes table>tbody>tr>td {
    border: 1px solid #eaeaea;
    width: 60%
}

.Fm_pDes .prd_tbl table th,
.Fm_pDes .prd_tbl table>tbody>tr>td {
    min-width: 80px;
    border: 1px solid #eaeaea;
    width: auto
}

.FM_sldr.FM_b1,
.FM_sldr_Wpr.FM_b1,
.tbl_data table tr td:last-child {
    border-right: none
}

.Fm_pDes table>tbody>tr>td,
.tbl_data table tr td {
    vertical-align: middle;
    padding: 7px 5px;
    font-size: 16px;
    line-height: 20px;
    text-align: left
}

.Fm_pDes table>tbody>tr>td {
    padding: 4px 5px
}

.tbl_data table tr td {
    max-width: 50%;
    font-size: 16px;
    padding: 10px;
    border-bottom: 1px solid #d1d0d0
}

.FM_b1,
.FM_nPDP .FM_pSsec .FM_pDlSec,
.FM_pfleSaU,
.FM_sb1 {
    border: 1px solid #eaeaea
}

.sldrCArw:hover {
    border: 1px solid #ccc
}

.FM_cntnt .blr_btm {
    background: linear-gradient(to bottom, rgba(258, 258, 258, 0) 0, #fff 45%, #fff 100%) rgba(0, 0, 0, 0);
    bottom: -34px;
    height: 0;
    left: 0;
    padding: 82px 0 0;
    position: absolute;
    text-align: left;
    width: 100%
}

.FM_gbqBtn:nth-of-type(4),
.FM_gbqBtn:nth-of-type(5) {
    margin-left: 420px;
    width: 615px
}

.Fm_pDes:nth-of-type(2) .FM_cntnt,
.Fm_pDes:nth-of-type(3) .FM_cntnt {
    max-height: 290px;
    padding-left: 0
}

.Fm_pDes:nth-of-type(2) .FM_cntnt {
    float: none
}

.FM_COntus .FM_be_btmm,
.FM_gbqBtn>a,
.FM_gbqBtn>span,
.FM_stky_frm .FM_be_btmm {
    font-size: 16px;
    color: #fff;
    background: #02625a;
    background: -webkit-gradient(linear, left top, left bottom, from(#058b80), to(#02625a));
    background: -moz-linear-gradient(top, #058b80, #02625a);
    border: 1px solid #02625a;
    border-radius: 3px;
    padding: 14px 0;
    width: 258px;
    display: inline-block
}

.FM_gbqBtn>a span.FM_bnBtn,
.FM_gbqBtn>span.FM_bnBtn {
    font-size: 14px;
    font-weight: 700;
    height: 45px
}

.Fm_pDes:nth-of-type(2),
.Fm_pName:first-of-type {
    width: 1035px;
    padding-left: 0
}

.Fm_pDes:nth-of-type(3),
.Fm_pName:nth-of-type(2) {
    padding-left: 420px;
    width: 615px
}

.FM_npdpP_io.multiimg .FM_prdimg,
.FM_prdimg:nth-last-of-type(3) {
    position: relative;
    margin-bottom: 15px
}

.FM_gbqBtn:nth-of-type(2),
.Fm_pName:nth-last-of-type(2) {
    width: 402px;
    padding-left: 0
}

.FM_gbqBtn:nth-of-type(3) {
    width: 100%;
    padding-left: 0
}

.FM_pulDwn {
    margin-right: 640px !important
}

.FM_PTnal ul li {
    margin: 12px 4px;
    max-width: 68px;
    min-width: 68px;
    max-height: 68px;
    min-height: 68px
}

.FM_PTnal ul li a {
    width: 68px;
    height: 68px
}

.FM_PTnal li img {
    max-width: 100%;
    max-height: 100%
}

.FM_PTnal ul li.FM_PTnalActv,
.FM_bor12 {
    border: 1px solid #2e3192
}

.FM_PAdd {
    width: 300px;
    max-height: 350px;
    min-height: 250px;
    margin: 0 auto
}

.FM_PAdd img {
    max-width: 350px;
    max-height: 250px
}

.FM_PAdd>div>div,
.FM_PAdd>div>div iframe {
    width: 100% !important
}

.FM_pDlSec {
    height: auto;
    width: 100%
}

.FM_dlImg,
.FM_dlImg a {
    width: 70px;
    height: 70px
}

.FM_dlImg img {
    max-width: 70px;
    max-height: 70px
}

.Fm_dlH>p {
    max-height: 40px;
    overflow: hidden;
    margin-bottom: 6px
}

.FM_tPv {
    content: '';
    top: 50%;
    left: 50%;
    height: 16px;
    width: 22px;
    background: #f61c0d;
    margin-left: -11px;
    margin-top: -8px;
    border-radius: 4px
}

.FM_tPv:after {
    position: absolute;
    content: '';
    border-left: 6px solid #fff;
    border-bottom: 4px solid transparent;
    border-top: 4px solid transparent;
    top: 50%;
    left: 50%;
    margin-top: -4px;
    margin-left: -3px
}

.lf_arow,
.rgt_arow {
    top: 50%;
    margin-top: -11px
}

.lf_arow {
    left: 5px
}

.FM_sid-slider .sldrCArw,
.rgt_arow {
    right: 5px
}

.FM_COPRe .FM_Btn1:hover,
.FM_COPV .FM_Btn1:hover,
.FM_COntus .FM_be_btmm:hover,
.FM_Head .FM_Btn1:hover,
.FM_gbqBtn>a:hover,
.FM_gbqBtn>span:hover,
.FM_recsec .FM_Btn1:hover,
.FM_stky_frm .FM_be_btmm:hover,
footer .FM_Btn1:hover {
    border: 1px solid #007a6e;
    box-shadow: 0 0 1px 0 #ddd, 0 1px 0 1px #00423d
}

.Fm_dlH:first-child {
    padding-bottom: 24px
}

.FM_PpPV p:nth-child(2) span:nth-last-child(2) {
    margin-right: 15px
}

#return-to-top:after,
#return-to-top:before,
.FM_Blur:before,
.FM_pIv:after,
.FM_pIv:before,
.new_arr-1:before {
    position: absolute;
    content: ''
}

.FM_pIv:after {
    top: 50%;
    left: 50%;
    background: red;
    width: 70px;
    height: 46px;
    border-radius: 4px;
    margin-left: -34px;
    margin-top: -23px;
    z-index: 2
}

.main_img-1 .FM_Blur:before,
.main_img-1 .blur-img {
    width: 200px;
    height: 200px
}

.FM_pIv:before {
    top: 47%;
    left: 49%;
    border-left: 17px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    z-index: 3
}

.FM_nav .ddnav {
    max-width: 1276px;
    min-width: 289px;
    top: 100%;
    left: -110px;
    box-shadow: 0 10px 13px 0 rgba(0, 0, 0, .1);
    background-color: #f7f7f7;
    display: none;
    z-index: 9999
}

.FM_nav .ddnav>ul,
.FM_nav .prdNav>ul {
    display: flex;
    box-sizing: border-box;
    background-color: #f7f7f7
}

.FM_nav .ddnav li,
.FM_nav .prdNav li {
    min-width: 289px;
    max-width: 289px;
    padding: 0;
    text-align: left;
    margin: 15px
}

.FM_nav .ddnav .FM_ctgry li {
    min-width: 302px;
    max-width: 302px
}

.FM_nav .ddnav li a,
.FM_nav .prdNav li a {
    text-align: left;
    color: #12156b;
    padding: 0
}

.FM_nav .ddnav li ul li a,
.FM_nav .prdNav li ul li a {
    padding: 5px 0;
    color: #333
}

.FM_c14 {
    color: #12156b
}

.FM_PpPV>p>span.FM_c5:hover,
.FM_RELTD.wdiL .FM_PrdR>div.FM_C17 a:first-of-type:hover,
.FM_sid_nm:hover a,
.FM_sidsdrAfp:hover span,
.FM_siteafp:hover,
.FM_smpnew .FM_tdu:hover,
.Fm_dlH p:hover a,
.Fm_pName>h2 a.FM_c12:hover,
.height_sectn h2 a:hover {
    color: #da2931
}

.FM_pRD-BTN a:hover,
.FM_pRD-BTN p:hover {
    color: #fff;
    background-color: #068076
}

.FM_nav .ddnav ul:nth-of-type(2)>li:nth-of-type(4),
.FM_nav .prdNav ul:nth-of-type(2)>li:nth-of-type(4) {
    align-self: center;
    text-align: center
}

.FM_nav .ddnav ul:nth-of-type(2)>li:nth-of-type(4) a,
.FM_nav .prdNav ul:nth-of-type(2)>li:nth-of-type(4) a {
    text-align: center;
    border: 1px solid #068076;
    padding: 5px 10px;
    width: 170px
}

.FM_nav>ul>li:hover,
.dd:active,
.dd:hover,
.stkyH .FM_nav>ul>li.active:hover {
    background-color: #f7f7f7 !important
}

.FM_nav .dd:nth-of-type(3) .ddnav {
    min-width: 250px;
    max-width: 539px
}

.FM_nav .dd:nth-of-type(3) li {
    min-width: 240px;
    max-width: 240px
}

.FM_nav .dd:nth-of-type(3) .ddnav>ul ul {
    padding-top: 0;
    padding-left: 10px
}

.clostag-p {
    letter-spacing: .6px;
    line-height: 1.5;
    color: #444
}

.cf_cryt {
    padding: 7px !important
}

.FM_sTND .FM_dlImg {
    min-width: 90px;
    min-height: 90px
}

.FM_sTND .FM_dlImg a {
    width: 90px;
    height: 90px
}

.FM_sTND .FM_dlImg img {
    max-width: 90px;
    max-height: 90px
}

.FM_sTND {
    padding: 20px 0 0 420px;
    margin-bottom: 30px;
    width: 423px
}

.FM_pb5,
.FM_sTPC {
    padding-bottom: 5px
}

.FM_NEWstnd .Fm_pDes ul li,
.FM_pflePrd .fasC ul li,
.Fm_pDes ul li,
.clostag-p ul li {
    list-style: disc;
    display: list-item;
    margin-left: 2px
}

.FM_NEWstnd .Fm_pDes ul,
.FM_pflePrd .fasC ul,
.Fm_pDes ul,
.clostag-p ul {
    padding-left: 14px
}

.main_img-1 .blur-img {
    position: absolute;
    background-size: 200px 200px
}

.FM_Blur:before,
.blur-img,
.main_img .FM_Blur:before,
.main_img-1 .FM_Blur:last-of-type:before {
    width: 400px;
    height: 400px;
    left: 0
}

.FM_Blur:before {
    background-color: #fff;
    top: 0;
    opacity: .6;
    overflow: hidden;
    z-index: 0
}

.blur-img {
    z-index: -1;
    position: absolute;
    background-size: 400px 400px;
    top: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px)
}

.fcp_Ad-3,
.fcp_Ad-3 iframe,
.fcp_Ad-3 ins {
    height: 250px !important
}

.wdiL .FM_w430 {
    min-height: 150px;
    max-height: 150px
}

.FM_dlBoxN ul li a {
    padding: 10px;
    display: block
}

.FM_dlBoxN .FM_dlBoxN_innr>div a {
    width: 155px
}

.FM_dlBoxN_innr>ul {
    max-height: 0
}

.FM_dlBoxN_innr>ul.FM_mh2000 {
    max-height: 2000px
}

.fcp_Ad-1 {
    min-width: 668px;
    max-width: 980px;
    min-height: 90px;
    max-height: 250px
}

.FM_mw100,
.cat_indx {
    max-width: 100%
}

.fcp_Ad-2 {
    width: 555px;
    min-height: 300px;
    max-height: 388px
}

.fcp_Ad-3 {
    width: 300px;
    max-height: 250px !important;
    min-height: 250px !important
}

.fcp_pfl_had {
    height: 200px !important
}

.FM_pRD-BTN a,
.FM_pRD-BTN p {
    border-radius: 3px;
    border: 1px solid #068076;
    padding: 14px 25px
}

.FM_pRD-BTN p:hover {
    cursor: pointer
}

.FM_Btn2:hover .FM_spmnt svg,
.FM_cont_sec .FM_Btn2:hover .fm_Sgr,
.FM_gbqBtn_get .FM_Btn2:hover svg path,
fcp_raw-item .FM_Btn:hover .FM_mob_l svg path {
    fill: #02a699
}

.fm_Cicn {
    width: 19px;
    height: 19px
}

.FM_cont_sec .FM_Btn2:hover,
.FM_gbqBtn_get .FM_Btn2:hover,
.fcp_raw-item .FM_Btn:hover,
.fcp_raw-item .FM_Btn:hover .FM_c4,
.fcp_raw-item .FM_Btn:hover .FM_c6 {
    color: #02a699
}

.m64_dn_ar {
    display: inline-block;
    position: relative;
    width: 0;
    height: 0;
    right: -25px;
    vertical-align: sub
}

.m61_dn_ar:after,
.m61_dn_ar:before,
.m64_dn_ar:after,
.m64_dn_ar:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0
}

.m64_dn_ar:after,
.m64_dn_ar:before {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    top: -16px
}

.m64_dn_ar:after {
    border-left: 6px solid #fff;
    left: -17px
}

.m64_dn_ar:before {
    border-left: 6px solid #777;
    left: -15px
}

.m63_tgl .m64_dn_ar:before {
    border-bottom: 6px solid #777;
    top: -16px;
    border-top: none
}

.m63_tgl .m64_dn_ar:after {
    border-bottom: 6px solid #fff;
    top: -13px;
    border-top: none
}

.abtM .m64_dn_ar:after,
.abtM .m64_dn_ar:before {
    top: -23px
}

a:hover .m64_dn_ar:before {
    border-left: 6px solid #000;
    left: -15px
}

a:hover .m63_tgl .m64_dn_ar:before {
    border-bottom: 6px solid #000;
    top: -16px;
    border-top: none
}

.FM_ps_t .FM_gbqBtn_get:nth-of-type(2) {
    bottom: 1px;
    position: relative;
    width: auto
}

.FM_gbqBtn_get {
    bottom: 15px;
    width: 50%
}

.FM_nPDP .FM_pSsec {
    width: 180px
}

.FM_bSw4 {
    box-shadow: 8px 8px 10px 0 rgba(0, 0, 0, .05)
}

.FM_bt1,
.VpNpdp {
    border-top: 1px solid #efefef
}

.FM_f19 {
    font-size: 19px
}

.FM_npdpP {
    padding: 15px 60.5px 25px
}

.FM_pDlSecN .FM_dlvlBtn,
.FM_smCTA {
    color: #17615a
}

.FM_npdpP_io .FM_prdimg {
    margin-top: 70px;
    margin-bottom: 15px
}

.FM_dlBoxN_innr:last-of-type {
    border: none
}

.FM_dlBoxN_innr ul li a {
    padding: 9px 10px 0 0;
    width: 155px
}

.FM_npdpP_io h2 {
    height: 70px;
    position: absolute
}

.FM_npdpP_io .Fm_pName {
    margin-bottom: 21px
}

.FM_dlBoxN_innr .m61_dn_ar {
    width: 20px;
    height: 14px;
    right: 0;
    top: 1px
}

.FM_st_f {
    margin: -50px 0 20px
}

.m61_dn_ar:after,
.m61_dn_ar:before {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent
}

.FM_dlBoxN_innr.m61_tgl:hover .m61_dn_ar:before {
    border-bottom: 6px solid #2e3192
}

.FM_dlBoxN_innr.FM_OP:hover .m61_dn_ar:before {
    border-top: 6px solid #2e3192
}

.m61_dn_ar:after {
    border-top: 6px solid #fff;
    top: 3px;
    right: 0
}

.m61_dn_ar:before {
    border-top: 6px solid #777;
    top: 5px;
    right: 0
}

.m61_tgl .m61_dn_ar:before {
    border-bottom: 6px solid #777;
    top: 4px;
    border-top: none;
    left: 8px
}

.m61_tgl .m61_dn_ar:after {
    border-bottom: 6px solid #fff;
    top: 6px;
    border-top: none;
    left: 8px
}

.FM_ps_r1 {
    right: 30px
}

.FM_AaRt1 .fasC:first-child {
    text-align: center;
    width: 100%
}

.FM_NSlde .FM_Abt .pl30,
.FM_NSlde .FM_Abt .pr30,
.FM_nPDP {
    padding-left: 0;
    padding-right: 0
}

.FM_nPDP .wdiL {
    padding-left: 10px;
    padding-right: 10px
}

.FM_dlBoxN_innr>ul,
.FM_dlBoxN_innr>ul.FM_mh2000 {
    transition: 1.6s ease-in-out;
    -webkit-transition: 1.6s ease-in-out;
    -moz-transition: 1.6s ease-in-out;
    -ms-transition: 1.6s ease-in-out;
    -o-transition: 1.6s ease-in-out
}

.cat_indx {
    min-width: 100%
}

.cat_indx .FM_h200 {
    height: 231px
}

.cat_indx .FM_hm200 {
    max-height: 231px
}

.cat_indx .FM_wm200 {
    max-width: 231px
}

.cat_indx .FM_w200 {
    width: 231px
}

.FM_pdngt12 {
    padding: 5px 0
}

.FM_br5 {
    border-radius: 5px
}

.FM_mrgn15 {
    margin: 15px
}

.FM_W260 {
    width: 270px
}

.FM_h125 {
    min-height: 125px;
    max-height: 125px
}

.FM_h250,
.FM_mh250 {
    min-height: 250px
}

.FM_h250 {
    max-height: 250px
}

.FM_hPR_ni>figure,
.FM_smpnew .FM_Scat li>span>span:nth-of-type(2) {
    max-width: 250px;
    max-height: 250px;
    min-width: 250px;
    min-height: 250px
}

.FM_hp .FM_Pr-dR .FM_text li {
    margin: 0;
    width: 100%;
    line-height: 1.13
}

.FM_Hvid div:nth-of-type(2) {
    width: 75%
}

.hv_txt {
    top: 58%;
    left: 50%;
    width: 250px;
    margin-left: -120px
}

.FM_HvB {
    height: 165px
}

.FM_HvB img {
    max-width: 300px;
    max-height: 165px
}

.FM_HvidsS {
    margin: 0 10px
}

.FM_ARR-3,
.FM_HvidsS_in .vigB:after {
    width: 35px;
    height: 25px;
    border-radius: 6px
}

.FM_ARR-2,
.FM_HvidsS_in .vigB:before {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 11px solid #fff
}

.FM_Pay {
    width: 362px
}

.FM_Abt .FM_AaRt {
    width: 296px
}

.FM_Abt .FM_AaRt>div:nth-of-type(2) {
    width: 217px
}

_:-ms-fullscreen,
:root .FM_hp,
_:-ms-lang(x),
.FM_hp {
    width: 1296px
}

.FM_HvB,
.FM_HvidsS_in {
    width: 300px
}

.FM_sldr {
    max-width: 1201px
}

.FM_NSlde .FM_sldr,
.FM_sldr,
.FM_sldr_Wpr,
.FM_sldr_iW {
    max-height: 302px;
    min-height: 302px
}

.FM_sldrB {
    border-right: 1px solid #eaeaea;
    max-width: 300px;
    min-width: 300px;
    max-height: 300px;
    min-height: 300px
}

.FM_sldrB figure,
.FM_sldrB figure a span {
    height: 300px;
    width: 300px
}

.FM_sldrB img {
    max-width: 298px;
    max-height: 298px;
    opacity: 1
}

.FM_sldrArw {
    top: 135px
}

.FM_sldrArw span {
    height: 45px;
    width: 45px;
    z-index: 1
}

.sldrCArw span:after,
.sldrCArw span:before {
    position: absolute;
    content: '';
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    top: 16px
}

.sldrCArw span:after {
    border-right: 9px solid #2d3192;
    left: 16px;
    z-index: 1
}

.sldrCArw span:before {
    border-right: 9px solid #fff;
    left: 19px;
    z-index: 2
}

.sldrCArw:nth-of-type(2) span:after {
    border-left: 9px solid #2d3192;
    right: 16px;
    border-right: 0;
    left: 20px
}

.sldrCArw:nth-of-type(2) span:before {
    border-left: 9px solid #fff;
    right: 19px;
    border-right: 0;
    left: 17px
}

.FM_sldrTxt {
    background-color: rgba(51, 51, 51, .86);
    right: 1px;
    left: 0
}

.FM_NSlde {
    flex-direction: row-reverse
}

.FM_NSlde .FM_Abt,
.FM_rAdCindx>section {
    flex: 1;
    margin-right: 20px
}

.FM_NSlde .FM_sldr {
    max-width: 601px;
    min-width: 302px;
    position: sticky;
    top: 60px
}

.FM_NSlde .FM_Abt {
    margin-top: 0;
    margin-bottom: 0
}

.FM_NSlde .FM_Abt>.FM_ds13 {
    justify-content: left
}

.FM_Stk1 img {
    width: 63px;
    height: 63px
}

.FM_nob,
.FM_yoe {
    width: 31px;
    height: 31px
}

.FM_noe {
    width: 40px;
    height: 26px
}

.FM_gstN {
    width: 29px;
    height: 33px
}

.FM_ls {
    width: 34px;
    height: 34px
}

.FM_ato {
    width: 32px;
    height: 32px
}

.FM_snglCat .FM_gbqBtn:nth-of-type(4),
.FM_snglCat .FM_gbqBtn:nth-of-type(5),
.FM_snglCat .Fm_pDes:nth-of-type(3),
.FM_snglCat .Fm_pName:nth-of-type(2) {
    width: 809px
}

.FM_snglCat .FM_npdpP {
    padding: 15px 58.8px 25px
}

.FM_snglCat .Fm_pDes:nth-of-type(2),
.FM_snglCat .Fm_pName:first-of-type {
    width: 1229px
}

.FM_qd p:nth-of-type(n+2),
.FM_snglCat .FM_npdpP_io .FM_prdimg {
    margin-left: 50px
}

.FM_COPV .FM_Marg {
    margin-right: 12px
}

.FM_COPV .FM_p25 {
    padding: 20px 187px
}

.FM_COPV .FM_Marg .FM_w21,
.FM_COPV .FM_Marg img {
    width: 312px
}

.FM_ptb18 {
    padding: 18px
}

.FM_COPV .FM_Marg .mvidimg,
.FM_COPV .FM_Marg .mvidimg img {
    height: 228px
}

.prd_bdyN .FM_w3 .FM_Franch {
    width: 100%;
    box-sizing: border-box
}

.FM_sm>li {
    width: 230px;
    padding: 10px 40px 10px 0
}

.FM_pt30 {
    padding-top: 30px
}

.FM_pr20 {
    padding-right: 20px
}

.FM_jcS {
    justify-content: start
}

.FM_SldrWAbt {
    margin: 10px 10px 0
}

.FM_sldrB .FM_sldrTxt {
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    height: 34px
}

.FM_sldrB .FM_sldrTxt p,
.lne2_txt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2
}

.FM_sldrB:hover .FM_sldrTxt {
    height: 70px;
    padding: 0 15px 58px
}

.hvr_txt {
    height: 0;
    transition: .3s ease-out;
    bottom: -20px
}

.FM_sldrB:hover .hvr_txt {
    bottom: 60px
}

.bl_form {
    border-spacing: 20px 0;
    max-width: 905px
}

.FM_bg7 {
    background-color: #f5f5f5
}

.FM_pr31 {
    border-bottom: 1px dotted #d5d5d5;
    list-style: none;
    padding: 13px 10px
}

.stmp {
    width: 1235px
}

.tempImgSlides {
    transition: ease-in-out;
    -webkit-transition: ease-in-out;
    -moz-transition: ease-in-out;
    -ms-transition: ease-in-out;
    -o-transition: ease-in-out
}

#return-to-top {
    position: fixed;
    right: 10px;
    bottom: 93px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    background-color: #b4b5b4;
    z-index: 3;
    display: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px
}

#return-to-top:before {
    top: -2px;
    left: 0;
    margin: 0 auto;
    right: 0;
    height: 0;
    width: 0;
    border: 12px solid transparent;
    border-bottom-color: #fff
}

#return-to-top:after {
    width: 7px;
    top: 20px;
    left: 0;
    height: 15px;
    background-color: #fff;
    right: 0;
    margin: 0 auto
}

#return-to-top:hover {
    background-color: #4c4c4e;
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)"
}

.FM_m59 {
    margin-top: 3px
}

.fm_Nop .FM_w3 {
    width: 1306px
}

.FM_m61 {
    margin-top: -1px
}

.FM_fsi {
    font-style: italic
}

.FM_f24 {
    font-size: 24px
}

.flx100 {
    flex: 1 0 100%
}

.FM_Head.stkyH,
.imgc,
.mdc_cert .aic {
    align-items: center
}

.lr0 {
    left: 0;
    right: 0
}

.noimageprd {
    width: 90px;
    height: 90px;
    fill: #dbdbdb
}

.fm_ina {
    color: #b5b5b5
}

.fm_imgna {
    height: 250px
}

.FM_Head.stk_init {
    transition: top .2s ease-in-out;
    top: -60px
}

.FM_Head.stkyH {
    padding: 0 10px;
    display: flex;
    box-shadow: 0 5px 10px 0 rgb(0 0 0 / 18%);
    position: fixed;
    z-index: 2;
    max-width: 1296px;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 2px solid #d6d6d6
}

.stkyH>div:first-of-type {
    max-width: 420px;
    padding-top: 2px;
    padding-bottom: 2px
}

.stkyH .FM_logo {
    width: 45px;
    height: 45px
}

.stkyH .FM_logo img {
    max-width: 45px;
    min-width: auto;
    max-height: 45px
}

.stkyH>div:nth-of-type(2) {
    flex: 1 0 0;
    align-items: center;
    max-width: 100%;
    flex: 1 0 0;
    align-items: center;
    justify-content: space-between
}

.stkyH .FM_nav>ul>li>a {
    padding: 17px 6px;
    font-size: 14px
}

.stkyH .FM_nav>ul>li:first-of-type a {
    width: auto;
    max-width: auto;
    min-width: auto;
    padding-right: 25px;
    padding-left: 25px
}

.stkyH .FM_nav>ul>li:nth-of-type(3)>a {
    width: 115px;
    box-sizing: border-box
}

.stkyHNav .FM_nav>ul>li:hover a {
    color: #2d3192
}

.stkyH .FM_nav>ul>li.active>a {
    font-weight: 700;
    color: #2d3192
}

.stkyH .FM_nav>ul>li.active,
.stkyH>div:nth-of-type(2) .FM_bg6 {
    background-color: transparent !important
}

.stkyH .FM_nav .ddnav {
    left: auto
}

.stkyH .FM_nav .ddnav.ddnav_4 {
    right: -365px;
    left: auto !important
}

.stkyH .FM_nav .ddnav.ddnav_3 {
    right: -598px
}

.stkyH .FM_nav #ecom_header_li .ddnav.ddnav_1 {
    left: -649px
}

.FCP .stkyH .FM_nav .ddnav.ddnav_4,
.MDC_FCPdpdwn .stkyH .FM_nav .ddnav.ddnav_4 {
    right: -675px
}

.FCP .stkyH .FM_nav .ddnav.ddnav_2,
.MDC_FCPdpdwn .stkyH .FM_nav .ddnav.ddnav_2 {
    right: -618px
}

.FCP .stkyH .FM_nav .ddnav.ddnav_3,
.MDC_FCPdpdwn .stkyH .FM_nav .ddnav.ddnav_3 {
    right: -510px
}

.stkyH>div:nth-of-type(2) .FM_m5 {
    margin-right: 20px;
    margin-top: 0
}

.stkyH .FM_nav .ddnav.ddnav_8 {
    min-width: 1276px
}

.stkyH .FM_BUtn {
    width: 130px
}

.stkyH .FM_BUtn .FM_f16 {
    font-size: 13px;
    padding: 8px
}

.stkyH .FM_seHd {
    width: 15px;
    height: 16px;
    margin: 0 4px 0 0
}

.stkyH .FM_BUtn .FM_seHd svg {
    width: 15px
}

.stkyH .fcp_raw-item .FM_f16 {
    font-size: 13px;
    padding: 7px 5px
}

.stkyH .fcp_raw-item {
    position: absolute;
    right: 149px;
    width: 155px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 35px
}

.stkyH .FM_mob_l {
    margin-right: 3px
}

.stkyH .FM_mob_l svg {
    width: 13px
}

.stkyH>div:nth-of-type(2) .FM_w80 {
    flex: 1 0 0;
    margin-right: 165px
}

.stkyH ul.FM_ds5.FM_w1 {
    justify-content: flex-end;
    align-items: center
}

.stkyH>div:nth-of-type(2) .FM_nav+div {
    width: 35px;
    align-self: stretch;
    margin-left: 10px;
    background-color: transparent
}

.FM_nav .prdNav,
.stkyH .FM_sRCH,
.stkyH>div:nth-of-type(2) .FM_nav+div.hClrSrch,
.stkyH>div:nth-of-type(2) .FM_nav+div:hover {
    background-color: #f7f7f7
}

.stkyH form {
    display: inline-block !important
}

.stkyH .FM_sRCH {
    position: absolute;
    right: 0;
    width: 0;
    top: 100%;
    transition: width .3s ease-in-out;
    padding: 10px 34px 10px 11px;
    border-left: 1px solid #efefef;
    border-radius: 0
}

.stkyH .FM_sRCH.FM_onsch {
    width: 205px;
    visibility: visible
}

.FM_rvwCntnrRm a,
.stkyH input.FM_sRCH:focus {
    border: 1px solid #2d3192
}

.stkyH form input::placeholder {
    color: #c1c1c1
}

.stkyH .FM_src_l {
    top: 0;
    bottom: 0;
    margin: auto;
    width: 23px;
    height: 23px;
    left: 0;
    right: 0
}

.stkyH .FM_pnsExt #header_pnsno {
    font-size: 12.5px
}

.stkyH .fcp_raw-item .FM_f16.FM_pnsExt {
    padding: 4px 4px 3px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30px
}

.FM_h151 {
    min-height: 30px;
    max-height: 52px
}

.FM_h152 {
    min-height: 19px
}

.FM_RELTD .FM_sidimg .FM_sid_nm,
.FM_patnr {
    height: 30px
}

.FM_nav .prdNav {
    max-width: 1276px;
    min-width: 289px;
    top: 100%;
    box-shadow: 0 10px 13px 0 rgba(0, 0, 0, .1);
    display: none;
    z-index: 9999
}

.FM_nav .ecom_header_nav_1 .prdNavall,
.FM_nav .prdNavall {
    left: -110px
}

.stkyH .FM_nav .prdNavall {
    left: -520px
}

.stkyH .FM_nav .singleB2B .prdNavall {
    left: -628px
}

.FM_nav .ecom_header_nav .prdNavall {
    left: -480px
}

.stkyH .FM_nav .ecom_header_nav .prdNavall {
    left: -792px
}

.stkyH .FM_nav .ecom_header_nav .prdNavall2 {
    left: -170px
}

.stkyH .FM_nav .ecom_header_nav_1 .prdNavall {
    left: -640px
}

#t0401_submit {
    min-height: 37px
}

#foot-email .FM_Btn2,
#foot-sms .FM_Btn1 {
    min-height: 20px
}

.stkyH .FM_pnsExt>.FM_ds7 {
    align-items: flex-start
}

.viginstfb-2:after,
.viginstfb:after {
    width: 80px;
    height: 80px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAANxUlEQVR4nM1beVxTVxY+972XhE2IYmxhoJIgiyyCLbRaxZVVrVpadRhLre24QtXRoWLrtNMZ9QejdtE6olYrom2dMmJ1RIhIsVDrQosIiIIhKIqURVJKAiHvvTt/SNKXEJaEBP3+yv3ucu798t5959wF3fP3JsGKeDqv4CnCeeRkRBD+GCFvQMgbYzwCISQEAPvuYkoAaEUArYBxFWBchVm2gm1qKmyInN5o2OaPShXqzd5EeztsSv+QNQRw/ak0BPH4cYBQBCA0FgB67XA/wIBxJWAs1ahUx78NHFvcX4XHJsCorNOOPInnciDJJQAw1hJtGgJjfBNY5ouWkpIDBQtifzNWZsgFeCpbOoJyc18DBJEAAMMH05YJaMUM/dmvN2/uzpsT08rNGDIB7BcsIpzee38poqhtAODcWzmMMdPU2Civkcmqamtr6yvKyx+Ul5U9vFNbq7pXV9cJAODm7m4z2sPDLiAwcIR/QICLh4eHq8TT00c0apQHQqiv/jWxNL3pu9i5R1rLyjDAEAngUnTZi3By+gIQmmAsn2VZTY1Mdi0nO7vos127Kmrl8k5TbQAAeI4ZY7s6MTEgetasSWKJJJggCMpoQYwvqhWtS08/G1RjdQFcS8oXIR4vDQCGGeap1eq2wgsXcpOTks6Xl5W1m9JufwgIDHRI2b59ZtjUqdECgaCHbQD4lensXNkQEvSNKe0OWAD7BYsI4d/+vh0IYq1hHsMwHfnn87JWLVt+/l5dndqUDpgKN3d3wb/37YuaER4+j6IogWE+ZuhPft3yj3eU3xxnB9LegAQYsfNTviA84jBBkgsN82rl8isJK1ZknM/LazVW11oIj4x03rVnzxKJp+ezhnmdHR2ZdV8efd3u4x1d/bXTrwAjdn7Kt42MOgEIRXN5hmE0Wf/NTH/tj3EFJvfegjh2/Hj4/NjYxSRJ8ri8urPz3N1jGfP6E4HoK9N+wSLCNiLykOHglUrlw4SVKz943IMHAFi8aFHeurff/lClUuk9gQIbmwiP+CWH66bO6PMP7vMJ+MP1yo+AINZwOYVCUR8fF/evc7m5zYPrumURFRMjSj927B2hUOjC5RmN5pMsb0mSNm34lehVgO7Z/hiXUygUD2ZFRPzz559+arNk5y2FkNBQxzNS6ftOTk5Pc3m6szPu5FivTMPyE+3tsNFXwKXw0hjE4+3lckqlsnXJ4sX/elIHDwBQfPVq26JXXtmmVCpbuDwpEByYW1LmbVj+R6UK9RDAfsEighAKDwOAo5ZjGEazYd267blnzzb11QFEkQDI3LjHMijIz3+YnJT0McMwGi2HEHLgOTntHx4Y2KNzPQRweu/9Nw09vMz//Cfj8MGDd/u1TpCA+HxAFPVYhTiQllb7bVbWl1wOITRp+olT8VyuxyvwVLZ0BKKorVxOdvt28ZLFi/NN6gGpFeLRE1F28+bbPr6+diaOY1D408KF52pksp+5HCLJlJmnsoVcTk8Ays19LXACG5qmu9avXas3EZoEkgLE54OXt/cLP1y5snXt+vVeZrdlBtYkJKTTNK3zTBFCIkdf37cBfv8a6AQYlXXasTuk1SFPKs3q770fKBwcHEQp27dvzsnLi+Xz+UPyfuRJpS0F+fmnuBwiyTXTvjmhiyV0AvAknssBQKhNq9XqtsRVq6SW7BBCiJw2Y0bsjerq5ElhYUOydrB6xYpctVqtC8wIghA6+Pmt0KV1JUnyDW7F7wsKcqwV2Li5u/tnS6Vbt6SmBlujfS7u3rnT+UNhYS6Xo3j8pdrfBACA60+loQDgqyVZlqXfS042beIzEQKBwPGvSUkbii5fjhc6OxuP8y2EdzduzGNZltamKR7P27X42niAbgEQjx/HrVAjk5VcLy21aDzfC1BIaGhUeWXlB/MXLnwaiD5DE7NxraTkt1q5vFSP5PH+BKB9BRAK5+blZGf/YJWe9IKRI0eKMzIythz58ssZiMcDawghzcm5qEcQZDgAAKLv33chXV3vQ/fSNcaYCfDxWSm7fbvDVCOIzzfqAHV0dBwdaBvV1dWXFyxYcPBWZaUK0zQANmmFq1d4eXvbXa+sTENI5/1i5v59V4IQiaYAZ92+qbGx1pzBWwpeXl4vFBUVbV2zbp2XJb3K6qoqVXNTUy2HQuDsPIVABOHHLVgjk90atLVBwsHBQZSSkrL57NmzsXxbW2QpIeQ1NXpjI3jUWAIQ8jYoVD8oKxYCQoicNm1abEVFRfKkSZOG/+5emy+EXC5/YGDFhwCE9NzT8vJyg0KPF25ubv5nzpzZumXLlmAA6BFnmIIbFRV6Y8MIeROAkN6mxvXS0hZ4wiAQCBw3bNiwobCwMN7JyemRz9AdZyBq4Kv610tL9VaxMMYiAjhxPwDAg/p6szYxhgAoJCQkqry8/IN58+b9vuJjghBGxjaMAAAHLqPdrnpSofUZ0tPTZ+hIhAAA9ftK3L17V29sCCEHq7qg1kRHR8ej5W6WhcH4CxQAtAPACC3h5u5uo1AohsINNgvNzc3yxMTEPd9mZTVghgFgB7QBBAAAzzzzjA03TdN0BwUAbcAR4A9ubraW3tezEHBxcbF0zpw5Xymam2lTBq6Fi6uroQBKAjDWm/XHBQWNgCcMarW6beeOHTsnT5iQoWhsNGvwAADjgoJGctOYZVsowLgaEHpOS/r5+bkAwGP3BrW4d+9exeuvvbb34vffKwbblp+/v96miUajuU0BxlVcUiyRuA7WkCWAMWYuFBR8OzcmJqurq8siEZFYLNYTQMDnlROYZSu4pMTT08cSxgaD9vb2puSkpC3RM2eesNTgAQDEEokvN23DF5RSbFNTIenqiqE7IhSNGuXhOWaM7eOKCKurqi6/On/+wVs3b6os2a6Pr6/dSJFoNIfCbOMvhURD5PRGwPiGlkUIkasTEwMsaXwg0Gg0nemHDqUF+vrutvTgAQBWJSQEctYCAGNc1hA1s5noTp3jFo6eNWuSpTvQF5qbmuTxcXGbV/z5z0XWshEZHa03JoSxFKB7SQxrur7mZoolkuBxQUF6LrKVgK9euZIb4OPz4ckTJxqsZSR4/PhhHmLxOD3DXeqvAboFqH8uqJj7GhAEQW1LTQ0HK0KtVrftSE3dGTZhQoZCoaD7r2E+tqWmRhicMLtRHxJ8DYC7L8CyR7iVwqZOjXJzd+9xCMkSuFdXVxETEfHu5k2brlmjfS48xGKbyVOmROqRDPOF9qdOAE2NbL9Go9G5wAKBYNje/fujBmWdYQB3/X5EB2PMFOTnn/Dz8kq5WFSkGFTbA8SetLRoPp/PfZ1bNNVVn2sTOgEaX36p7X5dnd5TMH3mzPlRMTEik62yLOCuLr0oTfdtDw+36Le9L4RHRjpPnT79JT2SYXY3vjpfd85YbwH+1qVL22iaVmjTFEXxP961S29PvU+wLGCNBrBGoxee3qioKAoJCtr06UcfVZs+DPPx2d69Sw3OEv5C18p3c8voCRCw7cMGtUr1LpeTeHo+m/HVVwOaEDFNGw1Pnw0MTDP3uKy5+DozM8pDLA7mcpimN/4yb/avXK7HFkzH2oQDLMP8yOViX3118bKVKz2s0VFrYFViomTu/Pl/1CMxLmxZtrTHWYceAqivXsHQ1vYGxlh3GIokSV7qjh0bzJoPhhgxs2eLtqakrCcIgntwUsEqWt9SX73SY+4xugn3IGyCjFWrV3A5Ozu74enHjr0TEhrqaKzOk4CQ0FDHw0ePbrSzsxNyaIw1mmUPwibWGKvT6y5kQ0jQNyxNf8LlhEKhyxmp9P0n8UmImT1blH3uXI8zgsCyO+rHB2T1Vo9cP8q5VxFwS0seMfFFX5Ki/LWcjY2Nw7yXX37h4cOHlT8XFyss0fnBYmVCgvjf+/ZtcnBw0FvxAZY92vzWkjVM/f1e6/YpgOZGBW62tz9t6+M7kcfni7U8j8ezjYqODvMPCFCeyMw0+mgNFb7OzIxc85e/JPL5fHu9DIzPqE6djG8/eoTpq36fAgAA8C5dZB4OG3ZcGDjOkyBJXZhMEATp5+8fvDg+fnTVrVu3a2Qyi4ewfSFm9mzR/3JyVk948cWoHtdqWPao6tTJ+NbNmzS9VNdhwBcmBKHPo5EH01OBINYb5jEMo/4u//yp1ctX5N69c8eq33sPsdhmT1pa9LQZM+aSJMk3yMbAsjua31ryrrEZ3xjMuTLzCuLx9gOAk2FeV1fXb4UXLuS+l5x8/lpJidFrbeYiePz4YdtSU8MnT5kSZeDba6HAGs2yviY8YzDv0lThJU9CKDwECBldOGFZlq6Vy0ulOTk/7Nm9u7y6qsqs18PP399+5erVARFRUZNGe3gEEQRhvK8YF7KK1jcfhE2Um2rD7GtzgtDnkfOBL15HFJUCAL1+FjHGbHNTU628puZWTU1NfeWNGw3lZWUtxq7NjQsKcvYdO9ZFLBa7iCUS35Ei0WjuMpaRthuBYTa2LFt6dKCPvCEGf3Hy9Fkh9czoNUCSicDZYbImWJZtJTD+lK6V7zb07U2F5a7OZp4cRnl5LUME+QYg5Nd/DdOh7uy8jVn2c/LunX3ckHYwsPjl6R+VKjSvrHI8ZWsThwgyHBAKgEFcnla2t99WKZXfdba1HSFennPJkn0FsJIA3HTkue9E9m5ukwke5QeI8EEIeeFHJ9KdEEIOAAAY43aMcRvLMA9pmpbRXV1VnR0dlXfKyi7Il7/ZYOptUFPwfx3OkYYKJFX4AAAAAElFTkSuQmCC") center center no-repeat !important;
    z-index: 0
}

.viginstfb-1:after {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAACXBIWXMAAAsTAAALEwEAmpwYAAAE/UlEQVRIiaWWa0xTZxjH/+e0PUXqrafUC5dObIFOTMaQOsXKrFFBW03UZLgxL9s+zC2sIpqwLdmWjCW6RVlH4mYyJMyZOHBh2UVqNg2KGWAAZTETCgimxQulPdBCWzilPfuAPRZs8bL/p573eZ//r89zznshABCYFDeUnkAAgIebBQAoszOhGACgi2UJK+snxziOAIBUMRVIpSjukJzmAIB7OFtC+HDU7ia+HBzhQrnEuSWJwtWSWC7csMnj5QFbW26oIZHsAUkaxGLxi+HzPB5P17jPZ+Y8nlNj+k23MIOI/vRUQSSIvrlVGSOXf0OQZC4AsCzrsVmtnQzDOACApum4JIVCTVGUBAD8LHvROzDwwejmDd1PBIUg2zt79grE4goAaG1pqTOVlV2uqa6+F8ngtfz8+KLi4nVZGs0WAHA5nfv/yso4Nb1LRH96qiC8VTu6ektIkegLhmG639q9+4TZbHbM1JKQ9Hq9vKKqqlAmkyntAw9KqzIzSguk84I86NySRGHoYXtnT4FALK6609fXlKpUnngawHTdsliMqpSUlT2WTmPt+nUnl1IibrUkliNDE/IuX10kEIurhoeH74RDCJKM7BhFy9LSyhmGsanS1OULP/xYFRrnXcSL488CQN7GjV9NySRJECIRLl25kl9RWal9GtiW3NwjALD1jYLT54bdwiaPlyABYMPlq8kiitK237hx6XpbmztSslKpVO7Zt2//b3V1W58Eut7W5v6nvb2elsmyth0rS+crEtGy9wHAWFj4S7TkwcFBOwDk5eXlW27fPvzKqlXzZoIVFxXVAkC2TrefB8XExu5gWdbT3NQ0HC2RJEl+GSQnJ2dcrK8/esxkyoz2Dq82NAyxLOtdHB+/uZf1T7ZOIBAobFZrx0z/cLrEYvEco9FYXN/Q8DohFEb8aGxWa2dMTEwCXxEAOJ1O57OAQsrOztYzQ0Om9woLlYRwyiYDhmEGAWApJXr0eRMEgf8jLhjkuIlA1Di/WGmajnseQGNj43nd2rVnOY57LEbTtDz0mwQAv99vTVIo1M8CGB8fHyk3mcrWabURIQCQpFCoWZa18TvDmNdbS1GUZI1WOz+acTAY5PvS19vbrsvJKTlcXHw92vw1Wu18iqJivaOjtXxFPrv9OwAoM5l2RkuUy+ULAeCC2fxTmkp1rLWlJeLCDslUXr4TAEbu3/uWBzVsWt87OjLS/HJmpi5zxYq5UzI4DpiYQE93d3dVZeXJbXr9HzMBACBLo5n7UkaGzu1yNV8zbO4FwnZv9Q9nEpbnvHqHYRjbori4j55kNpMGnM4jUqk06c+aGqW75JB1yu7duffNux6X622appNuWSwHnhfS0dVVJJVKk+7bbO+6Sw5ZQ+Nk+Elozlj+45jH86kqJUVzz27/XK/XyyPbPS6DwbDggcNRqlSpskZdrs/+zsmuDI/zR3n4KWu42bEvZvbs7wGgrbW17uvjx+trqqvvRwLk79qVcODgQV2WRpMHAH6f751fl6WeDsVDhUS8MwCTlxMRTZcLRaJNAOD3+0fv9vd3OJ1OBwDIZLK4hMTEZSKRSAIAgYmJC6zDYTy/WtMXDgj5Ej+/sFi4avYcLhIMAHIbr6lnyeIKSIHAQAoEy8NjwUDgZjAQOB9wuc78vjLTMr0KHsIFQODRBRIIu0SW2n2T45EX/eN66PLJglkcAEj/vcuFe/8HK8sAOmAidsQAAAAASUVORK5CYII=") center center no-repeat !important;
    z-index: 0
}

.FM_vH {
    visibility: hidden
}

#Below_Related_Section iframe {
    margin: 0 auto;
    max-width: 1200px
}

.FM_be-mdl {
    display: block;
    margin-bottom: 21px;
    margin-top: 16px;
    text-align: center
}

.FM_be_btm1 {
    background: #00a699;
    border-radius: 2px;
    color: #fff;
    font: 600 16px/1.3 Arial, Helvetica, sans-serif;
    width: 222px;
    border: none;
    height: 49px
}

.FM_nicse h3,
.Fm_lh24 {
    line-height: 24px
}

.block-container {
    justify-content: center !important
}

.FM_recimg {
    margin: 0 0 18px
}

.FM_mxw23 {
    max-width: 24%
}

.FM_rvw>p span:last-child,
.fasE {
    align-self: flex-end
}

.svgiconcall {
    width: 21px;
    height: 21px;
    fill: #03776d
}

.vrfIcon,
.vrfgreyIcon {
    width: 18px;
    height: 17px;
    margin-right: 2px
}

.vrfIcon {
    fill: #0f9347
}

.vrfgreyIcon {
    fill: #666
}

_:-ms-fullscreen,
:root .FM_COntus .FM_be-mfrm .bT1-st3,
_:-ms-lang(x),
.FM_COntus .FM_be-mfrm .bT1-st3 {
    width: 100%
}

.FM_H_abt-1 {
    min-height: 24px;
    max-height: 75px
}

_:-ms-fullscreen,
:root .FM_nPDP,
_:-ms-fullscreen,
:root .FM_RELTD.wdiL,
_:-ms-fullscreen,
:root .wrapper>.FM_ds2.FM_m12.FM_w1.FM_p18,
_:-ms-fullscreen,
:root .wrapper>.first-sec,
_:-ms-fullscreen,
:root .wrapper.fcp_m1.FM_bg0>.FM_p52.FM_cb.FM_bg0,
_:-ms-fullscreen,
:root .bl_form,
_:-ms-lang(x),
.FM_nPDP,
_:-ms-lang(x),
.FM_RELTD.wdiL,
_:-ms-lang(x),
.wrapper>.FM_ds2.FM_m12.FM_w1.FM_p18,
_:-ms-lang(x),
.wrapper>.first-sec,
_:-ms-lang(x),
.wrapper.fcp_m1.FM_bg0>.FM_p52.FM_cb.FM_bg0,
_:-ms-lang(x),
.bl_form {
    max-width: 1296px
}

_:-ms-fullscreen,
:root .fcp_bdcrm_58,
_:-ms-fullscreen,
:root .fcp_bdcrm_58 .fcp_bdcrm_wrap,
_:-ms-fullscreen,
:root .cntr_rpts,
_:-ms-lang(x),
.fcp_bdcrm_58,
_:-ms-lang(x),
.fcp_bdcrm_58 .fcp_bdcrm_wrap,
_:-ms-lang(x),
.cntr_rpts {
    margin: 0 auto;
    max-width: 1296px
}

.mdc_cert * {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif
}

.FM_sidsdr,
.FM_sidsdr1 {
    max-width: 127px;
    margin-right: 9px
}



.mdc_cert .w1 {
    width: 80%
}

.FM_tpup_tn,
.imgc,
.mdc_df {
    display: flex
}

.imgc,
.mdc_cert .jcc {
    justify-content: center
}

.mdc_cert .clr4 {
    color: #615f5f
}

.mdc_cert .ls11 {
    letter-spacing: 1.1px
}

.mdc_cert .ls75 {
    letter-spacing: .75px
}

.mdc_cert .lh15 {
    line-height: 1.6
}

.mdc_cert .ma {
    margin: 0 10%
}

.mdc_cert .ts_cmpn_dtl li {
    display: flex;
    margin-top: 10px
}

.mdc_cert .ts_tik {
    min-width: 13px;
    width: 13px;
    height: 9px;
    margin: 4px 10px 0 0;
    fill: #149447
}

.mdc_cert .certLgo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #149447;
    margin: 45px auto 22px
}

.mdc_cert .certLgo .ts_tik {
    width: 27px;
    height: 20px;
    margin: 0
}

.mdc_cert .certLgo:after {
    content: "";
    position: absolute;
    width: 48px;
    height: 8px;
    left: -1px;
    bottom: -3px;
    background-color: #149447
}

.mdc_cert .ts_dsgn {
    width: 50px;
    height: 50px;
    position: absolute;
    background-color: #fff;
    fill: #a2a2a2;
    z-index: 2
}

.mdc_cert .ts_lt_dsgn {
    left: 8px;
    top: 8px
}

.mdc_cert .ts_rt_dsgn {
    right: 8px;
    top: 8px;
    transform: rotate(90deg)
}

.mdc_cert .ts_rb_dsgn {
    right: 8px;
    bottom: 8px;
    transform: rotate(180deg)
}

.mdc_cert .ts_lb_dsgn {
    left: 8px;
    bottom: 8px;
    transform: rotate(270deg)
}

.mdc_cert .ts_ln {
    display: block;
    position: absolute
}

.mdc_cert .ts_ln .bt_ln,
.mdc_cert .ts_ln .tp_ln {
    display: block;
    background-color: #9d8163
}

.mdc_cert .ts_inner_ln {
    border: 2px solid #a2a2a2
}

.mdc_cert .ts_inner_ln:after,
.mdc_cert .ts_inner_ln:before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 8px;
    right: 8px;
    top: 8px;
    bottom: 8px
}

.mdc_cert .ts_inner_ln:before {
    z-index: 1;
    border: 2px solid #a2a2a2
}

.mdc_cert .ts_call,
.mdc_cert .ts_sms {
    min-width: 10px;
    width: 10px;
    height: 14px;
    margin-right: 4px;
    float: left;
    margin-top: 2px
}

.mdc_cert .ts_ln2:before {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background-color: #149447;
    bottom: 25px;
    left: 0;
    right: 0;
    margin: 0 auto
}

.mdc_cert {
    font-family: Roboto, sans-serif;
    display: flex;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    align-items: center;
    justify-content: center
}

.mdc_cert .certmain {
    min-height: 120px;
    flex-direction: column
}

.mdc_cert .ftricn {
    width: 10px;
    height: 10px;
    fill: #7a7a7a
}

.mdc_cert .mdc_logo img {
    width: 70px
}

.mdc_cert .clos_btn,
.mdc_cert .clos_cert {
    width: 20px;
    height: 20px;
    position: absolute;
    z-index: 2
}

.mdc_cert .clos_cert {
    display: flex;
    top: -2px;
    right: -30px;
    justify-content: center;
    align-items: center
}

.mdc_cert .clos_btn {
    top: 0;
    left: 0;
    display: block;
    cursor: pointer
}

.mdc_cert .clos_cert svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    fill: #f1f1f1
}

.mdc_cert .mt6 {
    margin-top: 6px
}

.FM_stkDflt>.FM_pSsec {
    position: sticky;
    top: 0
}

.FCP .FM_stkDflt>.FM_pSsec {
    top: 50px
}

.FM_ass {
    align-self: start
}

.FM_stkLarg>.FM_pSsec {
    position: fixed;
    bottom: -25px
}

.FM_stkLarg>.FM_stkchnge {
    padding-left: 190px
}

.sug-ss.as_ui-widget-content li,
.sug-ss.ui-menu.ui-widget {
    z-index: 1 !important
}

.FM_pnsExt {
    padding: 10px 3px
}

.FM_pnsExt .FM_mob_l {
    margin: -3px 5px 0 0
}

.FM_nicse h3 {
    background-color: #f2f2f2;
    border-radius: 4px;
    margin-top: 0;
    font-size: 23px
}

.FM_mPlaHvr,
.FM_p_prd li {
    background-color: #f6f6f6
}

.FM_nicse h3 a {
    height: 250px;
    display: table-cell;
    padding: 10px;
    box-sizing: border-box;
    width: 250px
}

.FM_shpCart h3 a,
.FM_sid_nm,
.FM_smpnew .FM_Scat li a>span.FM_lh1:nth-of-type(2)>span:first-child,
.FM_txt2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

.FM_rAdCindx .FM_prdcat .Fm_pCat ul li {
    margin-right: 40px
}

.FM_one_brand .FM_sid-slider {
    background-color: transparent;
    padding: 0;
    min-width: 210px;
    max-width: 100%
}

.FM_sidsdr {
    min-width: 127px
}

.FM_sidsdr1 {
    min-width: 135px
}

.FM_mPlaHvr {
    border: 1px solid #dadada;
    padding-bottom: 6px
}

.FM_sidsdr .FM_sidimg {
    width: 125px;
    min-width: 125px;
    height: auto;
    min-height: 145px
}

.FM_sidimg>a {
    min-width: 125px;
    min-height: 125px
}

.FM_sidimg>a,
.FM_sidimg>a>img {
    max-width: 135px;
    max-height: 125px
}

.FM_sid_nm,
.FM_sid_txt {
    font-size: 13px;
    padding: 0 5px 0 10px;
    line-height: 15px
}

.FM_sidsdrAfp {
    font-weight: 400;
    text-decoration: underline;
    color: #2e368f
}

.FM_sidsdr:hover .FM_mPlaHvr {
    width: 147px;
    left: -10px;
    position: absolute;
    height: 195px;
    top: -5%;
    box-shadow: 0 0 4px rgba(0, 0, 0, .2);
    z-index: 2
}

.two_lines .FM_sidsdr:hover .FM_mPlaHvr {
    height: 210px
}

.FM_sidsdr:hover .FM_sidimg {
    width: 145px;
    max-width: 145px
}

.FM_sidsdr:hover .FM_sidimg>a {
    min-height: 145px;
    min-width: 145px
}

.FM_sidsdr.FM_lstHvr:hover .FM_mPlaHvr {
    left: -20px
}

.FM_sid-slider .FM_sldrArw {
    z-index: 5;
    height: 0;
    top: 0;
    bottom: 0;
    margin: auto
}

.FM_sid-slider .FM_sldrArw span {
    width: 35px;
    height: 35px;
    top: -19px
}

.FM_sid-slider .sldrCArw span:after {
    left: 13px
}

.FM_sid-slider .sldrCArw span:before {
    left: 16px
}

.FM_sid_contr .sldrCArw span:after,
.FM_sid_contr .sldrCArw span:before {
    top: 9px
}

.FM_sid_contr .sldrCArw:nth-of-type(2) span:after {
    left: 14px
}

.FM_sid_contr .sldrCArw:nth-of-type(2) span:before {
    left: 11px
}

.FM_sid_nm:first-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    width: 100%;
    -webkit-line-clamp: 4;
    box-sizing: border-box
}

.FCP .FM_nPDP .FM_rvw {
    padding-left: 31px
}

.FCP .FM_nPDP .FM_rvw .FM_pbarC {
    width: 140px
}

.FCP .FM_nPDP .FM_rvw.FM_us .FM_pbarC {
    width: 160px
}

.CWSIM .FM_nPDP .FM_rvw .FM_pbarC,
.MDC .FM_nPDP .FM_rvw .FM_pbarC,
.TDWIM .FM_nPDP .FM_rvw .FM_pbarC {
    width: 192px
}

.FM_s {
    line-height: .8
}

.FM_Hsr .FM_sRt,
.FM_Hsr .FM_str>span:first-child {
    font-size: 40px
}

.FCP .FM_nPDP .FM_rvw.FM_us,
.FM_rvw.FM_us {
    border: none;
    padding-left: 0;
    margin-right: 0;
    padding-right: 0
}

.FM_rvw.FM_us>p span:first-child {
    min-width: 73px
}

.FM_rvw.FM_us .FM_pbarC {
    width: 295px
}

.FM_HsnTbl p span:last-child,
.FM_rvwCntnr:nth-last-of-type(2) {
    flex: 1
}

.FM_rvwI {
    width: 52px;
    height: 52px;
    background-color: #eaeaea;
    border-radius: 50%;
    flex-shrink: 0;
    text-transform: uppercase
}

.FM_pflePrd .FM_rvw1:nth-of-type(2),
.FM_rvw1 {
    margin-bottom: 50px
}

.FM_rvwCntnrRm span:hover {
    color: #fff;
    border-color: #2d3192;
    background-color: #2d3192
}

.FM_rvw>p>svg {
    margin-right: 4px
}

.FM_bgH.FM_Opc1:after,
.FM_cont_sec.footr:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    width: 1296px;
    z-index: -1
}

.FM_rvwCntnr>footer:first-child {
    top: -50px
}

.FCP #footerreviews {
    margin-top: -120px
}

#footerreviews {
    margin-top: -90px
}

.FM_clrGrey {
    color: inherit
}

.FM_be-slbox {
    font-size: 15px;
    height: 45px
}

.FM_rvw_img>span {
    width: 252px;
    height: 252px;
    box-shadow: 0 0 6px rgb(0 0 0 / 10%);
    margin-right: 29px
}

.FM_tpup_c {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 9
}

.FM_pflePrd .FM_zoom,
.FM_tpup_img {
    height: 500px;
    width: 500px
}

.FM_tpup {
    max-width: 640px;
    max-height: 630px;
    padding: 20px 20px 10px
}

.FM_tpup_img>img {
    max-height: 500px;
    max-width: 500px
}

.FM_tpup_tn li {
    width: 50px;
    height: 50px
}

.FM_tpup_tn li img {
    max-width: 50px;
    max-height: 50px
}

.FM_tpup_ci {
    width: 30px;
    height: 30px;
    top: -11px;
    right: -13px;
    border-radius: 50%;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%)
}

.FCP .FM_rvw1>span.FM_ps_t {
    top: -120px
}

.FCP .first-sec .FM_rvw {
    padding-right: 25px;
    margin-right: 25px
}

.FM_HvidsS_in,
.FM_rvw_img.FM_rvw_img_ftr>span:nth-of-type(3n),
.FM_rvw_img_ftr>span {
    margin-right: 25px
}

.FM_srew {
    background-color: #f2f2f2
}

.FM_rvw_img.FM_rvw_img_ftr>span {
    width: 127px;
    height: 127px
}

.FM_rvw_img.FM_rvw_img_ftr img {
    max-width: 125px;
    max-height: 125px
}

.FM_HsnTbl {
    width: 840px;
    margin: 0 auto;
    border: 1px solid #dedede;
    border-radius: 4px;
    box-shadow: 0 9px 14px #f0f0f0;
    overflow: hidden
}

.FM_HsnTbl p:first-child span {
    font-size: 18px;
    color: #fff;
    font-weight: 400
}

.FM_HsnTbl p span:first-child {
    max-width: 15%;
    min-width: 15%
}

.FM_HsnTbl p span {
    line-height: 1.6;
    font-size: 16px;
    color: #666;
    padding: 10px 10px 10px 50px
}

.FM_HsnTbl p {
    border-bottom: 1px solid #dedede;
    display: flex;
    justify-content: space-between
}

.FM_HsnTbl p:last-child {
    border-bottom: none
}

.FM_clrGry {
    color: #ccc
}

.FM_snglCat .multiimg .Fm_pDes:nth-of-type(3),
.FM_snglCat .multiimg .Fm_pName:nth-of-type(2) {
    width: 709px
}

.multiimg .Fm_pDes:nth-of-type(3),
.multiimg .Fm_pName:nth-of-type(2) {
    padding-left: 514px;
    width: 520px
}

.FCP .multiimg .FM_prdpge>.FM_ps_t {
    top: 110px;
    padding-left: 82px
}

.multiimg .FM_gbqBtn:nth-of-type(3),
.multiimg .FM_gbqBtn:nth-of-type(4) {
    margin-left: 521px;
    width: 513px
}

.thumbnail-container:nth-child(3) {
    margin: 18px 0 15px;
    max-height: 370px
}

.FM_PTnal .lf_arow {
    top: 4px;
    transform: rotate(90deg);
    left: 40%
}

.FM_PTnal .rgt_arow {
    bottom: 54px;
    top: auto;
    transform: rotate(90deg);
    left: 40%;
    right: auto
}

.FM_PTnal .rgt_arow1 {
    bottom: -6px
}

.FM_PTnal .thumbnail-container:nth-child(2) ul li,
.FM_PTnal .thumbnail-container:nth-child(3) ul li {
    margin: 4px
}

.FM_npdpP_io.multiimg>.FM_prdpge>.FM_fl.FM_ps {
    position: relative;
    top: auto;
    z-index: 1
}

.FM_npdpP.FM_npdpP_io.multiimg {
    padding: 15px 13px 25px 17px
}

.FM_npdpP_io.multiimg .Fm_pDes:nth-of-type(3),
.FM_npdpP_io.multiimg .Fm_pName:nth-of-type(2) {
    padding-left: 0;
    width: 493px
}

.FM_npdpP_io.multiimg .FM_gbqBtn:nth-of-type(3),
.FM_npdpP_io.multiimg .FM_gbqBtn:nth-of-type(4) {
    margin-left: 0;
    width: 493px
}

.FM_npdpP_io.multiimg .FM_PTnal {
    margin-top: 70px
}

.FM_npdpP_io.multiimg .FM_PTnal .rgt_arow {
    bottom: 7px
}

.CWSIM .multiimg .FM_prdpge>.FM_ps_t,
.MDC .multiimg .FM_prdpge>.FM_ps_t,
.TDWIM .multiimg .FM_prdpge>.FM_ps_t {
    padding-left: 82px
}

.FM_npdpP_io .FM_prdpge>.FM_ps_t {
    top: 12px
}

.FM_snglCat .FM_npdpP.FM_npdpP_io.multiimg {
    padding: 15px 42px
}

.FM_snglCat .multiimg .FM_gbqBtn:nth-of-type(3),
.FM_snglCat .multiimg .FM_gbqBtn:nth-of-type(4) {
    width: 680px
}

.FM_snglCat .FM_npdpP_io.multiimg .FM_gbqBtn:nth-of-type(3),
.FM_snglCat .FM_npdpP_io.multiimg .FM_gbqBtn:nth-of-type(4),
.FM_snglCat .FM_npdpP_io.multiimg .Fm_pDes:nth-of-type(3),
.FM_snglCat .FM_npdpP_io.multiimg .Fm_pName:nth-of-type(2) {
    width: 114%
}

.FM_Head>div:first-child {
    height: 92px
}

.FM_pflePrd figure.FM_wh500 {
    max-width: 500px;
    min-width: 500px;
    max-height: 500px;
    min-height: 500px;
    margin-bottom: 30px
}

.FM_pflePrd .FM_zoom {
    position: absolute;
    right: 50px;
    border: 1px solid #d1d0d0;
    background-color: #fff
}

@keyframes drift-fadeZoomIn {
    0% {
        transform: scale(1);
        opacity: 0
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes drift-fadeZoomOut {
    0% {
        transform: scale(1);
        opacity: 1
    }

    15% {
        transform: scale(1.1);
        opacity: 1
    }

    100% {
        transform: scale(.5);
        opacity: 0
    }
}

@keyframes drift-loader-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0)
    }

    50% {
        transform: translate(-50%, -50%) rotate(-180deg)
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg)
    }
}

@keyframes drift-loader-before {

    0%,
    100%,
    50% {
        transform: scale(1)
    }

    10%,
    40% {
        transform: scale(1.2) translateX(6px)
    }

    25% {
        transform: scale(1.3) translateX(8px)
    }

    60%,
    90% {
        transform: scale(.8) translateX(6px)
    }

    75% {
        transform: scale(.7) translateX(8px)
    }
}

@keyframes drift-loader-after {

    0%,
    100%,
    50% {
        transform: scale(1)
    }

    10%,
    40% {
        transform: scale(1.2) translateX(-6px)
    }

    25% {
        transform: scale(1.3) translateX(-8px)
    }

    60%,
    90% {
        transform: scale(.8) translateX(-6px)
    }

    75% {
        transform: scale(.7) translateX(-8px)
    }
}

@-webkit-keyframes drift-fadeZoomIn {
    0% {
        -webkit-transform: scale(1.5);
        opacity: 0
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 1
    }
}

@-webkit-keyframes drift-fadeZoomOut {
    0% {
        -webkit-transform: scale(1);
        opacity: 1
    }

    15% {
        -webkit-transform: scale(1.1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(.5);
        opacity: 0
    }
}

@-webkit-keyframes drift-loader-rotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0)
    }

    50% {
        -webkit-transform: translate(-50%, -50%) rotate(-180deg)
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(-360deg)
    }
}

@-webkit-keyframes drift-loader-before {

    0%,
    100%,
    50% {
        -webkit-transform: scale(1)
    }

    10%,
    40% {
        -webkit-transform: scale(1.2) translateX(6px)
    }

    25% {
        -webkit-transform: scale(1.3) translateX(8px)
    }

    60%,
    90% {
        -webkit-transform: scale(.8) translateX(6px)
    }

    75% {
        -webkit-transform: scale(.7) translateX(8px)
    }
}

@-webkit-keyframes drift-loader-after {

    0%,
    100%,
    50% {
        -webkit-transform: scale(1)
    }

    10%,
    40% {
        -webkit-transform: scale(1.2) translateX(-6px)
    }

    25% {
        -webkit-transform: scale(1.3) translateX(-8px)
    }

    60%,
    90% {
        -webkit-transform: scale(.8) translateX(-6px)
    }

    75% {
        -webkit-transform: scale(.7) translateX(-8px)
    }
}

.drift-zoom-pane {
    max-width: 500px;
    max-height: 500px;
    background-color: #fff;
    top: -1px;
    border: 1px solid #ccc
}

.drift-zoom-pane.drift-opening {
    animation: 180ms ease-out drift-fadeZoomIn;
    -webkit-animation: 180ms ease-out drift-fadeZoomIn
}

.drift-zoom-pane.drift-closing {
    animation: 210ms ease-in drift-fadeZoomOut;
    -webkit-animation: 210ms ease-in drift-fadeZoomOut
}

.drift-zoom-pane.drift-inline {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 75px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .3)
}

.drift-loading .drift-zoom-pane-loader {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 66px;
    height: 20px;
    animation: 1.8s linear infinite drift-loader-rotate;
    -webkit-animation: 1.8s linear infinite drift-loader-rotate
}

.drift-zoom-pane-loader:after,
.drift-zoom-pane-loader:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .9)
}

.drift-zoom-pane-loader:before {
    left: 0;
    animation: 1.8s linear infinite drift-loader-before;
    -webkit-animation: 1.8s linear infinite drift-loader-before
}

.drift-zoom-pane-loader:after {
    right: 0;
    animation: 1.8s linear -.9s infinite drift-loader-after;
    -webkit-animation: 1.8s linear -.9s infinite drift-loader-after
}

.drift-bounding-box {
    background-image: url(https://images-na.ssl-images-amazon.com/images/G/31/apparel/rcxgs/tile._CB483369979_.gif)
}

.FM_afsCTA {
    border-radius: 30px;
    padding: 5px 10px;
    width: 112px
}

.FM_afsCTA:hover {
    border-color: #da2931;
    color: #da2931
}

.FM_spmnt svg {
    fill: #02625a
}

.FM_w470 {
    width: 470px
}

.FM_smpnew .FM_Scat li:hover {
    border: 1px solid #ccc;
    border-radius: 20px
}

.FM_smpnew ul.FM_Scat li {
    min-width: 252px;
    max-width: 252px;
    transition: .2s ease-out;
    margin-right: 35px
}

.FM_smpnew .FM_Scat li a>span.FM_lh1:nth-of-type(2)>span:first-child {
    overflow: hidden;
    -webkit-line-clamp: 3
}

.FM_smpnewHgt {
    max-height: 365px
}

.stmp>ul>li {
    margin-right: 40px;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 30px
}

.FM_smpnew2 {
    display: inline-block;
    margin-left: 18px;
    margin-right: 16px;
    margin-top: 30px
}

.FM_smpnew.FM_smpnew2 ul.FM_Scat li {
    margin-right: 39px
}

.FM_smpnew1>li>a,
.FM_smpnew2>li>a {
    max-width: 250px;
    min-width: 250px
}

.FM_smpnew>li>a {
    height: 40px
}

.FM_p_prd .FM_SldrWAbt {
    margin: 10px 20px 0
}

.FM_p_glry .FM_sldrArw {
    top: 40%
}

.FM_p_glry .FM_sldr,
.FM_p_prd .FM_sldr {
    max-width: 1020px;
    margin: 0 auto 30px;
    box-sizing: border-box
}

.FM_p_glry .FM_sldrB {
    max-width: 250px;
    min-width: 250px;
    max-height: 250px;
    min-height: 250px;
    margin: 0 5px 0 0;
    overflow: hidden
}

.FM_p_glry .FM_sldrB figure,
.FM_p_glry .FM_sldrB figure span {
    height: 250px;
    width: 250px
}

.FM_p_glry .FM_sldrB img {
    max-width: 250px;
    max-height: 250px;
    opacity: 1
}

.FM_p_glry .FM_sldr,
.FM_p_glry .FM_sldr_Wpr,
.FM_p_glry .FM_sldr_iW {
    max-height: 252px;
    min-height: 252px
}

.FM_p_glry .vigB:after {
    width: 40px;
    height: 28px
}

.FM_p_glry .vigB:before {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 12px solid #fff
}

.FCP_pNew+.FM_rgtAdd {
    float: right;
    right: 10px
}

.FM_shp_prdCTA {
    padding: 7px 30px;
    border-radius: 20px;
    background: #00a699;
    border: 1px solid #038379
}

.fcrd1 {
    fill: none;
    stroke: #1b8680;
    stroke-width: 2;
    stroke-linejoin: round;
    stroke-miterlimit: 10
}

.FM_nav>ul>li>a.rdtsp {
    padding-left: 50px;
    color: #1b8680;
    display: flex
}

.rdtsp>span:first-child {
    left: 24px;
    top: 8px
}

.FM_stky_frm .FM_be-mfrm .eqFrUs .eqCnty:before {
    top: 12px;
    left: 10px
}

footer .FM_cont_sec.FM_cont_sec_idnfd {
    min-height: 450px
}

.FM_stky_frm.FM_stky_frm_idnt {
    min-height: 420px
}

.FM_COntus .FM_be-mfrm .beW3 {
    padding-left: 50px
}

.FM_COntus .oeCnty .as_arrow {
    top: 4px
}

.FM_COntus .eqFrUs .eqCnty:before {
    left: 11px;
    top: 11px
}

.FM_RELTD .FM_sidimg {
    padding-bottom: 40px
}

.FM_rvwCntnr select {
    border-radius: 4px;
    padding: 7px 20px 7px 10px;
    font-weight: 700
}

.loader {
    display: none;
    width: 30px;
    height: 30px;
    left: 34%
}

.FM_hlp_rvw {
    padding: 6px 15px;
    border-radius: 4px
}

.FM_p_prd .FM_sldr_Wpr,
.FM_p_prd .FM_sldr_iW {
    min-height: auto;
    max-height: 280px
}

.FM_p_prd li {
    transition: .2s ease-out
}

.FM_p_prd li:hover {
    box-shadow: 3px 5px 4px 0 rgb(0 0 0 / 20%)
}

.FM_p_prd .FM_sldrB {
    max-width: 186px;
    min-width: 186px;
    max-height: 280px;
    min-height: 256px
}

.FM_p_prd .FM_sldrB figure,
.FM_p_prd .FM_sldrB figure span {
    height: 184px;
    width: 184px
}

.FM_p_prd .FM_sldrB img {
    max-width: 184px;
    max-height: 184px
}

.FM_p_prd .FM_sldrArw {
    top: 105px
}

.FM_p_glry .FM_ps_l {
    left: -5px
}

.FM_p_glry .FM_ps_r {
    right: -5px
}

.FM_p_prd_no>a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%
}

#google-reviews {
    display: flex;
    flex-wrap: wrap
}

span.review-profile-image {
    float: left;
    padding: 0 15px 0 0
}

span.review-profile-image img {
    width: 40px
}

.review-item {
    margin: 5px auto;
    display: block;
    width: 100%;
    padding: 15px 0
}

.FM_RecomndW ul li,
.more_photos {
    padding: 0 10px;
    text-align: center
}

.more_photos {
    height: 30px;
    border-radius: 42px;
    width: 145px;
    z-index: 1;
    color: #068076;
    left: 10px;
    bottom: 20px;
    border: 1px solid #068076;
    line-height: 28px;
    overflow: hidden;
    transition: .2s;
    background: rgba(255, 255, 255, .8);
    cursor: pointer
}

.more_photos span {
    font-size: 14px;
    font-weight: 700
}

.Prd_tooltip .Prd_tooltip_cont {
    display: none;
    min-width: max-content
}

.Prd_tooltip:hover .Prd_tooltip_cont {
    display: block;
    background: #f0f0f0;
    max-width: 200px;
    min-width: 50px;
    border: 1px solid #ccc;
    padding: 5px;
    color: #333;
    z-index: 9;
    left: 3px;
    bottom: 40px
}

.Prd_tooltip_cont span {
    min-width: 50px;
    max-width: 220px;
    display: block;
    line-height: 15px;
    font-weight: 700;
    font-size: 12px
}

.FM_shpCart .FM_sHpBuy {
    position: absolute;
    bottom: 80px;
    padding-bottom: 5px
}

.FM_shpCart h3 a {
    overflow: hidden;
    overflow-wrap: break-word
}

.FM_sHpBuy.FM_gbqBtn>a {
    font-size: 16px;
    color: #fff;
    background: #02625a;
    background: -webkit-gradient(linear, left top, left bottom, from(#058b80), to(#02625a));
    background: -moz-linear-gradient(top, #058b80, #02625a);
    border: 1px solid #02625a;
    border-radius: 3px;
    padding: 10px 0;
    width: 180px;
    display: inline-block;
    margin: 0 auto
}

.FM_shpCart.FM_prdcat .Fm_pCat ul li {
    padding: 0 0 97px
}

.slid_height {
    height: 302px
}

.FM_FetCat a img {
    max-height: 100%;
    max-width: 100%
}

.dflxG {
    display: grid
}

.Gtc3 {
    grid-template-columns: 1fr 1fr 1fr
}

.FM_jis {
    justify-items: flex-start
}

.gap10 {
    gap: 10px
}

.gap15 {
    gap: 15px
}

.FM_FetCat {
    box-shadow: 0 1px 2px #a29f9f;
    padding: 7px 7px 7px 0;
    height: 110px;
    gap: 5px
}

.FM_FetCatImg {
    width: 125px;
    height: 110px
}

.FM_FetCatprwrp {
    height: 74px
}

.FM_RecomndW {
    box-shadow: 2px 3px 4px #ccc
}

.FM_RecomndW h2 {
    padding: 10px 0 0 10px;
    margin: 0 0 10px;
    color: #111
}

.FM_RecomndW ul li {
    box-sizing: border-box;
    display: table-cell;
    float: left;
    height: 260px;
    list-style: none;
    margin-top: 20px
}

.FM_RecomndW ul li .plk {
    text-align: center;
    width: 100%;
    display: table
}

.FM_RecomndW ul li .nfav {
    word-break: break-word;
    color: #333;
    font-size: 15px;
    height: 36px;
    line-height: 18px;
    margin: 6px;
    padding: 0 4px;
    overflow: hidden;
    display: table-cell
}

.FM_RecomndW ul li .pimbyr {
    display: table;
    width: 100%;
    height: 150px;
    margin-top: -5px
}

.FM_RecomndW ul li figure {
    display: table-cell;
    height: 150px;
    width: 100%
}

.FM_RecomndW ul li figure img {
    max-height: 150px;
    max-width: 100%
}

.FM_RecomndW ul li .btnn {
    background-color: #068076;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font: 600 16px/1.3 Arial, Helvetica, sans-serif;
    padding: 9px 0 7px;
    width: 150px
}

.FM_RecomndW ul li:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
    transition: .5s
}

.MDC .namePlace-1 {
    margin-top: -70px
}

a.FM_C20 {
    color: #484848;
    line-height: 22px
}

[data-tooltip]:after:focus,
[data-tooltip]:after:hover,
[data-tooltip]:before:focus,
[data-tooltip]:before:hover,
[data-tooltip]:focus,
[data-tooltip]:hover {
    -webkit-outline: none;
    -moz-outline: none;
    outline: 0
}

[data-tooltip]:after,
[data-tooltip]:before {
    visibility: hidden;
    opacity: 0;
    pointer-events: none
}

[data-tooltip]:before {
    position: absolute;
    bottom: -275px;
    left: 484%;
    margin-bottom: 189px;
    margin-left: -110px;
    padding: 7px;
    width: 217px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: rgba(51, 51, 51, .9);
    color: #fff;
    content: attr(data-tooltip);
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    z-index: 1
}

[data-tooltip]:after {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    border-bottom: 5px solid rgba(51, 51, 51, .9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    font-size: 0;
    line-height: 0
}

[data-tooltip]:hover:after,
[data-tooltip]:hover:before {
    visibility: visible;
    opacity: 1;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out
}

@media (max-width: 1200px) {
    .review-item {
        flex: 1 1 40%
    }
}

@media (max-width: 450px) {
    .review-item {
        flex: 1 1 90%
    }
}

.review-meta,
.review-stars {
    text-align: left;
    font-size: 115%
}

.review-author {
    text-transform: capitalize;
    font-weight: 700
}

.review-date {
    opacity: .6;
    display: block
}

.review-text {
    line-height: 1.55;
    text-align: left;
    max-width: 72em;
    margin: auto
}

.review-stars ul {
    display: inline-block;
    list-style: none !important;
    margin: 0;
    padding: 0
}

.review-stars ul li {
    float: left;
    list-style: none !important;
    margin-right: 1px;
    line-height: 1
}

.review-stars ul li i {
    color: #e4b248;
    font-size: 1.4em;
    font-style: normal
}

.review-stars ul li i.inactive {
    color: #c6c6c6
}

.star:after {
    content: "\2605"
}

@media screen and (-webkit-min-device-pixel-ratio: 1.1) {

    _:-webkit-full-screen,
    .FM_Hsr .FM_str>span:first-child,
    .FM_Hsr .FM_sRt {
        font-size: 34px
    }
}

.GallPop {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    text-align: left;
    z-index: 999
}

.GalPopC {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4
}

.GalPopCon {
    min-height: 96vh !important;
    width: 80vw;
    padding: 10px
}

.GalPopCon .be-arLN::after,
.GalPopCon .be-arRN::after {
    border: 4px solid #c5c5c5;
    border-right: 0;
    border-bottom: 0
}

.FM_PhotGall-1 {
    min-width: 252px;
    max-width: 252px;
    margin-right: 9px
}

.FM_sid_txt-1 {
    padding: 1px 5px 10px 10px;
    line-height: 16px
}

.FM_PhoyoName {
    padding: 0 5px 0 10px;
    line-height: 22px;
    display: inline-block;
    max-width: 229px;
    overflow: hidden;
    text-overflow: ellipsis
}

.FM_Phtimg-1>a,
.FM_Phtimg-1>a>img {
    max-width: 250px;
    max-height: 250px;
    object-fit: cover;
    cursor: pointer
}

.FM_PDP {
    width: 252px
}

.Photo-Gallry-Cont {
    row-gap: 20px;
    column-gap: 19px
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {

    .FM_RELTD.wdiL,
    .FM_nPDP,
    .bl_form,
    .wrapper.fcp_m1.FM_bg0>.FM_p52.FM_cb.FM_bg0,
    .wrapper>.FM_ds2.FM_m12.FM_w1.FM_p18,
    .wrapper>.first-sec {
        min-width: 1000px;
        margin: 0 auto;
        background-color: #fff
    }

    .bl_form {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .cntr_rpts,
    .wrapper>.first-sec {
        box-sizing: border-box
    }

    .wrapper>.FM_ds2.FM_m12.FM_w1.FM_p18 {
        padding-top: 30px
    }

    .FM_RELTD.wdiL {
        flex-direction: row
    }

    body {
        overflow-x: hidden
    }

    .FM_Cont-data>p {
        margin-left: 20px
    }

    .cntr_rpts .FM_m12 {
        margin-top: 0
    }

    .cntr_rpts {
        padding: 20px 13px 10px
    }

    .cntr_rpts .FM_p18 {
        padding-bottom: 0
    }
}

@-moz-document url-prefix() {
    .FM_vrf_2 {
        margin: -2px 5px 0 0
    }

    .FM_gst_l,
    .FM_trs_l {
        margin: -1px 5px 0 0
    }
}

@media all and (-ms-high-contrast:none) {
    .FM_stky_frm .FM_be-mfrm .belft.beW11 {
        margin-top: 40px
    }

    .FM_stky_frm .FM_be-mfrm .belft.beW11,
    ::-ms-backdrop {
        margin-top: 40px
    }
}

@media screen and (min-width: 1920px) and (max-width:2560px) {
    .FM_rvw {
        padding-left: 25px;
        padding-right: 25px;
        margin-right: 25px
    }
}

@media screen and (min-width: 1600px) and (max-width:1920px) {
    .FM_HvB img {
        max-width: 100%;
        max-height: 100%;
        width: 350px;
        height: 210px
    }

    .FM_p_glry .FM_sldr,
    .FM_p_prd .FM_sldr {
        max-width: 1220px
    }

    .FM_sldrB:hover .FM_sldrTxt .fasC:hover {
        top: 25px;
        position: absolute;
        left: 15px;
        width: 91%
    }

    .FM_smpnew .FM_Scat li a>span:nth-of-type(2),
    .FM_smpnew .FM_Scat li>span>span:nth-of-type(2) {
        max-width: 300px;
        max-height: 300px;
        min-width: 300px;
        min-height: 300px
    }

    .FM_smpnew ul.FM_Scat li {
        min-width: 302px;
        max-width: 302px
    }

    .FM_p_glry .FM_sldrB img,
    .FM_smpnew .FM_Scat li span img {
        max-width: 300px;
        max-height: 300px
    }

    .FM_smpnewHgt {
        max-height: 422px
    }

    .prd_bdyN .FM_sid_contr {
        width: 95.2%
    }

    .FM_p_glry .FM_sldr,
    .FM_p_glry .FM_sldr_Wpr,
    .FM_p_glry .FM_sldr_iW {
        max-height: 302px;
        min-height: 302px
    }

    .FM_p_glry .FM_sldrB {
        max-width: 300px;
        min-width: 300px;
        max-height: 300px;
        min-height: 300px
    }

    .FM_p_glry .FM_sldrB figure,
    .FM_p_glry .FM_sldrB figure span {
        height: 300px;
        width: 300px
    }

    .FM_rvw_img_ftr>span {
        margin-bottom: 34px;
        margin-right: 34px
    }

    .FM_rvw_img.FM_rvw_img_ftr>span:nth-of-type(9n),
    .FM_rvw_img_ftr>span:nth-of-type(9n) {
        margin-right: 0
    }

    .CWSIM .FM_rvw_img>span,
    .FM_rvw_img.FM_rvw_img_ftr>span:nth-of-type(3n),
    .MDC .FM_rvw_img>span,
    .TDWIM .FM_rvw_img>span {
        margin-right: 30px
    }

    .FM_pflePrd .FM_zoom {
        right: 220px
    }

    .FCP .FM_COPV .FM_p25 {
        padding: 20px 218px
    }

    .FCP .FM_COPRe .FM_p25 {
        padding: 20px 270px
    }

    .FCP .prd_bdyN .FM_w3.FCP_pNew {
        width: 1140px
    }

    .FM_Head.stkyH,
    .FM_RELTD.wdiL,
    .wrapper {
        max-width: 1500px
    }

    .stkyH>div:first-of-type {
        max-width: 530px
    }

    .FM_HvidsS_in {
        width: 355px
    }

    .stkyH .FM_sRCH.FM_onsch {
        width: 256px
    }

    .FM_HvB {
        width: 350px;
        height: 210px
    }

    footer .FM_w400 {
        width: 605px
    }

    .FM_sldrArw {
        top: 160px
    }

    .FM_Abt .FM_AaRt {
        width: 347px
    }

    .FM_sldr {
        max-width: 1401px
    }

    .FM_sldrB {
        max-width: 350px;
        min-width: 350px
    }

    .FM_sldrB figure,
    .FM_sldrB figure a span {
        height: 350px;
        width: 350px
    }

    .FM_sldrB img {
        max-width: 348px;
        max-height: 348px
    }

    .FM_sldrB:hover .FM_sldrTxt {
        height: 110px;
        padding: 0 15px 15px
    }

    .FM_sldrTxt {
        padding: 15px
    }

    .FM_NSlde .FM_sldr {
        max-width: 701px;
        min-width: 352px
    }

    .FM_NSlde .FM_sldr,
    .FM_NSlde .FM_sldr_iW,
    .FM_sldr {
        max-height: 352px;
        min-height: 352px
    }

    .FM_NSlde .FM_sldr_Wpr,
    .FM_sldrB,
    .FM_sldr_Wpr,
    .FM_sldr_iW {
        max-height: 350px;
        min-height: 350px
    }

    _:-ms-fullscreen,
    :root .FM_hp,
    _:-ms-lang(x),
    .FM_hp {
        width: 1500px
    }

    .hv_txt {
        top: 56%
    }

    _:-ms-fullscreen,
    :root .FM_nPDP,
    _:-ms-fullscreen,
    :root .fcp_bdcrm_58,
    _:-ms-fullscreen,
    :root .FM_RELTD.wdiL,
    _:-ms-fullscreen,
    :root .wrapper>.FM_ds2.FM_m12.FM_w1.FM_p18,
    _:-ms-fullscreen,
    :root .wrapper>.first-sec,
    _:-ms-fullscreen,
    :root .fcp_bdcrm_58 .fcp_bdcrm_wrap,
    _:-ms-fullscreen,
    :root .wrapper.fcp_m1.FM_bg0>.FM_p52.FM_cb.FM_bg0,
    _:-ms-fullscreen,
    :root .bl_form,
    _:-ms-fullscreen,
    :root .cntr_rpts,
    _:-ms-fullscreen,
    :root .FM_hp .FM_Pr-dR _:-ms-lang(x),
    .FM_nPDP,
    _:-ms-lang(x),
    .fcp_bdcrm_58,
    _:-ms-lang(x),
    .FM_RELTD.wdiL,
    _:-ms-lang(x),
    .wrapper>.FM_ds2.FM_m12.FM_w1.FM_p18,
    _:-ms-lang(x),
    .wrapper>.first-sec,
    _:-ms-lang(x),
    .fcp_bdcrm_58 .fcp_bdcrm_wrap,
    _:-ms-lang(x),
    .wrapper.fcp_m1.FM_bg0>.FM_p52.FM_cb.FM_bg0,
    _:-ms-lang(x),
    .bl_form,
    _:-ms-lang(x),
    .cntr_rpts,
    _:-ms-lang(x),
    .FM_hp .FM_Pr-dR {
        max-width: 1500px
    }

    .FM_fShtCntnt>div div {
        min-width: 410px;
        max-width: 410px
    }

    .FM_sm>li {
        width: 260px
    }

    .FM_COPV .FM_Marg {
        margin-right: 10px
    }

    .FM_COPV .FM_VbTM1 {
        padding-bottom: 110px
    }

    .FM_ptb18 {
        padding: 48px
    }

    .FM_prdcat .Fm_pCat ul li {
        margin-right: 42px
    }

    .FM_npdpP {
        padding: 15px 62.5px 25px
    }

    .FM_nPDP .wdiL .FM_w430,
    .FM_w412,
    .prd_bdyN .wdiL .FM_w430,
    .wdiL .FM_w430 {
        width: 480px
    }

    .FM_gbqBtn:nth-of-type(2) {
        bottom: 15px
    }

    .FM_st_f {
        margin: -50px 0 20px 60px
    }

    .prd_bdyN .FM_w3 {
        width: 1310px
    }

    .fm_Nop .FM_w3 {
        width: 1510px
    }

    .FM_w6 {
        width: 1500px
    }

    .FM_gbqBtn,
    .FM_gbqBtn_get {
        bottom: 0
    }

    .FM_ps_t .FM_gbqBtn_get:nth-of-type(2) {
        bottom: 1px
    }

    body {
        min-height: 920px
    }

    .FM_AaRt.FM_w200,
    .FM_prdcat .Fm_pCat ul .FM_w200,
    .main_img-1.FM_w200 {
        width: 250px
    }

    .FM_REL .FM_hmIN200 {
        min-height: 250px
    }

    .FM_REL .FM_PrdR figure img {
        max-width: 248px;
        max-height: 248px
    }

    .main_img-1 img {
        max-width: 228px;
        max-height: 228px
    }

    .main_img-1 .FM_h_M198 {
        min-height: 249px
    }

    .main_img .FM_h400 {
        height: 500px
    }

    .FM_prdimg .FM_h400 {
        height: 498px
    }

    .main_img .FM_w400 {
        width: 499px
    }

    .FM_prdpge img {
        max-width: 500px;
        max-height: 500px
    }

    .FM_m28 {
        margin: 15px 46px 18px
    }

    .FM_REL .FM_PrdR {
        margin: 0 34px 0 0
    }

    .FM_REL .FM_w275 {
        width: 313px
    }

    .FM_sTND {
        padding-left: 520px;
        width: 527px
    }

    .FM_h1 {
        height: 611px
    }

    .FM_VID figure img {
        max-width: 340px;
        max-height: 210px;
        min-width: 340px
    }

    .FM_VID .FM_h159 {
        height: 210px
    }

    .FM_PRD .FM_w280,
    .FM_VID .FM_w280 {
        width: 340px
    }

    .FM_PRD .FM_wm280 {
        max-width: 340px
    }

    .FM_VID .FM_PrdR {
        margin: 0 128px 15px 0
    }

    .FM_Head .FM_w80 {
        width: 90%
    }

    .FM_REL .FM_hm200,
    .FM_prdcat .main_img-1 figure,
    .FM_prdcat .main_img-1 img {
        max-height: 250px
    }

    .FM_REL .FM_h200,
    .FM_prdcat .main_img-1 .FM_h200,
    .main_img-1.FM_h200 {
        height: 250px
    }

    .FM_REL .FM_wm200,
    .FM_prdcat .main_img-1 figure,
    .FM_prdcat .main_img-1 img {
        max-width: 250px
    }

    .FM_COntus .FM_w12 {
        width: 295px
    }

    .FM_nav .ddnav {
        max-width: 1254px
    }

    .FM_nav .ddnav li {
        max-width: 294px
    }

    .FM_nav .ddnav_4,
    .FM_nav .prdNav {
        max-width: 1480px;
        min-width: 1480px
    }

    .FM_nav .ddnav_4 li,
    .FM_nav .prdNav li {
        max-width: 294px;
        min-width: 23%
    }

    .FM_prdimg,
    .main_img .FM_Blur:before {
        width: 500px;
        height: 500px
    }

    .Fm_pDes:nth-of-type(3),
    .Fm_pName:nth-of-type(2) {
        padding-left: 520px;
        width: 720px
    }

    .FM_gbqBtn:nth-of-type(4),
    .FM_gbqBtn:nth-of-type(5) {
        width: 720px;
        margin-left: 520px
    }

    .Fm_pDes:nth-of-type(2),
    .Fm_pName:first-of-type {
        width: 1239px
    }

    .FM_gbqBtn:nth-of-type(2),
    .Fm_pName:nth-last-of-type(2) {
        width: 500px;
        padding-left: 0
    }

    .Fm_pDes:nth-of-type(2) .FM_cntnt,
    .Fm_pDes:nth-of-type(3) .FM_cntnt {
        max-height: 385px;
        padding-left: 0
    }

    .FM_pflePrd figure {
        max-width: 252px;
        min-width: 252px;
        max-height: 252px;
        min-height: 252px
    }

    .FM_COPV .FM_p25 {
        padding: 20px 288px
    }

    .FM_COPRe .FM_p25 {
        padding: 20px 338px
    }

    .FM_COPV .FM_Marg .FM_w21,
    .FM_COPV .FM_Marg img {
        width: 321px
    }

    .FM_COntus .FM_w3 {
        width: 800px
    }

    .FM_COntus .FM_w13 {
        width: 640px
    }

    .fig-bgk:before,
    ul.recViewitemFcp li .pimbyr,
    ul.recViewitemFcp li figure {
        width: 250px !important;
        height: 250px !important
    }

    ul.recViewitemFcp li {
        margin: 0 18px 50px 7px !important;
        width: 343px !important
    }

    ul.recViewitemFcp li .pimbyr {
        border: 1px solid #efefef !important
    }

    ul.recViewitemFcp li figure img {
        max-width: 250px !important;
        max-height: 250px !important
    }

    .blur-fcp-img {
        background-size: 250px 250px !important
    }

    .sug-ss.as_ui-widget-content li,
    .sug-ss.ui-menu.ui-widget {
        width: 301px !important
    }

    .FM_Blur:before {
        width: 498px;
        height: 498px
    }

    .main_img-1 .FM_Blur:before,
    .main_img-1 .blur-img {
        width: 250px;
        height: 250px
    }

    .blur-img {
        background-size: 500px 500px;
        width: 500px;
        height: 500px
    }

    .fcp_srch {
        width: 84%
    }

    .fcp_Ad-2 {
        width: 720px
    }

    .FM_Pr-dR .FM_text li {
        width: 100%
    }

    .FM_w22 {
        width: 88%
    }

    .main_img-1 .blur-img {
        background-size: 250px 250px
    }

    .FM_snglCat .FM_gbqBtn:nth-of-type(4),
    .FM_snglCat .FM_gbqBtn:nth-of-type(5),
    .FM_snglCat .Fm_pDes:nth-of-type(3),
    .FM_snglCat .Fm_pName:nth-of-type(2) {
        width: 913px
    }

    .FM_snglCat .FM_npdpP {
        padding: 15px 109.9px 25px
    }

    .FM_snglCat .Fm_pDes:nth-of-type(2),
    .FM_snglCat .Fm_pName:first-of-type {
        width: 1460px
    }

    .FM_snglCat .Fm_pName:nth-last-of-type(2) {
        width: 500px
    }

    .FM_snglCat .FM_npdpP_io .FM_prdimg {
        margin-left: 0
    }

    .FM_Social.FM_m55 {
        margin-right: 389px
    }

    .stmp {
        width: 1440px
    }

    .multiimg .Fm_pDes:nth-of-type(3),
    .multiimg .Fm_pName:nth-of-type(2) {
        padding-left: 624px;
        width: 616px
    }

    .FM_npdpP_io.multiimg .Fm_pDes:nth-of-type(3),
    .FM_npdpP_io.multiimg .Fm_pName:nth-of-type(2) {
        width: 581px
    }

    .FM_npdpP_io.multiimg .FM_gbqBtn:nth-of-type(3),
    .FM_npdpP_io.multiimg .FM_gbqBtn:nth-of-type(4) {
        margin-left: 0;
        width: 580px
    }

    .thumbnail-container:nth-child(3) {
        max-height: 468px
    }

    .FM_PTnal ul li {
        margin: 12px 4px;
        max-width: 88px;
        min-width: 88px;
        max-height: 88px;
        min-height: 88px
    }

    .CWSIM .multiimg .FM_prdpge>.FM_ps_t,
    .FCP .multiimg .FM_prdpge>.FM_ps_t,
    .MDC .multiimg .FM_prdpge>.FM_ps_t,
    .TDWIM .multiimg .FM_prdpge>.FM_ps_t {
        padding-left: 105px
    }

    .multiimg .FM_gbqBtn:nth-of-type(3),
    .multiimg .FM_gbqBtn:nth-of-type(4) {
        margin-left: 590px;
        width: 650px
    }

    .FM_snglCat .FM_npdpP.FM_npdpP_io.multiimg {
        padding: 15px 57px 15px 58px
    }

    .FM_snglCat .multiimg .Fm_pDes:nth-of-type(3),
    .FM_snglCat .multiimg .Fm_pName:nth-of-type(2) {
        width: 805px
    }

    .FM_snglCat .multiimg .FM_gbqBtn:nth-of-type(3),
    .FM_snglCat .multiimg .FM_gbqBtn:nth-of-type(4) {
        width: 836px
    }

    .FM_npdpP.FM_npdpP_io.multiimg {
        padding: 15px 12px 25px 8px
    }

    .FM_sldrB:hover .FM_sldrTxt>a {
        margin-top: -25px
    }

    .tab-content {
        gap: 45px
    }

    .FM_nav .prdNav.prdNavall2 {
        max-width: 1480px;
        min-width: 630px
    }

    .stkyH .FM_nav .prdNavall {
        left: -730px
    }

    .stkyH .FM_nav .singleB2B .prdNavall {
        left: -828px
    }

    .stkyH .FM_nav .ecom_header_nav .prdNavall {
        left: -992px
    }

    .stkyH .FM_nav .ecom_header_nav_1 .prdNavall {
        left: -842px
    }
}

@media screen and (min-width: 1280px) and (max-width:1359px) {

    .FM_p_glry .FM_sldrB,
    .FM_smpnew .FM_Scat li>span>span:nth-of-type(2) {
        max-width: 238px;
        max-height: 238px;
        min-width: 238px;
        min-height: 238px
    }

    .FM_RELTD.wdiL .FM_Pr-dR .FM_AaRt1:nth-child(3n),
    .FM_smpnew2 {
        margin-right: 0
    }

    .FM_nav>ul>li>a {
        display: block;
        padding: 11px 25px 10px;
        text-align: center;
        line-height: 1.17
    }

    .FM_p_glry .FM_sldrB img,
    .FM_smpnew .FM_Scat li span img {
        max-width: 238px;
        max-height: 238px
    }

    .FM_p_prd .FM_sldr {
        max-width: 900px
    }

    .FM_p_prd .FM_sldrB {
        max-width: 164px;
        min-width: 164px
    }

    .FM_p_prd .FM_sldrB figure,
    .FM_p_prd .FM_sldrB figure span {
        height: 162px;
        width: 162px
    }

    .FM_p_prd .FM_sldrB img {
        max-width: 162px;
        max-height: 162px
    }

    .FM_p_prd .FM_sldr,
    .FM_p_prd .FM_sldrB,
    .FM_p_prd .FM_sldr_Wpr,
    .FM_p_prd .FM_sldr_iW {
        min-height: 252px;
        max-height: 252px
    }

    .FM_NSlde .FM_sldr,
    .FM_sldr,
    .FM_sldr_Wpr,
    .FM_sldr_iW {
        max-height: 272px;
        min-height: 272px
    }

    .FM_p_glry .FM_sldrB figure,
    .FM_p_glry .FM_sldrB figure span {
        width: 238px;
        height: 238px
    }

    .FM_p_glry .FM_sldrArw .FM_ps_r {
        right: -11px
    }

    .FM_p_glry .FM_sldrArw .FM_ps_l {
        left: -11px
    }

    .FM_smpnew ul.FM_Scat li {
        min-width: 240px;
        max-width: 240px;
        margin-right: 20px
    }

    .FM_smpnew2 {
        margin-left: 19px
    }

    .FM_smpnew.FM_smpnew2 ul.FM_Scat li {
        margin-right: 17px
    }

    .FM_snglCat .multiimg .Fm_pDes:nth-of-type(3),
    .FM_snglCat .multiimg .Fm_pName:nth-of-type(2) {
        width: 615px
    }

    .FM_snglCat .multiimg .FM_gbqBtn:nth-of-type(3),
    .FM_snglCat .multiimg .FM_gbqBtn:nth-of-type(4) {
        width: 580px
    }

    .FM_snglCat .thumbnail-container:nth-child(3) {
        height: 347px
    }

    .FM_pflePrd .FM_zoom {
        right: 0;
        height: 470px;
        width: 470px
    }

    .FM_rvw_img_ftr>span:nth-of-type(8n) {
        margin-right: 25px
    }

    .FM_rvw_img>span {
        width: 226px;
        height: 226px
    }

    .FM_rvw_img img {
        max-width: 224px;
        max-height: 224px
    }

    .FM_bgH.FM_Opc1:after,
    .FM_cont_sec.footr:after,
    .FM_w6 {
        width: 1200px
    }

    .MDC .FM_nPDP .FM_rvw.FM_us .FM_pbarC,
    .TDWIM .FM_nPDP .FM_rvw.FM_us .FM_pbarC {
        width: 225px
    }

    .CWSIM .FM_nPDP .FM_rvw .FM_pbarC,
    .MDC .FM_nPDP .FM_rvw .FM_pbarC,
    .TDWIM .FM_nPDP .FM_rvw .FM_pbarC {
        width: 152px
    }

    .FCP .FM_nPDP .FM_rvw .FM_pbarC {
        width: 110px
    }

    .FCP .FM_nPDP .FM_rvw.FM_us .FM_pbarC {
        width: 130px
    }

    .FCP .FM_nPDP .FM_Hsr .FM_str>span:first-child,
    .FM_Hsr .FM_sRt {
        font-size: 35px
    }

    .FM_sidsdr {
        margin-left: 7px;
        margin-right: 7px
    }

    .FM_Limg figure {
        max-width: 180px;
        min-width: 180px;
        max-height: 180px;
        min-height: 180px
    }

    .FM_Limg img {
        max-width: 178px;
        max-height: 178px
    }

    .FM_Limg-2 figure {
        max-width: 382px;
        min-width: 382px;
        max-height: 382px;
        min-height: 382px
    }

    .FM_Limg-2 img {
        max-width: 380px;
        max-height: 380px
    }

    .FM_rAdCindx .FM_prdcat .Fm_pCat ul li {
        margin-right: 28px
    }

    .fcp_raw-item .FM_p10.FM_pnsExt {
        padding: 8px 3px
    }

    .FCP .FM_COPV .FM_p25 {
        padding: 20px 40px
    }

    .FCP .FM_COPRe .FM_p25 {
        padding: 20px 118px
    }

    .FCP .prd_bdyN .FM_w3.FCP_pNew {
        width: 840px
    }

    .FM_Head.stkyH,
    .FM_RELTD.wdiL,
    .stkyH,
    .wrapper {
        max-width: 1200px
    }

    .stkyH>div:first-of-type {
        max-width: 330px
    }

    .FCP .stkyH .FM_nav .ddnav.ddnav_2 {
        right: -477px
    }

    .stkyH .FM_sRCH.FM_onsch {
        width: 184px
    }

    .FM_Limg .FM_m4:nth-child(4n) {
        margin-right: 16px
    }

    .FM_pfle .FM_fSht {
        width: 815px
    }

    .FM_prdcat .Fm_pCat ul li {
        margin-right: 9px
    }

    .FM_fShtCntnt>div div {
        min-width: 310px;
        max-width: 310px
    }

    .FM_sm>li {
        width: 207px
    }

    .FM_npdpP {
        padding: 20px 36px
    }

    .Fm_pDes:nth-of-type(2),
    .Fm_pName:first-of-type {
        width: 940px;
        padding-left: 0
    }

    .Fm_pDes:nth-of-type(3),
    .Fm_pName:nth-of-type(2) {
        padding-left: 420px;
        width: 520px
    }

    .FM_gbqBtn:nth-of-type(2),
    .Fm_pName:nth-last-of-type(2) {
        width: 403px;
        padding-left: 0
    }

    .FM_nPDP .wdiL .FM_w430,
    .prd_bdyN .wdiL .FM_w430 {
        width: 385px
    }

    .FM_st_f {
        margin: -50px 0 20px 10px
    }

    .FM_stky_frm {
        width: 343px
    }

    footer .FM_w400 {
        width: 440px
    }

    .FM_REL .FM_Pr-dR .FM_AaRt2:nth-child(5),
    .FM_REL .FM_Pr-dR .FM_AaRt2:nth-child(6) {
        margin-top: 20px
    }

    .Fm_pName:nth-last-of-type(2) {
        padding-left: 0
    }

    .FM_nav .ddnav,
    .FM_nav .ddnav>ul,
    .FM_nav .prdNav {
        max-width: 1193px;
        min-width: 272px
    }

    .FM_nav .ddnav>ul.FM_ctgry {
        max-width: 915px;
        min-width: 272px
    }

    .FM_nav .ddnav li,
    .FM_nav .prdNav li {
        min-width: 265px;
        max-width: 265px
    }

    .FM_nav .ddnav .FM_ctgry li {
        min-width: 275px;
        max-width: 275px
    }

    .FM_w13 {
        width: 494px
    }

    .FM_COntus .beW11 input {
        width: 450px
    }

    .FM_stky_frm textarea.FM_be-slbox {
        height: 103px
    }

    .FM_stky_frm .FM_be-mfrm .beW3 {
        width: 248px
    }

    .FM_PAdd,
    .FM_stky_frm .FM_be-mfrm .bT1-st3,
    .FM_stky_frm .FM_be-slbox {
        width: 250px
    }

    .FM_stky_frm .FM_be-mfrm .beW6 {
        width: 180px
    }

    .FM_be-slbox,
    .FM_stky_frm .be-input.FM_benords {
        font-size: 14px
    }

    .FM_stky_frm .FM_bgin15 {
        font-size: 19px
    }

    .FM_stky_frm .FM_f22 {
        font-size: 18px
    }

    .FM_w82 {
        width: 72%
    }

    .FM_COPV .FM_ptb18 {
        padding: 15px
    }

    .FM_REL .FM_m28 {
        margin: 15px 33px 18px
    }

    .FM_REL .FM_w275 {
        width: 255px
    }

    .FM_RELTD .FM_w412 {
        width: 384px
    }

    .sug-ss.as_ui-widget-content li,
    .sug-ss.ui-menu.ui-widget {
        width: 228px !important
    }

    .FM_stky_frm .FM_be-mfrm .dropdown dd ul {
        width: 238px !important
    }

    .FM_stky_frm .FM_be-mfrm .be-msghlp {
        font-size: 11px
    }

    .FM_stky_frm .FM_m43 {
        margin: 12px 9px 0
    }

    .FM_VID .FM_PrdR {
        margin: 0 69px 15px 0
    }

    .FM_REL .FM_PrdR {
        margin: 0 11px 0 0
    }

    .FM_RELTD .FM_AaRt1 {
        margin: 0 10px 15px 0
    }

    .FM_AaRt.FM_p4 {
        padding: 0 7px
    }

    ul.recViewitemFcp li {
        width: 281px !important
    }

    a.valtxt,
    a.valtxt:hover {
        margin: 0 19px 10px 15px !important
    }

    .FM_COntus .FM_w3 {
        width: 658px
    }

    .FM_COPV .FM_p25 {
        padding: 20px 138px
    }

    .FM_COPRe .FM_p25 {
        padding: 20px 188px
    }

    .fcp_srch {
        width: 78%
    }

    .FM_RELTD.wdiL .FM_Pr-dR .FM_AaRt1 {
        margin: 0 9px 10px 0
    }

    .FM_m50 {
        margin: 16px 10px 0 0
    }

    .FM_cont_sec .FM_w7 {
        width: 76%
    }

    .FM_snglCat .Fm_pName:nth-last-of-type(2),
    .fcp_Ad-2 {
        width: 500px
    }

    .FM_HvB,
    .FM_HvidsS_in {
        width: 275px
    }

    .prd_bdyN .FM_w3 {
        width: 1010px
    }

    .fm_Nop .FM_w3 {
        width: 1210px
    }

    .FM_gbqBtn:nth-of-type(4),
    .FM_gbqBtn:nth-of-type(5) {
        margin-left: 420px;
        width: 520px
    }

    .cat_indx .FM_h200 {
        height: 216px
    }

    .cat_indx .FM_w200 {
        width: 216px
    }

    .FM_COPV .FM_Marg .FM_w21,
    .FM_COPV .FM_Marg img {
        width: 285px
    }

    .FM_COPV .FM_Marg .mvidimg,
    .FM_COPV .FM_Marg .mvidimg img {
        height: 190px
    }

    _:-ms-fullscreen,
    :root .FM_nPDP,
    _:-ms-fullscreen,
    :root .fcp_bdcrm_58,
    _:-ms-fullscreen,
    :root .FM_RELTD.wdiL,
    _:-ms-fullscreen,
    :root .wrapper>.FM_ds2.FM_m12.FM_w1.FM_p18,
    _:-ms-fullscreen,
    :root .wrapper>.first-sec,
    _:-ms-fullscreen,
    :root .fcp_bdcrm_58 .fcp_bdcrm_wrap,
    _:-ms-fullscreen,
    :root .wrapper.fcp_m1.FM_bg0>.FM_p52.FM_cb.FM_bg0,
    _:-ms-fullscreen,
    :root .bl_form,
    _:-ms-fullscreen,
    :root .cntr_rpts,
    _:-ms-lang(x),
    .FM_nPDP,
    _:-ms-lang(x),
    .fcp_bdcrm_58,
    _:-ms-lang(x),
    .FM_RELTD.wdiL,
    _:-ms-lang(x),
    .wrapper>.FM_ds2.FM_m12.FM_w1.FM_p18,
    _:-ms-lang(x),
    .wrapper>.first-sec,
    _:-ms-lang(x),
    .fcp_bdcrm_58 .fcp_bdcrm_wrap,
    _:-ms-lang(x),
    .wrapper.fcp_m1.FM_bg0>.FM_p52.FM_cb.FM_bg0,
    _:-ms-lang(x),
    .bl_form,
    _:-ms-lang(x),
    .cntr_rpts {
        max-width: 1200px
    }

    _:-ms-fullscreen,
    :root .FM_stky_frm .FM_be-mfrm .beW3,
    _:-ms-lang(x),
    .FM_stky_frm .FM_be-mfrm .beW3 {
        width: 248px
    }

    .FM_HvB {
        height: 145px
    }

    .FM_HvB img {
        max-width: 275px;
        max-height: 145px
    }

    .FM_Abt .FM_AaRt {
        width: 272px
    }

    .FM_Abt .FM_AaRt>div:nth-of-type(2) {
        width: 194px
    }

    .FM_sldr {
        max-width: 1085px
    }

    .FM_sldrArw {
        top: 120px
    }

    .FM_sldrB {
        max-height: 270px;
        min-height: 270px;
        max-width: 271px;
        min-width: 271px
    }

    .FM_sldrB figure,
    .FM_sldrB figure a span {
        height: 270px;
        width: 271px
    }

    .FM_sldrB img {
        max-width: 268px;
        max-height: 268px
    }

    .FM_NSlde .FM_sldr {
        max-width: 544px;
        min-width: 272px
    }

    .FM_NSlde .FM_sldr_Wpr,
    .FM_NSlde .FM_sldr_iW {
        max-height: 270px;
        min-height: 270px
    }

    _:-ms-fullscreen,
    :root .FM_hp,
    _:-ms-lang(x),
    .FM_hp {
        width: 1200px
    }

    .FM_snglCat .FM_npdpP {
        padding: 15px 35px 25px
    }

    .FM_snglCat .FM_gbqBtn:nth-of-type(4),
    .FM_snglCat .FM_gbqBtn:nth-of-type(5),
    .FM_snglCat .Fm_pDes:nth-of-type(3),
    .FM_snglCat .Fm_pName:nth-of-type(2) {
        width: 713px
    }

    .FM_snglCat .Fm_pDes:nth-of-type(2),
    .FM_snglCat .Fm_pName:first-of-type {
        width: 1125px
    }

    .FM_Social.FM_m55 {
        margin-right: 227px
    }

    .FM_sldrArw .FM_ps_r {
        right: 10px
    }

    .FM_sldrArw .FM_ps_l {
        left: 10px
    }

    .stmp {
        width: 1140px
    }

    .multiimg .Fm_pDes:nth-of-type(3),
    .multiimg .Fm_pName:nth-of-type(2) {
        width: 423px
    }

    .multiimg .FM_gbqBtn:nth-of-type(3),
    .multiimg .FM_gbqBtn:nth-of-type(4) {
        margin-left: 545px;
        width: 392px
    }

    .FM_npdpP_io.multiimg .FM_gbqBtn:nth-of-type(3),
    .FM_npdpP_io.multiimg .FM_gbqBtn:nth-of-type(4),
    .FM_npdpP_io.multiimg .Fm_pDes:nth-of-type(3),
    .FM_npdpP_io.multiimg .Fm_pName:nth-of-type(2) {
        width: 445px
    }

    .FM_npdpP_io.multiimg .FM_prdimg {
        width: 377px;
        height: 377px
    }

    .FM_npdpP_io.multiimg .FM_Blur:before {
        width: 375px;
        height: 375px
    }

    .FM_npdpP_io.multiimg .FM_prdpge .FM_h400.FM_Db>img {
        max-width: 375px;
        max-height: 375px
    }

    .FM_npdpP_io.multiimg .FM_prdimg .FM_h400 {
        height: 375px
    }

    .FM_npdpP_io.multiimg .FM_PTnal ul li {
        max-width: 64px;
        min-width: 64px;
        max-height: 64px;
        min-height: 64px
    }

    .FCP .FM_npdpP_io.multiimg .FM_prdpge>.FM_ps_t {
        padding-left: 75px
    }

    .FM_npdpP.FM_npdpP_io.multiimg {
        padding: 15px 13px 25px 10px
    }

    .FM_snglCat .FM_npdpP.FM_npdpP_io.multiimg {
        padding: 15px 34px
    }

    .FM_stky_frm .bevT {
        font-size: 13px
    }

    .FM_stky_frm {
        height: 415px
    }

    .FM_nav .prdNavall {
        left: -110px
    }

    .stkyH .FM_nav .prdNavall {
        left: -433px
    }

    .stkyH .FM_nav .singleB2B .prdNavall {
        left: -528px
    }

    .FM_nav .ecom_header_nav .prdNavall {
        left: -467px
    }

    .stkyH .FM_nav .ecom_header_nav .prdNavall {
        left: -696px
    }

    .stkyH .FM_nav .ecom_header_nav_1 .prdNavall {
        left: -544px
    }
}

@media screen and (min-width: 1024px) and (max-width:1279px) {

    .FM_p_glry .FM_sldr,
    .FM_p_glry .FM_sldrB,
    .FM_p_glry .FM_sldr_Wpr,
    .FM_p_glry .FM_sldr_iW {
        max-height: 188px;
        min-height: 188px
    }

    .FM_smpnew ul.FM_Scat li,
    .FM_smpnew.FM_smpnew2 ul.FM_Scat li {
        margin-right: 17px
    }

    .FM_rvw_img>span:nth-of-type(2n),
    .FM_rvw_img_ftr>span:nth-of-type(6n),
    .FM_smpnew2 {
        margin-right: 0
    }

    .FM_nav>ul>li:first-of-type a {
        text-align: center;
        width: auto;
        padding: 10px;
        max-width: auto;
        min-width: auto
    }

    .H_rts .FM_nav>ul>li>a {
        padding: 11px 11px 10px
    }

    .FM_nav>ul>li>a.rdtsp {
        padding-left: 36px
    }

    .rdtsp>span:first-child {
        left: 9px;
        top: 8px
    }

    .FM_nav .ddnav {
        left: -63px
    }

    .FCP .FM_nav>ul>li>a {
        display: block;
        padding: 11px 27px 10px;
        text-align: center;
        line-height: 1.17;
        min-width: 50px;
        max-width: 253px
    }

    .FCP .FM_nav .ddnav,
    .FCP .H_rts .FM_nav .ddnav {
        left: -104px
    }

    .FCP .FM_nav>ul>li#ecom_header_li>a {
        padding: 10px 30px 10px 52px
    }

    .FCP .rdtsp>span:first-child {
        left: 24px;
        top: 8px
    }

    .FM_npdpP_io.multiimg .FM_prdpge .FM_h400.FM_Db>img,
    .FM_pflePrd figure img {
        max-width: 298px;
        max-height: 298px
    }

    .FM_smpnew ul.FM_Scat li,
    .FM_smpnew1>li>a,
    .FM_smpnew2>li>a {
        max-width: 192px;
        min-width: 192px
    }

    .FM_p_glry .FM_sldrB {
        max-width: 188px;
        min-width: 188px
    }

    .FM_p_glry .FM_sldrB img {
        max-width: 188px;
        max-height: 188px
    }

    .FM_p_glry .FM_sldrB figure,
    .FM_p_glry .FM_sldrB figure span {
        width: 188px;
        height: 188px
    }

    .FM_smpnew .FM_Scat li>span>span:nth-of-type(2) {
        max-width: 190px;
        max-height: 190px;
        min-width: 190px;
        min-height: 190px
    }

    .FM_smpnew .FM_Scat li span img {
        max-width: 190px;
        max-height: 190px
    }

    .FM_smpnew2 {
        margin-left: 21px
    }

    .FM_smpnewHgt {
        max-height: 313px
    }

    .FM_rvw_img_ftr>span:nth-of-type(2n) {
        margin-right: 25px
    }

    .FM_rvw_img>span:nth-of-type(3n) {
        margin-right: 29px
    }

    .FM_snglCat .multiimg .Fm_pDes:nth-of-type(3),
    .FM_snglCat .multiimg .Fm_pName:nth-of-type(2) {
        width: 475px
    }

    .FM_snglCat .multiimg .FM_gbqBtn:nth-of-type(3),
    .FM_snglCat .multiimg .FM_gbqBtn:nth-of-type(4) {
        width: 465px
    }

    .FM_pflePrd .FM_zoom {
        right: 0;
        height: 400px;
        width: 470px
    }

    .FM_bgH.FM_Opc1:after,
    .FM_cont_sec.footr:after,
    .FM_w6 {
        width: 1000px
    }

    .FCP .FM_nPDP .FM_rvw {
        padding-right: 15px;
        margin-right: 15px;
        padding-left: 9px
    }

    .FM_nPDP .FM_pbarC {
        margin-left: 5px;
        margin-right: 5px;
        height: 10px
    }

    .FCP .FM_nPDP .FM_Hsr .FM_sRt {
        font-size: 24px
    }

    .FCP .FM_nPDP .FM_s>p,
    .FM_RELTD .FM_Pr-dR .FM_f18,
    .FM_VID .FM_Pr-dR .FM_aRTV.FM_PrdR span,
    .FM_nav .FM_f18>li,
    .FM_stky_frm .be-input.FM_benords,
    .be-slbox,
    .fcp_raw-item .FM_f16 {
        font-size: 14px
    }

    .FM_stky_frm .FM_be-mfrm .be-msghlp,
    .fcp_srch {
        font-size: 11px
    }

    .CWSIM .FM_nPDP .FM_rvw .FM_pbarC,
    .FCP .FM_nPDP .FM_rvw.FM_us .FM_pbarC,
    .MDC .FM_nPDP .FM_rvw .FM_pbarC,
    .TDWIM .FM_nPDP .FM_rvw .FM_pbarC {
        width: 100px
    }

    .FCP .FM_nPDP .FM_rvw .FM_pbarC {
        width: 80px
    }

    .FCP .FM_nPDP .FM_rvw.FM_us {
        padding-left: 0;
        margin-right: 0;
        padding-right: 0
    }

    .FM_Hsr .FM_sRt,
    .MDC .FM_Hsr .FM_str>span:first-child,
    .TDWIM .FM_Hsr .FM_str>span:first-child {
        font-size: 28px
    }

    .MDC .FM_nPDP .FM_rvw.FM_us .FM_pbarC,
    .TDWIM .FM_nPDP .FM_rvw.FM_us .FM_pbarC {
        width: 120px
    }

    .FM_rvw .FM_pbarC {
        width: 175px
    }

    .FM_PRD .FM_w280,
    .FM_REL .FM_w275,
    .FM_gbqBtn>span,
    .FM_rvw.FM_us .FM_pbarC {
        width: 200px
    }

    .FM_Limg-2 figure {
        max-width: 282px;
        min-width: 282px;
        max-height: 282px;
        min-height: 282px
    }

    .FM_Limg-2 img {
        max-width: 280px;
        max-height: 280px
    }

    .FM_rAdCindx .FM_prdcat .Fm_pCat ul li {
        margin-right: 15px
    }

    .fcp_raw-item .FM_p10.FM_pnsExt {
        padding: 8px 3px
    }

    .FCP .FM_COPV .FM_p25 {
        padding: 20px 27px
    }

    .FCP .FM_COPRe .FM_w700 {
        width: 578px;
        overflow: auto
    }

    .FCP .FM_COPRe .FM_w700 iframe {
        width: 70%
    }

    .FCP .FM_COPRe .FM_p25 {
        padding: 20px 30px
    }

    .FCP .prd_bdyN .FM_w3.FCP_pNew {
        width: 640px
    }

    .stkyH .FM_nav>ul>li>a {
        padding: 18px 8px;
        font-size: 12px
    }

    .stkyH>div:first-of-type {
        max-width: 240px
    }

    .stkyH {
        max-width: 1000px
    }

    .stkyH .FM_nav .ddnav.ddnav_4 {
        right: -568px
    }

    .FCP .stkyH .FM_nav .ddnav.ddnav_4,
    .MDC_FCPdpdwn .stkyH .FM_nav .ddnav.ddnav_4 {
        right: -508px
    }

    .FCP .stkyH .FM_nav .ddnav.ddnav_3,
    .MDC_FCPdpdwn .stkyH .FM_nav .ddnav.ddnav_3 {
        right: -480px
    }

    .FCP .stkyH .FM_nav .ddnav.ddnav_2,
    .MDC_FCPdpdwn .stkyH .FM_nav .ddnav.ddnav_2 {
        right: -393px
    }

    .stkyH .FM_sRCH.FM_onsch {
        width: 137px
    }

    .FM_sidsdr {
        margin-right: 4px
    }

    #Below_Related_Section iframe {
        max-width: 905px
    }

    .FM_recsec>div.FM_mxw23 {
        width: 23%
    }

    .FM_COPV .FM_Marg .FM_w21,
    .FM_COPV .FM_Marg img,
    .FM_HvB,
    .FM_HvidsS_in {
        width: 225px
    }

    .FM_HvB {
        height: 125px
    }

    .FM_HvB img {
        max-width: 225px;
        max-height: 125px
    }

    footer .FM_w400 {
        width: 310px
    }

    .CWSIM footer .FM_w250,
    .FM_PAdd,
    .FM_stky_frm .FM_be-mfrm .bT1-st3,
    .FM_stky_frm .FM_be-mfrm .beW3,
    .FM_stky_frm .FM_be-slbox,
    .MDC footer .FM_w250,
    .TWIM footer .FM_w250 {
        width: 250px
    }

    footer .FM_w250 {
        width: 205px
    }

    .w470 {
        width: 420px
    }

    .MDC footer .FM_p7 {
        padding: 0 20px 10px 0
    }

    .FM_Abt .FM_AaRt>div:nth-of-type(2) {
        width: 144px
    }

    .FM_sldr {
        max-width: 881px
    }

    .FM_NSlde .FM_sldr,
    .FM_sldr,
    .FM_sldr_Wpr,
    .FM_sldr_iW {
        max-height: 222px;
        min-height: 222px
    }

    .FM_sldrB {
        max-width: 220px;
        min-width: 220px
    }

    .FM_sldrB figure,
    .FM_sldrB figure a span {
        height: 220px;
        width: 220px
    }

    .FM_sldrB img {
        max-width: 218px;
        max-height: 218px
    }

    .FM_NSlde .FM_sldr {
        max-width: 445px;
        min-width: 222px
    }

    .FM_NSlde .FM_sldr_Wpr,
    .FM_NSlde .FM_sldr_iW,
    .FM_sldrB {
        max-height: 220px;
        min-height: 220px
    }

    .FM_sldrArw {
        top: 100px
    }

    _:-ms-fullscreen,
    :root .FM_hp,
    _:-ms-lang(x),
    .FM_hp {
        width: 1000px
    }

    .FM_COPV .FM_Marg .mvidimg,
    .FM_COPV .FM_Marg .mvidimg img {
        height: 130px
    }

    #Below_Related_Section,
    .FM_be-mfrm .beW5,
    .FM_pfle .FM_fSht {
        width: 100%
    }

    .FM_Abt .FM_AaRt,
    .FM_sm>li {
        width: 222px
    }

    .FM_bo_sp1 {
        border-spacing: 10px 0
    }

    .FM_m23 {
        margin-left: 81px
    }

    .FM_w2 {
        width: 237px
    }

    .FM_w8 {
        width: 77%
    }

    .FM_w190,
    .FM_w250 {
        width: 190px
    }

    .FM_w400,
    .fcp_Ad-2 {
        width: 300px
    }

    .FM_h400,
    .main_img .FM_h400 {
        height: 300px
    }

    .FM_h_M198 {
        min-height: 149px
    }

    .FM_h200 {
        height: 150px
    }

    .cat_indx .FM_h200 {
        height: 176px
    }

    .cat_indx .FM_w200 {
        width: 176px
    }

    .FM_h2 {
        height: 90px
    }

    .FM_h3 {
        min-height: 100px
    }

    .fcp_srch {
        width: 74%
    }

    .FM_src_l {
        top: 8px
    }

    .FM_stky_frm {
        width: 270px;
        padding: 10px
    }

    .FM_p_prd .FM_sldrB img,
    .main_img-1 img {
        max-width: 128px;
        max-height: 128px
    }

    .FM_prdimg {
        width: 350px;
        height: 350px
    }

    .FM_prdimg .FM_h400 {
        height: 348px
    }

    .FM_prdpge img {
        max-width: 348px;
        max-height: 348px
    }

    .Fm_pDes:nth-of-type(3),
    .Fm_pName:nth-of-type(2) {
        padding-left: 365px;
        width: 375px
    }

    .FM_gbqBtn:nth-of-type(4),
    .FM_gbqBtn:nth-of-type(5) {
        margin-left: 365px;
        width: 364px
    }

    .FM_gbqBtn:nth-of-type(2),
    .Fm_pName:nth-last-of-type(2) {
        padding-left: 0;
        width: 352px
    }

    .Fm_pName:nth-of-type(2) .FM_PpPV {
        display: block
    }

    .FM_PpPV p:first-child {
        font-size: 16px;
        margin-bottom: 5px
    }

    .FM_pulDwn {
        margin-right: 0 !important
    }

    .FM_prdcat .main_img-1 img {
        max-width: 150px;
        max-height: 150px
    }

    .FM_prdcat .Fm_pCat ul li {
        margin-right: 9px
    }

    .FM_nav .ddnav,
    .FM_nav .ddnav>ul,
    .FM_nav .prdNav {
        max-width: 980px;
        min-width: 215px
    }

    .FM_nav .ddnav li,
    .FM_nav .prdNav li {
        min-width: 215px;
        max-width: 215px;
        font-size: 14px
    }

    .FM_nav .ddnav li ul li,
    .FM_nav .prdNav li ul li {
        font-size: 12px
    }

    .FM_nav .ddnav li ul li a {
        line-height: 16px
    }

    .FM_nav .ddnav li ul li:last-child {
        margin-top: 0
    }

    .FM_nav .ddnav .FM_ctgry li {
        min-width: 208px;
        max-width: 208px
    }

    .FM_nav .dd:nth-of-type(3) .ddnav {
        min-width: 190px;
        max-width: 486px
    }

    .FM_nav .dd:nth-of-type(3) li {
        min-width: 190px;
        max-width: 190px
    }

    .FM_COntus .FM_w3 {
        width: 490px
    }

    .FM_w12 {
        width: 185px
    }

    .FM_w13 {
        width: 427px
    }

    .FM_w14,
    .FM_w82 {
        width: 57%
    }

    .FM_npdpP_io .FM_PpPV p:first-child>span:nth-of-type(2),
    .FM_npdpP_io .FM_PpPV p:first-child>span:nth-of-type(3) {
        display: block;
        margin: 10px auto
    }

    .FM_stky_frm textarea.FM_be-slbox {
        height: 103px
    }

    .FM_stky_frm .FM_be-mfrm .beW {
        width: 148px
    }

    .FM_stky_frm .FM_be-mfrm .beW6,
    .FM_w25 {
        width: 180px
    }

    .FM_stky_frm .FM_bgin15 {
        font-size: 19px
    }

    .FM_stky_frm .FM_f22 {
        font-size: 18px
    }

    .FM_w700 {
        width: 522px
    }

    .embw div {
        width: 521px !important
    }

    .FM_COPV .vid-cont img {
        max-width: 520px
    }

    .FM_COPV .FM_p25 {
        padding: 20px 128px
    }

    .FM_COPV .FM_ptb18 {
        padding: 12px
    }

    .FM_COPRe .FM_w700 {
        width: 621px
    }

    .FM_COPRe .FM_p25 {
        padding: 20px 77px
    }

    .Fm_pDes:nth-of-type(2),
    .Fm_pName:nth-child(2) {
        width: 740px;
        padding-left: 0
    }

    .Fm_pName:nth-last-child(2) {
        width: 352px
    }

    .FM_Social:last-of-type {
        margin: 0 0 0 147px
    }

    .FM_COntus .FM_be-mfrm .beW6,
    .FM_COntus .FM_be-mfrm .beemail,
    .FM_Franch .FM_be-mfrm .beW6,
    .FM_Franch .FM_be-mfrm .beemail {
        width: 240px
    }

    .FM_COntus .FM_be-mfrm .beW3 {
        width: 188px
    }

    .FM_cinPge .FM_fShtCntnt:after,
    .FM_cinPge .FM_fShtCntnt:before {
        width: 216px
    }

    .FM_fShtCntnt>div div {
        min-width: 246px;
        max-width: 246px
    }

    .FM_cinPge .FM_fShtCntnt p {
        font-size: 15px
    }

    .FM_stky_frm .FM_be-mfrm .beerrp6 {
        left: -14px
    }

    .FM_BUtn .FM_p11 {
        padding: 9px 10px
    }

    .fcp_raw-item .FM_p10 {
        padding: 8px 10px
    }

    .cf_wd {
        width: 1000px !important
    }

    .FM_sTND {
        padding-left: 365px;
        width: 285px
    }

    .FM_Blur:before,
    .blur-img {
        width: 348px;
        height: 348px
    }

    .FM_COPRe .FM_w700 iframe {
        width: 95%
    }

    .FM_COPRe .mr-g>div {
        width: 620px !important
    }

    .sug-ss.as_ui-widget-content li,
    .sug-ss.ui-menu.ui-widget {
        width: 181px !important
    }

    .blur-img {
        background-size: 348px 348px
    }

    .FM_stky_frm .FM_be-mfrm .dropdown dd ul {
        width: 238px !important
    }

    .FM_stky_frm .FM_m43 {
        margin: 12px 9px 0
    }

    .FM_w3 {
        width: 684px
    }

    .FM_RELTD .FM_w412,
    .FM_nPDP .wdiL .FM_w430,
    .prd_bdyN .wdiL .FM_w430 {
        width: 314px
    }

    .FM_REL .FM_PrdR {
        margin: 0 18px 0 0
    }

    .FM_RELTD.wdiL,
    .wrapper {
        width: 1000px;
        padding: 0
    }

    .FM_RELTD.wdiL {
        padding: 0 10px
    }

    .FM_VID .FM_Pr-dR .FM_aRTV:nth-child(3n+3) {
        margin: 0 0 15px
    }

    .FM_VID .FM_PrdR {
        margin: 0 32px 15px 0
    }

    .FM_VID .FM_w280 {
        width: 235px
    }

    .FM_PRD .FM_h_M280 {
        min-height: 200px
    }

    .FM_p_prd .FM_sldr,
    .FM_p_prd .FM_sldrB,
    .FM_p_prd .FM_sldr_Wpr,
    .FM_p_prd .FM_sldr_iW {
        min-height: 222px;
        max-height: 222px
    }

    .FM_PRD .FM_wm280 {
        max-width: 200px
    }

    .FM_pSsec.fcp_m2,
    .fcp_m2 {
        margin-left: 27px
    }

    .FM_VID figure img {
        max-width: 235px;
        min-width: 235px
    }

    .FM_REL .FM_m28 {
        margin: 15px 15px 18px
    }

    ul.recViewitemFcp li {
        margin: 0 16px 10px 1px !important;
        width: 229px !important
    }

    ul.recViewitemFcp li a.btn3 {
        width: 200px !important
    }

    .FM_Head .FM_p34,
    .pb12 {
        padding-bottom: 9px
    }

    .pt12 {
        padding-top: 8px
    }

    .fcp_raw-item .FM_Btn.FM_f18 {
        font-size: 17px
    }

    .wdiL .FM_w430 {
        width: 325px
    }

    .FM_w22 {
        width: 86%
    }

    .main_img .FM_Blur:before {
        width: 298px;
        height: 299px;
        left: 1px
    }

    .main_img-1 .FM_Blur:before {
        width: 150px;
        height: 150px
    }

    .prd_bdyN .FM_w3 {
        width: 810px
    }

    .fm_Nop .FM_w3 {
        width: 1004px
    }

    .FM_npdpP {
        padding: 15px 11.5px 25px
    }

    .FM_NEWstnd .Fm_pName:nth-child(2) {
        padding-left: 365px;
        width: 384px
    }

    .FM_stky_frm .FM_beerrp {
        font-size: 9px
    }

    .fcp_srch {
        padding: 13px 11px 12px 34px
    }

    .FM_Head .FM_pb10 {
        padding-top: 9px
    }

    .FM_COPV .FM_Social {
        margin: 0
    }

    .FM_COPV .FM_VbTM .FM_p27 {
        padding: 14px 65px
    }

    .FM_COntus .beW11 input {
        width: 288px
    }

    .FM_snglCat .FM_gbqBtn:nth-of-type(4),
    .FM_snglCat .FM_gbqBtn:nth-of-type(5),
    .FM_snglCat .Fm_pDes:nth-of-type(3),
    .FM_snglCat .Fm_pName:nth-of-type(2) {
        width: 568px
    }

    .FM_snglCat .Fm_pDes:nth-of-type(2),
    .FM_snglCat .Fm_pName:first-of-type {
        width: 925px
    }

    .FM_snglCat .Fm_pName:nth-last-of-type(2) {
        width: 400px
    }

    .FM_snglCat .FM_npdpP_io .FM_prdimg {
        margin-left: 25px
    }

    .FM_snglCat .FM_npdpP {
        padding: 15px 35px 25px
    }

    _:-ms-fullscreen,
    :root .FM_nPDP,
    _:-ms-fullscreen,
    :root .fcp_bdcrm_58,
    _:-ms-fullscreen,
    :root .FM_RELTD.wdiL,
    _:-ms-fullscreen,
    :root .wrapper>.FM_ds2.FM_m12.FM_w1.FM_p18,
    _:-ms-fullscreen,
    :root .wrapper>.first-sec,
    _:-ms-fullscreen,
    :root .fcp_bdcrm_58 .fcp_bdcrm_wrap,
    _:-ms-fullscreen,
    :root .wrapper.fcp_m1.FM_bg0>.FM_p52.FM_cb.FM_bg0,
    _:-ms-fullscreen,
    :root .bl_form,
    _:-ms-fullscreen,
    :root .cntr_rpts,
    _:-ms-lang(x),
    .FM_nPDP,
    _:-ms-lang(x),
    .fcp_bdcrm_58,
    _:-ms-lang(x),
    .FM_RELTD.wdiL,
    _:-ms-lang(x),
    .wrapper>.FM_ds2.FM_m12.FM_w1.FM_p18,
    _:-ms-lang(x),
    .wrapper>.first-sec,
    _:-ms-lang(x),
    .fcp_bdcrm_58 .fcp_bdcrm_wrap,
    _:-ms-lang(x),
    .wrapper.fcp_m1.FM_bg0>.FM_p52.FM_cb.FM_bg0,
    _:-ms-lang(x),
    .bl_form,
    _:-ms-lang(x),
    .cntr_rpts {
        max-width: 1000px
    }

    _:-ms-fullscreen,
    :root .FM_stky_frm .FM_be-mfrm .beW3,
    _:-ms-lang(x),
    :root .FM_stky_frm .FM_be-mfrm .beW3 {
        width: 250px
    }

    .FM_Social.FM_m55 {
        margin-right: 99px
    }

    .stmp {
        width: 940px
    }

    .FM_Limg .FM_m4 {
        margin-right: 10px
    }

    .FM_Limg figure {
        max-width: 182px;
        min-width: 182px;
        max-height: 182px;
        min-height: 182px
    }

    .FM_Limg img {
        max-width: 180px;
        max-height: 180px
    }

    .FM_stky_frm .bevT {
        font-size: 13px
    }

    .multiimg .Fm_pDes:nth-of-type(3),
    .multiimg .Fm_pName:nth-of-type(2) {
        padding-left: 454px;
        width: 280px
    }

    .multiimg .FM_gbqBtn:nth-of-type(3),
    .multiimg .FM_gbqBtn:nth-of-type(4) {
        margin-left: 462px;
        width: 272px
    }

    .FM_PTnal ul li {
        margin: 5px 4px;
        max-width: 58px;
        min-width: 58px;
        max-height: 58px;
        min-height: 58px
    }

    .FM_npdpP.FM_npdpP_io.multiimg {
        padding: 15px 5px 25px
    }

    .FM_npdpP_io.multiimg .FM_gbqBtn:nth-of-type(3),
    .FM_npdpP_io.multiimg .FM_gbqBtn:nth-of-type(4),
    .FM_npdpP_io.multiimg .Fm_pDes:nth-of-type(3),
    .FM_npdpP_io.multiimg .Fm_pName:nth-of-type(2) {
        width: 366px
    }

    .FM_npdpP_io.multiimg .FM_prdimg {
        width: 300px;
        height: 300px
    }

    .FM_npdpP_io.multiimg .FM_Blur:before {
        width: 298px;
        height: 298px
    }

    .FM_npdpP_io.multiimg .FM_prdimg .FM_h400 {
        height: 298px
    }

    .FM_npdpP_io.multiimg .FM_PTnal ul li {
        max-width: 47px;
        min-width: 47px;
        max-height: 47px;
        min-height: 47px
    }

    .FCP .FM_npdpP_io.multiimg .FM_prdpge>.FM_ps_t {
        padding-left: 59px
    }

    .FM_pflePrd figure.FM_wh500 {
        max-width: 300px;
        min-width: 300px;
        max-height: 300px;
        min-height: 300px
    }

    .FM_afsCTA {
        margin-top: 10px
    }

    .FM_p_prd .FM_sldr {
        max-width: 730px
    }

    .FM_p_prd .FM_sldrB {
        max-width: 130px;
        min-width: 130px
    }

    .FM_p_prd .FM_sldrB figure,
    .FM_p_prd .FM_sldrB figure span {
        height: 128px;
        width: 128px
    }

    .FM_w26 {
        width: 135px
    }

    .FM_w470 {
        width: 448px
    }

    .tab-content {
        gap: 91px
    }

    .FM_nav .prdNavall {
        left: -60px
    }

    .FM_nav .ecom_header_nav .prdNavall {
        left: -340px
    }

    .stkyH .FM_nav .ecom_header_nav .prdNavall {
        left: -562px
    }

    .stkyH .FM_nav .ecom_header_nav_1 .prdNavall {
        left: -338px
    }

    .stkyH .FM_nav .singleB2B .prdNavall {
        left: -357px
    }

    .hero .site-logo {
        position: static;
    }



}







.pricelist {
    width: 100%;
}

.pricelist img {
    width: 100%;
}

.social-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.social-sticky a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--i);
}

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

.client-center {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.client-center .box {
    width: 33%;
}

.product_page h1 {
    font-size: 22px;
    text-align: center;
    margin: 20px auto;
}


.product_page .title {
    margin: 30px auto;
    display: block;
}

.product_page ul.list {
    list-style: none;
}

.product_page ul.list li {
    padding: 10px;
}

.product_page ul.list li i {
    color: #ee6402;
    margin-right: 10px;
}

.product_page p.content {
    margin: 30px auto;
}

.product-grid {
    width: 100%;
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.product-grid .product-box {
    width: 100%;
    padding: 15px;
    border: 3px double #000;
    box-shadow: 3px 3px 0px #000;
    border-radius: 10px;
}

.product-grid .product-box p {
    margin: 15px auto;
}

.product-grid .product-box ul {
    list-style: square;
    padding-left: 10px;
}


.product-grid .product-box ul li {
    list-style: square;
}


.contact-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.contact-card .card {
    width: 100%;
    border: 1px solid #177165;
    display: flex;
    align-items: center;
    padding: 15px;
    margin-top: 30px;
}

.contact-card .card i {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #177165;
    font-size: 26px;
    border-radius: 5px;
    margin-right: 20px;
}

.contact-card .card h5 {
    text-transform: uppercase;
    font-weight: 500;
    color: #9b9999;
}

.contact-card .card p {
    font-weight: 500;
}

/*----------------------------*/

.info-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.info-box .box {
    background: #fffae6;
    display: flex;
    align-items: center;
    margin-top: 40px;
    border: 1px solid #d8b534;
    padding: 10px 15px;
}

.info-box .box .icon {
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    background: #d8b534;
    margin-right: 10px;
}

.info-box .box h4 {
    font-size: 16px;
    line-height: 10px;
    font-weight: 700;
}

.info-box .box p {
    margin-top: 5px;
    display: block;
    font-size: 12px;
    color: #757575;
}


.price-items li a {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 10px;
    font-size: 18px;
    text-align: center;
    margin-bottom: 5px;
    background: #000;
    color: #fff;
}

.price-items li a i {
    margin-left: 20px;
}

.table-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: flex-start;
}

ul.listSquare {
    list-style: square !important;
    margin-left: 30px;
}

ul.listSquare li {
    list-style: square !important;

    padding: 5px 10px;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.logos img {
    width: 100px;
}

.text-space {
    margin: 15px 0px;
}

@media(max-width: 768px) {

    .clients .box {
        margin: 0;
    }

    .hero-content.home {
        display: grid;
        grid-template-columns: 1fr;
    }

    .client-center {
        flex-direction: column;
        gap: 0px;
    }

    .client-center .box {
        width: 100%;
    }

    .social-sticky {
        right: -7px;
    }

    .product-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-card .card {
        margin: 0;
    }

    .table-info table tr td img,
    .table-info table tr th img {
        min-width: 150px;
    }

    .header .logo {
        height: 100px;
    }

    .page-header {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .container h1:first-child {
        margin-top: 40px;
    }

}

#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
}

/* Popup image */
#popup img {
    max-width: 90%;
    max-height: 90%;
    width: 600px;
    border-radius: 10px;
}

.header-col{
    color: #fff;
    text-decoration: none;
    padding-right: 30px;
}

.pro___grids{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.pro___grids img{
    width: 100%;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .pro___grids{
        grid-template-columns: repeat(2, 1fr);
    }
}
