@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
@font-face {
    font-family: 'CornerStoreJF';
    src: url('../fonts/CornerStoreJF.woff2') format('woff2'),
        url('../fonts/CornerStoreJF.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #042d6d;
  --secondary-color:              #2f6dea;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #042d6d;
  --custom-btn-bg-hover-color:    #E76F51;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --link-hover-color:             #E76F51;

  --body-font-family:             'Unbounded', sans-serif;

  --h1-font-size:                 42px;
  --h2-font-size:                 36px;
  --h3-font-size:                 28px;
  --h4-font-size:                 24px;
  --h5-font-size:                 22px;
  --h6-font-size:                 20px;
  --p-font-size:                  16px;
  --menu-font-size:               12px;
  --btn-font-size:                14px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
  color: #3CF;
}

a:hover {
	color: #FC3;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 14px;
  line-height: 20px;
  color: #2a2a2a;
}

img {
  width: 100%;
  overflow: hidden;
}
/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: 'Poppins', sans-serif;
}
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
::selection {
  background: #f5a425;
  color: #fff;
}

::-moz-selection {
  background: #f5a425;
  color: #fff;
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

.main-button-red a {
  font-size: 13px;
  color: #fff;
  background-color: #a12c2f;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}

.main-button-red a:hover {
  opacity: 0.9;
}

.main-button-yellow a {
  font-size: 13px;
  color: #fff;
  background-color: #f5a425;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}

.main-button-yellow a:hover {
  opacity: 0.9;
}

.section-heading h2 {
  line-height: 40px;
  margin-top: 0px;
  margin-bottom: 50px; 
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(250,250,250,0.15);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}


/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.sub-header {
  background-color: #1f272b;
  position: relative;
  z-index: 1111;
}

.sub-header .left-content p {
  color: #fff;
  padding: 8px 0px;
  font-size: 13px;
}

.sub-header .right-icons {
  text-align: right;
  padding: 8px 0px;
}

.sub-header .right-icons ul li {
  display: inline-block;
  margin-left: 15px;
}

.sub-header .right-icons ul li a {
  color: #fff;
  font-size: 14px;
  transition: all .3s;
}

.sub-header .right-icons ul li a:hover {
  color: #f5a425;
}

.sub-header .left-content p em {
   font-style: normal;
   color: #f5a425;
}

.background-header {
    background-color: #fff !important;
    height: 110px !important;
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
    border-radius: 0px !important;
    margin: 0px !important;
    z-index: 9;
}

.background-header .main-nav .nav li a {
  color: #1e1e1e!important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #1e1e1e!important;
}

.background-header .main-nav .nav li:hover a {
  color: #fb5849!important;
}

.background-header .nav li a.active {
  color: #fb5849!important;
}

.header-area {
  background-color: rgba(250,250,250,0.85);
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}


.header-area .main-nav {
  min-height: 70px;
  background: transparent;
  display: flex;
}

.header-area .main-nav .logo {
  line-height: 70px;
  color: #fff;
  background: #fff;
  border-radius: 50%;
  padding: 13px;
  position: relative;
  top: -15px;
  width: 100px;
  left: -16px;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .main-logo {
    color: #fff;
    background: #fff;
    display: block;
    margin: 0 auto;
    padding: 0px 12px;
    height: 70px;
    position: relative;
    left: 148px;
    text-transform: uppercase;
    letter-spacing: 2px;
    float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.background-header .main-nav .logo {
  line-height: 75px;
}

.background-header .nav {
  margin-top: 20px !important;
}

.header-area .main-nav .nav {
  float: right;
  right: 15px;
  margin-top: 15px;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 10px;
  padding-right: 10px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #004bc0 !important;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
    color: #0011ff !important;
  opacity: 1;
}

.header-area .main-nav .nav li.has-sub {
  position: relative;
  padding-right: 15px;
}

.header-area .main-nav .nav li.has-sub:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #fff;
  position: absolute;
  right: 5px;
  top: 12px;
}

.background-header .main-nav .nav li.has-sub:after {
  color: #1e1e1e;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 40px;
  opacity: 0;
  transition: all .3s;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li a {
  opacity: 1;
  display: block;
  background: #f7f7f7;
  color: #2a2a2a!important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.has-sub ul li a:hover {
  background: #fff;
  color: #f5a425!important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.has-sub ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.has-sub:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 18px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.header-area.header-sticky {
    min-height: 70px;
    margin: 0px 70px;
    border-radius: 50px;
    height: 70px;
}

.header-area .nav {
  margin-top: 30px;
}

.header-area.header-sticky .nav li a.active {
  color: #f5a425;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 7px;
    padding-right: 7px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-area .main-nav .logo {
    color: #1e1e1e;
    top: -5px;
    line-height: 0;
    width: 80px;
    left: -40px;
    background: transparent;
  }
  .header-area .main-nav .main-logo {
    color: #1e1e1e;
    top: 15px;
    line-height: 0;
    width: 100px;
    left: 0px;
    margin: 0px !important;
    background: transparent;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #f5a425!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: #f7f7f7;
    padding: 0px 15px;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 30px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 70px !important;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #f5a425!important;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
    transition: all 0s;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    height: auto;
  }
  .header-area .main-nav .nav li.has-sub:after {
    color: #3B566E;
    right: 30px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 767px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}

/* 
---------------------------------------------
slider
--------------------------------------------- 
*/

.customer-slider {
    position: absolute;
    width: 100%;
    bottom: 60px;
    background: rgba(18, 42, 67, 0.6);
    padding: 0px 200px;
}
.carousel {
  padding: 0px 50px;
}
.customer-slider .carousel.pointer-event {
  padding: 0px 140px;
}
.carousel-item .card-img {
    width: 130px;
    height: 60px;
    margin: 0 auto;
}
.carousel-item .card {
  margin: 0px 5px;
}
.carousel-control-prev {
  left: -75px;
}
.carousel-control-next {
    right: -75px;
}section.heading-page
@media (max-width: 767px) {
  .carousel-inner .carousel-item > div {
        display: none;
   }
  .carousel-inner .carousel-item > div:first-child {
        display: block;
  }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {
    
    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
      transform: translateX(25%);
    }
    
    .carousel-inner .carousel-item-start.active, 
    .carousel-inner .carousel-item-prev {
      transform: translateX(-25%);
    }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start { 
  transform: translateX(0);
}

/* 
---------------------------------------------
banner
--------------------------------------------- 
*/

.main-banner {
  position: relative;
  max-height: 100%;
  overflow: hidden;
  margin-bottom: -7px;
}

#bg-video {
    min-width: 100%;
    min-height: 92vh;
    max-width: 100%;
    max-height: 92vh;
    object-fit: cover;
    z-index: -1;
}

#bg-video::-webkit-media-controls {
    display: none !important;
}

.video-overlay {
    position: absolute;
    background-color: rgba(31,39,43,0.75);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
}

.main-banner .caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.main-banner .caption h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: #f5a425;
  font-weight: 900;
}

.main-banner .caption p {
  color: #fff;
  font-size: 14px;
  max-width: 570px;
}

.main-banner .caption .main-button-red {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {

  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 36px;
  }

}

/*
---------------------------------------------
login
---------------------------------------------
*/
.header-text {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #fafafa; */
    padding: 20px;
    position: absolute;
    top: -30px;
    width: 100%;
}

.login-wrapper {
  width: 100%;
  max-width: 440px;
}

.login-container {
  /*background-image: url('../images/bg-white.jpg') ;*/
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 48px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
}

.login-header {
  margin-bottom: 15px;
  text-align: center;
}

.brand-title {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.brand-subtitle {
  font-size: 15px;
  color: #6b7280;
  font-weight: 400;
}

.login-form {
  margin-bottom: 10px;
  padding: 0px 20px;
}

.form-group {
  margin-bottom: 10px;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1px;
}

.form-label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 1px;
}

.forgot-link {
    font-size: 13px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-flex;
}

.forgot-link:hover {
  color: #1d4ed8;
}

.form-input {
    width: 100%;
    padding: 8px 14px;
    font-size: 14px;
    color: #111827;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    transition: all 0.2s ease;
    outline: none;
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
    margin-bottom: 10px;
    display: flex;
    gap: 70px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-top: 0px;
}

.checkbox-input {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #2563eb;
}

.checkbox-text {
  font-size: 13px;
  color: #374151;
  user-select: none;
}

.submit-btn {
   width: 100%;
    margin-top: 5px;
    padding: 10px;
    background: #042d6d;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}
.submit-register {
  width: 57%;
    margin: 10px auto;
    display: block;
}
.go-btn {
  width: auto !important;
  margin-top: 25px;
}

.submit-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.submit-btn:active {
  transform: translateY(0);
}

.btn-loader {
  display: none;
}

.submit-btn.loading .btn-text {
  opacity: 0;
}

.submit-btn.loading .btn-loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.divider {
  position: relative;
  text-align: center;
  margin: 32px 0;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
}

.divider-text {
  position: relative;
  display: inline-block;
  padding: 0 16px;
  background: #ffffff;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.social-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

/*.social-icon {
  width: 18px;
  height: 18px;
}*/

.signup-text {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}

.signup-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.signup-link:hover {
  color: #1d4ed8;
}

@media (max-width: 480px) {
  .login-container {
    padding: 10px 5px;
  }
  
  .brand-title {
    font-size: 24px;
  }
  
  .social-buttons {
    grid-template-columns: 1fr;
  }
}


/*
---------------------------------------------
login
-------------------------------------------- */
.download-section {
  display: flex;
  gap: 1px;
  justify-content: center;
  align-items: baseline;
}
.download-section img {
    height: auto;
    width: 100%;
}
.download-section .download-icon {
   max-width: 30px;
}
.download-ios {
    max-width: 110px;
    max-height: 55px;
    margin-top: 10px;
}
.download-section p {
    font-size: 22px;
    font-weight: 800;
    position: relative;
    top: 5px;
    margin-right: 10px;
}

/* FAQ -----------------------------------------

---------------------------------------------*/
section.faq-page {
  padding-top: 140px;
  padding-bottom: 0px;
}
.nav-pills {
    border: 2px solid #042d6d;
    border-radius: 20px;
    position: sticky;
    top: 120px;
    padding: 30px;
}
.nav-pills .nav-link {
    background: #f0f8ff;
    color: #717275;
    border-radius: 100px;;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 10px 27px;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}
.nav-pills .nav-item {
      width: 100%;
}
.nav-pills .nav-link:hover, .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background: #042d6d;
    color: #ffffff !important;
}
.tab-content h2 {
    margin-bottom: 10px;
    font-weight: 600;
}
.tab-content p {
    font-size: 16px;
    line-height: 25px;
    color: #333;
}
/*
---------------------------------------------
services
---------------------------------------------
*/

section.testimonials {
  padding-top: 65px;
  padding-bottom: 0px;
  width: 100%;
}

.testimonials .owl-carousel {
  margin-bottom: 25px;
}

.testimonials .owl-carousel-inner {
  display: inline-block !important;
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-25px);
}
    
.testimonials .owl-carousel-inner .owl-prev{
  margin-right: 10px;
  outline: none;
  position: absolute;
  left: -80px !important;
}

.testimonials .owl-carousel-inner .owl-prev span,
.testimonials .owl-carousel-inner .owl-next span {
  opacity: 0;
}

.testimonials .owl-carousel-inner .owl-prev:before {
  display: inline-block;
  font-family: 'Font Awesome 5 Free';
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: "\f053";
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}

.testimonials .owl-carousel-inner .owl-prev {
  opacity: 1;
  transition: all .5s;
}

.testimonials .owl-carousel-inner .owl-prev:hover {
  opacity: 0.9;
}

.testimonials .owl-carousel-inner .owl-next {
  opacity: 1;
  transition: all .5s;
}

.testimonials .owl-carousel-inner .owl-next:hover {
  opacity: 0.9;
}

.testimonials .owl-carousel-inner .owl-next{
  margin-left: 10px;
  outline: none;
  position: absolute;
  right: -85px !important;
}

.testimonials .owl-carousel-inner .owl-next:before {
  display: inline-block;
  font-family: 'Font Awesome 5 Free';
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: "\f054";
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}


.custom-block {
  background-image: url('../images/businessman-sitting-by-table-cafe.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.custom-block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.45);
}

.custom-block .avatar-image {
  min-width: 60px;
  margin: auto;
  left: 0;
}

.custom-block .bi-star {
  color: var(--white-color);
}

.custom-block .bi-star-fill {
  color: var(--secondary-color);
}

.custom-block-image-wrap {
  background-color: rgba(4, 45, 109, 0.85);
  border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: auto;
  padding: 15px 40px;
}

.custom-block-info {
  position: relative;
  z-index: 2;
    padding: 15px;
    min-height: 374px;
}

.custom-block-info strong,
.custom-block-info p {
  color: var(--white-color);
}

.custom-block-info p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}


/*---------------------------------------
  THE BOOK SECTION            
-----------------------------------------*/
.book-section-info {
  padding-top: 40px;
  padding-right: 40px;
  padding-left: 40px;
}

.nav-pills {
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: sticky;
  top: 120px;
  padding: 30px;
}

.nav-pills .nav-link {
  background: var(--section-bg-color);
  color: var(--p-color);
  border-radius: var(--border-radius-large);
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 10px 30px;
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link.active, 
.nav-pills .show>.nav-link {
  background: var(--primary-color);
  color: var(--white-color);
}

.scrollspy-example-2 {
  padding-right: 30px;
  padding-left: 30px;
}

.scrollspy-example-item {
  border-bottom: 5px dotted var(--p-color);
  min-height: 500px;
  padding-top: 20px;
  padding-bottom: 50px;
}

.scrollspy-example-item:last-child {
  border-bottom: 0;
}

.scrollspy-example-item-image {
  border-radius: var(--border-radius-medium);
}

.scrollspy-example-item h5 {
  padding-top: 30px;
  padding-bottom: 20px;
}

.blockquote {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-semibold);
  color: var(--site-footer-bg-color);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 80px 40px 40px 40px;
  text-align: center;
}

.blockquote::before {
  content: "“";
  color: var(--custom-btn-bg-color);
  font-size: 100px;
  line-height: 1rem;
  display: block;
}


/*
---------------------------------------------
upcoming meetings
---------------------------------------------
*/

section.upcoming-meetings {
  background-image: url(../images/meetings-bg.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 230px;
  padding-bottom: 110px;
}

section.upcoming-meetings .section-heading {
  text-align: center;
}

section.upcoming-meetings .categories {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-right: 45px;
}

section.upcoming-meetings .categories h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f272b;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

section.upcoming-meetings .categories ul li {
  display: inline-block;
  margin-bottom: 15px;
}

section.upcoming-meetings .categories ul li a {
  font-size: 15px;
  color: #1f272b;
  font-weight: 500;
  transition: all .3s;
}

section.upcoming-meetings .categories ul li a:hover {
  color: #a12c2f;
}

section.upcoming-meetings .categories .main-button-red {
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-top: 15px;
}

section.upcoming-meetings .categories .main-button-red a {
  width: 100%;
  text-align: center;
}

.about-item {
  margin-bottom: 30px;
}

.about-item .thumb {
  position: relative;
}

.about-item .thumb img {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.about-item .thumb .price {
  position: absolute;
  left: 20px;
  top: 20px;
}

.about-item .thumb .price span {
  font-size: 16px;
  color: #1f272b;
  font-weight: 600;
  background-color: rgba(250,250,250,0.9);
  padding: 7px 12px;
  border-radius: 10px;
}

.about-item .down-content {
  background-color: #fff;
  padding: 10px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.about-item .down-content .date {
  float: left;
  text-align: center;
  display: inline-block;
  margin-right: 20px;
}

.about-item .down-content .date h6 {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: #a12c2f;
}

.about-item .down-content .date span {
  display: block;
  color: #1f272b;
  font-size: 22px;
  margin-top: 7px;
}

.about-item .down-content h4 {
  font-size: 18px;
  color: #1f272b;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.about-item .down-content p {
  color: #1f272b;
  font-size: 14px;
}
.about-item .down-content span {
  color: #004bc0;
  font-weight: 700;
}




/* 
---------------------------------------------
contact us
--------------------------------------------- 
*/

section.contact-us-page {
  padding: 140px 0px 0px 0px;
}
.contact-us-page h2 {
    background-color: #021678;
    color: #ffffff;
    font-weight: 500;
    font-size: 22px;
    padding: 10px 20px;
    border-radius: 30px;
    width: 60%;
}
.contact-us-page h6 {
      font-size: 19px;
    font-weight: 700;
    padding: 0px 20px;
}
.contact-us-page p {
    padding: 0px 20px;
    font-size: 17px;
    line-height: 29px;
}
.contact-status {
  text-align: center;
  margin-top: 57px;
}
.contact-status p {
display: block;
    margin: 0 auto;
    width: 100%;
    background: #01042d;
    color: #fff;
    padding: 15px;
    font-size: 20px;
    /* margin: 0px 29px; */
    border-radius: 30px;

}

section.contact-us #contact {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
}

section.contact-us #contact h2 {
  text-transform: uppercase;
  color: #1f272b;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
  padding-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
}

section.contact-us #contact input {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  background-color: #f7f7f7;
  outline: none;
  border: none;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 0px 15px;
  margin-bottom: 30px;
}

section.contact-us #contact textarea {
  width: 100%;
  min-height: 140px;
  max-height: 180px;
  border-radius: 20px;
  background-color: #f7f7f7;
  outline: none;
  border: none;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 15px;
  margin-bottom: 30px;
}

section.contact-us #contact button {
  font-size: 13px;
  color: #fff;
  background-color: #a12c2f;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
  border: none;
  outline: none;
}

section.contact-us #contact button:hover {
  opacity: 0.9;
}

section.contact-us .right-info {
  background-color: #a12c2f;
  border-radius: 20px;
  padding: 40px;
}

section.contact-us .right-info ul li {
  display: inline-block;
  border-bottom: 1px solid rgba(250,250,250,0.15);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

section.contact-us .right-info ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

section.contact-us .right-info ul li h6 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

section.contact-us .right-info ul li span {
  display: block;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

.footer {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(250, 250, 250, 0.15);
    padding: 1px 0px;
    min-height: 20px;
    vertical-align: middle;
    justify-items: center;
    background: #081679;
    display: block;
}
.footer p {
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  margin: 10px 0px;
  display: inline-block;
}

.footer a {
    display: inline-block;
    position: absolute;
    right: 17rem;
    margin-top: 7px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}
/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--custom-btn-bg-color);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 450px 450px 0 0;
  border-color: var(--white-color) transparent transparent;
  pointer-events: none;
}

.contact-section .container {
  position: relative;
}

.contact-section p {
  color: var(--white-color);
  font-size: var(--h6-font-size);
}

.contact-link {
      text-decoration: none !important;
    color: #081679;
    font-weight: 700;
}

.contact-link:hover {
      color: #01042dg;
    font-weight: 700;
}
.contact-section .copyright-text {
  font-size: var(--copyright-font-size);
}


/*---------------------------------------
  EBOOK DOWNLOAD FORM               
-----------------------------------------*/
.ebook-download-form {
  border-radius: var(--border-radius-medium);
  position: relative;
  z-index: 2;
  padding: 12px;
}

/*---------------------------------------
 Quotes            
-----------------------------------------*/
section.quotes {
  padding-top: 140px;
  padding-bottom: 0px;
}
#stage {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text {
    font-family: 'CornerStoreJF';
    font-size: 50px;
    font-weight: 400;
    color: #000;
    letter-spacing: -0.02em;
    line-height: 1;
    display: flex;
}

