

@charset "UTF-8";

:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #252223; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */

}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.8);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #252223; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  --footer-main-color: #163269;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f6f6f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #232424;
  --contrast-color: #ffffff;
  --footer-main-color: #163269;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color:);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
}

.header .top-bar {
  /* background-color: color-mix(in srgb, var(--default-color), transparent 96%); */
  background-image:linear-gradient(to right, #9a395b, #4e89fd);
  font-size: 14px;
}

.header .top-bar .top-bar-item {
  color: var(--default-color);
}

.header .top-bar .top-bar-item a {
  color: var(--accent-color);
  text-decoration: none;
}

.header .top-bar .top-bar-item a:hover {
  text-decoration: underline;
}

.header .top-bar .top-bar-item .selected-icon {
  color: var(--accent-color);
  opacity: 1;
  width: 16px;
}

.header .top-bar .announcement-slider {
  color: var(--accent-color);
  font-weight: 500;
  height: 24px;
  overflow: hidden;
}

.header .top-bar .announcement-slider .swiper-wrapper {
  height: auto !important;
}

.header .top-bar .announcement-slider .swiper-slide {
  text-align: center;
  height: 24px;
  line-height: 24px;
}

.header .top-bar .dropdown-menu {
  min-width: 150px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header .top-bar .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 14px;
  color: var(--default-color);
  display: flex;
  align-items: center;
}

.header .top-bar .dropdown-menu .dropdown-item .selected-icon {
  opacity: 1;
  color: var(--accent-color);
  width: 16px;
}

.header .top-bar .dropdown-menu .dropdown-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.header .main-header {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .logo {
  line-height: 1;
}

.header .main-header .logo img {
  /* max-height: 100px; */
  margin-right: 8px;
}

.header .main-header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.sitelogo{
		max-height:70px; /*100px;*/
}

.sitename{
	font-size:48px;
}


@media (max-width: 768px) {
  .header .main-header .logo h1 {
    font-size: 24px;
  }
  
  .sitelogo{
		max-height:70px;
	}
	
  .sitename{
	font-size:28px;
	}
}

@media (max-width: 576px) {  
  .sitelogo{
		max-height:55px;
	}
	
  .sitename{
	font-size:18px;
	}
}

.header .main-header .desktop-search-form {
  min-width: 400px;
}

@media (max-width: 1200px) {
  .header .main-header .desktop-search-form {
    display: none;
  }
}

.header .main-header .header-actions {
  gap: 16px;
}

.header .main-header .header-actions .header-action-btn {
  position: relative;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--default-color);
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.header .main-header .header-actions .header-action-btn i {
  font-size: 24px;
}

.header .main-header .header-actions .header-action-btn i.bi-person {
  font-size: 28px;
}

.header .main-header .header-actions .header-action-btn:hover {
  color: var(--accent-color);
}

.header .main-header .header-actions .header-action-btn .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .main-header .account-dropdown .dropdown-menu {
  background-color: var(--surface-color);
  min-width: 280px;
  padding: 0;
  border-radius: 6px;
  margin-top: 0.75rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-header {
  padding: 1.25rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-header h6 {
  margin: 0 0 0.25rem;
  color: var(--heading-color);
  font-size: 16px;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-header p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body {
  padding: 1rem 0;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item {
  padding: 0.5rem 1.25rem;
  font-size: 14px;
  color: var(--default-color);
  transition: all 0.2s ease;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item i {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.2s ease;
  font-size: 16px;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item:hover i {
  color: var(--accent-color);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer {
  padding: 1.25rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn {
  font-size: 14px;
  padding: 0.5rem 1rem;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.header .search-form {
  margin: 0;
}

.header .search-form .input-group {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: visible;
  background-color: var(--surface-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header .search-form .input-group:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.header .search-form .input-group .form-control {
  border: none;
  padding: 5px 15px;
  font-size: 14px;
  background-color: transparent;
  color: var(--default-color);
}

.header .search-form .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.header .search-form .input-group .form-control:focus {
  box-shadow: none;
}

.header .search-form .input-group .btn {
  background-color:transparent;
  color: #644bff;
  padding: 0 10px;
  border: none;
  transition: all 0.3s ease;
  border-radius: 10px !important;
  margin: 3px;
}

.header .search-form .input-group .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.header .search-form .input-group .btn i {
  font-size: 16px;
}

.header .header-nav {
  /* background-color: var(--accent-color); */
  background-image: linear-gradient(to right, #9a395b, #4e89fd);
}

@media (min-width: 1200px) {
  .header .header-nav {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

.header #mobileSearch {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  z-index: 1000;
}

.header #mobileSearch .search-form {
  padding: 10px 0;
}

@media (max-width: 991.98px) {
  .header .main-header .header-actions {
    gap: 0.5rem;
  }

  .header .main-header .header-actions .header-action-btn {
    padding: 0.25rem;
  }

  .header .main-header .header-actions .header-action-btn i {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
        font: normal 12px tahoma;
        background: url(../images/bg_menu.jpg) repeat-x;        
        border: solid 1px #d3d3d3;
        height: 32px;
    }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

    .navmenu a,
    .navmenu a:focus {
        line-height: 20px;
        display: block;
        font-weight: bold;
        

        color: #515151;
        padding: 6px 20px;
        font-size: 13px;
        font-family: var(--nav-font);
        
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        background: url(../images/divider.jpg) no-repeat right;
    }

        .navmenu a:hover {
            background: #2f7fe9 !important;
            color: white;
        }

        .navmenu a i,
        .navmenu a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
            transition: 0.3s;
        }

  .navmenu li:first-child a {
    padding-left: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
   /* color: var(--nav-hover-color);
	background-color:var(--footer-main-color);  */
  }

        .navmenu .dropdown .toggle-dropdown {
            display: none;
        }


        .navmenu .dropdown ul {
            margin: 0;
            /*padding: 10px 0;*/
            padding-left:15px;
            background-color: #307FE8;
            /*background: var(--nav-dropdown-background-color);*/
            display: block;
            position: absolute;
            visibility: hidden;
            /*left: 14px;
            top: 130%;*/
            opacity: 0;
            transition: 0.3s;
            /*border-radius: 4px;*/
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

    .navmenu .dropdown ul li {
        /* max-width: 200px; */
        min-width: 233px;
        background-color: #307FE8;
       /* border-bottom: 1px solid #468ae5;*/
    }

    .navmenu .dropdown ul a {
        font: normal 11px tahoma;
        display: block;
        width: 233px; /* जरूरी */
        white-space: normal; /* टेक्स्ट को wrap होने देगा */
        word-break: break-word; /* long words भी टूटेंगे */
        overflow-wrap: break-word; /* modern support */

        padding: 5px 10px 5px 18px;
        line-height: 18px;
        color: #fff;
        
        background: url(../images/bg_dropdown.jpg) no-repeat -48px top;
        /*
        font: normal 11px tahoma;
        /* width: 190px;*/
        /* padding: 0 0 0 18px;
        line-height: 24px;
        margin: 0;
        color: #fff;
        border-top-width: 0;
        
       /* background: url(../images/bg_dropdown.jpg) no-repeat -48px top;*/
    }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

        .navmenu .dropdown ul a:hover,
        .navmenu .dropdown ul .active:hover,
        .navmenu .dropdown ul li:hover > a {
            background: #2f7fe9 !important;
            color: white;
        }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 100%;
    /*left: -90%;*/
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    /*left: -100%;*/
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    /*color: var(--default-color);*/
    color:#000000;
    padding:3px 10px;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

    .nav-link,
    .dropdown-item {
        .dropdown-item {
            word-break: break-all;
        }
    }


    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        /*white-space: nowrap;*/
        transition: 0.3s;
        word-break: break-word; /* long words भी टूटेंगे */
        overflow-wrap: break-word; /* modern support */
    }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  
 

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: -35px;
    right: 5px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
/*** Carousel Start ***/
.carousel-header #carouselId .carousel-control-prev,
.carousel-header #carouselId .carousel-control-next {
    background: transparent;
}

.carousel-header #carouselId .carousel-inner .carousel-item {
    position: relative;
	min-height:25vh;
    /* min-height: 100vh  */
}

.carousel-header #carouselId .carousel-inner .carousel-item img {
    /* position: absolute; */
    width: 100%;
    height: 100%;
	min-height:25vh;
    object-fit: cover;
	max-height:500px;
}

.carousel-header #carouselId .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, 0.4));
    background-size: cover;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
}

.carousel-control-prev .carousel-control-prev-icon,
.carousel-control-next .carousel-control-next-icon {
    background: transparent !important;
}

.carousel-header #carouselId.carousel {
    position: relative;
}

.carousel-header #carouselId.carousel .carousel-indicators {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
}

.carousel-header #carouselId.carousel .carousel-indicators li,
.carousel-header #carouselId.carousel .carousel-indicators li,
.carousel-header #carouselId.carousel .carousel-indicators li {
    margin-right: 30px !important;
}

.carousel-header #carouselId.carousel .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 12px !important;
    border: 5px solid transparent;
    transition: 0.5s;
    
}

.carousel-header #carouselId.carousel .carousel-indicators li.active {
    border: 5px solid var(--bs-primary) !important;
    border-radius: 10px;
}

.carousel-indicators{
	margin-bottom: 3rem;
}
/*** Carousel End ***/


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--footer-main-color);
  font-size: 14px;
  position: relative;
}

.footer-bottom{
  background-color: var(--background-color);	
}

.footer .footer-main {
  padding: 70px 0 40px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
}

.footer .footer-main .footer-widget {
  margin-bottom: 30px;
}

.footer .footer-main .footer-widget .logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer .footer-main .footer-widget .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-main .footer-widget p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .footer-main .footer-widget h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-main .footer-widget h4:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-main .footer-widget h5 {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer .footer-main .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer .footer-main .footer-contact .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
  margin-top: 3px;
}

.footer .footer-main .footer-contact .contact-item span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

.footer .footer-main .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-main .footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.footer .footer-main .footer-links li:before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer .footer-main .footer-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
}

.footer .footer-main .footer-links a:hover {
  color: var(--accent-color);
}

.footer .footer-main .app-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer .footer-main .app-buttons .app-btn {
  display: flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer .footer-main .app-buttons .app-btn i {
  font-size: 20px;
  margin-right: 8px;
}

.footer .footer-main .app-buttons .app-btn span {
  font-size: 13px;
  font-weight: 500;
}

.footer .footer-main .app-buttons .app-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer .footer-main .social-links {
  margin-top: 25px;
}

.footer .footer-main .social-links h5 {
  margin-bottom: 15px;
}

.footer .footer-main .social-links .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer .footer-main .social-links .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer .footer-main .social-links .social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer .footer-bottom {
  padding: 25px 0;
}

.footer .footer-bottom .payment-methods .payment-icons {
  display: flex;
  gap: 12px;
}

.footer .footer-bottom .payment-methods .payment-icons i {
  font-size: 22px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}

.footer .footer-bottom .payment-methods .payment-icons i:hover {
  color: var(--accent-color);
}

.footer .footer-bottom .copyright p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .footer-bottom .copyright p strong {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.footer .footer-bottom .credits {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
}

.footer .footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer .footer-bottom .legal-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer .footer-bottom .legal-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 991.98px) {
  .footer .footer-main {
    padding: 60px 0 30px;
  }

  .footer .footer-widget h4 {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .footer .footer-main {
    padding: 50px 0 20px;
  }

  .footer .footer-main .footer-widget {
    text-align: center;
  }

  .footer .footer-main .footer-widget h4:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer .footer-main .footer-contact .contact-item {
    justify-content: center;
  }

  .footer .footer-main .footer-links li {
    padding-left: 0;
  }

  .footer .footer-main .footer-links li:before {
    display: none;
  }

  .footer .footer-main .app-buttons {
    justify-content: center;
  }

  .footer .footer-main .social-icons {
    justify-content: center;
  }

  .footer .footer-bottom .copyright,
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}


.footerLogoSection{
	display: block;
	text-align: center;
}
.bottomLogo{
		max-height:60px;
}
.asideSection{
	display: inline-block;
	vertical-align: middle;
}
.copyright-section, .last-update-section, .visitor-section {
	text-align: center;
	vertical-align: middle;
}
.sticky {
  /*position: fixed;
  top: 0;
  width: 100%;
  background-color: #f8f8f8;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;*/
}

/*--------------------------------------------------------------
# Section CM/DGP/IG/SP Image 
--------------------------------------------------------------*/
.whats_new {
    position: relative;
    padding-bottom: 20px;
    padding-top: 20px;
    background-image: url('D:/Sandeep SIngh/New Template/Yamunanagar Police/assets/img/key_bg.png');
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

    .whats_new::before {
        content: "";
        width: 150%;
        background: var(--themecolorwhite);
        transform: rotate(2deg);
        position: absolute;
    }

    .whats_new::before {
        top: -25px;
        height: 60px;
        left: -3px;
    }

    .whats_new:after {
        content: "";
        width: 150%;
        background: #fff;
        transform: rotate(2deg);
        position: absolute;
    }

.Key_Functionary {
    display: flex;
    justify-content: center;
    margin: 10px 0px;
}



.key_fun_img {
    width: 190px;
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translate(-50%, 0%);
    bottom: 0;
    transition: all 700ms ease;
}

.outside {
	margin-left: auto;
	margin-right:auto;
    position: relative;
    width: 186px;
    height: 198px;
    background: #f19000;
    -webkit-clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    -webkit-box-shadow: 0px 10px 9px 0px #c4c4c4;
    box-shadow: 0px 10px 9px 0px #c4c4c4;
}

.inside {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #fff7e9;
    -webkit-clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    transition: all 700ms ease;
}


.cm_name {
	margin-left: auto;
	margin-right:auto;
    margin-top: -50px;
    width: 300px;
    border-radius: 3px;
    text-align: center;
    background-image: linear-gradient(to bottom, rgb(255 255 255 / 0%), rgb(255 255 255 / 72%), rgb(255 255 255));
    padding: 5px;
    padding-top: 50px;
    padding-bottom: 15px;
    -webkit-box-shadow: 0px 10px 9px 0px #c4c4c4;
    box-shadow: 1px 2px 18px 0px #dfdfdf;
}

    .cm_name p {
        text-align: center;
        margin-top: 7px;
        font-size: 14px;
        font-weight: 600;
        color: #000;
        margin-bottom: 0;
    }

    .cm_name span {
        font-size: 12px;
        font-weight: 400;
        color: #000;
    }

.cm_box .cm_name span {
    font-size: 12px;
    font-weight: 500;
}

.minister_box .cm_name p {
    font-size: 17px;
}

.minister_box .cm_name span {
    font-size: 13px;
}

@media (max-width: 670px) {
    .minister_box.me-5.wow.zoomIn {
        margin-right: 0 !important;
        margin-top: 10px;
    }
    
    .minister_box.ms-5.wow.zoomIn {
        margin-left: 0 !important;
        margin-top:10px;
        margin-bottom:20px
    }

    .Key_Functionary {
        flex-wrap: wrap;
    }
}
/*--------------------------------------------------------------
# Section CM/DGP/IG/SP Image  End
--------------------------------------------------------------*/

.section-info, .section-info__image {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.section-info {
    /* background-color:rgb(242, 242, 242); */
    padding-bottom: 2rem;
    background: url('D:/Sandeep SIngh/New Template/Yamunanagar Police/assets/img/gallery/img4.jpg') no-repeat;
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.offer:before {
    content: '';
    position: absolute;
    background: linear-gradient(to right, rgba(22, 40, 105, 0.91) 15%, rgba(0, 0, 0, 0.41) 100%);
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
}
.offer h2 {
    text-align: center;
    opacity: 0.9;
    line-height: 1.67;
    color: white;
}
.offer hr {
    opacity: 0.9;
}
.offer p {
    opacity: 0.9;
    color: white;
    text-align: justify;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}
.spimg {
	position:relative;
}
.section__title {
    padding: 2rem;
}
.section__titletext {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0a2463;
    text-align: center;
    margin-bottom: 1rem;
}
.section__titlehr {
    width: 5rem;
    height: 0.5rem;
    background-color: #0a2463;
    border-radius: 1rem;
    margin: 0 auto;
}
.section-info__image {
    display: block;
    width: 75%;
    margin: 0 auto;
    border-radius: 1rem;
}
.section-info__image {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.section-info__paragraph {
    font-size: 1.3rem;
    line-height: 1.5;
}
.section-info__paragraph {
    position: relative;
    text-align: justify;
}
.section-info__from {
	font-size:16px;
	font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
}

/* -------------------------------------------------------
 Map Section Css 
------------------------------------------------------- */
.sectionmap {
    max-width: 700px;
	
    margin: 0 auto;
    /* background: #f9f9f9; */
    padding-right: 30px;
    padding-bottom: 40px;
}

.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#bbfbd9;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st0:hover {fill:#9cf4c5; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#fbd5c0;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st1:hover {fill:#fcccb1; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:#fcbb9d;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st2:hover {fill:#f9a680; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st3{fill-rule:evenodd;clip-rule:evenodd;fill:#b1f4fa;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st3:hover {fill:#84e3ec; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st4{fill-rule:evenodd;clip-rule:evenodd;fill:#000066;}
.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#cdfab5;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st5:hover {fill:#c2faa4; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st6{fill-rule:evenodd;clip-rule:evenodd;fill:#f9ace4;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st6:hover {fill:#f69cde; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#fca3c1;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st7:hover {fill:#f791b4; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st8{fill-rule:evenodd;clip-rule:evenodd;fill:#f1fb9a;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st8:hover {fill:#ecf887; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st9{fill-rule:evenodd;clip-rule:evenodd;fill:#bfbbfc;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st9:hover {fill:#a6a0fa; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st10{fill-rule:evenodd;clip-rule:evenodd;fill:#befc99;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st10:hover {fill:#b2fb86; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st11{fill-rule:evenodd;clip-rule:evenodd;fill:#fda5a3;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st11:hover {fill:#f39b99; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st12{fill-rule:evenodd;clip-rule:evenodd;fill:#9fc4fb;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st12:hover {fill:#8fbafa; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st13{fill-rule:evenodd;clip-rule:evenodd;fill:#fff;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st13:hover {fill:#f1f1f1; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st14{fill-rule:evenodd;clip-rule:evenodd;fill:#d1b6fb;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st14:hover {fill:#c7a7fa; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st15{fill-rule:evenodd;clip-rule:evenodd;fill:#f6fdb7;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st15:hover {fill:#ecf4a2; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st16{fill-rule:evenodd;clip-rule:evenodd;fill:#f197f9;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st16:hover {fill:#ec89f5; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st17{fill-rule:evenodd;clip-rule:evenodd;fill:#fbc6d0;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st17:hover {fill:#f7b1be; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st18{fill-rule:evenodd;clip-rule:evenodd;fill:#c6dffd;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st18:hover {fill:#b6d5fb; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#9bfcd1;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st19:hover {fill:#8af6c6; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st20{fill-rule:evenodd;clip-rule:evenodd;fill:#fbda97;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st20:hover {fill:#f7d286; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st21{fill-rule:evenodd;clip-rule:evenodd;fill:#9dfba3;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st21:hover {fill:#8df794; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st22{fill-rule:evenodd;clip-rule:evenodd;fill:#fbf5c3;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}
.st22:hover {fill:#f9f1b1; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}
.st23{fill-rule:evenodd;clip-rule:evenodd;fill:#ce9ffb;stroke:#000000;stroke-width:0.2835;stroke-miterlimit:22.9256;}	
.st23:hover {fill:#c58ff9; transition:all 0.4s ease-in-out; -webkit-transition:all 0.4s ease-in-out;}


/* ------------------------------------------------------
 Map Section Css End 
 ------------------------------------------------------- */


.homeBody #main.gutterSpace {
    margin-top: 0px;
}
#main.gutterSpace {
    margin-top: 102px;
    padding: 30px 90px;
}
.cust-bg-9 {
    background: url('D:/Sandeep SIngh/New Template/Yamunanagar Police/assets/img/bg-9.png') #ebf3ffcf;
}
.option_item {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.col12 {
    width: 100%;
}
.asideSection {
    display: inline-block;
    vertical-align: middle;
}
.section__titletext {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0a2463;
    text-align: center;
    margin-bottom: 1rem;
}

.relative {
    position: relative;
}
.know-ps-select {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

/*------------------- Social Link  ---------------------------*/
.s-soft {
    position: fixed;
    top: 300px;
    left: 0px;
    z-index: 1000;
    transition: all linear 0.2s;
}

    .s-soft a:first-child {
        border-radius: 0 5px 0 0;
    }

    .s-soft a:last-child {
        border-radius: 0 0 5px 0;
    }

.s-item {
    display: block;
    width: 30px;
    height: 30px;
    color: white;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    transition: all linear 0.2s;
}

    .s-item:hover {
        width: 110px;
        border-radius: 0px 20px 20px 0px;
        color: white;
        text-align: right;
        padding-right: 15px;
    }

#so-open {
    position: fixed;
    top: 100px;
    left: -90px;
    border-radius: 0 30px 30px 0;
    transition: all linear 0.2s;
}

.facebook {
    background-color: #3b5999;
}

.twitter {
    background-color: #000000;
}

.youtube {
    background-color: #BD081C;
}

.linkedin {
    background-color: #0e76a8;
}

.instagram {
    background-color: #c32aa3;
}

.so-collapse {
    left: -60px;
}



/* ---------- Submenu -------- */
.menu-btn {
    background: #1a0a63;                 /* blue */
    color: #fff;
    border: none;
    padding:20px;
    font-size: 1rem;
	font-weight: 400;
    border-radius: 8px;
    align-items: center;
	opacity: .8;
    gap: 10px;
    position: relative;
    transition: 0.3s;
	width: -webkit-fill-available;
}

.menu-btn.active {
    background: #d32f2f;
}
.menu-btn:hover {
	background: #d32f2f;
}
.menu-icon {
    font-size: 22px;
}

.arrow {
    margin-left: auto;
    transition: transform 0.3s;
}

.menu-btn.active .arrow {
    transform: rotate(180deg);
}

/* CONTENT BOX */
.content-box {
    background: #f7f7f7;
    border: 1px solid #ddd;
    /* display: grid; */
    grid-template-columns: repeat(3, 1fr);
}

.content-box > div {
    padding: 15px;
    border: 1px solid #ddd;
    background: white;
}
/* ------------------------- Marque -------------- */
/* marquee img { */
	/* border: 1px solid #f0f5f9; */
/* } */



/* ---------------------------- Social Link ------------- */
.social-box-wrapper {
    background-color: #fff;
    padding: 80px 15px 15px;
    position: relative;
    margin-top: 20px;
    box-shadow: 0px 0px 16px 0px rgba(168, 168, 168, 0.3);
}
.trending-social-section .view-content {
    display: flex;
    justify-content: space-between;
  }
  .trending-social-section .view-content .views-row .twitter-tweet-rendered {
    margin-top: 0px !important;
  }
  .trending-social-section .view-content .views-row iframe {
    width: 100% !important;
    border: none;
    border-radius: 0px;
  }
  .trending-social-section .view-content .views-row .instagram-media {
    min-width: 200px !important;
  }
  .trending-social-section .view-content .views-row .fb_iframe_widget {
    width: 100%;
  }
  .trending-social-section .view-content .views-row .fb_iframe_widget span {
    width: 100% !important;
  }
  .trending-social-section .view-content .views-row .row1 .social-box-wrapper {
    background-color: #fff;
    padding: 80px 15px 15px;
    position: relative;
    margin-top: 20px;
    box-shadow: 0px 0px 16px 0px rgba(168, 168, 168, 0.3);
  }
.trending-social-section .view-content .views-row .row1 h2 {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px;
    position: absolute;
    top: -20px;
    left: 0px;
    right: 0px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    width: calc(100% - 20px);
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    margin: 0 auto;
  }
  .trending-social-section .view-content .views-row .row1 h2:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 0px;
    border-left: 10px solid #DFDFDF;
    border-top: 19px solid transparent;
    border-bottom: 0px solid transparent;
  }
  .trending-social-section .view-content .views-row .row1 h2:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0px;
    border-right: 10px solid #DFDFDF;
    border-top: 19px solid transparent;
    border-bottom: 0px solid transparent;
  }
  .trending-social-section .view-content .views-row .row1 h2 i {
    width: 45px;
    height: 45px;
    display: flex;
    margin-right: 10px;
    padding: 10px;
    background-color: #FBFBFB;
    border-radius: 100%;
  }
  .trending-social-section .view-content .views-row .row1 h2 i:after {
    content: "";
    width: 25px;
    height: 25px;
    display: block;
  }
  .trending-social-section .view-content .views-row .row1 .details {
    height: 405px;
    overflow: auto;
  }
  .trending-social-section .view-content .views-row .row1 .more {
    text-align: center;
    margin-top: 25px;
  }
  .trending-social-section .view-content .views-row .row1 .more a {
    background: linear-gradient(233.19deg, #8EC850 -256.88%, #428DCB -167.3%, #2AB998 -81.23%, #C2579B -2.2%, #EC7026 80.36%);
    border: none;
    border-radius: 4px;
    padding: 8px 10px;
    text-align: center;
    display: inline-block;
    color: #fff;
    text-decoration: none;
  }
  .trending-social-section .view-content .views-row .row1 .more a:hover {
    background: #8ec850;
    background: -moz-linear-gradient(45deg, #8ec850 -256%, #428dcb -167%, #2ab998 -81%, #c2579b -2%, #ec7026 80%);
    background: -webkit-linear-gradient(45deg, #8ec850 -256%, #428dcb -167%, #2ab998 -81%, #c2579b -2%, #ec7026 80%);
    background: linear-gradient(45deg, #8ec850 -256%, #428dcb -167%, #2ab998 -81%, #c2579b -2%, #ec7026 80%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8ec850', endColorstr='#ec7026',GradientType=1 );
    
  }
  .trending-social-section .owl-dots {
    position: absolute;
    right: 0px;
    top: -25px;
  }
  .trending-social-section .owl-dots .owl-dot {
    width: 25px;
    height: 5px;
    margin-left: 7px;
    background-color: #C4C4C4;
    text-indent: -9999px;
  }
  .trending-social-section .owl-dots .owl-dot.active {
    background-color: #000;
  }
  .trending-social-section .owl-nav button {
    position: absolute;
    top: 40%;
    margin-top: -10px;
    background: url(../images/svg-icons.svg#arrow) 0 0 no-repeat !important;
    text-indent: -9999px;
    overflow: hidden;
    width: 24px;
    height: 24px;
    display: block;
  }
  .trending-social-section .owl-nav button.owl-next {
    right: -40px;
  }
  .trending-social-section .owl-nav button.owl-next.disabled {
    display: none;
  }
  .trending-social-section .owl-nav button.owl-prev {
    left: -40px;
    transform: rotate(180deg);
  }
  .trending-social-section .owl-nav button.owl-prev.disabled {
    display: none;
  }

.section-title {
    margin-bottom: 15px;
  }
  .section-title h2 {
    font-family: "montserratbold", sans-serif;
    font-size: 1em;
    display: inline-block;
    background: linear-gradient(92.61deg, #9AC461 0%, #548BC5 0%, #59B59A 116.86%, #B45D97 182.36%, #DC763B 246.57%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .section-title span {
    color: #3E4F5A;
    font-family: "montserratregular", sans-serif;
    letter-spacing: 1px;
    display: block;
  }