@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
.btn-main {
  display: inline-block;
  height: 40px;
  line-height: 42px;
  border: none;
  outline: none;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background: #E8605D;
  padding: 0 40px;
}

.btn-main:hover {
  text-decoration: none;
  color: #fff;
}

button.btn-main:focus {
  outline: none;
}

.img-base {
  display: block;
  height: 170px;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .img-base {
    height: 180px;
  }
}

.img-lg {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .img-lg {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .img-lg {
    height: 180px;
  }
}

.bg-light {
  background: #F7FAFF;
}

html {
  height: 100%;
}

body {
  font-size: 16px;
  font-family: 'PT Sans', sans-serif;
  line-height: 1.3;
  background: #fff;
  color: #000000;
  height: 100%;
}

button, input {
  font-size: 16px;
  font-family: 'PT Sans', sans-serif;
}

a:hover {
  color: #2680EB;
}

a:focus {
  outline: none;
}

.fc a {
  color: #000000;
}

#calendar .fc-h-event {
  border-color: #E8605D;
  background-color: #E8605D;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content {
  padding: 20px 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
}

.page-head {
  margin-bottom: 30px;
}

.page-title {
  font-size: 36px;
  font-weight: bold;
  padding: 0;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 28px;
  }
}

.event-card {
  background: #fff;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.event-card__img {
  display: block;
}

.event-card__body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-card__tag {
  display: inline-block;
  font-size: 12px;
  color: #000000;
}

.event-card__title {
  font-size: 16px;
  margin-bottom: 20px;
  padding: 0;
  font-weight: bold;
  flex-grow: 1;
}

.event-card__title a {
  color: #000000;
}

.event-card__title a:hover {
  color: #2680EB;
}

.event-card__date {
  display: inline-block;
  color: #A5A5A5;
}

.event-card--lg .event-card__img {
  display: block;
}

.event-card--lg .event-card__title {
  font-size: 28px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .event-card--lg .event-card__title {
    font-size: 20px;
  }
}

.events-section {
  padding: 60px 0 30px;
}

.events-section .event-card {
  height: calc(100% - 30px);
}

.events-section .event-card__title {
  margin-bottom: 25px;
  min-height: 57px;
}

.events-section .event-card.employee .event-card__title {
  min-height: 0;
}

.events-section .event-card.employee .img-base {
  height: 220px;
}

.event-detail__tags span, .event-detail__tags a {
  font-weight: bold;
  font-size: 16px;
  color: #E8605D;
}

.learning-section {
  background: #80a321;
  padding: 50px 0;
  color: #fff;
}

.learning-section .learning-title {
  font-size: 28px;
  font-weight: bold;
  max-width: 360px;
  margin-bottom: 30px;
}

.learning-section .learning-img {
  width: 100%;
  height: 100%;
  max-height: 430px;
  background: url("../img/home-learning.svg") center no-repeat;
  background-size: contain;
}

.learning-card {
  display: flex;
  min-height: 90px;
  align-items: center;
  background: #F7FAFF;
  color: #000000;
  position: relative;
  padding: 15px 30px;
  margin-bottom: 30px;
}

.learning-card:hover {
  text-decoration: none;
}

.learning-card::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 25px;
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.learning-card.pdf {
  padding-left: 100px;
}

.learning-card.pdf::before {
  background-image: url("../img/pdf-icon.svg");
}

.learning-card.doc, .learning-card.docx {
  padding-left: 100px;
}

.learning-card.doc::before, .learning-card.docx::before {
  background-image: url("../img/doc-icon.svg");
}

.learning-card.tag {
  padding-left: 100px;
}

.learning-card.tag::before {
  background-image: url("../img/tag-icon.svg");
}

.library-box {
  padding: 30px;
  background: #fff;
}

.library-box__item {
  display: inline-block;
  min-height: 40px;
  margin-bottom: 30px;
  padding-left: 60px;
  color: #000000;
  position: relative;
}

.library-box__item:hover {
  color: #2680EB;
  text-decoration: none;
}

.library-box__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.library-box__item.pdf::before {
  background-image: url("../img/pdf-icon.svg");
}

.library-box__item.doc::before, .library-box__item.docx::before {
  background-image: url("../img/doc-icon.svg");
}

.book {
  margin: 0 auto 30px;
}

.book .book-poster {
  display: block;
  perspective: 1000px;
  width: 100%;
  max-width: 255px;
  height: 325px;
  position: relative;
  margin: 0 auto 5px;
}

@media (max-width: 1200px) {
  .book .book-poster {
    height: 268px;
  }
}

