/* =================================
------------------------------------
  Unica - University Template
  Version: 1.0
 ------------------------------------ 
 ====================================*/

/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/
.header {
  z-index: 988 !important;
  width: 100%;
}
@font-face {
  font-family: "WAT-regular";
  src: url("../fonts/WATstyle-Regular.eot"); /* IE9 Compat Modes */
  src: url("../fonts/WATstyle-Regular.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ /*url('../fonts/WATstyle-Regular.woff2') format('woff2'), /* Super Modern Browsers */ /*url('../fonts/WATstyle-Regular.woff') format('woff'), /* Pretty Modern Browsers */
      url("../fonts/WATstyle-Regular.ttf") format("truetype"),
    /* Safari, Android, iOS */ url("../fonts/WATstyle-Regular.svg#svgFontName") format("svg"); /* Legacy iOS */
}

@font-face {
  font-family: "WAT-light";
  src: url("../fonts/WATstyle-Light.eot"); /* IE9 Compat Modes */
  src: url("../fonts/WATstyle-Light.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ /*url('../fonts/WATstyle-Light.woff2') format('woff2'), /* Super Modern Browsers */ /*url('../fonts/WATstyle-Light.woff') format('woff'), /* Pretty Modern Browsers */
      url("../fonts/WATstyle-Light.ttf") format("truetype"),
    /* Safari, Android, iOS */ url("../fonts/WATstyle-Light.svg#svgFontName") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "WAT-lta";
  src: url("../fonts/WATstyle-LigIta.eot"); /* IE9 Compat Modes */
  src: url("../fonts/WATstyle-LigIta.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ /*url('../fonts/WATstyle-LigIta.woff2') format('woff2'), /* Super Modern Browsers */ /*url('../fonts/WATstyle-LigIta.woff') format('woff'), /* Pretty Modern Browsers */
      url("../fonts/WATstyle-LigIta.ttf") format("truetype"),
    /* Safari, Android, iOS */ url("../fonts/WATstyle-LigIta.svg#svgFontName") format("svg"); /* Legacy iOS */
}

html,
body {
  height: 100%;
  font-family: "WAT-regular";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0f1a27;
  margin: 0;
  font-weight: 400;
  font-family: "WAT-regular";
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
  line-height: 1.2;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 14px;
}

p {
  font-size: 16px;
  color: #636363;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  color: rgb(13, 86, 46);
  padding: 0;
  margin: 0;
  margin-left: 1.5rem;
}

ul.ban {
  list-style-type: square;
   color: rgb(13, 86, 46);
  padding: 0;
  margin: 0;
  margin-left: 1.5rem;
}

/*---------------------
	Helper CSS
-----------------------*/

.spad {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title {
  margin-bottom: 70px;
}

.section-title h3 {
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 0;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #0f1a27;
}

/*---------------------
	Commom elements
-----------------------*/

/* Buttons */

.site-btn {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  background: #b30039;
  color: #fff;
  padding: 18px 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  border-radius: 50px;
  min-width: 170px;
  text-align: center;
  border: none;
  cursor: pointer;
}

/* Image Popup */

.img-popup-warp .mfp-content,
.img-popup-warp.mfp-ready.mfp-removing .mfp-content {
  opacity: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.img-popup-warp.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* Preloder */

#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #fff;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

/*---------------------
	Header section
-----------------------*/
.header-top {
  background-image: url("../img/pasek2.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.header-section {
  padding: 0px 0px 0px 0px;
  overflow: hidden;
}

.site-logo {
  display: inline-block;
}

.header-info {
  display: inline-block;
  text-align: center;
  width: calc(100% - 21rem);
  vertical-align: middle;
}

.header-info .hf-item {
  display: inline-block;
  margin-left: 35px;
}

.header-info .hf-item i {
  width: 45px;
  height: 45px;
  display: inline-block;
  position: relative;
  text-align: center;
  color: #b30039;
  font-size: 17px;
  padding-top: 13px;
  margin-right: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.header-info .hf-item i:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid #d2d2db;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 2px;
}

.header-info .hf-item p {
  display: inline-block;
  position: relative;
  top: 10px;
  margin-bottom: 0;
}

.header-info .hf-item p span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #0f1a27;
  font-weight: 500;
}

.nav-switch {
  display: none;
}

.nav-section {
  background: #0f1a27;
}

.nav-section .nav-right {
  float: right;
  padding-top: 23px;
}

.nav-section .nav-right a {
  color: #fff;
  margin-left: 30px;
  font-size: 16px;
}

.main-menu {
  list-style: none;
}

.main-menu li {
  display: inline;
}

.main-menu li a {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 25px 20px;
  margin-right: -5px;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.main-menu li a:hover {
  background: #b30039;
}

.main-menu li.active a {
  background: #b30039;
}

/*---------------------
	Hero Section
-----------------------*/
@media print, screen and (min-width: 1024px) {
  .hero-section {
    padding-top: 21rem;
    background-color: rgb(33, 37, 41);
  }
  .short-baner {
    padding-top: 21rem;
    background-color: rgb(33, 37, 41);
  }
}
@media print, screen and (max-width: 1024px) {
  .hero-section {
    padding-top: 11rem;
  }
}
.hs-item {
  min-height: 560px;
  position: relative;
  display: table;
  width: 100%;
}

.hs-item .hs-text {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  z-index: 2;
}

.hs-item .hs-subtitle {
  font-size: 16px;
  text-transform: uppercase;
  color: #b30039;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 30px;
  position: relative;
  opacity: 0;
  top: 50px;
}

.hs-item .hs-title {
  color: #fff;
  font-size: 48px;
  margin-bottom: 25px;
  position: relative;
  left: 150px;
  opacity: 0;
}

.hs-item .hs-des {
  color: #fff;
  font-size: 16px;
  line-height: 2;
  position: relative;
  left: 150px;
  opacity: 0;
}

.hs-item .site-btn {
  margin-top: 30px;
  opacity: 0;
  top: 50px;
}

.owl-item.active .hs-item .hs-title,
.owl-item.active .hs-item .hs-des,
.owl-item.active .hs-item .hs-subtitle,
.owl-item.active .hs-item .site-btn {
  left: 0;
  top: 0;
  opacity: 1;
}

.owl-item.active .hs-item .hs-subtitle {
  -webkit-transition: all 0.5s ease 0.4s;
  -o-transition: all 0.5s ease 0.4s;
  transition: all 0.5s ease 0.4s;
}

.owl-item.active .hs-item .hs-title {
  -webkit-transition: all 0.5s ease 0.6s;
  -o-transition: all 0.5s ease 0.6s;
  transition: all 0.5s ease 0.6s;
}

.owl-item.active .hs-item .hs-des {
  -webkit-transition: all 0.5s ease 0.8s;
  -o-transition: all 0.5s ease 0.8s;
  transition: all 0.5s ease 0.8s;
}

.owl-item.active .hs-item .site-btn {
  -webkit-transition: all 0.5s ease 1s;
  -o-transition: all 0.5s ease 1s;
  transition: all 0.5s ease 1s;
}

.hero-slider .owl-dots {
  position: absolute;
  width: 100%;
  bottom: 30px;
  left: 0;
  z-index: 1;
  text-align: center;
}

.hero-slider .owl-dots .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #fff;
  margin: 0 5px;
}

.hero-slider .owl-dots .owl-dot.active {
  background: #b30039;
}
/*---------------------
	Short-baner Section
-----------------------*/

.short-baner h2 {
  color: white;
  text-align: center;
  margin-top: 20%;
  font-size: 50px;
}
.short-baner .set-bg {
  height: 400px;
}
/*---------------------
	Counter Section
-----------------------*/

.counter-section {
  background: #0f1a27;
  padding: 40px 0;
}

.counter-section .big-icon {
  display: block;
  float: left;
  width: 71px;
  height: 71px;
  border-radius: 70px;
  background: #fff;
  text-align: center;
  padding-top: 20px;
  margin-right: 15px;
}

.counter-section .big-icon i {
  font-size: 30px;
  color: #b30039;
}

.counter-section .counter {
  padding-left: 40px;
}

.counter-section .counter .counter-item {
  min-width: 100px;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  border-right: 1px solid #35335a;
  text-align: center;
  display: inline-block;
}

.counter-section .counter .counter-item:last-child {
  border-right: none;
}

.counter-section .counter .counter-item h4 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 4px;
}

.counter-content {
  padding-left: 90px;
}

.counter-content h2 {
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-top: 10px;
}

.counter-content p {
  text-transform: uppercase;
  color: #fff;
}

.counter-content p i {
  color: #b30039;
  margin-right: 10px;
}

/*---------------------
	Service Section
-----------------------*/

.services {
  margin-bottom: -50px;
}

.service-item {
  margin-bottom: 50px;
}

.service-item .service-icon {
  width: 45px;
  float: left;
}

.service-item .service-icon img {
  max-width: 100%;
}

.service-item .service-content {
  padding-left: 75px;
}

.service-item .service-content h4 {
  margin-bottom: 15px;
  font-weight: 400;
}

/*---------------------
	Enroll Section
-----------------------*/

.recrutation {
  list-style: none;
}

.recrutation p {
  margin-bottom: 0.5rem;
}

.enroll-section {
  position: relative;
}

.enroll-section:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.8;
}

.enroll-section .container {
  position: relative;
  z-index: 1;
}

.enroll-section .section-title {
  margin-bottom: 40px;
}

.enroll-list-item {
  padding-left: 70px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.enroll-list-item span {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
  text-align: center;
  border-radius: 50px;
  background: #b30039;
  font-size: 16px;
  font-weight: 500;
  padding-top: 10px;
}

.enroll-list-item h5 {
  font-weight: 400;
  margin-bottom: 10px;
}

.enroll-list-item:after {
  position: absolute;
  content: "";
  height: calc(100% - 45px);
  left: 20px;
  top: 48px;
  border-left: 1px dashed #6c6e70;
}

.enroll-list-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.enroll-list-item:last-child:after {
  display: none;
}

/*---------------------
	Courses Section
-----------------------*/

.course-item {
  margin-bottom: 50px;
}

.beznapisu .course-item .course-thumb {
  margin-bottom: 15px;
  position: relative;
}

.course-item .course-thumb {
  margin-bottom: 45px;
  position: relative;
}

.course-item .course-thumb img {
  min-width: 100%;
}

.course-item .course-thumb .course-cat {
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
  bottom: -19px;
}

.course-item .course-thumb .course-cat span {
  min-width: 150px;
  bottom: 0;
  background: #b30039;
  padding: 10px 15px;
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  border-radius: 50px;
  letter-spacing: 2px;
}

.course-item .course-info {
  text-align: center;
  margin: 0 -15px;
}

.course-item .course-info .date {
  color: #b30039;
  font-size: 14px;
  margin-bottom: 10px;
}

.course-item .course-info h4 {
  font-weight: 400;
  line-height: 1.3;
}

.course-item .course-info .cource-price {
  padding-top: 15px;
  color: #b30039;
}

.course-item .course-info .cource-price span {
  font-size: 14px;
  font-weight: 500;
  color: #b7b7b7;
}

/*---------------------
	Fact Section
-----------------------*/

.fact-section {
  background-position: center center;
  position: relative;
}

.fact-section:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.8;
}

.fact-section .container {
  position: relative;
  z-index: 1;
}

.fact {
  text-align: center;
}

.fact-icon {
  font-size: 48px;
  color: #fff;
  width: 50px;
  display: inline-block;
}

.fact-text {
  padding-left: 20px;
  display: inline-block;
  text-align: left;
}

.fact-text h2 {
  color: #b30039;
  font-weight: 400;
}

.fact-text p {
  margin-bottom: 0;
  text-transform: uppercase;
  color: #fff;
}

/*---------------------
	Event Section
-----------------------*/

.event-item {
  margin-bottom: 30px;
}

.event-item .event-thumb {
  position: relative;
}

.event-item .event-thumb img {
  min-width: 100%;
}

.event-item .event-thumb .event-date {
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
  bottom: -19px;
}

.event-item .event-thumb .event-date span {
  min-width: 170px;
  bottom: 0;
  background: #b30039;
  padding: 10px 15px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  border-radius: 50px;
  letter-spacing: 2px;
}

.event-item .event-info {
  text-align: center;
}

.event-item .event-info h4 {
  margin-bottom: 20px;
  font-weight: 400;
}

.event-item .event-info p {
  margin-bottom: 30px;
}

.event-item .event-info p i {
  color: #b30039;
  padding-left: 13px;
  padding-right: 4px;
}

.event-item .event-info .event-readmore {
  font-size: 13px;
  text-transform: uppercase;
  color: #b7b7b7;
  letter-spacing: 2px;
  font-weight: 500;
}

.event-item .event-info .event-readmore i {
  color: #b30039;
}

/*---------------------
	Gallery Section
-----------------------*/

.gallery .gallery-item {
  width: 12.5%;
  position: relative;
}

.gallery .gallery-item:after {
  content: "";
  display: block;
  clear: both;
}

.gallery .gallery-item:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.gallery .gallery-item:hover:before {
  opacity: 0.3;
}

.gallery .gallery-item.gi-big,
.gallery .gallery-item.gi-long {
  width: 25%;
}

.gallery .gallery-item a {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(246, 120, 58, 0.9);
  color: #fff;
  left: 50%;
  top: 60%;
  margin-left: -25px;
  margin-top: -25px;
  border-radius: 50%;
  padding-top: 13px;
  text-align: center;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.gallery .gallery-item a i {
  font-size: 24px;
}

.gallery .gallery-item:hover a {
  opacity: 1;
  top: 50%;
  -webkit-transition: all 0.4s cubic-bezier(0.55, 0.09, 0.68, 0.53) 0s;
  -o-transition: all 0.4s cubic-bezier(0.55, 0.09, 0.68, 0.53) 0s;
  transition: all 0.4s cubic-bezier(0.55, 0.09, 0.68, 0.53) 0s;
}

.gallery .grid-sizer {
  width: 12.5%;
}

/*---------------------
	Blog Section
-----------------------*/

.blog-item {
  margin-bottom: 60px;
  overflow: hidden;
}

.blog-item .blog-thumb {
  width: 230px;
  height: 170px;
  float: left;
}

.blog-item .blog-content {
  padding-left: 258px;
}

.blog-item .blog-content h4 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-item .blog-meta {
  margin-bottom: 15px;
}

.blog-item .blog-meta span {
  margin-right: 10px;
  font-size: 12px;
  color: #b7b7b7;
}

.blog-item .blog-meta span i {
  color: #b30039;
  margin-right: 3px;
}

/*---------------------
	Newsletter Section
-----------------------*/

.newsletter-section {
  background: #f7f7f7;
  padding: 50px 0;
}

.newsletter-section .newsletter {
  position: relative;
  margin-top: 12px;
}

.newsletter-section .newsletter input {
  width: 100%;
  font-size: 14px;
  padding: 18px 30px;
  border: none;
  border-radius: 50px;
  padding-right: 170px;
}

.newsletter-section .newsletter .site-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-radius: 0px 50px 50px 0px;
  min-width: 150px;
}

/*---------------------
	Footer Section
-----------------------*/

.footer-section {
  background-color: #0f1a27;
  background-image: url("../img/footer-bg.png");
  background-repeat: no-repeat;
  background-position: center 75px;
}

.footer-section .footer-top {
  padding: 65px 15px;
}

.footer-section .copyright {
  border-top: 1px solid #312f56;
  padding: 27px 0;
  text-align: center;
}

.footer-section .copyright p {
  color: #b7b7b7;
  margin-bottom: 0;
}

.footer-section .copyright p a {
  color: #fff;
  font-weight: 500;
}

.footer-section .copyright p a:hover {
  color: #b30039;
}

.footer-widget .fw-title {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 25px;
  padding-top: 10px;
}

.footer-widget p,
.footer-widget span {
  color: #b7b7b7;
}

.footer-widget ul {
  list-style: none;
}

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

.footer-widget .about-widget p {
  margin-bottom: 35px;
}

.footer-widget .social a {
  color: #b7b7b7;
  margin-right: 15px;
}

.footer-widget .dobule-link ul {
  display: inline-block;
}

.footer-widget .dobule-link ul a {
  display: block;
  font-size: 14px;
  color: #b7b7b7;
  margin-bottom: 15px;
}

.footer-widget .dobule-link ul a:hover {
  color: #b30039;
}

.footer-widget .dobule-link ul li:last-child a {
  margin-bottom: 0;
}

.footer-widget .dobule-link ul:last-child {
  margin-left: 0px;
}

.footer-widget .recent-post li {
  margin-bottom: 25px;
}

.footer-widget .recent-post p {
  margin-bottom: 5px;
}

.footer-widget .recent-post span {
  font-size: 12px;
}

.footer-widget .recent-post span i {
  color: #b30039;
  margin-right: 5px;
}

.footer-widget .contact li {
  margin-bottom: 15px;
  display: block;
}

.footer-widget .contact li p {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.footer-widget .contact i {
  font-size: 1.5rem;
}

/*---------------------
	Other Pages
----------------------
======================*/

.site-breadcrumb {
  padding: 60px 0;
  color: #b7b7b7;
  font-size: 18px;
}

.site-breadcrumb a {
  color: #111111;
}

.site-breadcrumb a i {
  margin: 0;
}

.site-breadcrumb i {
  margin: 0 10px;
}

.site-pageination {
  list-style: none;
}

.site-pageination li {
  display: inline;
  text-align: center;
}

.site-pageination li a {
  display: inline-block;
  min-width: 40px;
  height: 40px;
  border: 1px solid #e1e1e1;
  color: #636363;
  padding-top: 9px;
  font-size: 14px;
  margin-right: 14px;
  border-radius: 2px;
}

.site-pageination li a:hover,
.site-pageination li a.active {
  background: #b30039;
  border-color: #b30039;
  color: #fff;
}

/*---------------------
	About page
-----------------------*/

.about-text h5 {
  font-weight: 400;
  margin-bottom: 12px;
}

.about-text .about-list {
  list-style: none;
  padding-top: 10px;
}

.about-text .about-list li {
  font-size: 14px;
  color: #636363;
  margin-bottom: 10px;
}

.about-text .about-list li i {
  color: #b30039;
}

.testimonial-section {
  background: #f7f7f7;
}

.testimonial-slider .ts-author-pic {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 5px auto 0;
}

.testimonial-slider .ts-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial-slider .ts-text h5 {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.testimonial-slider .ts-text span {
  color: #b30039;
  font-size: 14px;
}

.testimonial-slider .owl-nav {
  position: absolute;
  top: 35px;
  width: 180px;
  left: 40px;
}

.testimonial-slider .owl-prev {
  float: left;
}

.testimonial-slider .owl-next {
  float: right;
}

.testimonial-slider .owl-prev,
.testimonial-slider .owl-next {
  font-size: 36px;
  color: #b7b7b7;
}

.testimonial-slider .owl-dots {
  position: absolute;
  left: -15px;
  bottom: -5px;
  width: 25%;
  padding: 0 15px;
  text-align: center;
}

.testimonial-slider .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background: #b7b7b7;
  display: inline-block;
  margin: auto 5px;
}

.testimonial-slider .owl-dots .owl-dot.active {
  background: #b30039;
}

.member {
  text-align: center;
}

.member h4 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 5px;
}

.member p {
  color: #636363;
  margin-bottom: 1.5em;
  font-weight: 14;
}

.member:hover .member-pic:after {
  opacity: 0.4;
}

.member:hover .member-social {
  opacity: 1;
}

.member:hover .member-social a {
  top: 0;
}

.member:hover .member-social a:nth-child(1) {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.member:hover .member-social a:nth-child(2) {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.member:hover .member-social a:nth-child(3) {
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.member .member-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.member .member-pic:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.member .member-social {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  margin-top: -6px;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.member .member-social a {
  padding: 0 5px;
  margin: auto 5px;
  color: #fff;
  position: relative;
  top: -20px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.member .member-social a:hover {
  color: #b30039;
}

/*---------------------
	Blog Page
-----------------------*/

.post-item {
  margin-bottom: 60px;
}

.post-item .post-thumb {
  height: 320px;
  margin-bottom: 40px;
}

.post-item .post-thumb-full {
  margin-bottom: 40px;
}

.post-item .post-content h3 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 10px;
}

.post-item .post-content h3 a {
  color: #111111;
  margin-bottom: 10px;
}

.post-item .post-content p,
.post-item .post-content blockquote {
  text-align: justify;
}

.post-item .post-content p {
  margin-bottom: 0;
}

.post-item .post-meta {
  margin-bottom: 10px;
}

.post-item .post-meta span {
  margin-right: 10px;
  font-size: 14px;
  color: #b7b7b7;
}

.post-item .post-meta span i {
  color: #b30039;
}

.post-item .tag {
  padding-top: 15px;
  padding-bottom: 40px;
  font-size: 12px;
  text-transform: uppercase;
  color: #b7b7b7;
}

.post-item .tag i {
  color: #b30039;
  margin-right: 5px;
}

.post-item .post-author {
  padding: 40px 0;
  border-top: 1px solid #f5f5f5;
}

.post-item .post-author .pa-thumb {
  float: left;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.post-item .post-author .pa-content {
  padding-left: 130px;
  padding-top: 5px;
}

.post-item .post-author .pa-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.comment-warp {
  padding-top: 40px;
  border-top: 1px solid #f5f5f5;
}

.comment-warp .comment-title {
  font-weight: 400;
  margin-bottom: 35px;
}

.comment-warp .comment-list {
  list-style: none;
}

.comment-warp .comment-list .replay-comment-list {
  list-style: none;
  margin-left: 14%;
}

.comment-warp .comment {
  margin-bottom: 40px;
}

.comment-warp .comment .comment-avator {
  float: left;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.comment-warp .comment .comment-content {
  padding-left: 100px;
}

.comment-warp .comment .comment-content .c-date {
  font-size: 12px;
  text-transform: uppercase;
  color: #b7b7b7;
  margin-bottom: 5px;
  display: block;
}

.comment-warp .comment .comment-content h5 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 400;
}

.comment-warp .comment .comment-content p {
  margin-bottom: 0;
}

.comment-warp .comment .comment-content .c-btn {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  border: 1px solid #e1e1e1;
  color: #111111;
  padding: 5px 25px;
  border-radius: 2px;
  margin-right: 5px;
  margin-top: 15px;
}

.comment-warp .comment .comment-content .c-btn:hover {
  border-color: #b30039;
  background: #b30039;
  color: #fff;
}

.comment-form-warp {
  padding: 40px 0;
  border-top: 1px solid #f5f5f5;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100%;
  border: 1px solid #cccccc;
  font-size: 14px;
  padding: 18px 20px;
  margin-bottom: 30px;
  border-radius: 2px;
}

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

.comment-form.--contact input[type="text"],
.comment-form.--contact input[type="email"],
.comment-form.--contact textarea {
  border: 1px solid #e1e1e1;
}

.comment-form.--contact textarea {
  margin-bottom: 50px;
}

.widget {
  margin-bottom: 55px;
  margin-left: -19px;
}

.widget .widget-title {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 30px;
}

.widget ul {
  list-style: none;
}

.widget ul a {
  font-size: 14px;
  color: #636363;
  margin-bottom: 10px;
  padding: 5px 0;
  display: inline-block;
}

.widget ul a:hover {
  color: #b30039;
}

.widget .search-widget {
  position: relative;
}

.widget .search-widget input {
  width: 100%;
  border: 1px solid #9d9d9d;
  padding: 10px 15px;
  padding-right: 55px;
  font-size: 14px;
}

.widget .search-widget button {
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  border: none;
  width: 50px;
  padding-top: 5px;
  color: #b7b7b7;
  background-color: transparent;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.widget .recent-post-widget .rp-item {
  display: flex;
  overflow: hidden;
  align-items: center;
  border-bottom: 1px solid #373737;
  padding: 1rem 0;
}

.widget .recent-post-widget .rp-thumb {
  width: 80px;
  height: 80px;
  float: left;
  margin-right: 2rem;
}

.widget .recent-post-widget .rp-content {
  overflow: hidden;
  width: calc(100% - 80px - 2rem);
}

.widget .recent-post-widget .rp-content p {
  color: #b7b7b7;
  margin: 0;
  display: block;
  font-size: 1.5rem;
  width: 100%;
  float: left;
}

.widget .recent-post-widget .rp-content p i {
  color: #b30039;
  margin-right: 1rem;
}

.widget .recent-post-widget .rp-content h6 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
  display: block;
  width: 100%;
  float: left;
}

.widget .tags a {
  min-width: 80px;
  text-transform: uppercase;
  display: inline-block;
  font-size: 10px;
  line-height: 10px;
  color: #636363;
  padding: 12px 15px;
  border: 1px solid #b30039;
  margin-right: 5px;
  margin-bottom: 8px;
  text-align: center;
  border-radius: 2px;
}

.post-item.post-details {
  margin-bottom: 0;
}

.post-item.post-details p {
  margin-bottom: 15px;
}

.post-item.post-details blockquote {
  padding: 25px 30px;
  font-size: 1.5rem;
  font-style: italic;
  color: #111111;
  border-left: 3px solid #b30039;
  box-shadow: 8px 8px 24px 0px #42445a;
  margin: 40px 0 35px;
}

/*---------------------
	Contact page
-----------------------*/

.map-section {
  height: 500px;
  position: relative;
}

.map-section .map {
  height: 100%;
}

.contact-info-warp {
  position: absolute;
  width: 400px;
  height: 100%;
  background: rgba(2, 0, 49, 0.8);
  text-align: center;
  z-index: 1;
  padding-top: 70px;
}

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

.contact-info-warp .contact-info h4 {
  color: #fff;
  font-weight: 400;
  margin-bottom: 8px;
}

.contact-info-warp .contact-info p {
  color: #fff;
  margin-bottom: 0;
}

/*------------------
	Responsive
---------------------*/

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 35px;
  }

  .counter-section .counter {
    padding-left: 20px;
  }
  .counter-section .counter .counter-item {
    min-width: 80px;
  }
  .counter-section .counter .counter-item h4 {
    font-size: 35px;
  }
  .widget {
    margin-left: 0;
  }
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 30px;
  }
  .header-info {
    width: 70%;
  }
  .main-menu li a {
    font-size: 12px;
    padding: 20px 15px;
  }
  .header-info .hf-item i {
    float: left;
  }
  .header-info .hf-item p {
    display: block;
  }
  .hs-item {
    height: auto;
    min-height: auto;
    padding: 140px 0;
  }
  .counter-section .counter {
    padding-top: 15px;
    padding-left: 0;
  }
  .counter-section .counter .counter-item {
    min-width: 70px;
  }
  .counter-section .counter .counter-item h4 {
    font-size: 27px;
  }
  .gallery .gallery-item,
  .gallery .gallery-item.gi-big,
  .gallery .gallery-item.gi-long {
    width: 25%;
  }
  .footer-widget {
    margin-bottom: 40px;
  }
  .testimonial-slider .owl-nav {
    left: -16px;
  }

  .member {
    margin-bottom: 40px;
  }
  .sidebar {
    padding-top: 80px;
  }
  .widget {
    margin-left: 0;
  }
  .course-item {
    margin-bottom: 0px;
  }
  .course-item .course-thumb {
    margin-bottom: 10px;
    margin-top: 40px;
  }
  .section-title {
    margin-bottom: 20px;
  }
  .footer-section .footer-top {
    padding-bottom: 15px;
  }
  .short-baner h2 {
    font-size: 40px;
  }
  .site-breadcrumb {
    padding: 40px 0;
  }
  .sidebar {
    padding-top: 10px;
  }
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
  .header-info {
    display: none;
  }
  .site-logo {
    padding: 15px 0;
  }
  .nav-switch {
    position: absolute;
    right: 30px;
    font-size: 30px;
    color: #111;
    top: 25px;
    display: block;
  }
  .nav-section .nav-right {
    display: block;
    float: none;
    text-align: right;
    padding-bottom: 20px;
  }
  .main-menu {
    display: none;
  }
  .main-menu li {
    display: block;
  }
  .main-menu li a {
    padding: 15px;
    display: block;
    border-top: 1px solid #212031;
  }
  .main-menu li a:hover {
    background-color: transparent;
    color: #b30039;
  }
  .main-menu li.active a {
    background-color: transparent;
  }
  .hs-item {
    min-height: auto;
    padding: 100px 0;
  }
  .hs-item .hs-title {
    font-size: 40px;
  }
  .short-baner h2 {
    margin-top: 15%;
  }
  .short-baner .set-bg {
    height: 300px;
  }
  .counter-section .counter {
    float: none;
    padding-top: 30px;
    padding-left: 0;
    text-align: center;
  }

  .gallery .gallery-item,
  .gallery .gallery-item.gi-big,
  .gallery .gallery-item.gi-long {
    width: 50%;
  }
  .fact {
    text-align: left;
    margin-bottom: 15px;
  }
  .footer-widget {
    margin-bottom: 40px;
  }
  .testimonial-slider .owl-nav {
    left: 50%;
    margin-left: -90px;
  }
  .testimonial-slider .owl-dots {
    text-align: center;
    width: 100%;
    left: 0;
    bottom: 0;
  }
  .testimonial-slider .ts-author-pic {
    margin: 5px auto 30px;
  }
  .testimonial-slider .ts-item {
    text-align: center;
    padding-bottom: 50px;
  }

  .sidebar {
    padding-top: 80px;
  }
  .widget {
    margin-left: 0;
  }
  .map-section {
    height: auto;
  }
  .contact-info-warp {
    position: relative;
    height: auto;
    display: block;
    width: 100%;
    padding-bottom: 70px;
  }
  .map-section .map {
    height: 300px;
  }
  .course-item {
    margin-bottom: 0px;
  }
  .course-item .course-thumb {
    margin-bottom: 10px;
    margin-top: 50px;
  }
  .member .member-pic {
    margin-bottom: 0px;
  }
  .member {
    margin-bottom: 0px;
    margin-top: 40px;
  }
  .section-title {
    margin-bottom: 20px;
  }
  .footer-section .footer-top {
    padding-bottom: 15px;
  }
  .short-baner h2 {
    font-size: 35px;
  }
  .site-breadcrumb {
    padding: 40px 0;
  }
  .sidebar {
    padding-top: 10px;
  }
}

/* small Mobile :320px. */

@media only screen and (max-width: 479px) {
  .hs-item .hs-title {
    font-size: 27px;
  }
  .short-baner h2 {
    margin-top: 10%;
  }
  .short-baner .set-bg {
    height: 200px;
  }
  .counter-section .counter .counter-item {
    min-width: 65px;
  }
  .counter-section .counter .counter-item h4 {
    font-size: 25px;
  }
  .course-item .course-info {
    margin: 0;
  }
  .course-item .course-thumb {
    margin-bottom: 10px;
    margin-top: 50px;
  }
  .blog-item .blog-thumb {
    height: 230px;
    width: 100%;
    margin-bottom: 20px;
  }
  .blog-item .blog-content {
    padding-left: 0;
  }

  .gallery .gallery-item,
  .gallery .gallery-item.gi-big,
  .gallery .gallery-item.gi-long {
    width: 100%;
  }
  .newsletter-section .newsletter {
    text-align: center;
  }
  .newsletter-section .newsletter input {
    padding-right: 30px;
    margin-bottom: 20px;
    text-align-last: auto;
  }
  .newsletter-section .newsletter .site-btn {
    position: relative;
    border-radius: 50px;
  }
  .post-item .post-author .pa-thumb,
  .comment-warp .comment .comment-avator {
    float: none;
    margin-bottom: 15px;
  }
  .post-item .post-author .pa-content,
  .comment-warp .comment .comment-content {
    padding-left: 0;
  }
  .member .member-pic {
    margin-bottom: 0px;
  }
  .member {
    margin-bottom: 0px;
    margin-top: 40px;
  }
  .section-title {
    margin-bottom: 20px;
  }
  .footer-section .footer-top {
    padding-bottom: 15px;
  }
  .short-baner h2 {
    font-size: 30px;
  }
  .site-breadcrumb {
    padding: 30px 0;
  }
  .sidebar {
    padding-top: 0px;
  }
}

/* mk - added */
body,
p {
  font-size: 20px;
}

.short-baner {
  padding-top: 0 !important;
}
.short-baner {
  margin-bottom: 40px;
}
.short-baner h2 {
  text-align: left !important;
  text-transform: uppercase;
  border-left: 0.7rem solid #b30039;
  padding-left: 20px;
}

#block-views-menus-context-second {
  margin-bottom: 20px;
}

#block-views-menus-context-first h2,
#block-views-menus-context-first-en h2,
#block-views-menus-context-second h2,
#block-views-newsite-news-block-3 .widget-title,
#block-views-newsite-news-block-13 .widget-title {
  text-transform: uppercase;
  border-bottom: 0.7rem solid #b30039;
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 28px;
}

#block-views-menus-context-first a,
#block-views-menus-context-first-en a,
#block-views-menus-context-second a {
  text-transform: uppercase;
  font-size: 20px;
  border-bottom: 1px solid #373737;
  display: block;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.view-newsite-news.view-display-id-page .course-item,
.view-newsite-news-pages .course-item {
  margin-bottom: 20px !important;
}
.view-newsite-news.view-display-id-page .course-info,
.view-newsite-news-pages .course-info {
  margin-top: 10px !important;
}

.view-newsite-news.view-display-id-page .course-info a,
.view-newsite-news-pages .course-info a {
  min-width: 150px;
  bottom: 0;
  background: #b30039;
  padding: 10px 15px;
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  border-radius: 50px;
  letter-spacing: 2px;
  margin-top: 20px;
}

.view-newsite-news.view-display-id-page .pager a,
.view-newsite-news-pages .pager a {
  bottom: 0;
  background: #b30039;
  padding: 10px 15px;
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  border-radius: 50px;
  letter-spacing: 2px;
  margin-top: 20px;
}

.view-newsite-news.view-display-id-page .pager .pager-current,
.view-newsite-news-pages .pager .pager-current {
  bottom: 0;
  padding: 10px 15px;
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  color: #b30039;
  display: inline-block;
  border-radius: 50px;
  border-color: black;
  border: 3px solid #b30039;
  letter-spacing: 2px;
  margin-top: 20px;
}

.view-newsite-news.view-display-id-page img,
.view-newsite-news-pages img {
  width: 100%;
  height: auto;
}

#block-views-newsite-news-block-3 img,
#block-views-newsite-news-block-13 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#block-views-newsite-news-block-3 h4,
#block-views-newsite-news-block-13 h4 {
  font-size: 2rem;
  color: #fff;
}

#block-views-newsite-news-block-3 h4:hover,
#block-views-newsite-news-block-13 h4:hover {
  color: #b30039;
}

.pr-html .text-center p {
  text-align: justify !important;
}
.pr-html p {
  font-size: 16px !important;
}
.pr-html i {
  font-size: 16px !important;
}

.pr-html h3 {
  font-size: 29px !important;
}
.pr-html h4 {
  font-size: 20px !important;
}

/*-----------------
        PB
------------------*/
div.banner-small-imgs-container {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.5rem;
}
div.banner-small-imgs-container img.small-img-banner {
  padding-left: 10px;
  padding-top: 10px;
  width: 80px;
  aspect-ratio: 1/1;
}
div.banner-small-imgs-container img.small-img-banner-wide {
  padding-top: 10px;
  padding-right: 10px;
  width: 300px;
  aspect-ratio: 4/1;
}

div.banner-small-imgs-container img.small-img-banner-wide2 {
  padding-top: 20px;
  padding-right: 20px;
  width: 500px;
  aspect-ratio: 6/1;
}

div.banner-small-imgs-container img.small-img-banner-wide3 {
  padding-top: 10px;
  padding-right: 10px;
  width: 200px;
  aspect-ratio: 3/1;
}

div.banner-small-imgs-container img.small-img-banner-wide4 {
  padding-top: 10px;
  padding-right: 10px;
  width: 200px;
  aspect-ratio: 2/1;
}

table.grid-hours-occupations {
  text-align: center;
  border: 1px solid #0f1a27;
}
table.grid-hours-occupations thead th {
  background-color: #b30039;
  color: white;
  padding: 0.5rem 1rem;
}
.jubilees-photo {
  max-width: 100%;
  max-height: 350px;
  object-fit: cover;
}

.twitter {
  fill: #fff;
}

.card-body .row .my-col {
  font-size: 1.5rem;
  flex: 0 0 calc(100% / 7);
  max-width: calc(100% / 7);
  box-sizing: border-box;
  padding: 1rem 0.5rem;
}
.card-body .my-sec-row {
  background: #ededed;
}
.text-wat-color-red {
  color: #eb2838;
}
.accordion .card-header:after {
  font-family: "FontAwesome";
  content: "\f068";
  float: right;
}
.accordion .card-header.collapsed:after {
  /* symbol for "collapsed" panels */
  content: "\f067";
}

.accordion.accordion-wcy .card {
  border: none;
}
.accordion.accordion-wcy .card-header {
  background: none;
  border: none;
  border-bottom: 1px solid #eb2838;
  cursor: pointer;
  font-size: 18px;
}
.accordion.accordion-wcy .accordion-item-sukcesy {
  border-bottom: 1px dotted #eb2838;
  margin-bottom: 10px;
}
.accordion.accordion-wcy .accordion-item-sukcesy h4 {
  margin: 0px;
  margin-bottom: 5px;
  font-size: 18px !important;
  color: #636363;
}
.wcy-rteam {
  margin-bottom: 20px;
}
.wcy-rteam h3 {
  font-family: "WAT-light";
  text-align: center;
}
.wcy-rteam img {
  width: 300px;
  display: block;
  margin: auto;
}
.wcy-rteam b {
  font-size: 18px;
  text-align: center;
  display: block;
}
.wcy-rteam ul li {
  list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
  text-align: center;
  font-family: "WAT-light";
}
.accordion .card-header:after {
  font-family: "FontAwesome";
  content: "\f068";
  float: right;
}
.accordion .card-header.collapsed:after {
  /* symbol for "collapsed" panels */
  content: "\f067";
}

.accordion.accordion-wcy .card {
  border: none;
}
.accordion.accordion-wcy .card-header {
  background: none;
  border: none;
  border-bottom: 1px solid #eb2838;
  cursor: pointer;
  font-size: 18px;
}
.accordion.accordion-wcy .accordion-item-pub {
  border-bottom: 1px dotted #eb2838;
  margin-bottom: 10px;
}
.accordion.accordion-wcy .accordion-item-pub h4 {
  color: #eb2838;
}
.accordion.accordion-wcy .accordion-item-pub p {
  margin: 0px;
  margin-bottom: 5px;
}
.news-banner-img {
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
}
.news-banner-img .field-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.news-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bigger-card-title {
  font-size: 2rem;
}
.logo-menu {
  width: 100px;
  object-fit: contain;
}
.one-hp-fit-img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.top-clear {
  background: #0f1a27;
}
.external_ul {
  padding-left: 40px;
  margin-bottom: 10px;
}
.internal_ul {
  padding-left: 40px;
}
.section-title-major {
  margin-bottom: 40px;
}
.dziekan-item .img-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.dziekan-item .institute-img {
  width: 300px;
  height: 150px;
  border-radius: 0;
  object-fit: cover;
  margin-bottom: 1rem;
}
.dziekan-item img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: auto;
  display: block;
  object-fit: cover;
}
.dziekan-item h4 {
  text-align: center;
}
.dziekan-item p {
  text-align: center !important;
}
ul.my-list {
  margin: 0;
}
ul.my-list li {
  margin-left: 3rem;
  padding-left: 1rem;
}
ol.my-list {
  margin: 0;
}
ol.my-list li {
  margin-left: 3rem;
  padding-left: 1rem;
}
ol.my-list > li > ol.my-list {
  counter-reset: list;
  margin-bottom: 3rem;
}
ol.my-list > li > ol.my-list > li {
  list-style: none;
  position: relative;
}
ol.my-list > li > ol.my-list > li:before {
  counter-increment: list;
  content: counter(list) ") ";
  position: absolute;
  left: -1.4em;
}
.representatives-container {
  gap: 3rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-flow: row wrap;
}
.representatives-container .representatives-img {
  width: calc(25% - 3rem);
  height: auto;
}
.img-quote {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}
a.read-more-button,
.read-more-button a {
  background: #b30039;
  text-align: center;
  display: block;
  width: 200px;
  margin: auto;
  padding: 10px;
  border-radius: 50px;
  color: white;
}
div.global-container,
div.global-container .header {
  width: 100%;
  transition: all 0.3s ease-out;
}
div.smaller-global-container,
div.smaller-global-container .header {
  width: 70%;
}
.region-contextsidebar {
  width: 100%;
  max-width: 30%;
  box-sizing: border-box;
  padding: 3rem;
  position: fixed;
  float: left;
  right: -30%;
  overflow: auto;
  z-index: 1000;
  transition: all 0.3s ease-out;
  color: #fff;
  background: #0f1a27;
  height: 100%;
  display: block;
  top: 0;
}
div#social-media-menu {
  position: fixed;
  bottom: calc(50% - 7rem);
  font-size: 3rem;
  display: flex;
  flex-flow: column wrap;
  right: 0;
  border-radius: 5px 0 0 5px;
  padding: 1rem;
  color: #fff;
  background: #0f1a27;
  z-index: 1000;
  transition: all 0.3s ease-out;
}
div#social-media-menu .twitter::after,
div#social-media-menu .facebook::after,
div#social-media-menu .linkedin::after {
  content: "";
  display: none;
}
.region-contextsidebar a:hover,
div#social-media-menu a:hover,
.region-contextsidebar h2,
.region-contextsidebar h5 {
  color: #fff;
}
.menu-active .region-contextsidebar {
  right: 0;
}
div.menu-trigger {
  cursor: pointer;
  position: fixed;
  bottom: calc(50% - 16rem);
  right: 0;
  font-size: 4rem;
  border-radius: 5px 0 0 5px;
  padding: 1rem;
  color: #fff;
  background: #0f1a27;
  z-index: 1000;
  transition: all 0.3s ease-out;
}
div.menu-trigger:hover {
  color: #b30039;
}
div.smaller-global-container div#social-media-menu,
div.smaller-global-container div.menu-trigger {
  right: calc(30% - 1px);
}
.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}
.change .bar2 {
  opacity: 0;
}
.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