.char {
  display: inline-block;
  white-space: pre;
  will-change: transform, opacity;
}

#credit {
  position: fixed;
  bottom: 20px;
  right: 24px;
  font-family: 'Recursive', monospace;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.12);
  text-decoration: none;
  transition: color 0.2s;
  font-variation-settings: 'wght' 300, 'MONO' 1;
}
#credit span { color: rgba(124,92,255,0.55); }
#credit:hover { color: rgba(255,255,255,0.4); }
.quotes-writting p {
  text-align: center;
  display: block;
  padding: 0px 50px;
  position: relative;
}
.quotes-writting p::before {    
    display: inline-block;
    position: absolute;
    left: 0;
    font-size: 17px;
    font-weight: 700;
    content: url(../images/double-quotation.png);
    /* background-color: #081679; */
    padding: 0px 10px;
    border-radius: 50%;
    line-height: 25px;

}
}
.quotes-writting p::after {    
    display: inline-block;
    position: absolute;
    right: 0;
    font-size: 17px;
    font-weight: 700;
    content: url(../images/double-quotation.png);
    /* background-color: #081679; */
    padding: 0px 10px;
    border-radius: 50%;
    line-height: 25px;

}
.quotes-img {
    display: block;
    width: 200px;
    margin: 0 auto;
}
.quotes-img img {
   width: 100%;
}
blockquote {
    position: relative;
    padding-left: 38px;
    font-family: "Georgia", serif;
    font-size: 22px;
    margin: 0px 109px;
    top: 5px;
    padding: 0px 37px;
    padding: 0px 155px;
    text-align: center;
    font-weight: 500;
    color: #333;
    quotes: "\201C" "\201D" "\2018" "\2019";

  &::before,
  &::after {
    color: #c6c6c6;
    font-size: 2.0em;
    font-weight: 400;
    line-height: 0.1em;
  }
  &::before {
        position: absolute;
        left: 125px;
        content: open-quote;
        margin-right: 0.15em;
        vertical-align: -0.15em;
  }
  &::after {
position: absolute;
        right: 152px;
        content: close-quote;
        margin-right: -0.85em;
        top: 5px;
  }
}
/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--p-color);
  padding-top: 13px;
  padding-bottom: 13px;
  padding-right: 40px;
  padding-left: 20px;
  outline: none;
}