@media (max-width: 480px) {
  .book .book-poster {
    height: 192px;
  }
}

.book .book-poster__front, .book .book-poster__back {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: 0.3s;
  backface-visibility: hidden;
}

.book .book-poster__front {
  overflow: hidden;
}

.book .book-poster__front img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.book .book-poster__back {
  background: #E8605D;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  padding: 25px;
  align-items: center;
  justify-content: center;
}

.book .book-poster__back .download-btn {
  position: relative;
  border-radius: 3px;
  max-width: 120px;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding-left: 30px;
}

.book .book-poster__back .download-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url("../img/arrow-down-square.svg") center no-repeat;
  background-size: cover;
  font-size: 20px;
}

.book .book-poster__descr {
  margin-bottom: 50px;
}

.book .book-poster__descr span {
  display: block;
  color: #fff;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .book .book-poster__descr {
    font-size: 12px;
  }
}

.book .book-poster:hover .book-poster__front {
  transform: rotateY(180deg);
}

.book .book-poster:hover .book-poster__back {
  transform: rotateY(360deg);
}

.book .book-title {
  color: #000000;
}

.book .book-title:hover {
  text-decoration: none;
  color: #2680EB;
}

.events-section {
  padding: 50px 0;
}

.events-section .event-card {
  height: calc(100% - 30px);
}

.publications-section {
  padding: 50px 0;
}

.news-section__slider .slick-slide {
  margin: 0 15px;
}

.news-section__slider .slick-slide:focus {
  outline: none;
}

.news-section__slider .slick-list {
  margin: 0 -15px;
}

.news-section__slider .slick-next, .news-section__slider .slick-prev {
  width: 20px;
  height: 20px;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: -70px;
  right: 0;
  z-index: 100;
  cursor: pointer;
  background: url("../img/arrow-icon.svg") center no-repeat;
  background-size: 40%;
}

.news-section__slider .slick-next.slick-disabled, .news-section__slider .slick-disabled.slick-prev {
  opacity: 0.5;
}

.news-section__slider .slick-prev {
  right: 40px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.news-item {
  margin-bottom: 35px;
}

.news-item__link {
  display: inline-block;
  color: #000000;
  margin-bottom: 12px;
  min-height: 40px;
}

.news-item__link:hover {
  color: #2680EB;
}

.news-item__date {
  display: block;
  color: #A5A5A5;
  font-size: 12px;
}

.gallery-section {
  padding: 50px 0;
}

.gallery-section .gallery-item {
  display: block;
  position: relative;
  margin-bottom: 30px;
}

.gallery-section .gallery-item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 40%;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(34, 34, 34, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.gallery-section .gallery-item img {
  width: 100%;
  height: 244px;
  object-fit: cover;
}

.gallery-section .gallery-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 12px;
  font-weight: bold;
}

@media (min-width: 769px) {
  .gallery-section .gallery-item.long img {
    height: 518px;
  }
}

.gallery-img img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.home-about {
  padding: 50px 0;
}

.album-card {
  display: inline-block;
  overflow: hidden;
  margin-bottom: 30px;
}

.album-card__img {
  display: block;
  object-fit: cover;
  height: 240px;
  width: 100%;
  margin-bottom: 10px;
}

.album-card__title {
  color: #000000;
}

.album-card:hover span {
  color: #2680EB;
}

.sidebar {
  background: #F7FAFF;
  padding: 18px;
}

.sidebar .section-title {
  font-size: 22px;
}

.sidebar .news-item__link {
  min-height: auto;
}

.pagination .page-item .page-link {
  color: #000000;
}

.pagination .page-item.active .page-link {
  color: #fff;
  background-color: #E8605D;
  border-color: #E8605D;
}

ul.accordion-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.accordion-list li {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #F7FAFF;
  padding: 20px;
  margin: 0 auto 15px auto;
  border-radius: 5px;
  cursor: pointer;
}

ul.accordion-list li.active h3:after {
  transform: rotate(45deg);
}

ul.accordion-list li h3 {
  position: relative;
  display: block;
  height: auto;
  padding: 0 30px 0 0;
  margin: 0;
  font-size: 18px;
  cursor: pointer;
}

ul.accordion-list li h3:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -14px;
  color: #E8605D;
  transition: all 0.3s ease-in-out;
  font-size: 22px;
}

ul.accordion-list li .answer {
  border-top: 1px solid #ddd;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 15px 0 0;
  padding: 15px 0 0;
  cursor: pointer;
}

.employee-img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 10px;
}

.employee-img img {
  display: block;
  width: 100%;
  height: auto;
}

.employee-position {
  max-width: 680px;
  margin: 0 auto 30px;
}

