/**
* Template Name: Bocor
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/bocor-bootstrap-template-nice-animation/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  --color-primary: #7c2d12;
  --color-secondary: #9a3412;
  --color-info: #9a3412;
  --color-header: #1c1917;
  --color-dark: #faf0eb;

  --color-primary-dark: #5f2110;
  --color-secondary-dark: #5f2110;
  --color-background-main: #faf0eb;
  --color-secondary-rgb: 124, 45, 18;

  /* General colors (odcienie terakoty – ikony, akcenty) */
  --color-blue: #7c2d12;
  --color-blue-rgb: 124, 45, 18;

  --color-indigo: #9a3412;
  --color-indigo-rgb: 154, 52, 18;


  --color-green: #b45309;
  --color-green-rgb: 180, 83, 9;

  --color-teal: #c2410c;
  --color-teal-rgb: 194, 65, 12;

  --color-cyan: #b45309;
  --color-cyan-rgb: 180, 83, 9;

  --color-white: #ffffff;
  --color-white-rgb: 255, 255, 255;

  --color-gray: #6c757d;
  --color-gray-rgb: 108, 117, 125;

  --color-black: #000000;
  --color-black-rgb: 0, 0, 0;
  
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: var(--color-info);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #7c2d12;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--color-secondary);
  color: #fff;
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  padding: 16px 0;
  background: var(--color-background-main);
}

#header .logo h1 {
  font-size: 24px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo h1 a span,
#header .logo h1 a:hover span {
  color: var(--color-primary);
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600px;
  color: #41484f;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--color-secondary);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--color-primary-dark);
  color: #fff;
  padding: 4px 25px 6px 25px;
  margin-left: 30px;
  border-radius: 50px;
  border: 2px solid var(--color-primary-dark);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #2e353a;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--color-secondary);
}

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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--color-secondary);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(18, 33, 46, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #7c2d12;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-secondary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  display: block;
  border: 0;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--color-secondary);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  padding: 20 0 0 0;
  background: linear-gradient(160deg, #f3dcd3 0%, #e9c4b5 35%, #faf0eb 70%, #ffffff 100%);
  background-color: #faf0eb;
}

#hero h1 {
  margin: 0 0 15px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #9a3412;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  color: #444444;
  margin-bottom: 30px;
  font-size: 22px;
}

#hero .btn-get-started {
  color: #fff;
  border-radius: 50px;
  padding: 8px 35px 10px 35px;
  border: 2px solid var(--color-primary);
  transition: all ease-in-out 0.3s;
  display: inline-block;
  background: var(--color-primary);
}

#hero .btn-get-started:hover {
  background: transparent;
  color: #7c2d12;
}