.custom-form .form-control:focus,
.custom-form .form-control:hover {
  border-color: var(--primary-color);
}

.custom-form .form-control:focus + .input-group-text .custom-form-icon,
.custom-form .form-control:hover + .input-group-text .custom-form-icon {
  opacity: 1;
}

.custom-form .input-group-text {
  background: transparent;
  border: 0;
  border-radius: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 10px;
}

.custom-form-icon {
  position: relative;
  z-index: 22;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control, .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select, .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-radius: var(--border-radius-large);
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  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;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0px 20px;
}

.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: 3px;
  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);
}

/*
---------------------------------------------
heading page
---------------------------------------------
*/

section.heading-page {
    background-image: url(../images/breadcum.png);
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    min-height: 100px;
    height: 100px;
    position: relative;
    top:7rem;
}

section.heading-page h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

section.heading-page h2 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 30px;
    text-transform: none;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}


/*
---------------------------------------------
About US page
---------------------------------------------
*/

section.about-us-page {
  background-image: url(../images/About-us-bg.png);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 140px;
  padding-bottom: 0px;
}

section.about-us-page .filters {
  text-align: center;
  margin-bottom: 60px;
}

section.about-us-page .filters li {
  font-size: 13px;
  color: #a12c2f;
  background-color: #fff;
  padding: 11px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all .3s;
  cursor: pointer;
  margin: 0px 3px;
}