.project-link {
  display: block;
  padding: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #000000;
  background-color: #F7FAFF;
}

.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.top-bar {
  background: #EBECF1;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1024px) {
  .top-bar .container {
    justify-content: flex-end;
  }
}

.top-bar__links a {
  color: #9699A8;
  margin-right: 35px;
}

.top-bar__links a:hover {
  color: #333D75;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .top-bar__links {
    display: none;
  }
}

.top-bar .lang {
  display: flex;
}

.top-bar .lang button {
  color: #9699A8;
  line-height: 34px;
  margin-left: 10px;
  background: none;
  border: none;
  outline: none;
}

.top-bar .lang button.active {
  color: #333D75;
}

@media (max-width: 768px) {
  .top-bar .lang button {
    font-size: 14px;
    line-height: 28px;
  }
}

.header {
  min-height: 110px;
  display: flex;
  align-items: center;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1024px) {
  .header .search-form {
    display: none;
  }
}

.logo {
  padding-left: 115px;
  position: relative;
  display: inline-block;
}

.logo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 107px;
  height: 60px;
  margin-top: -30px;
  background: url("../img/cgo-logo.svg") center no-repeat;
  background-size: contain;
}

.logo span {
  display: inline-block;
  position: relative;
  max-width: 260px;
  text-transform: uppercase;
  color: #80a321;
  font-size: 16px;
  line-height: 22px;
}

@media (max-width: 768px) {
  .logo span {
    font-size: 14px;
    line-height: 20px;
  }
}

.logo:hover {
  text-decoration: none;
}

.search-form {
  width: 220px;
}

@media (max-width: 768px) {
  .search-form {
    width: 200px;
  }
}

.search-form .search-inp {
  position: relative;
  width: 100%;
  height: 40px;
}

.search-form .search-inp input {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 20px;
  padding: 0 40px 0 20px;
  font-size: 14px;
  background: #EBECF1;
}

.search-form .search-inp input:focus {
  outline: none;
}

.search-form .search-inp button {
  border: none;
  outline: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: url("../img/search-icon.svg") 40% 50% no-repeat;
}

.main-nav {
  background: #80a321;
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––
    Mobile style's
    –––––––––––––––––––––––––––––––––––––––––––––––––– */
}

@media (max-width: 1200px) {
  .main-nav {
    min-height: 55px;
  }
}

.main-nav .container {
  position: relative;
}