.region-contextsidebar .contextual-links-region h2 {
  cursor: pointer;
}
.region-contextsidebar .contextual-links-region h2::after {
  content: "-";
  display: inline-block;
  margin: 0 0 0 2rem;
}
.region-contextsidebar .contextual-links-region-active h2::after {
  content: "+";
}
.region-contextsidebar .contextual-links-region .content {
  max-height: 100vh;
  overflow: auto;
  transition: all 0.3s;
}
.region-contextsidebar .contextual-links-region-active {
  outline: none;
}
.region-contextsidebar .contextual-links-region-active .content {
  max-height: 0;
  overflow: auto;
  transition: all 0.3s;
}
.region-contextsidebar .widget {
  margin: 0;
}
.region-contextsidebar .widget .recent-post-widget {
  margin: 0;
  overflow: auto;
}
.tab-pane ~ * {
  font-size: 1.5rem;
}
.tab-pane .views-field p {
  font-size: 1.5rem;
}
.tab-pane .row {
  margin-top: 1rem;
}
.tab-pane .row .col-md-8 {
  font-size: 1.5rem;
}
.tab-pane .view-przewody-doktorskie .view-content ~ * {
  font-size: 1.5rem;
}
.tabbable .nav-tabs {
  font-size: 1.8rem;
}
.tabbable .nav-tabs > li {
  overflow: hidden;
  margin-bottom: -0.5px;
}
.tabbable .nav-tabs > li a {
  display: block;
  padding: 1rem 2rem;
  border-radius: 1rem 1rem 0 0;
  border: 1px solid #fff;
  border-bottom-color: #dee2e6;
}
.tabbable .nav-tabs > li a:hover {
  background: #eee;
}
.tabbable .nav-tabs > li .active {
  border: 1px solid #dee2e6;
  border-bottom-color: #fff;
  pointer-events: none;
}
caption {
  font-size: 2rem;
  caption-side: top;
  cursor: pointer;
  color: #19427d;
}
.glyphicon-chevron-up:before {
  margin-left: 1rem;
  content: "\21D1";
}
.glyphicon-chevron-down:before {
  margin-left: 1rem;
  content: "\21D3";
}
@media only screen and (max-width: 1024px) {
  div.smaller-global-container,
  div.smaller-global-container .header {
    width: 100%;
  }
  .region-contextsidebar {
    position: unset;
    max-width: 100%;
  }
  div#social-media-menu {
    position: unset;
    font-size: 10rem;
    flex-flow: row wrap;
    padding: 0 3rem 3rem 3rem;
    justify-content: space-around;
  }
  div#social-media-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  div#social-media-menu .twitter {
    width: 85.72px;
    height: 100px;
  }
}
.employee-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: auto;
  display: block;
  object-fit: cover;
}
.employee-img .no-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: auto;
  display: block;
  background: linear-gradient(135deg, rgba(236, 236, 236, 1) 0%, rgba(201, 201, 201, 1) 100%);
  overflow: hidden;
}
.employee-img .no-img .no-img-head {
  width: 50px;
  height: 50px;
  display: block;
  background-color: #fff;
  border-radius: 50%;
  margin: auto;
  position: relative;
  top: 15px;
}
.employee-img .no-img .no-img-body {
  width: 60px;
  height: 60px;
  display: block;
  background-color: #fff;
  border-radius: 10px;
  margin: auto;
  position: relative;
  top: 17px;
}
div.view-display-id-dynamic_selector_2 .view-content {
  display: flex;
  flex-flow: row wrap;
  gap: 3rem 0;
}