section.about-us-page .filters ul li.active,
section.about-us-page .filters ul li:hover {
  background-color: #a12c2f;
  color: #fff;
}

section.about-us-page .pagination {
  text-align: center;
  width: 100%;
  margin-top: 30px;
  display: inline-block;
}

section.about-us-page .pagination ul li {
  display: inline-block;
}

section.about-us-page .pagination ul li a {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 10px;
  color: #1f272b;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-weight: 600;
  font-size: 15px;
  transition: all .3s;
}

section.about-us-page .main-button-red {
  text-align: center;
}

section.about-us-page .main-button-red a {
  padding: 12px 60px;
  text-align: center;
  margin-top: 30px;
}

section.about-us-page .pagination ul li.active a,
section.about-us-page .pagination ul li a:hover {
  background-color: #a12c2f;
  color: #fff;
}

.meeting-single-item .thumb {
  position: relative;
}

.meeting-single-item .thumb img {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.meeting-single-item .thumb .price {
  position: absolute;
  left: 20px;
  top: 20px;
}

.meeting-single-item .thumb .price span {
  font-size: 16px;
  color: #1f272b;
  font-weight: 600;
  background-color: rgba(250,250,250,0.9);
  padding: 7px 12px;
  border-radius: 10px;
}

.meeting-single-item .down-content {
  background-color: #fff;
  padding: 40px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.meeting-single-item .thumb .date {
  position: absolute;
  background-color: rgba(250,250,250,0.9);
  width: 80px;
  height: 80px;
  text-align: center;
  padding: 15px 0px;
  border-radius: 10px;
  right: 20px;
  top: 20px;
}

.meeting-single-item .thumb .date h6 {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: #a12c2f;
}

.meeting-single-item .thumb .date span {
  display: block;
  color: #1f272b;
  font-size: 22px;
  margin-top: 7px;
}

.meeting-single-item .down-content h4 {
  font-size: 22px;
  color: #1f272b;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.meeting-single-item .down-content h5 {
  font-size: 18px;
  color: #1f272b;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
}

.meeting-single-item .down-content p {
  color: #1f272b;
  font-size: 14px;
}

.meeting-single-item .down-content p.description {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #eee;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.meeting-single-item .down-content .share {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.meeting-single-item .down-content .share h5 {
  float: left;
  margin-right: 10px;
  margin-bottom: 0px;
}

.meeting-single-item .down-content .share ul li {
  display: inline;
}

.meeting-single-item .down-content .share ul li a {
  font-size: 14px;
  color: #1f272b;
  transition: all .3s;
}

.meeting-single-item .down-content .share ul li a:hover {
  color: #f5a425;
}
/*
---------------------------------------------
Error Page
---------------------------------------------
*/

section.error-page {
  padding-top: 140px;
  padding-bottom: 0px;
      text-align: center;
}
.error-page h1 {
  font-size: 100px;
  margin-bottom: 20px;
}
.error-page .page-error {
   font-size: 40px;
     margin-bottom: 20px;
}
.error-page .error-img img {
   width: 100%;
}
.error-img {
    width: 300px;
    display: block;
    margin: 0 auto;
}
/*
---------------------------------------------
Privacy Policy page
---------------------------------------------
*/

section.privacy-policy-page {
  padding-top: 140px;
  padding-bottom: 0px;
}

section.privacy-policy-page .filters {
  text-align: center;
  margin-bottom: 60px;
}

section.privacy-policy-page .filters li {
  font-size: 13px;
  color: #a12c2f;
  background-color: #fff;
  padding: 11px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all .3s;
  cursor: pointer;
  margin: 0px 3px;
}

section.privacy-policy-page .filters ul li.active,
section.privacy-policy-page .filters ul li:hover {
  background-color: #a12c2f;
  color: #fff;
}

section.privacy-policy-page .pagination {
  text-align: center;
  width: 100%;
  margin-top: 30px;
  display: inline-block;
}

section.privacy-policy-page .pagination ul li {
  display: inline-block;
}

section.privacy-policy-page .pagination ul li a {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 10px;
  color: #1f272b;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-weight: 600;
  font-size: 15px;
  transition: all .3s;
}

.privacy-policy-page .about-item .down-content {
  background-color: #fff;
  padding: 10px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.privacy-policy-page .about-item .down-content .date {
  float: left;
  text-align: center;
  display: inline-block;
  margin-right: 20px;
}

.privacy-policy-page .about-item .down-content .date h6 {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: #a12c2f;
}

.privacy-policy-page .about-item .down-content .date span {
  display: block;
  color: #1f272b;
  font-size: 22px;
  margin-top: 7px;
}

.privacy-policy-page .about-item .down-content h4 {
    font-size: 28px;
    color: rgb(1, 23, 124);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}
.privacy-policy-page .about-item .down-content h6 {
    font-size: 18px;
    color: #01177c;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}
.privacy-policy-page .about-item .down-content h5 {
    font-size: 16px;
    color: #01177c;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}
.privacy-policy-page .about-item .down-content h5::before {
    display: inline-block;
    font-family: 'Font Awesome 5 Free';
    color: #1e1e1e;
    font-size: 17px;
    font-weight: 700;
    content: "\f35a";
    /* background-color: #081679; */
    width: 25px;
    height: 25px;
    border-radius: 50%;
    line-height: 25px;
}
.privacy-policy-page .about-item .down-content h6 span {
    background-color: #01177c;
    color: #fff;
    width: 20px;
    height: 20px;
    font-size: 10px;
    position: relative;
    font-weight: 500;
    top: -2px;
    padding: 5px 5px;
    text-align: center;
    position: relative;
    display: inline-block;
    border-radius: 50%;
}
.privacy-policy-page .about-item .down-content p {
  color: #1f272b;
  font-size: 15px;
}
.privacy-policy-page .about-item .down-content ul {
padding: 2px 10px;
    margin: 0px;
    list-style-type: '.';
    list-style: disc;
    margin-bottom: 10px;
}
.privacy-policy-page .about-item .down-content ul li {
    color: #1f272b;
  font-size: 15px;
}
.privacy-policy-page .about-item .down-content ul li::before {
    content: "\2022";
    color: #081679;
    position: relative;
    font-size: 25px;
    left: -10px;
    top: 2px;
}
.privacy-policy-page .about-item .down-content p a {
      text-decoration: none !important;
    color: #081679;
    font-weight: 700;
}
.privacy-policy-page .about-item .down-content span {
  color: #004bc0;
  font-weight: 700;
}



/*
---------------------------------------------
Registration page
---------------------------------------------
*/

section.registration-page {
  padding-top: 140px;
  padding-bottom: 0px;
}
.registration-page .nav-pills {
    border: 0px;
    border-radius: 0px;
    position: sticky;
    top: 120px;
    padding: 0px 10px;
    margin-bottom: 10px;
}
.registration-page .tab-content form  {
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 0px;
    margin: 0px;
}
.registration-page .tab-content h3 {
    font-weight: 700;
    font-size: 25px;
    color: #3a3a3a;
    text-align: center;
    background: #e6e6e6;
    padding: 10px;
}
.registration-page .nav-pills .nav-link {
    background: #f0f8ff;
    color: #717275;
    border-radius: 0px;;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 10px 30px;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}
.registration-page .submit-register {
    width: auto;
    padding: 10px 25px;
}
.registration-page .nav-pills .nav-item {
      width: 100%;
}
.registration-page .nav-pills .nav-link:hover, .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background: #042d6d;
    color: #ffffff !important;
}
.registration-page .tab-content h2 {
    margin-bottom: 10px;
    font-weight: 600;
}
.registration-page .tab-content p {
    font-size: 16px;
    line-height: 25px;
    color: #333;
}
/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/

@media (max-width: 1300px) {
  .services .owl-carousel-inner .owl-next{
    right: -30px;
  }
  .services .owl-carousel-inner .owl-prev{
    left: -25px;
  }
  .our-courses .owl-carousel-inner .owl-next{
    right: -30px;
  }
  .our-courses .owl-carousel-inner .owl-prev{
    left: -25px;
  }
}

@media (max-width: 1200px) {
  .services .owl-carousel-inner .owl-next{
    right: -70px;
  }
  .services .owl-carousel-inner .owl-prev{
    left: -65px;
  }
  .our-courses .owl-carousel-inner .owl-next{
    right: -70px;
  }
  .our-courses .owl-carousel-inner .owl-prev{
    left: -65px;
  }
}

@media (max-width: 1085px) {
  .services .owl-carousel-inner .owl-next{
    right: -30px;
  }
  .services .owl-carousel-inner .owl-prev{
    left: -25px;
  }
  .our-courses .owl-carousel-inner .owl-next{
    right: -30px;
  }
  .our-courses .owl-carousel-inner .owl-prev{
    left: -25px;
  }
}

@media (max-width: 1005px) {
  .services .owl-carousel-inner .owl-next{
    display: none;
  }
  .services .owl-carousel-inner .owl-prev{
    display: none;
  }
  .our-courses .owl-carousel-inner .owl-next{
    display: none;
  }
  .our-courses .owl-carousel-inner .owl-prev{
    display: none;
  }
}

@media (max-width: 992px) {

  .main-banner .caption {
    top: 60%;
  }

  .main-banner .caption h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 22px;
  }

  .main-banner .caption .main-button-red {
    margin-top: 15px;
  }

  .services {
    margin-top: 60px;
  }

  section.upcoming-meetings {
    padding-top: 400px;
  }

  section.upcoming-meetings .categories {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .accordions {
    margin-left: 0px;
  }

  .new-students {
    margin-top: 15px;
  }

  section.our-facts .video {
    margin-left: 0px;
    margin-top: 15px;
  }

  section.contact-us #contact {
    margin-bottom: 30px;
  }

}

@media (max-width: 767px) {
  blockquote {
    margin: 0px 10px;
    padding: 0px 10px;
  }

  .sub-header .left-content p {
    display: none;
  }

  .sub-header .right-icons {
    text-align: center;
  }

  .main-nav .nav .sub-menu {
    display: none;
  }

  .header-area .main-nav .nav li ul.sub-menu li a {
    color: #1f272b;

  }
  .customer-slider {
      padding: 0px 154px;
  }
  .customer-slider .carousel.pointer-event {
    padding: 0px;
  }
  .download-section p {
     top: 2px;
     font-size: 18px;
  }


}