@media (max-width: 991px) {
  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero {
    -moz-text-align-last: center;
    text-align-last: center;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background: linear-gradient(180deg, #faf0eb 0%, #ffffff 100%);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: "Poppins", sans-serif;
  color: var(--color-header);
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-secondary);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title h3 {
    font-weight: 700;
    font-size: 34px;
    color: var(--color-header);
}

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f3dcd3;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 500;
  font-family: "Raleway", sans-serif;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/

.features-teachers-id {
  background: var(--color-background-main);
}

.features-teachers-id .nav-tabs {
  border: 0;
}

.features-teachers-id .nav-link {
  border: 0;
  padding: 25px 20px;
  color: var(--color-secondary);
  box-shadow: 5px 5px 25px rgba(var(--color-secondary-rgb), 0.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}

.features-teachers-id .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.features-teachers-id .nav-link h4 {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  margin: 10px 0 0 0;
  color: var(--color-header);
}

.features-teachers-id .nav-link:hover {
  color: var(--color-primary);
}

.features-teachers-id .nav-link.active {
  transition: 0.3s;
  background: var(--color-primary);
  border-color: #c2410c;
}

.features-teachers-id .nav-link.active h4 {
  color: var(--color-white);
}

.features-teachers-id .nav-link.active i {
  color: var(--color-white) !important;
}

.features-teachers-id .tab-content {
  margin-top: 30px;
}

.features-teachers-id .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.features-teachers-id .tab-pane h3 {
  font-weight: 600;
  font-size: 36px;
  color: var(--color-black);
}

.features-teachers-id .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features-teachers-id .tab-pane ul li {
  padding-bottom: 10px;
}

.features-teachers-id .tab-pane ul i {
  font-size: 20px;
  margin-right: 4px;
  color: var(--color-secondary);
}

.features-teachers-id .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.features-teachers-id .ft-btn {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.features-teachers-id .ft-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding-top: 150px;
  background: linear-gradient(180deg, #ffffff 0%, #faf0eb 100%);
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: var(--color-header);
}

.about .content p {
  margin-bottom: 0;
}

.about .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
  color: #7c2d12;
}

.about .content .icon-box h4 a {
  color: #7c2d12;
  transition: 0.3s;
}

.about .content .icon-box h4 a:hover {
  color: #c2410c;
}

.about .content .icon-box i {
  font-size: 32px;
  float: left;
  color: #c2410c;
}

.about .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.about .image {
  background: url("../img/legitymacja.png") center no-repeat;
  min-height: 400px;
}

@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}

.about .btn-get-started {
  color: #fff;
  border-radius: 50px;
  padding: 8px 35px 10px 35px;
  margin-top: 50px;
  border: 2px solid #9a3412;
  transition: all ease-in-out 0.3s;
  background: #9a3412;
}

.about .btn-get-started:hover {
  background: transparent;
  color: #7c2d12;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 40px;
}

.services .card {
  border: 0;
  padding: 0 10px;
  margin-bottom: 60px;
  position: relative;
  background: transparent;
}

.services .card-img {
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.services .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.services .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  margin-top: -60px;
  margin-left: 30px;
  width: calc(100% - 60px);
}

@media (max-width: 640px) {
  .services .card-body {
    margin-left: 15px;
    width: calc(100% - 30px);
  }
}

.services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.services .card-title a {
  color: #7c2d12;
  transition: 0.3s;
}

.services .card-text {
  color: #5e5e5e;
}

.services .read-more a {
  color: #9a3412;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #9a3412 solid 2px;
  text-align: center;
}


.services .read-more a:hover {
  color: #7c2d12;
  border-bottom: #7c2d12 solid 2px;
}

.services .card:hover img {
  transform: scale(1.1);
}

.services .card:hover .card-body {
  border-color: #c2410c;
}

.services .card:hover .card-body .card-title a {
  color: #c2410c;
}


/*--------------------------------------------------------------
# About 2
--------------------------------------------------------------*/
.about-2 .content h2 {
  font-weight: 700;
  font-size: 44px;
  line-height: 50px;
  margin-bottom: 20px;
  color: #7c2d12;
}

.about-2 .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
}

.about-2 .content ul {
  list-style: none;
  padding: 0;
}

.about-2 .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about-2 .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #7c2d12;
}

.about-2 .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services 2
--------------------------------------------------------------*/
.services-2 {
  padding-top: 50px;
}

.services-2 .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

.services-2 .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #9a3412;
}

.services-2 .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #7c2d12;
}

.services-2 .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.services-2 .box:hover {
  background: #9a3412;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.services-2 .box:hover span,
.services-2 .box:hover h4,
.services-2 .box:hover a,
.services-2 .box:hover p {
  color: #fff;
}

.services-2 .read-more a {
  margin-top: 20px;
  color: #9a3412;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #9a3412 solid 2px;
  text-align: center;
}

.services-2 .read-more a:hover {
  color: #fff;
  border-bottom: #fff solid 2px;
}

/*--------------------------------------------------------------
# Important info
--------------------------------------------------------------*/

.important-info {
  background-color: #faf0eb;
}

/*--------------------------------------------------------------
# Why us
--------------------------------------------------------------*/


#why-us {
  padding: 60px 0;
  background: var(--color-dark);
}

#why-us .section-header h2 {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    font-family: "Poppins", sans-serif;
    color: var(--color-header);
}
  
#why-us .section-header h3 {
  text-align: center;
  font-weight: 700;
  font-size: 34px;
  color: var(--color-header);
}

#why-us .section-header h2,
#why-us .section-header p {
  color: var(--color-header);
  text-align: center;
}

#why-us .card {
  background: #9a3412;
  border-color: #9a3412;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #faf0eb;
  transition: 0.3s ease-in-out;
  height: 100%;
}

@media (max-width: 991px) {
  #why-us .card {
    margin: 0;
  }
}

#why-us .card:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

#why-us .card i {
  font-size: 48px;
  padding-top: 15px;
  color: #f3dcd3;
}

#why-us .card h5 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
}

#why-us .card p {
  font-size: 15px;
  color: #f3dcd3;
}

#why-us .counters {
  padding-top: 40px;
}

#why-us .counters span {
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;  
  font-size: 14px;
  color: #e9c4b5;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.props {
  background: linear-gradient(180deg, #faf0eb 0%, #fff 100%);
}

