body 
* {box-sizing: border-box;}

/* Full-width input fields */



:root {
     
  --white-color:                  #ffffff;
  --primary-color:                #13287a;
  --secondary-color:              #356ba2;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #356ba2;
  --custom-btn-bg-hover-color:    #13547a;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #13547a;

  --body-font-family:             'Open Sans', sans-serif;
  --title-font-family:            'Montserrat', sans-serif;

  --h1-font-size:                 58px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --menu-font-size:               14px;
  --btn-font-size:                18px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family); 
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-image: linear-gradient(15deg, #ffffff 0%, #356ba2 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay + .container {
  position: relative;
  
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
}

.nav-tabs {
  border-bottom: 1px solid #ecf3f2;
  margin-bottom: 40px;
  justify-content: center;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 20px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
  
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
  min-width: 250px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: linear-gradient(15deg, #13547a 0%, #356ba2 100%);
  padding-top: 150px;
  padding-bottom: 80px;
}

.site-header .container {
  height: 100%;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: var(--white-color);
}

.site-header .custom-icon {
  color: var(--white-color);
  font-size: var(--h4-font-size);
}

.site-header .custom-icon:hover {
  color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--secondary-color);
}

.navbar {
  background: transparent;
  border-bottom: 1px solid rgba(80, 160, 240, 0.35);
  z-index: 9;
}

.navbar-brand{
    display: none;
}

@media(min-width: 992px) {
    .navbar-brand,
    .navbar-brand:hover {
      font-size: var(--h3-font-size);
      font-weight: var(--font-weight-bold);
      display: block;
    }

    .navbar-brand span {
      font-family: var(--title-font-family);
    }
}
.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
  font-size: 16px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-family: var(--title-font-family); 
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-family: var(--title-font-family); 
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  font-size: var(--h5-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
    background-image: linear-gradient(15deg, #13547a 0%, #356ba2 100%);
    position: relative;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 150px;
    z-index: 0;
}

.hero-section .input-group {
    background-color: var(--white-color);
    border-radius: var(--border-radius-large);
    padding: 10px 15px;
}

.hero-section .input-group-text {
  background-color: transparent;
  border: 0;
}

.hero-section input[type="search"] {
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 0;
}

.hero-section button[type="submit"] {
  background-color: var(--primary-color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
  color: var(--white-color);
  max-width: 150px;
}


/*---------------------------------------
  TOPICS              
-----------------------------------------*/
.featured-section {
  /*background-color: var(--secondary-color);*/
  background-image: linear-gradient(15deg, #356ba2 0%, #ffffff 100%);
  border-radius: 0 0 100px 100px;
  padding-bottom: 100px;
}

@media screen and (min-width: 992px) {
    
    
}

.featured-section .row {
  position: relative;
  bottom: 100px;
  margin-bottom: -100px;
}

.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  z-index: 0; 
}

.custom-block img{
    width: 100%;
    height: 100%;
}

.custom-block:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.custom-block > a {
  width: 100%;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 35px;
 
}

.custom-prod-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 15px;
  margin-bottom: 15px;
  /*box-shadow: 0 0.5rem 1rem rgba(60,120,180,.9);*/
  box-shadow: 5px 5px 5px rgba(60,120,180,.9);
}

.custom-prod-price {
  display: block;
  padding: 8px;
  width: 100%;
  object-fit: cover;
  margin-top: 5px;
  margin-bottom: 15px;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  border-radius: 15px;
  /*box-shadow: 0 0.5rem 1rem rgba(60,120,180,.9);*/
  box-shadow: 5px 5px 5px rgba(60,120,180,.9);
}



.custom-block .rounded-pill {
  border-radius: 5px !important;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 20px;
}

.custom-block-overlay {
  height: 100%;
  min-height: 500px;
  padding: 0;
}

@media screen and (min-width: 992px) {
    .custom-block-overlay{
        height: 100%;
        min-height: 300px;
    }
}

.custom-block-overlay > a {
  height: 100%;
}

.custom-block-overlay .custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  height: 100%;
  margin-top: 0;
}

.custom-block-overlay-text {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  padding: 30px;
}

@media(min-width: 992px) {
    .social-share {
      position: absolute;
      bottom: 0;
      right: 0;
      left: 0;
      z-index: 2;
      padding: 20px 35px;
    }
}
.social-share .bi-bookmark {
    color: var(--white-color);
    font-size: var(--h5-font-size);
    align-self: center;
    align-items: center;
    align-content: center;
}

.social-share .bi-bookmark:hover {
    color: var(--secondary-color);
}