.single-news-container {
  width: 100%;
  display: flex;
  margin: 2rem auto;
  box-shadow: 8px 8px 24px 0px #42445a;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
.single-news-left {
  width: 40%;
  display: block;
  margin: 0;
  padding: 5rem 3rem 5rem 5rem;
}
.single-news-left .date {
  color: #585858;
  text-align: center;
  margin: 1rem 0 0 0;
  font-size: 1.5rem;
}
.single-news-left .date i {
  margin-right: 1rem;
}
.single-news-right {
  width: 60%;
  display: block;
  margin: 0;
  padding: 3rem;
}
.single-news-right h4 {
  font-size: 2.5rem;
}
.single-news-right p {
  margin: 3rem 0;
}
.research-projects-container-box {
  width: 100%;
  display: flex;
  margin: 2rem auto 5rem auto;
  box-shadow: 8px 8px 24px 0px #42445a;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
.research-projects-container-box h4 {
  width: 100%;
  border-top: 3px solid #b30039;
  border-bottom: 3px solid #b30039;
  text-align: center;
}
.research-projects-left {
  width: 40%;
  display: block;
  margin: 0;
  padding: 5rem 3rem 5rem 5rem;
}
.research-projects-right {
  width: 60%;
  display: block;
  margin: 0;
  padding: 3rem;
}
.research-projects-title-style {
  padding: 2rem;
  margin: 0 !important;
  background: #101928;
  color: #fff;
  letter-spacing: 0.3rem;
}
.research-projects-right p {
  margin: 3rem 0;
}
.research-projects-button-box {
  width: 100%;
  overflow: hidden;
  float: right;
}
.research-projects-button-box a {
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.lab-container-box {
  width: 100%;
  display: block;
  margin: 2rem auto 5rem auto;
  box-shadow: 8px 8px 24px 0px #42445a;
  overflow: hidden;
}
.lab-top-content {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.lab-top-content h3 {
  top: 0;
  border-right: 3px solid #b30039;
  border-bottom: 3px solid #b30039;
  border-radius: 0 0 25px 0;
}
.lab-top-content h4 {
  width: 100%;
  bottom: 0;
  border-top: 3px solid #b30039;
  border-bottom: 3px solid #b30039;
  text-align: center;
}
.lab-top-content .lab-title-style {
  position: absolute;
  padding: 2rem;
  margin: 0 !important;
  background: #101928;
  color: #fff;
  letter-spacing: 0.3rem;
}
.lab-container-box p {
  width: 100%;
  padding: 2rem 5rem 0 5rem;
  margin: 0;
}
.lab-container-box a {
  margin-bottom: 3rem;
}
.rek-single-element {
  width: 80%;
  display: block;
  margin: 2rem auto 5rem auto;
  box-shadow: 8px 8px 24px 0px #42445a;
  overflow: hidden;
  position: relative;
}
.rek-single-element a {
  color: #fff !important;
}
.rek-single-element a:hover {
  color: #b30039 !important;
}
.rek-title-style,
.rek-text-div {
  position: absolute;
  padding: 2rem;
  margin: 0 !important;
  background: #101928dd;
}
.rek-text-div ul{
  color: #b1b1b1;
}
.rek-single-element h3 {
  width: 100%;
  top: 0;
  border-bottom: 3px solid #b30039;
  letter-spacing: 0.3rem;
}
.rek-single-element .rek-text-div {
  width: 100%;
  bottom: 0;
  border-top: 3px solid #b30039;
}
.rek-single-element .rek-text-div h4 {
  font-weight: normal !important;
}
/* Medium screen : 992px. */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
}

/* Tablet :768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .representatives-container .representatives-img {
    width: calc(33% - 3rem);
  }
  .rek-single-element {
    width: 100%;
  }
}

/* Large Mobile :480px. */
@media only screen and (max-width: 767px) {
  .rek-single-element {
    width: 100%;
  }
}

/* small Mobile :320px. */
@media only screen and (max-width: 479px) {
  .representatives-container .representatives-img {
    width: calc(50% - 3rem);
  }
  .rek-single-element {
    width: 100%;
  }
  .region-contextsidebar {
    max-width: 100%;
    right: 0;
    height: calc(30% - 6rem);
    bottom: 0;
    top: 70%;
  }
  div.menu-trigger {
    display: none;
  }
  div#social-media-menu {
    bottom: 0;
    width: 100%;
    flex-flow: row wrap;
    padding: 3rem;
    justify-content: space-around;
  }
}
/*-----------------
        PM
------------------*/

.post-item .post-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.post-item .post-content h3 {
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .embed-responsive.embed-responsive-4by3 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}
.service-item .service-content p {
  font-size: 16px !important;
}