.props-all {
  background-color: #faf0eb;
}

.features .content+.content {
  margin-top: 100px;
}

.features h3 {
  font-weight: 700;
  font-size: 34px;
  color: var(--color-header);
}

.features .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: var(--color-header);
}

.features .content ul {
  list-style: none;
  padding: 0;
}

.features .content ul li {
  padding-bottom: 10px;
  font-size: 17px;
}

.features .content ul i {
  font-size: 18px;
  padding-right: 4px;
  color: var(--color-primary-dark);
}

.features .content p:last-child {
  margin-bottom: 0;
}

.features .ft-btn {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--color-secondary-dark);
  color: var(--color-secondary-dark);
}

.features .ft-btn:hover {
  background: var(--color-secondary);
  color: #fff;
  border: 2px solid var(--color-secondary);
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us .content+.content {
  margin-top: 100px;
}

.about-us .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #7c2d12;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding-bottom: 10px;
}

.about-us .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-secondary);
}

.about-us .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values .box {
  padding: 30px;
  box-shadow: 0px 0 5px rgba(234, 88, 12, 0.08);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

.values .box img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .box .img-fluid {
  height: 160px;
}

.values .box h3 {
  font-size: 24px;
  color: #9a3412;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .box:hover {
  box-shadow: 0px 0 30px rgba(234, 88, 12, 0.08);
}

.values .box:hover img {
  transform: scale(1);
}

.values ul {
  list-style: none;
  text-align: left;
  padding: 0;
}

.values ul li {
  padding-bottom: 10px;
}

.values ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #c2410c;
}

/*--------------------------------------------------------------
# O e-legitymacji
--------------------------------------------------------------*/
.about-school-id-card .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(234, 88, 12, 0.08);
  transition: 0.3s;
  height: 100%;
}

.about-school-id-card .feature-box h3 {
  font-size: 18px;
  color: var(--color-header);
  font-weight: 700;
  margin: 0;
}

.about-school-id-card .feature-box i {
  line-height: 0;
  background: #f3dcd3;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.about-school-id-card .feature-box:hover i {
  background: #9a3412;
  color: #fff;
}

.about-school-id-card .feature-icons {
  margin-top: 20px;
  margin-bottom: 30px;
}

.about-school-id-card .feature-icons h3 {
  color: var(--color-header);
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .about-school-id-card .feature-icons h3 {
    font-size: 28px;
  }
}

.about-school-id-card .feature-icons .content .icon-box {
  display: flex;
}

.about-school-id-card .feature-icons .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--color-header);
}

.about-school-id-card .feature-icons .content .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--color-secondary);
  margin-right: 15px;
}

.about-school-id-card .feature-icons .content .icon-box p {
  font-size: 15px;
  color: #848484;
}

.about-school-id-card .regulation ul li {
  list-style-type: none;
}

.about-school-id-card i {
  color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Online order
--------------------------------------------------------------*/
.online-order .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(234, 88, 12, 0.08);
  transition: 0.3s;
  height: 100%;
}

.online-order .feature-box h3 {
  font-size: 18px;
  color: #9a3412;
  font-weight: 700;
  margin: 0;
}

.online-order .feature-box i {
  line-height: 0;
  background: #f3dcd3;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.online-order .feature-box:hover i {
  background: #9a3412;
  color: #fff;
}

.online-order .feature-icons {
  margin-top: 20px;
  margin-bottom: 30px;
}

.online-order .feature-icons h3 {
  color: #7c2d12;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .online-order .feature-icons h3 {
    font-size: 28px;
  }
}

.online-order .feature-icons .content .icon-box {
  display: flex;
}

.online-order .feature-icons .content .icon-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #7c2d12;
}

.online-order .feature-icons .content .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--color-secondary);
  margin-right: 15px;
}

.online-order .feature-icons .content .icon-box p {
  font-size: 15px;
  color: #848484;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .content+.content {
  margin-top: 50px;
}

.pricing .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #7c2d12;
}

.pricing .content ul {
  list-style: none;
  padding: 0;
}

.pricing .content ul li {
  padding-bottom: 10px;
}

.pricing .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.pricing .content p:last-child {
  margin-bottom: 0;
}

.pricing .table tbody {
  --bs-table-striped-bg: #f3dcd3;
}

.pricing tbody th {
  color: #7c2d12;
}

.pricing .table thead {
  --bs-table-bg: var(--color-primary);
  --bs-table-color: #fff;
}