.bg-design {
  background-color: #356ba2;
}

.bg-graphic {
  background-color: #00BFA6;
}

.bg-advertising {
  background-color: #F50057;
}

.bg-finance {
  background-color: #536DFE;
}

.bg-music {
  background-color: #F9A826;
}

.bg-education {
  background-color: #356ba2;
}


/*---------------------------------------
  TOPICS               
-----------------------------------------*/
.topics-detail-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.topics-detail-block-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-family: var(--title-font-family);
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  text-align: center;
  margin: 30px;
  padding: 40px;
}

.topics-listing-page .site-header {
  padding-bottom: 65px;
}

.custom-block-topics-listing-info {
  margin: 30px 20px 20px 30px;
}

.custom-block-topics-listing {
  height: inherit;
}

.custom-block-topics-listing .custom-block-image {
  width: 200px;
}


/*---------------------------------------
  PAGINATION              
-----------------------------------------*/
.pagination {
  margin-top: 40px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
}

.active>.page-link, .page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}


/*---------------------------------------
  TIMELINE              
-----------------------------------------*/
.timeline-section {
  background-image: url('../images/colleagues-working-cozy-office-medium-shot.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 87%;
  background-color: var(--primary-color);
  position: absolute;
  left: 52px;
  top: 0;
  overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--secondary-color);
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 20px 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 40px;
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 80px;
  height: 80px;
  border: 4px solid #fff;
  position: absolute;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 25px;
  color: var(--white-color);
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  background-color: transparent;
  left: 52px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: var(--primary-color);
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: var(--primary-color);
}


/*---------------------------------------
  FAQs              
-----------------------------------------*/
.faq-section .accordion-item {
  border: 0;
}

.faq-section .accordion-button {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-semibold);
}

.faq-section .accordion-item:first-of-type .accordion-button {
  border-radius: var(--border-radius-large);
}

.faq-section .accordion-button:not(.collapsed) {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--primary-color);
}

.faq-section .accordion-body {
  color: var(--p-color);
  font-size: var(--btn-font-size);
  line-height: 40px;
}

/*---------------------------------------
  NEWSLETTER               
-----------------------------------------*/
.newsletter-image {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}


/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
  padding: 50px;
}

.subscribe-form {
  width: 95%;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  
  border-radius: var(--border-radius-medium);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 20px;
  outline: none;
  height: 100px;
}

.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  border-bottom: 40px solid var(--secondary-color);
  position: relative;
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent var(--secondary-color) transparent;
  pointer-events: none;
}

.site-footer-title {
  color: var(--primary-color); 
}

.site-footer .dropdown-menu {
  padding: 0;
}

.site-footer .dropdown-item {
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding: 4px 18px;
}

.site-footer .dropdown-item:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.site-footer .dropdown-menu li:first-child .dropdown-item {
  padding-top: 10px;
}

.site-footer .dropdown-menu li:last-child .dropdown-item {
  padding-bottom: 12px;
}

.site-footer .dropdown-toggle {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.site-footer .dropdown-toggle:hover {
  background-color: var(--primary-color);
  border-color: transparent;
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  display: block;
  list-style: none;
  line-height: normal;
}

.site-footer-link {
  color: var(--secondary-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--secondary-color);
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
  }

  .featured-section {
    border-radius: 0 0 80px 80px;
    padding-bottom: 50px;
  }

  .custom-block-topics-listing .custom-block-image {
    width: auto;
  }

  .custom-block-topics-listing > .d-flex,
  .custom-block-topics-listing-info,
  .custom-block-topics-listing a {
    flex-direction: column;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    height: 75%;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding-left: 135px;
  }

  .subscribe-form-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}


/*******************************************************************************************/

.line{
    background-image: linear-gradient(30deg, #13547a 0%, #356ba2 100%);
    padding: 40px;
    width: 100%;
}

.scroll{
    padding: 40px;
    width: 100%;
    height: 450px;
    
}


@media(min-width: 992px) {
    .scroll{
        padding: 40px;
        width: 100%;
        height: 650px;
        width: 100%;
    }
}


.contact-form{
    
    padding: 10px;
    height: 450px;
    padding-top: 50px;
    width: 100%;
    
}


.form-group{
    padding: 10px;
    background-color: transparent; 
    
}

.form-group .form-control{
    height: 50px;
}

.form-group .textarea{
            height: 150px;
    
}

.header-slider {
    position: relative;
    width: 100%;
    
}

.header-slider .header-slider-item {
    position: relative;
    width: 100%;
}

.header-slider .header-slider-caption {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 80%;
    height: 60%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(53, 107, 162, .7);
    transition: all 0.3s;
    z-index: 1;
}

.header-slider .header-slider-caption p {
    text-align: center;
    color: #ffffff;
    font-size: 22px;
    font-family: 'Source Code Pro', monospace;
    font-weight: 700;
}

.header-slider .header-slider-caption .btn {
    border-color: #ffffff;
}

.header-slider .header-slider-caption .btn i {
    margin-right: 5px;
}


.normal-slider .slick-prev,
.normal-slider .slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
    opacity: 0;
    transition: .5s;
    background: rgba(120, 180, 255, .7);
    border-radius: 4px;
}

