/* Fonts */
:root {
  --default-font: "Poppins", serif;
  --heading-font: "Poppins", serif;
  --nav-font: "Open Sans",  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: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #106eea; /* 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: #222222;  /* The default color of the main navmenu links */
  --nav-hover-color: #106eea; /* 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: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #106eea; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* 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: #f5f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* 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);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}




.header .branding {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 10px 0;
}

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

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

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

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #df402b;
  }

 
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #df402b;
    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);
  }

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

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



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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    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;
  }
}

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

.footer .section-title h2 {color:#fff;     border-bottom: 2px solid #fff;
  display: inline-block;
}

.footer .disclaimer p{font-size: 17px; color:#fff; text-align: center;
  padding: 0px 10px;}


  .footer .ftrlink ul{justify-content: center;
    flex-wrap: wrap;}

    .footer .ftrlink ul{list-style: none; margin-bottom: 0px; padding-left: 0px;}
    .footer .ftrlink ul li{padding: 0px 10px; border-right:1px solid #fff;}
    .footer .ftrlink ul li a{color:#fff; font-size: 18px;}


.btmftr {
  background: #000000;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.btmftr .copyright p {
  margin-bottom: 0;
  color:#fff;
}

.btmftr .social-links a{display: flex;
      align-items: center;
      justify-content: center;
      color:#ea4c37!important;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid #fff;
      font-size: 16px;
      background:#fff;
      margin-right: 10px;
      transition: 0.3s;}






/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #d12a14;
  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;
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/

.page-title {    background: #ef9084;
  padding: 7px 0px;}
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}
.page-title .breadcrumbs ol li a{color:#000; font-weight:800;}


.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}


/* home main hero */



.slider{background: linear-gradient(185deg, #b73fff17, #4be2421f); padding:40px 0px;}

.slider .itemitem .info .post-title{padding-bottom: 20px;}
.slider .itemitem .info .post-title h3{font-size: 25px;}

.slider .itemitem .info{    background: #fff;
  padding: 10px 17px; 
border-radius: 0px 0px 20px 20px;}

.slider .itemitem{background: #fff;}
.slider .itemitem .image img{border-radius: 0px;}
.slider .itemitem {box-shadow: 4px 0px 25px #00000038;
  border-radius: 30px;}
.slider .post-meta .meta ul{    list-style: none;
  padding-left: 0px;
  display: flex;}

  .slider .post-meta .meta ul li a{color:#fff; font-weight: 400; font-size:12px;}
  .slider .post-meta .meta ul li{    padding: 0px 11px;
    background: #ea4c37;
    border-radius: 20px;
    margin-right: 20px;}


    .slider .post-meta .meta ul li.date{background: #f5f5f5;}
    .slider .post-meta .meta ul li.date a{color: #000; font-size:12px;}

    .slider .info .post-title h3 a{color:#000; font-weight: 600;}

    .slider .right-item { padding:15px; align-items: center; box-shadow: 4px 0px 25px #00000038; border-radius: 10px; background: #fff; margin-bottom: 15px;}

    .slider .right-item .rightimg img{    width: 200px;
      border-radius: 10px;
      margin-left: 10px;
      height: auto;}

      .slider .right-item h3{line-height: 23px;}
      .slider .right-item h3 a{font-size: 19px;
        font-weight: 500;
        color: #000;}

.slider .tophead h2{    background: #ea4c371a;
  color: #000000 !important;
  padding: 9px 13px 9px 8px;
  padding-right: 30px;
  margin-bottom: 20px;
  font-size: 23px;
  font-weight: 600;
  border-left: 3px solid #ea4c37;
  display: inline-block;
}

    .slider .right-item .post-info .post-meta{list-style: none; padding-left:0px;}

    .slider .right-item .post-info .post-meta li a{padding: 5px 11px;
    
      color:#ea4c37;
      font-size:13px;
      font-weight: 600;
      border-radius: 0px;
      margin-right: 20px;}









/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: #df402b;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  color:#0d4870;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: #df402b;
  color: #fff;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 10;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #df402b;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: #df402b;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #054671;
}






/* about */



.about{padding: 40px 0px; position: relative;}

.about:after{    content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: rotate(0);
  background: linear-gradient(to bottom left, #fcfcfc 40%, #f1f0f0 30%, #f5f6f6 100%, #f5f6f6 100%);
  z-index: -1;}

.about .row{display: flex; align-items: center;}
.about p, .about ul li{font-size: 16px; line-height: 30px; text-align: justify;}


/* title */


.heading-sec {
  display: flex;
  align-items: center;
  font-size: 40px;
}


.heading-sec h2 {
  position: relative;
  font-size:28px; font-weight:700;  letter-spacing:1px; text-transform:uppercase;text-align:center; margin:auto; white-space:nowrap; padding-bottom:13px;
}
.heading-sec h2:before {
    background-color: #df402b;
    content: '';
    display: block;
    height: 3px;
    width: 75px;
    margin-bottom: 5px;
}
.heading-sec h2:after {
    background-color: #df402b;
    content: '';
    display: block;
  position:absolute; 
  right:0; bottom:0;
    height: 3px;
    width: 75px;
    margin-bottom: 0.25em;
}


/* 
.heading-sec:after, .heading-sec:before {
  content: "";
  flex: 1;
  height: 30px;
  margin-top: 2rem;
  border-top: 1px solid #0d4870;
}
.heading-sec:before {
  position: relative;
  left:20px;
  margin-right: 1rem;
  border-left: 1px solid #0d4870;
}
.title-sec span {
  background: #df402b;
  display: inline-block;
  position: relative;
  padding: 3px 20px;
  font-size: 20px;
  color: #fff;
  z-index: 99;
  border-radius: 26px;
  font-weight: 600;
  letter-spacing: 2px;
}
.title-sec span i {
  font-size: 10px;
  position: relative;
  top: -15px;
  color: #0d4870;
}


.heading-sec:after {
  position: relative;
  right:40px;
  border-right: 1px solid #0d4870;
  margin-left: 1rem;} */


.title-sec {
  padding-bottom: 30px;
}	




.blog-section {padding: 30px 0px;}

.post-meta .meta ul{    display: flex;
      padding-left: 0px;
      list-style: none;}

      .post-meta .meta ul li a{color:#df402b; margin-left: 5px;}



      .blog-section .box-item:hover{box-shadow: 1px 1px 4px #81cc7d; transition: 0.5s; }
      .blog-section .box-item img{border-radius: 10px;}
     
      .blog-section .box-item {box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; margin-bottom: 50px; border-radius: 10px;}
      .blog-section .box-item .title p a{color:#000;}
      .blog-section .box-item .title p{    font-size: 20px;
        text-align: justify;
        line-height: inherit;
        font-weight: 500;
        letter-spacing: 0.4px;}


        /* blog single */


        .single-blog .title h1{    font-size: 34px;
          font-weight: 600;
          line-height: 40px;
          color: #054671;
          border-left: 3px solid #054671;
          margin-bottom: 20px;
          padding-left: 15px;}
        
          .single-blog .post-meta ul li{padding-bottom: 10px;}
          .single-blog .post-meta ul{flex-wrap: wrap;}
        
        
          .single-blog .feature-post img{padding: 5px; background: #df402b; border-radius: 10px;box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;}
          .single-blog .feature-post img{margin-bottom: 30px;}
        
          .single-blog .post-content p, .single-blog .post-content ul li, .single-blog .post-content ol li{font-size: 17px; line-height: 30px; color:#000000; text-align: justify;}
          .single-blog .post-content ul, .single-blog .post-content ol{padding-left: 20px;}
          .single-blog .post-content ul li, .single-blog .post-content ol li{padding-bottom: 5px;}
        
          .single-blog .post-content h2, .single-blog .post-content h3{ 
            font-weight: 600;
            margin-top:30px;
            line-height: 40px;
            color: #000000;
            border-left: 3px solid #000000;
            margin-bottom: 10px;
            padding-left: 15px;}
        
            .single-blog .post-meta ul{list-style: none; padding-left: 0px;}

            .single-blog .post-meta ul li{margin-right: 6px; font-size: 12px;}
      
            .single-blog .post-meta ul li a{    background: #df402b;
              padding: 5px 7px;
              border-radius: 3px;
              font-size: 12px;
              color:#fff;
              font-weight: 600;}

.single-blog .tag p{display: inline-block;
  background: #ea4c37;
  padding: 4px 10px;
  color:#000;   
  font-size: 14px;
  margin-right: 14px;
  margin-bottom: 0px;
  line-height: 21px; }

  .single-blog .tag a:hover{transition: 0.5s; background: #000; color:#fff;}
  .single-blog .tag a{    color: #000;
  font-size: 14px;
  background: #f4f4f4;
  line-height: 34px;
  white-space: nowrap;
  padding: 3px 10px;
  margin-right: 8px;}

  

  /* blog */



.blog .single-news {
  margin-bottom: 0px; overflow: hidden !important;}

  .blog .single-news .image {
    height: 100%;
    overflow: hidden;
}

.blog .single-news .image img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;}

  
  .blog .single-news:hover .image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);}

    
    .blog .single-news .content {
      border: 1px solid #eee;
      padding: 17px 15px;
      border-left: none;
      padding-left: 30px;
      height: 100%;
      background-color: #fff;}

      
      .blog .single-news .content .title{line-height: 20px;}
      .blog .single-news .content .title a{
        font-size: 20px;
        color:#054671;
        text-decoration: none;
        line-height: 28px;
    }

    .blog .single-news .content .meta-info {
      margin-top: 25px;
  }

  .blog .single-news .content .meta-info li {
    font-size: 15px;
    display: inline-block;
    margin-right: 15px;
  }
  
  .blog .single-news .content .meta-info li:last-child {
    margin: 0;
  }
  
  .blog .single-news{padding-top:30px;}
  .blog .single-news .content .meta-info li a {
    color: #000000;
    font-size: 16px;
  }
  
  .blog .single-news .content .meta-info li a:hover {
    color: #054671;
  }



  /* sidebar */



  .sidebar .widget {
    padding: 40px;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 0;
    -webkit-box-shadow: 0px 1px 30px 0px rgba(32, 32, 32, 0.11);
    box-shadow: 0px 1px 30px 0px rgba(32, 32, 32, 0.11);
    border-top: 4px solid #054671;}


    .sidebar .widget .widget-title {
      font-size: 20px;
      margin-bottom: 40px;
      position: relative;
      color:#054671; 
      font-weight: 600;
      line-height: 28px;
      z-index: 1;}
      .sidebar .widget.search-widget form input {
        width: 100%;
        background-color: transparent;
        height: 55px;
        border: none;
        padding: 0 80px 0 30px;
        font-size: 14px;
        font-weight: 400;
        border-radius: 0;
        border: 1px solid #eee;
    }

    .sidebar .widget.search-widget form{position: relative;}
    .sidebar .widget.search-widget form button {
      border: none;
      position: absolute;
      right: 7px;
      top: 6px;
      width: 55px;
      height: 42px;
      z-index: 1;
      color: #fff !important;
      font-size: 13px;
      -webkit-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s;
      color: #fff;
      border-radius: 0;
      padding: 0 !important;
      border: none;
      background: #054671;
  }

  .sidebar .widget.popular-feeds .single-popular-feed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    margin-bottom: 10px;
    padding-bottom: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc {
  position: relative;
  padding-left: 100px;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .feed-img {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .feed-img img {
  width: 80px;
  border-radius: 0%;
  border-radius: 10px;
  height: 80px;
}

.sidebar ul{list-style: none; padding-left: 0px;}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title {
  margin-bottom: 12px;
  line-height: 1.5;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title a {
  font-size: 13px;
  color:#000000;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .time {
  font-weight: 400;
  font-size: 13px;
}

.sidebar .widget.categories-widget ul li:first-child a {
  padding-top: 0;
}
.sidebar .widget.categories-widget ul li a {
  font-size: 14px;
  padding: 15px 0;
  transition: 0.5s;
  display: block;
  color: #000;
  border-bottom: 1px solid #eee;
}

.sidebar .widget.categories-widget ul li a:hover {
  color: #054671;
  padding-left: 10px;
}

.sidebar .widget.categories-widget ul li:first-child a {
  padding-top: 0;
}



.sidebar {    position: sticky;
  top: 56px;}





  /* media query */



  @media(max-width:767px){
    .single-blog .post-content h2{font-size: 22px;}
    .single-blog .post-content h3{font-size: 20px;}
    .single-blog .post-content p, .single-blog .post-content ul li, .single-blog .post-content ol li {font-size: 15px; line-height: 24px;}

    .single-blog .title h1 {
      font-size: 19px;
      font-weight: 600;
      line-height: 23px;
      color: #054671;
      border-left: 3px solid #054671;
      margin-bottom: 20px;
      padding-left: 6px;
  }
    .section-title{padding-bottom: 20px;}
    .slider .itemitem .info .post-title h3 {
      font-size: 19px;}
    .slider .itemitem {margin-bottom: 15px;}
    .blog-section .box-item{margin-bottom: 30px;}

    .footer .disclaimer p {
      font-size: 16px;
      color: #fff;
      text-align: justify;
      padding: 0px 10px;
      line-height: 28px;}
      .footer .ftrlink ul li {
        padding: 0px 10px;
        border-right: 1px solid #fff;
        margin-bottom: 13px;}
        .footer{padding-bottom: 20px;}
        .btmftr .ftr-link .social-links{    justify-content: center;
          margin-top: 15px;}
          .header .branding {margin-top:0px;}
    .blog-section .row{justify-content: center;}
  }
  