@media (max-width: 768px) {
  .main-nav .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.main-nav .search-form {
  padding-right: 15px;
  float: right;
  margin-top: 12px;
}

@media (min-width: 1025px) {
  .main-nav .search-form {
    display: none;
  }
}

.main-nav .search-form input {
  height: 36px;
  background: #F7FAFF;
}

.main-nav .search-form button {
  height: 36px;
}

.main-nav .menu {
  width: 100%;
}

.main-nav .menu-container {
  margin: 0 auto;
  background: #e9e9e9;
}

.main-nav .menu-mobile {
  display: none;
  padding: 20px 20px 20px 50px;
  position: relative;
}

.main-nav .menu-mobile:after {
  content: "";
  width: 26px;
  height: 26px;
  font-size: 26px;
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -12px;
  background: url("../img/menu-icon.svg") center no-repeat;
  background-size: cover;
}

.main-nav .menu-dropdown-icon:before {
  content: "";
  background: url("../img/chevron-down-icon.svg") center no-repeat;
  background-size: cover;
  display: none;
  cursor: pointer;
  float: right;
  margin: 15px;
  width: 16px;
  height: 16px;
}

.main-nav .menu > ul {
  display: flex;
  margin: 0;
  width: 100%;
  list-style: none;
  padding: 0;
  position: relative;
  /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
  box-sizing: border-box;
  align-items: center;
}

.main-nav .menu > ul:before,
.main-nav .menu > ul:after {
  content: "";
  display: table;
}

.main-nav .menu > ul:after {
  clear: both;
}

.main-nav .menu > ul > li {
  flex: 1;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav .menu > ul > li > a {
  text-align: center;
  display: flex !important;
  min-height: 55px;
  align-items: center;
  justify-content: center;
}

.main-nav .menu > ul > li a {
  text-decoration: none;
  display: block;
  color: #fff;
}

.main-nav .menu > ul > li.outer-link {
  display: none;
}

.main-nav .menu > ul > li:hover {
  background: rgba(0, 0, 0, 0.1);
}

.main-nav .menu > ul > li > ul {
  display: none;
  width: 100%;
  background: #6f8e1d;
  padding: 20px;
  position: absolute;
  z-index: 99;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

.main-nav .menu > ul > li > ul:before,
.main-nav .menu > ul > li > ul:after {
  content: "";
  display: table;
}

.main-nav .menu > ul > li > ul:after {
  clear: both;
}

.main-nav .menu > ul > li > ul > li {
  margin: 0;
  padding-bottom: 0;
  list-style: none;
  width: 25%;
  background: none;
  float: left;
}

.main-nav .menu > ul > li > ul > li a {
  color: #fff;
  padding: .2em 0;
  width: 95%;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-nav .menu > ul > li > ul > li a:hover {
  color: #fcca03;
}

.main-nav .menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}

.main-nav .menu > ul > li > ul > li > ul:before,
.main-nav .menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
}

.main-nav .menu > ul > li > ul > li > ul:after {
  clear: both;
}

.main-nav .menu > ul > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  font-size: .8em;
}

.main-nav .menu > ul > li > ul > li > ul > li a {
  border: 0;
  font-size: 14px;
}

.main-nav .menu > ul > li > ul.normal-sub {
  width: 300px;
  left: auto;
  padding: 10px 20px;
}

.main-nav .menu > ul > li > ul.normal-sub > li {
  width: 100%;
}

.main-nav .menu > ul > li > ul.normal-sub > li a {
  padding: 1em 0;
}

@media only screen and (max-width: 1024px) {
  .main-nav .menu-container {
    width: 100%;
  }
  .main-nav .menu-container .menu {
    display: inline-block;
  }
  .main-nav .menu-mobile {
    color: #fff;
    display: inline-block;
    text-decoration: none;
  }
  .main-nav .menu-dropdown-icon:before {
    display: block;
  }
  .main-nav .menu > ul {
    display: none;
    width: 100%;
  }
  .main-nav .menu > ul > li {
    width: 100%;
    display: block;
  }
  .main-nav .menu > ul > li.outer-link {
    display: block;
  }
  .main-nav .menu > ul > li.outer-link.bordered a {
    border-top: 1px solid #fff;
  }
  .main-nav .menu > ul > li > a {
    display: block !important;
    min-height: 1rem;
    padding: 15px;
    line-height: 1.3;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .main-nav .menu > ul > li a {
    width: 100%;
    display: block;
  }
  .main-nav .menu > ul > li > ul {
    position: relative;
    padding: 0 40px;
  }
  .main-nav .menu > ul > li > ul.normal-sub {
    width: 100%;
  }
  .main-nav .menu > ul > li > ul > li {
    float: none;
    width: 100%;
  }
  .main-nav .menu > ul > li > ul > li:first-child {
    margin: 0;
  }
  .main-nav .menu > ul > li > ul > li > ul {
    position: relative;
  }
  .main-nav .menu > ul > li > ul > li > ul > li {
    float: none;
  }
  .main-nav .menu .show-on-mobile {
    display: block;
  }
}

.breadcrumb {
  font-size: 12px;
  padding: 0;
  margin-bottom: 20px;
  background: none;
}

.breadcrumb a {
  color: #000000;
}

.breadcrumb .divider {
  margin-right: 3px;
}

.footer {
  color: #fff;
  font-size: 14px;
  padding: 30px 0 20px;
  background: #80a321;
}

.footer .logo {
  margin-bottom: 20px;
}

.footer .logo::before {
  background-image: url("../img/cgo-logo-footer.svg");
}
.claim_form p {
  margin: 0 0 10px;
}
.claim_form form .field {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .footer .logo {
    margin-left: auto;
    margin-right: auto;
  }
}

.footer .logo span {
  color: #fff;
}

.footer .address {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

@media (max-width: 768px) {
  .footer .address {
    text-align: center;
  }
}

.footer .address li {
  margin: 5px 0;
}

.footer .footer-menu {
  padding: 0;
  margin: 0 0 10px;
  list-style: none;
}

.footer .footer-menu a {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5;
}

.footer .footer-tags {
  padding: 0;
  margin: 0 0 10px;
  list-style: none;
}

.footer .footer-tags a {
  font-size: 16px;
  color: #ffffff;
  font-style: italic;
  line-height: 1.5;
}

.footer .social {
  margin: 5px 0 15px;
  height: calc(100% - 15px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer .social .icons {
  margin-bottom: 25px;
}

.footer .social .icons a {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.footer .social .icons a.instagram {
  background-image: url("../img/instagram-icon.svg");
}

.footer .social .icons a.facebook {
  background-image: url("../img/facebook-icon.svg");
}

.footer .social .icons a.youtube {
  width: 22px;
  background-image: url("../img/youtube-icon.svg");
}