.normal-slider .slick-prev {
    left: 55px;
}

.normal-slider .slick-next {
    right: 55px;
}

.normal-slider.slick-slider:hover .slick-prev {
    left: 15px;
    opacity: 1;
}

.normal-slider.slick-slider:hover .slick-next {
    right: 15px;
    opacity: 1;
}

.normal-slider .slick-prev:hover,
.normal-slider .slick-prev:focus,
.normal-slider .slick-next:hover,
.normal-slider .slick-next:focus {
    background: rgba(0, 0, 0, .7);
}

.normal-slider .slick-prev:hover::before,
.normal-slider .slick-prev:focus::before,
.normal-slider .slick-next:hover::before,
.normal-slider .slick-next:focus::before {
    color: #76b4ff;
}

.normal-slider .slick-prev::before,
.normal-slider .slick-next::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 30px;
    color: #ffffff;
}

.normal-slider .slick-prev::before {
    content: "\f104";
}

.normal-slider .slick-next::before {
    content: "\f105";
}

.normal-slider .slick-dots {
    bottom: 15px;
}

.normal-slider .slick-dots li button:before {
    color: #ffffff;
    font-size: 15px;
}

.normal-slider .slick-dots li.slick-active button:before {
    color: #76b4ff;
    
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.contact-section{
  /*background-image: url('../images/contactus.jpg');*/
  background: 
    /* top, transparent red, faked with gradient */ 
    linear-gradient(
      rgba(0, 0, 0, 0.45), 
      rgba(50, 150, 255, 0.75)
    ),
    /* bottom, image */
    url('../images/contactus.jpg');
  background-repeat: no-repeat;
  background-position:  center;
  background-size: auto; 
  position: relative;
  
}

/*.contact-overlay{
    background-image: linear-gradient(15deg, #000 0%, #356ba2 100%);
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}*/



.aboutproduct{
    position: relative;
    /*background-color: #99ccff;*/
    
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .aboutproduct{
        padding: 60px;
    }
}

.aboutp{
   /* background-color: #ffffff;*/
    padding: 5px;
    
}



.about-product-title{
    background-image: linear-gradient(270deg, #356ba2 0%, #ffffff 100%);
    /*background-color: #356ba2;*/
    margin-top: 50px;
    padding: 20px;
    font-size: 25px;
    font-weight: bold; 
}

.about-product-det{
    margin-top: 30px;
    justify-content: normal;
    padding: 25px;
    border: 5px solid #356ba2;
    border-radius: 30px;
    min-height: 250px;
    margin-bottom: 30px;
    margin-right: 25px;
    margin-left:25px;
}

@media screen and (min-width: 768px) {
    .about-product-det-1{
        display: flex;
        flex-direction: row; 
    }
}

.about-product-det-heading{
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
}


.about-desc{
    color: #ecf3f2;
    padding: 10px;
    text-align: justify;
    text-justify: inter-ideograph; 
    line-height: 40px;
}

.prod-mar{
    padding-bottom: 30px;
}

.prod-title{
    /*background-image: linear-gradient(15deg, #ffffff 0%, #356ba2 100%);*/
    background-color: #356ba2; 
    color: white;
    padding: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 3px solid;
    border-bottom-color: #F9A826;
    border-bottom-right-radius: 30px;
}

.prod-body{
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
    
}

.breadcrumb-wrap{
    width: 100%;
    background-color: #356ba2; 
    color: white;
    padding: 15px;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 30px;
}

.product-detail{
    background-color: #F9A826; 
    padding-top: 30px;
    padding-left: 20px;
    position: relative;
    
}
/*************************************************************************************/

.product-detail .product-detail-top,
.product-detail .product-detail-bottom {
    margin-bottom: 30px;
}

.product-detail .product-detail-top {
    padding: 0;
    background: #ffffff;
}








/******************************** splash login ***************************************/


.text-ln{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 17px;
}

.labelcont-ln{
    display: none;
    color: white;
    font-size: 20px;
    
}

@media(min-width: 992px) {
    .labelcont-ln{
        display: block;
        color: white;
        font-size: 20px;

    }
    
}

.labelcont-ln-pass{
    color: white;
    font-size: 18px;
    display: block;
}

@media(min-width: 992px){
    .labelcont-ln-pass{
        color: #ffffff;
        font-size: 20px;
        display: block;
    }
}


/* Set a style for all buttons */
.button-ln {
    border: 2px solid white;
    background: transparent; 
    color: white;
    padding: 10px;
    margin: 8px 0;
    cursor: pointer;
    width: 100%;
    font-size: 20px;
}

.button-ln:hover {
  opacity: 0.8;
}

/* Extra styles for the cancel button */
.cancelbtn-ln {
  width: auto;
  padding: 10px 18px;
  background-color: #356ba2;
  min-width: 120px;
  color: white;
}

/* Center the image and position the close button */
.imgcontainer-ln {
    
  text-align: left;
  margin: 24px 0 12px 0;
  position: relative;
}

img.avatar-ln {
    
  width: 60%;
  padding-left: 16px;
  
}

@media(min-width: 992px) {
    img.avatar-ln {

      width: 60%;
      padding-left: 16px;
    }
    
    
}

.container-ln {
  padding: 16px;
}

span.psw-ln {
  float: right;
  padding-top: 16px;
}

/* The Modal (background) */
.modal-ln {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 5px;
}

@media(min-width: 992px) {
    .modal-ln {
      display: none; /* Hidden by default */
      position: fixed; /* Stay in place */
      z-index: 1; /* Sit on top */
      left: 0;
      top: 0;
      width: 100%; /* Full width */
      height: 100%; /* Full height */
      overflow: auto; /* Enable scroll if needed */
      background-color: rgb(0,0,0); /* Fallback color */
      background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
      padding-top: 60px;
    }

    
}

.check-ln{
    height: 18px;
    width: 18px;
    border: 1px solid white;
    color: #ffffff;
}

/* Modal Content/Box */
.modal-content-ln {
  background-color: #356ba2;
  margin: 18% 5% 5% 5%; /* 5% from the top, 15% from the bottom and centered */
  border: 5px solid #ffffff;
  width: 90%; /* Could be more or less, depending on screen size */
}

@media(min-width: 992px) {
    .modal-content-ln {
        background-color: #356ba2;
        margin: 3.5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
        border: 10px solid #ffffff;
        width: 30%; /* Could be more or less, depending on screen size */
    }

    
}

/* The Close Button (x) */
.close-ln {
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

.close-ln:hover,
.close-ln:focus {
  color: red;
  cursor: pointer;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}
  
@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw-ln {
     display: block;
     float: none;
  }
  .cancelbtn-ln {
     width: 100%;
  }
}




/*****************************popup login *********************************/


/* The popup form - hidden by default */
.form-popup-ln {
  display: none;
  position: fixed;
  top: 50px;
  right: 50px;
  border: 3px solid #f1f1f1;
  z-index: 9;
  background-color: #ddd; 
  z-index: 1;
}

@media(min-width: 992px) {
    .form-popup-ln {
        display: none;
        position: fixed;
        top: 116px;
        right: 125px;
        border: 3px solid #f1f1f1;
        z-index: 9;
        background-color: #ddd; 
        z-index: 1;
    }
}


/* Add styles to the form container */
.form-pop-con-ln {
  max-width: 200px;
  padding: 10px;
  background-color: #ddd;
  z-index: 1;
}

/* Full-width input fields */
.form-pop-con-ln input[type=text], .form-pop-con-ln input[type=password] {
  width: 100%;
  padding: 5px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-pop-con-ln input[type=text]:focus, .form-pop-con-ln input[type=password]:focus {
  outline: 2px solid #536DFE ;
}

/* Set a style for the submit/login button */
.btn-pop-ln {
    background-color: #356ba2;
    color: white;
    padding: 5px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom:10px;
    opacity: 0.5;
}

.btn-pop-ln-act {
    background-color: #356ba2;
    color: white;
    padding: 5px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom:10px;
    
}


.check-pop-ln{
    height: 15px;
    width: 15px;
    border: 1px solid white;
    color: #ffffff;
    margin-bottom: 15px;
}


/* Add a red background color to the cancel button */
.btn-pop-cancel {
    background-color: #356ba2;
    color: white;
    padding: 5px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom: 5px;
    opacity: 0.5;
}

.btn-pop-ln:hover {
    opacity: 1;
}


.btn-pop-cancel:hover {
    opacity: 1;
}
    

.form-popup-ln-p{
    word-wrap: break-word;  
}






/************************************ splash sign up ****************************************/

body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}

/* Full-width input fields */
.input-sign {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
    font-size: 15px;
}

/* Add a background color when the inputs get focus */
.input-sign {
    background-color: #ddd;
    outline: none;
}

/* Set a style for all buttons */
button {
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}

button:hover {
  opacity:1;
}

/* Extra styles for the cancel button */
.cancelbtn {
  padding: 14px 20px;
  background-color: #f44336;
}

/* Float cancel and signup buttons and add an equal width */
.cancelbtn, .signupbtn-sign {
  float: left;
  
}

.check-sign{
    height: 18px;
    width: 18px;
    color: #ffffff;
}


/* Add padding to container elements */
.container-sign {
    padding: 5px;
}
@media(min-width: 992px) {
    .container-sign {
        padding: 5px;
        display: flex;  
    }
}

.container-sign-left{
    padding: 5px;
}

@media(min-width: 992px) {
    .container-sign-left{
        width: 45%;
        padding: 15px;
        margin-right: 15px;
    }
}
.container-sign-right{
    margin-top: 10px;
    padding: 5px;
}
@media(min-width: 992px) {
    .container-sign-right{
        width: 45%;
        margin-top: 0;
        margin-left: 10px;
        padding: 5px;
        align-self: center; 
        
    }    
}
.container-sign-center {
    margin: 5px;
    border: 3px solid #ffffff;
}

.sign-img1{
    width: 70%;
    display: block;
}
@media(min-width: 992px) {
    .sign-img1{
        width: 100%;
        display: none;
    }    
}

.sign-head1{
    width: 100%;
    display: none;
}
@media(min-width: 992px) {
    .sign-head1{
        width: 100%;
        display: block;
    }    
}

.sign-img2{
    width: 100%;
    display: none
}
@media(min-width: 992px) {
    .sign-img2{
        width: 100%;
        display: Block;
        margin-bottom: 50px;
    }    
}

.sign-head2{
    font-size: 18px;
    color: #ffffff;
}


.label-sign{
    color: #ffffff;
    display: none;
}

@media(min-width: 992px) {
    .label-sign{
        color: #ffffff;
        display: block;
    }
}




/* The Modal (background) */
.modal-sign {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 5; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: #474e5d;
  padding-top: 50px;
  
}

/* Modal Content/Box */
.modal-content-sign {
    background-color: #356ba2;
    margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    border: 10px solid #ffffff;
    width: 90%; /* Could be more or less, depending on screen size */
}

@media(min-width: 992px) {
    .modal-content-sign {
        background-color: #356ba2;
        margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
        border: 10px solid #ffffff;
        width: 45%; /* Could be more or less, depending on screen size */
    }
}


/* Style the horizontal ruler */
hr {
  border: 1px solid #f1f1f1;
  margin-bottom: 25px;
}
 
/* The Close Button (x) */
.close-sign {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #f1f1f1;
  z-index: 1;
}

.close-sign:hover,
.close-sign:focus {
  color: #f44336;
  cursor: pointer;
}

/* Clear floats */
.clearfix-sign::after {
  content: "";
  clear: both;
  display: table;
}

/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 300px) {
  .cancelbtn, .signupbtn-sign {
     width: 100%;
  }
}


/***********************************************************/

.pushable-sign {
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.shadow-sign {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: hsl(0deg 50% 0% / 0.25);
  transform: translateY(2px);
  filter: blur(4px);
}
.edge-sign {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: hsl(195deg 100% 30%);
}
.front-sign {
  display: block;
  position: relative;
  padding: 12px 42px;
  border-radius: 10px;
  color: white;
  background: hsl(200deg 90% 40%);
  transform: translateY(-4px);
  font-size: 18px; 
}

.pushable-sign:hover .front-sign {
  transform: translateY(-6px);
}
.pushable-sign:hover .shadow-sign {
  transform: translateY(4px);
}
.pushable-sign:active .front-sign {
  transform: translateY(-2px);
}
.pushable-sign:active .shadow-sign {
  transform: translateY(1px);
}

.pushable-sign:focus:not(:focus-visible) {
  outline: none;
}



/*************************contact otp ************************/



.contactotp{
    color: white;
    font-size: 30px;
    align-self: center; 
    padding: 10px;
}

.contactotpimg{
    display: none;
}

@media(min-width: 992px) {
    .contactotpimg{
        display: block;
    }


}