/*--------------------------------------------------------------
# Pricing Postage
--------------------------------------------------------------*/
.pricing-postage .row {
  padding-top: 40px;
}

.pricing-postage .box {
  padding: 60px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  position: relative;
  text-align: center;
}

.pricing-postage .featured-badge {
  display: inline-block;
  position: absolute;
  top: -11px;
  left: calc(50% - 49px);
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  line-height: 1;
  border-radius: 50px;
  padding: 4px 20px 5px 20px;
  font-size: 12px;
  text-transform: uppercase;
}

.pricing-postage h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing-postage h4 {
  font-size: 24px;
  color: var(--color-primary);
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing-postage h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing-postage i {
  font-size: 52px;
  padding-top: 15px;
  color: var(--color-primary);
}

.pricing-postage ul {
  padding: 0;
  padding-left: 60px;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing-postage ul li {
  padding-bottom: 12px;
}

.pricing-postage ul i {
  color: var(--color-primary);
  font-size: 18px;
  padding-right: 4px;
}

.pricing-postage ul .na {
  color: #ccc;
}

.pricing-postage ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing-postage .get-started-btn {
  background: #7c2d12;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
}

.pricing-postage .get-started-btn:hover {
  background: var(--color-primary);
}

.pricing-postage .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
  border: 1px solid var(--color-primary);
}

.pricing-postage .featured .get-started-btn {
  background: var(--color-primary);
}

.pricing-postage .featured .get-started-btn:hover {
  background: var(--color-primary);
}

@media (max-width: 992px) {
  .pricing-postage .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing-postage .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing-postage .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/* Call-to-action Section - Home Page
------------------------------*/
.call-to-action {
  --default-color: var(--color-primary);
  background-color: var(--color-primary);
  padding: 80px 0;
  position: relative;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.call-to-action:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
}

.call-to-action p {
  color: #f3dcd3;
}

.call-to-action a {
  color:#fff;
}

.call-to-action a:hover {
  color: #f3dcd3;
}

.call-to-action .cta-btn {
  font-family: #fff;
  font-weight: 600;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
}

.how-order {
  background-color: #faf0eb;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio {
  background-color: #faf0eb;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: 1s;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}


/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 15px 20px 0;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: #7c2d12;
  text-align: left;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  background: none;
  color: #7c2d12;
  border-bottom: 0;
}

.faq .accordion-body a {
  color:#7c2d12;
}

.faq .accordion-body a:hover {
  color: var(--color-secondary);
}

.faq .accordion-body {
  padding: 0 0 25px 0;
  border: 0;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #9a3412;
  border-radius: 50%;
  padding: 8px;
  border: 2px solid;
}

.contact .info-box a {
  color: #7c2d12;
}

.contact .info-box a:hover {
  color: var(--color-secondary);
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #c2410c;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--color-secondary);
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #7c2d12;
  color: var(--color-header);
  font-size: 14px;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--color-dark);
  z-index: 1;
}

#footer .footer-top {
  position: relative;
  z-index: 2;
  padding: 50px 0;
}

#footer .footer-top h4 {
  font-size: 14x;
  font-weight: 500;
  color: #4e4e4e;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding-bottom: 0;
  margin-bottom: 0;
}

#footer .footer-top p {
  font-size: 15;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding-left: 0;
  padding-right: 0;
  padding-top: 20px;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  list-style: none;
  padding-right: 2px;
  color: #9a3412;
  font-size: 12px;
  line-height: 0;
}

#footer .footer-top .footer-links ul li {
  list-style: none;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #4e4e4e;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--color-secondary);
}

#footer .footer-bottom {
  z-index: 2;
  position: relative;
  padding-top: 20px;
  padding-bottom: 40px;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    padding: 5px;
    float: none;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Ikony zakładek – odcienie pomarańczowe (strona główna)
--------------------------------------------------------------*/
.features-teachers-id .nav-link:not(.active) i.color-cyan {
  color: #9a3412 !important;
}

.features-teachers-id .nav-link:not(.active) i.color-indigo {
  color: #9a3412 !important;
}

.features-teachers-id .nav-link:not(.active) i.color-teal {
  color: #c2410c !important;
}

.features-teachers-id .nav-link:not(.active) i.color-red {
  color: #c2410c !important;
}

.features-teachers-id .nav-link:not(.active) i.color-blue {
  color: #b45309 !important;
}

.features-teachers-id .nav-link:not(.active) i.color-orange {
  color: #9a3412 !important;
}