@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Meow+Script&display=swap');

:root {
  --light: #faebce;
  --dark: #c42327;
  --middark: #7d745f;
  --medium: #251f59;
  --exlight:#f0e1c4;
  --hl: #efaf10;
  --lborder: #111762;
  --radius:20px;

  --titlefont: "Montserrat", sans-serif;
  --textfont: "Montserrat", sans-serif;
}


*:focus,
a:focus,
a:active {
  outline: none;
  color: inherit;
  text-decoration: inherit; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

html {
  height: 100%;
  padding-bottom: 2px; }

.overflow {
  overflow: hidden; }

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family:var(--titlefont);
  font-weight: 600;
  margin: 0px;
  padding: 0px; }

a, a span {
  text-decoration: none;
  -webkit-transition: all 0.45s ease-in-out;
  -moz-transition: all 0.45s ease-in-out;
  -ms-transition: all 0.45s ease-in-out;
  -o-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out; }

a:hover, a:hover span {
  -webkit-transition: all 0.45s ease-in-out;
  -moz-transition: all 0.45s ease-in-out;
  -ms-transition: all 0.45s ease-in-out
  -o-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out; }

.premium-new-badge {
            position: relative;
            display: inline-block;
            margin-left: 8px;
            padding: 4px 12px;
            font-size: 10px;
            font-weight: 600;
            color: #fff;
            background: linear-gradient(45deg, #ff4d4d, #ff1a1a);
            border: 1px solid gold;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            animation: softBlink 1s infinite;
        }

        @keyframes softBlink {
            0% {
                opacity: 1;
                box-shadow: 0 0 4px rgba(255, 215, 0, 0.4);
            }

            50% {
                opacity: 0.5;
                box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
            }

            100% {
                opacity: 1;
                box-shadow: 0 0 4px rgba(255, 215, 0, 0.4);
            }
        }

body {
  background-color: #fff;
  color: #282828;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: var(--textfont); }

  /* Main Layout */
    .page-wrapper {
        padding: 30px 0 50px;
        background: #f8f9fa;
    }

    /* Breadcrumb */
    .breadcrumb-custom {
        background: transparent;
        padding: 10px 0;
        margin-bottom: 30px;
        font-size: 14px;
    }

    .breadcrumb-custom .breadcrumb-item a {
        color: #2c5282;
        text-decoration: none;
    }

    .breadcrumb-custom .breadcrumb-item a:hover {
        color: #1a365d;
        text-decoration: underline;
    }

    .breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
        content: "›";
        color: #a0aec0;
    }

    /* Page Header */
    .page-header-section {
        margin-bottom: 20px;
        padding-bottom: 5px;
        border-bottom: 2px solid #e2e8f0;
    }

    .page-title-main {
        color: #2d3748;
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .page-heading-text {
        color: #4a5568;
        font-size: 1.2rem;
        line-height: 1.6;
    }

    /* Main Content Box */
    .content-main-box {
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        padding: 30px;
        margin-bottom: 40px;
    }

    /* Featured Image */
    .featured-image-wrapper {
        margin-bottom: 30px;
        text-align: center;
    }

    .featured-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    /* Main Content Area */
    .main-content-area {
        line-height: 1.8;
        font-size: 16px;
        color: #333;
    }

    .main-content-area h2,
    .main-content-area h3,
    .main-content-area h4 {
        color: #2d3748;
        margin-top: 30px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .main-content-area h2 {
        font-size: 1.8rem;
        border-bottom: 2px solid #e2e8f0;
        padding-bottom: 10px;
    }

    .main-content-area h3 {
        font-size: 1.5rem;
    }

    .main-content-area h4 {
        font-size: 1.3rem;
    }

    .main-content-area p {
        margin-bottom: 20px;
        text-align: justify;
    }

    .main-content-area ul,
    .main-content-area ol {
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .main-content-area li {
        margin-bottom: 10px;
    }

    /* Text Block */
    .text-block-wrapper {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        border-left: 4px solid #4299e1;
        margin-bottom: 30px;
    }

    .text-block-title {
        color: #2d3748;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    /* Image Block */
    .image-block-wrapper {
        text-align: center;
        margin: 30px 0;
    }

    .content-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 20px 0;
    }

    .image-caption {
        font-style: italic;
        color: #718096;
        margin-top: 10px;
        font-size: 14px;
    }

    /* Gallery Block */
    .gallery-block-wrapper {
        margin: 30px 0;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
        margin-top: 20px;
    }

    .gallery-item-box {
        border-radius: 6px;
        overflow: hidden;
        cursor: pointer;
    }

    .gallery-item-box img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s;
    }

    .gallery-item-box:hover img {
        transform: scale(1.05);
    }

    /* Page Gallery */
    .page-gallery-wrapper {
        margin: 40px 0;
        padding-top: 30px;
        border-top: 2px solid #e2e8f0;
    }

    .section-heading {
        color: #2d3748;
        font-size: 1.5rem;
        margin-bottom: 25px;
        font-weight: 600;
    }

    /* Files Section */
    .files-section-wrapper {
        margin: 40px 0;
        padding-top: 30px;
        border-top: 2px solid #e2e8f0;
    }

    .files-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

    .file-card-custom {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 20px;
        display: flex;
        align-items: center;
        transition: all 0.3s;
    }

    .file-card-custom:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-color: #4299e1;
    }

    .file-icon-custom {
        margin-right: 15px;
        font-size: 24px;
    }

    .file-icon-pdf { color: #e53e3e; }
    .file-icon-word { color: #2b6cb0; }
    .file-icon-excel { color: #38a169; }
    .file-icon-ppt { color: #d69e2e; }
    .file-icon-image { color: #805ad5; }
    .file-icon-default { color: #718096; }

    .file-details-custom {
        flex: 1;
    }

    .file-name-custom {
        font-weight: 500;
        color: #2d3748;
        margin-bottom: 5px;
        word-break: break-word;
    }

    .file-size-custom {
        font-size: 13px;
        color: #718096;
    }

    .file-actions-custom {
        display: flex;
        gap: 10px;
    }

    .btn-custom {
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 14px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .btn-view-custom {
        background: #f7fafc;
        color: #2d3748;
        border: 1px solid #cbd5e0;
    }

    .btn-download-custom {
        background: #4299e1;
        color: white;
        border: 1px solid #4299e1;
    }

    .btn-download-custom:hover {
        background: #3182ce;
    }

    /* Column Content */
    .column-content {
        line-height: 1.7;
        color: #4a5568;
    }

    .column-content img {
        max-width: 100%;
        height: auto;
        margin: 15px 0;
        border-radius: 6px;
    }
/* -------------- Top -------------- */

.top-wrapper {
    position: relative;
    z-index: 13;
    padding: 3px 0;
    border-top: 10px solid var(--hl);
    background-color:#fff; }
.top-wrapper .logo {
    margin: 0px 0;
    display: block; }
.top-wrapper .logo img {
    position:absolute; }

.top-wrapper .logo-m img { width: 190px;
    position:absolute; }
/* -------------- Menu -------------- */


.upper-menu{
    padding: 2px 0;
    z-index: 10;
    display: inline-block;
    margin-bottom:-8px;
    width:100%; }
.upper-menu ul {
    margin: 0px 0 0px 0;
    padding: 0;
    float: right;
    list-style: none;
    display: inline; }
.upper-menu ul li {
    display: inline-block;
    margin: 0px;
    position: relative;
    color: #4e2624;
    float: left; }
.upper-menu ul li a {
    font-size: 14px;
    color: var(--medium);
    font-weight: 600;
    padding: 12px 16px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
   }
.upper-menu ul li a:hover {
    text-decoration: none;
    color:var(--hl); !important; }
.upper-menu ul li:last-child a{
    border-right: 0px; }
.upper-menu .active{
    border-color: #ffcf24; }

.main-menu{ width:100%; padding:6px; background-color:#251f59; }
.top-menu {
    padding: 2px 0;
    z-index: 10;
    display: inline-block;
    margin-bottom:-8px; }
.top-menu ul {
    margin: 0px 0 0px 0;
    padding: 0;
    list-style: none;
    display: inline; }
.top-menu ul li {
    display: inline-block;
    margin: 0px;
    position: relative;
    color: #4e2624;
    float: left; }
.top-menu ul li a {
    font-size: 14px;
    color: #f7f7f7;
    font-weight: 600;
    padding: 12px 16px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
   }
.top-menu ul li a:hover {
    text-decoration: none;
    color:var(--hl); !important; }
.top-menu ul li:last-child a{
    border-right: 0px; }
.top-menu .active{
    border-color: #ffcf24; }

.top-menu ul li ul {
    display: none;
    position: absolute;
    z-index: 30;
    background-color:var(--medium); }

  .top-menu ul li:hover ul {
    display: block; }

  .top-menu ul li ul li {
    width: 350px;
    display: block;
    background: none;
    text-align: left !important;
    padding: 3px 5px;
    text-align: left !important;}

  .top-menu ul li ul li a {
    font-size: 15px;
    padding: 5px 6px; }

  .top-menu ul li ul li:first-child a {
    padding: 5px 6px !important; }

  .top-menu ul li ul li ul, .top-menu ul li:hover ul li ul {
    display: none;
    left: 251px;
    top: 0px; }

  .top-menu ul li:hover ul li:hover ul {
    display: block; }


/* -------------- Banner slider -------------- */
 .banner-wrapper{ position:relative; }
 .banner-link{ background-color: var(--hl);  border-radius: 30px;  position:relative;
  display:inline-block; }
  .banner-link span{ color: #fff; display: inline-block;  font-weight: 600; font-size: 17px;}
  .banner-link a{ margin: 5px 10px 5px 0px; background-color: #fff; font-weight: 600; font-size: 17px; display:inline-block ; color: var(--medium); padding: 11px 15px; border-radius: 25px;}
  .banner-link a:hover{ background-color: var(--medium); color:#fff; }
/* -------------- Common theme -------------- */

.breadcrumb{ background-color: transparent !important; padding: 0 !important; margin:0px 0 0px 0 !important ; }
.breadcrumb ul{ list-style: none; float: left; margin:0 ; padding: 0; }
.breadcrumb ul li{ display:inline-block; font-size:15px; color: var(--middark); padding:4px 4px; }
.breadcrumb ul li a{ display:block; padding:4px 4px; color:#4e2624; font-size:14px; font-weight: 500; color:var(--dark); }
.breadcrumb ul li:first-child a{ display:block; padding:4px 4px 4px 0px; font-size:14px; font-weight: 500;}

.top-links{ padding:10px 0 0 0; display:inline-block; float:right; background:url(../img/border.png) repeat-x bottom right; }
.top-mail{float: right;  display: inline-block; margin-top:4px; margin-right: 10px; text-decoration: none; color: var(--hl);}
.socialmedia-menu{ display: inline-block; float:right; }
.socialmedia-menu ul {
  list-style: none;
  padding: 0;
  list-style: inline-block; }
.socialmedia-menu ul li {
  display: inline-block; }
.socialmedia-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px; margin-left: 4px;
  text-align: center; padding-top: 4px;
  width: 32px; height: 32px;
  display: block;
  background-color: var(--dark); border-radius: 50%;
  border-bottom: 0; }
.socialmedia-menu ul li a:hover {
    color:var(--medium); background-color: var(--hl); }


.page-title { }
.page-title h1 {
    background: url(../img/head-bg.png) no-repeat center left; padding: 12px 12px 12px 38px; font-size: 20px; font-weight: 600;
    color:var(--medium);border-bottom:4px solid var(--dark); display:inline-block; margin-bottom: 15px;}

.content-wrapper{}

.ani{  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.ani:hover{  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.page-title2 { }
.page-title2 h1 {
  font-family: var(--titlefont);
   font-weight: 900; color: #7a3c30;
   border-bottom:4px solid var(--dark); display:inline-block;}
.sub-title{
  font-family: var(--titlefont);
    font-size: 1.4em;
    font-weight: 400;
    color: #000;}
/*.page-content{ font-size: 15px; text-align: justify; margin-bottom: 20px;}*/
.page-content{
     background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        padding: 30px;
        margin-bottom: 40px;
}

.page-content h2{color: #699a1f;  font-size: 22px; margin: 8px 0; padding-bottom: 5px; border-bottom: 1px dashed #a2a2a2;}
.page-content h3{color: #6c3328;  font-size: 22px; margin: 8px 0; padding-bottom: 5px; border-bottom: 1px dashed #a2a2a2;}
.page-content h4{color: #6c3328;  font-size: 22px; margin: 8px 0; padding-bottom: 5px; }
.page-content h5{color: #699a1f;  font-size: 20px; margin: 8px 0; padding-bottom: 5px; }
.page-content h5{color: #6c3328;  font-size: 20px; margin: 8px 0; padding-bottom: 5px; }
.page-content table { border-left: 1px solid #454545; border-top: 1px solid #454545; }
.page-content table tr td{ border-right: 1px solid #454545; border-bottom: 1px solid #454545; padding:3px; }

.responsive{ max-width:100%; height:auto; }
.smooth{-webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;}

/* -------------- Home Page -------------- */
.home-boxes-wrapper{ padding:40px 0;  }
.nb-wrapper{ margin:20px 10px; padding: 12px; border-radius: 20px; background-color:#fff; border: 3px solid var(--hl); border-bottom:9px solid var(--hl);
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;}
.nb-head{line-height:0px; }
.nb-head h1{ background: url(../img/head-bg.png) no-repeat center left; padding: 12px 12px 12px 38px; font-size: 20px; font-weight: 600; color:var(--medium);
border-bottom:4px solid var(--dark); display:inline-block; }
.nb-data{ padding:20px 12px 12px 12px; min-height:400px; overflow:hidden; }
.nb-data{ font-size:16px; font-weight: 500; text-align:justify;  }
.nb-data h1{ font-size:19px; font-weight: 600; margin-bottom:8px;  }

.nb-data2{ padding:20px 12px 12px 12px; height:450px; overflow:hidden; }
.nb-data2{ font-size:16px; font-weight: 500; text-align:justify;  }
.nb-data2 h1{ font-size:19px; font-weight: 600; margin-bottom:8px;  }

.nb-footer{ line-height:0px; }



.nb-data ul{ padding:0; margin:0; list-style:none; }
.nb-data ul li{ padding:0; margin:8px 0; list-style:none; display: flex; border-bottom:1px solid var(--dark); }
.nb-data ul li a{ text-decoration:none; font-weight: 500; color:#383838; }
.nb-data ul li a img{ float:left; margin:0 8px 8px 0; width:120px; height:auto; }
.view-all{ background: var(--hl); display: inline-block; font-size:14px; font-weight: 600; color:var(--medium); padding: 6px 12px; border-radius: 20px; text-decoration:none; margin:2px 0 0 0; }
.view-all:hover{ background: var(--medium); color:#fff;  }
.notice-data{white-space: normal; text-align: left;}
.notice-date{ font-weight: 600; margin:6px 0; }


.home-message1-wrapper{ padding: 40px 0; overflow: hidden; position: relative;
  background-color: var(--middark);
}
.home-message2-wrapper{ padding: 30px 0; overflow: hidden;
  background-color: #fff;
}
.pre-image{ border-radius: 20px; border: 6px solid #fff; box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; }
.l-title{ font-size:78px; font-weight: 600; position: absolute; bottom: -30px; right:0; color:#6d6656; }
.message-title h1{ color:#fff; font-size:38px; margin:30px 0 10px 0 ; font-weight:500;  }
.message{ font-size:17px; color:#fff; ; line-height:24px; margin-bottom:20px; }
.pre-image{ position:relative; overflow:hidden; margin-bottom:20px; }
.pre-frame{ position:absolute; top:0; left:0; }
.pre-name{font-family: "Meow Script", cursive; font-size: 40px; margin-top: 10px; color:var(--dark);}
.home-events-wrapper{
  padding: 40px 0;
  background-color: #f1f1f1;
}
.event-wrapper{ margin: 10px 0; background-color: #fff; padding: 10px;
  border-radius:30px; overflow: hidden; border-bottom: 8px solid var(--hl); box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.event-cover img{
  border-radius:20px; width: 100%; overflow: hidden;
}
.event-title{padding: 5px 3px; }
.event-title a{color: var(--middark); text-align: justify; width: 100%; font-size: 14px; font-weight: 600;}
.event-date{padding: 0px 5px 3px 5px; color: var(--dark); font-size: 13px; font-weight: 600;}

.gallery-scroll { background-color:#d1d1d1; padding: 30px 0 20px 0; width: 100%;}
.gallery-scroll ul { list-style:none; }
.gallery-scroll ul li{ display:inline-block; margin-right:60px; }
.gallery-scroll ul li a{ font-size:35px; font-weight:600; color:#949494;}
.gallery-scroll ul li a span{ font-size:13px;display:block; width:100%; color:#9a9a9a; padding-left: 5px; line-height:6px;  }
.gallery-scroll ul li a:hover{color:var(--dark);}
.gallery-scroll ul li a:hover span{color:var(--medium);}
.home-gallery-wrapper{
  padding: 3% 0;
  background-color:var(--light);
  overflow: hidden;
}
.gallery-wrapper{
    margin: 12px 0;
    background-color: #fff;
    padding: 5px;
    border-radius: 20px;
    position: relative;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.gallery-wrapper a img{width: 100%; border-radius: 18px;}

.home-facts-wrapper{ padding:3% 0; background-color:#fff; }
.fact-wrapper{ background: #f8f6f6; text-align:center; margin:20px 0; padding: 15px; border:2px solid var(--hl); border-bottom:8px solid var(--hl); border-radius:20px; }
.fact-image{ text-align:center; margin-bottom:12px; }
.fact-image img{ width:80px; }
.fact-text{ text-align:center; font-weight:500; padding:3px 0;  color:var(--medium); }
.fact-counter{ text-align:center; font-weight: 300; color: #454545; font-size:40px;  }

.home-about-wrapper{}
.about-wrapper{ padding:60px 15px; }


.notice-wrapper{ margin:10px; padding:10px; border-bottom:1px dotted var(--middark); }
.notice-title{ font-weight:600; }
.news-wrapper{
    margin: 10px 0;
    background-color: #fff;
    padding: 10px;
    border-radius: 30px;
    overflow: hidden;
    border-bottom: 8px solid var(--hl);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.news-image{
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 5px;
    padding: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.news-image img{width: 100%; border-radius: 18px;}
.news-image a img{width: 100%; scale:1;
-webkit-transition: all 0.45s ease-in-out;
  -moz-transition: all 0.45s ease-in-out;
  -ms-transition: all 0.45s ease-in-out
  -o-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}
.news-wrapper:hover .news-image a img{scale: 1.2;
-webkit-transition: all 0.45s ease-in-out;
  -moz-transition: all 0.45s ease-in-out;
  -ms-transition: all 0.45s ease-in-out
  -o-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}
.news-title a{ padding:3px 5px;font-size: 14px; font-weight: 600; color:var(--medium); }
.news-date { padding:3px 5px;font-size: 12px; font-weight: 600; color:var(--dark); }

.faculty-wrapper{ margin:15px 8px; }
.faculty-image img{ width:100%; border:5px solid #fff; box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
margin-bottom:8px; }
.faculty-title{ font-size: 16px; font-weight:600; }
.faculty-data2{ font-size:13px; }


/* -------------- Contact us Page -------------- */
.contact_us_form fieldset {
  padding: 25px;
  border: 1px solid #107483;
  position: relative;
  width: 100%;
  float: left;
  margin: 15px 1%;
  color: #191919;
  border-radius: 10px; }

.contact_us_form legend {
  margin-left: 0px;
  width: auto;
  color: #107483;
  padding: 0px 10px 0 10px;
  font-weight: 300;
  font-size: 25px;
  border: 0px; }

.contact_us_form input, .contact_us_form select { width: 100%; border-radius: 4px; height: 38px; background: transparent; border: 1px solid #8a8c8d;}
.contact_us_form textarea { width: 100%; border-radius: 4px; height: 132px; background: transparent; border: 1px solid #8a8c8d; }


/* -------------- Footer -------------- */
.footer-wrapper {
    padding: 40px 0;
    background-color:#383838;
    border-bottom:8px solid var(--hl); }
.footer-inner-wrapper{}
.footer-title { font-size:20px; font-weight: 600; display: inline-block; color:#fff; margin-bottom:6px; padding-bottom:6px; border-bottom: 3px solid var(--dark);}
.footer-data{ margin:20px 0; }
.footer-data p{ color:#fff !important; font-size:13px; font-weight:500; margin-bottom:5px ;}
.footer-data p a{ color:#fff; font-size:15px; text-decoration: none; font-weight:500; display:inline-block; padding:5px; }
.footer-data ul{margin:0px; padding: 0px; list-style: none;}
.footer-data ul li{margin:2px 0; background:url(../img/li.png) no-repeat top left; background-position: 0 7px; padding-left:14px; }
.footer-data ul li:last-child{ }
.footer-data ul li a{ display: block; padding: 2px 5px ; color:#fff; font-size:15px; font-weight:500;  text-decoration: none;}
.footer-data ul li a:hover{ color:var(--hl); text-decoration: none;}


/* -------------- Footer2 -------------- */
.footer2 {
    padding-bottom: 15px;
    background-color: #fff;
    padding: 18px 0; }
.footer2 .copy-text {
    font-size: 13px;
    color: #454545; font-weight:500; }
.footer2 .wc-text a {
    font-size: 13px; text-decoration: none;
    color: #454545; font-weight:500; }


/* -------------- Category Page -------------- */
.category-wrapper{  margin: 20px 0; background-color: #fff; padding:5px; position: relative; box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; }
.category-image{z-index: 8; width: 100%;  overflow: hidden; }
.category-wrapper:hover{ box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; }

.category-image img{ width:100%; height: auto; padding:4px; }

.category-title a{font-family: "Gabarito", sans-serif; color: #454545; text-decoration: none; padding: 20px 0; width: 100%; display: block;
  z-index: 11; font-size: 20px; font-weight: 500; text-transform: uppercase; text-align: center;}
.category-wrapper:hover .category-title a{ color:#454545; }

/* -------------- Product Page -------------- */
.product-wrapper{  margin: 20px 0; background-color: #fff; padding:5px; position: relative; box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; }
.product-image{z-index: 8; width: 100%;  overflow: hidden; }
.product-wrapper:hover{ box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; }

.product-image img{ width:100%; height: auto; padding:4px; }

.product-title a{font-family: "Gabarito", sans-serif; color: #454545; text-decoration: none; padding: 20px 0; width: 100%; display: block;
  z-index: 11; font-size: 20px; font-weight: 500; text-transform: uppercase; text-align: center;}
.product-wrapper:hover .category-title a{ color:#454545; }

/* -------------- Product Details Page -------------- */

/* -------------- Sign in / Sing up Page -------------- */
.process-page{
  padding: 6% 0; background-color: #eeeeee;
}
.process-page input, .process-page textarea{ border-radius:0px !important; }
.process-page .card{box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;}
/* -------------- Cart Page -------------- */

/* -------------- Checkout Page -------------- */


/* -------------- My Account Page -------------- */
