/* Fonts */
@font-face {
   	font-family:'AcuminVariableConcept';
	src:url('../fonts/AcuminVariableConcept.otf')format('opentype');
}

@font-face {
   	font-family:'HelveticaBlackCondensed';
	src:url('../fonts/HelveticaBlackCondensed.ttf')format('truetype');
}

@font-face {
   	font-family:'HelveticaBoldCondensed';
	src:url('../fonts/HelveticaBoldCondensed.ttf')format('truetype');
}

@font-face {
   	font-family:'HelveticaBold';
	src:url('../fonts/Helvetica-Bold-Font.ttf')format('truetype');
}

@font-face {
   	font-family:'HelveticaLightCondensed';
	src:url('../fonts/HelveticaLightCondensed.ttf')format('truetype');
}


/* Global Colors */
:root {
  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --default-color: #212529;
  --default-color-rgb: 33, 37, 41;
  --primary-color: #e84545;
  --primary-color-rgb: 232, 69, 69;
  --secondary-color: #32353a;
  --secondary-color-rgb: 50, 53, 58;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
}

/* Nav Menu Colors */
:root {
  --nav-color: #3a3939;
  --nav-hover-color: #e84545;
  --nav-dropdown-color: #3a3939;
  --nav-dropdown-hover-color: #e84545;
  --nav-dropdown-background-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: rgba(var(--primary-color-rgb), 0.7);
  text-decoration: none;
}

h1 { font-family:'HelveticaBlackCondensed'; font-size: 60px;}

h2, h3, h4 { font-family:'HelveticaBoldCondensed';}

p, input, a, select { font-family: 'Roboto', sans-serif;}

section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 140px 0 140px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--primary-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--secondary-color);
}

.page-title nav {
  background-color: rgba(var(--default-color-rgb), 0.05);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(var(--default-color-rgb), 0.3);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  /*padding: 15px 0;*/
  transition: all 0.5s;
  z-index: 997;
}

.header .logo img {
  max-height: 50px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--secondary-color);
}

.header .logo span {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #316433;
  background: #fff;
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 25px;
  transition: 0.3s;
  border: 1px solid #316433;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #fff;
  background: #316433;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on page scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
  --secondary-color: #444444;
  --nav-color: #444444;
  --nav-hover-color: #e84545;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Scroll Margin Top
------------------------------*/
section {
  scroll-margin-top: 140px;
}

@media (max-width: 1199px) {
  section {
    scroll-margin-top: 66px;
  }
}

/* Home Page Custom Header
------------------------------*/
.drk:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: black;
  opacity: 0.6;
  z-index: 1;
}
.carousel-caption { z-index: 2;}
.index-page .header {
  /*background-color: rgba(255, 255, 255, 0);
  secondary-color: #ffffff;
  nav-color: rgba(255, 255, 255, 0.515);
  nav-hover-color: #ffffff;*/
  background-color: #69359c;
  secondary-color: #316433;
  nav-color: #316433;
  nav-hover-color: #316433;
}

/* Home Page Custom Header on page scroll
------------------------------*/
.index-page.scrolled .header {
  background-color: #69359c;
  secondary-color: #316433;
  nav-color: #316433;
  nav-hover-color: #316433;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;flex-wrap: wrap;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #FFF;
    padding: 10px 15px;
    font-size: 14px;
    font-family:'HelveticaBold';
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #F2C343;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
    display: block;
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(var(--primary-color-rgb), 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--primary-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--primary-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul,
  .navmenu .megamenu ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul,
  .navmenu .megamenu ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active,
  .navmenu .megamenu>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #F2C343;
  border: 1px solid #F2C343;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #69359c;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #69359c;
  border: 1px solid #316433;
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--primary-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #f4f4f4;
  color: #777777;
  background-color: var(--background-color);
  font-size: 14px;
  /*padding-bottom: 50px;*/
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--secondary-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(var(--default-color-rgb), 0.5);
  font-size: 16px;
  color: rgba(var(--default-color-rgb), 0.5);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.footer h4 {
  font-family:'HelveticaBoldCondensed';
  color: #18662D;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 15px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-family: 'Roboto', sans-serif;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a, .footer .footer-links p a {
  color: #777777;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--primary-color);
}

.footer .footer-links p { margin-bottom: 5px;}

.footer .footer-contact p { margin-bottom: 5px;}
.footer .copyright { padding: 25px 0;}
.footer .copyright p { margin-bottom: 0;}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/
.logo img { width: 100%; height: 100%; max-width: 100%; object-fit: scale-down;}
.as12c-logo img { width: 100%; height: 100%; max-width: 100%; max-width: 100px; object-fit: scale-down;}
.carousel-inner { height: 100vh;}
.carousel-caption h1 { color: #fff; line-height: 1;}
.carousel-caption h3 { color: #F2C343;}
.carousel-item { height: 100%;}
.carousel-item img { object-fit: cover; height: 100vh}
.carousel-item > div { height: 100%; display: flex !important; flex-direction: column; justify-content: center; padding-top: 172px;}
a.slider-button { border-radius: 25px; color: #FFF; background: #69359c; display: inline-block; padding: 12px 15px; width: 200px; margin: 0 auto; margin-top: 10px;}
.carousel-indicators .active { background-color: #69359c;}

.carousel-item { height: 100vh; min-height: 350px; background: no-repeat center center scroll; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; }
.carousel-item.custom-01 .carousel-caption { right: -25%; top:-7%;}
.carousel-item.custom-01 .carousel-caption h1 span, .carousel-item.custom-04 .carousel-caption h1 span { font-family:'HelveticaLightCondensed';}
.carousel-item.custom-02 .carousel-caption { bottom: -20%;}
.carousel-item.custom-03 .carousel-caption { top: -15%;}
.carousel-item.custom-04 .carousel-caption img { max-width: 70%; margin: 0px auto; margin-top: 20px; margin-bottom: 20px; height: auto;}
.card.main-sec img { height: 190px; object-fit: cover;}



/* Portrait and Landscape */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
	  .carousel-inner { height: auto;}
}

/* Portrait */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
	  .carousel-inner { height: auto;}
}

/* Landscape */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
	.carousel-inner { height: auto;}
}

@media (max-width: 1024px) { 
	.carousel-inner { height: auto;}
} 

@media (max-width: 768px) {
	.fixed-top { position: relative;}
	section { padding: 50px 0 50px 0;}
	h1 {font-size: 32px;}
	.carousel-item { height: 50vh;}
	.carousel-inner, .carousel-item img { height: 50vh;}
	.carousel-item > div { padding-top: 0px;}
	.carousel-item img { object-fit: cover;}
	.carousel-item.custom-01 .carousel-caption { right: 0%; top:0%; left: 0%;}
	.carousel-item.custom-04 .carousel-caption img { max-width: 100%;}
}

/* About Section - Home Page
------------------------------*/
.top-header { padding: 20px 15px; background-color: #000;}
.top-header h3 { color: #fff;}
.about { background-color: #F1F1F1;}
.about .content { text-align: center;}
.about .content h1, .about .content p { color: #2E2D2C;}
table { border: 1px solid #ccc;}
table td, table th { font-family: 'Roboto', sans-serif; vertical-align: middle; padding: 20px !important;}

/* Committee Section - Home Page
------------------------------*/
.committee .img-left { position: absolute; width: 400px; max-width: 100%; left: -15%; top: 20%;}
.committee .img-right { position: absolute; width: 300px; max-width: 100%; right: -5%; top: 30%;}
.committee { text-align: center; background: #69359c; position: relative;}
.committee-title p { color: #fff;}
.committee-title h1, .committee-title h2 { color: #F2C343;}

/* Fees Section - Home Page
------------------------------*/
.fees { background-color: #F1F1F1;}
.fees .content { text-align: center;}
.fees .content h1, .fees .content p { color: #2E2D2C;}

/* Forwarding Section - Home Page
------------------------------*/
.calendar { background-color: #69359c; position: relative;}
.calendar .content { text-align: center;}
.calendar .content h1, .calendar .content p { color: #F2C343;}


/* Award Section - Home Page
------------------------------*/
.award { background-color: #69359c;}
.award .content { text-align: center;}
.award .content h1, .award .content h4 { color: #F2C343;}
.award .content h3 { color: #fff;}
.award .content p { color: #2E2D2C;}
.award .card h3, .award .card h5, .award .card li { font-family: 'Roboto', sans-serif;}

/* Contact Section - Home Page
------------------------------*/
.tnc { background-color: #F1F1F1;}
.tnc .content { text-align: center;}
.tnc .content h1, .tnc .content p { color: #2E2D2C;}

@media (max-width: 768px) {
	.top-header { padding: 15px;}
	.top-header h3 { font-size: 21px;}
	.contact-img { text-align: right; margin-top: 30px; margin-bottom: -70px;}
	.contact-img img { width: 300px; position: relative; top: 0; right: 0;}
}

/* Thank You Page
------------------------------*/
.hero { width: 100%; min-height: 100vh; position: relative; padding: 160px 0 80px 0; display: flex; align-items: end; justify-content: end; }
.hero img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; z-index: 1; }
.hero:before { content: ""; position: absolute; inset: 0; z-index: 2; }
.hero .container { position: relative; z-index: 3; }
.hero .thank-you-message { text-align: center; right: 0; bottom: 0; color: #fff;}

/* Acknowledgement Section - Home Page
------------------------------*/
.acknowledgement { background-color: #FFFFFF;}
.acknowledgement .content { text-align: center; color: #2E2D2C;}
.acknowledgement .content h1, .acknowledgement .content p { color: #2E2D2C;}
.acknowledgement img { max-width: 100%;}
.float{ position:fixed; width:40px; height:40px; bottom:60px; right:15px; background-color:#25d366; color:#FFF; border-radius:50px; text-align:center; font-size:25px; box-shadow: 2px 2px 3px #999; z-index:100; }

/* Winners Page
------------------------------*/
.winner-wrap { background-color: #f6f6f6; margin-bottom: 30px; width: 100vw; margin-left:-50vw; left:50%; position: relative; padding: 15px; display: inline-block;}
.winner-content { max-width:1000px; margin:0px auto;}
.winner img { width:100%; height:200px; max-width:100%; max-height:100%; object-fit: cover;}
.winner h5 { text-align: center; margin: 15px 0;}
.winners-lists { text-align: center; margin: 10px 0;}
.winners-lists img { width:100%; height:180px; max-width:100%; max-height:100%; object-fit: cover;}
.winners-lists h5 { margin:10px 0 0 0; color: #2E2D2C;}
.winners-lists p { margin: 0px; font-size: 16px; color: #2E2D2C;}

/* Acceptance Page
------------------------------*/
.acceptance { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; grid-auto-rows: auto; }
.acceptance-lists { text-align: center;}
.acceptance-lists img { width:100%; height:80px; max-width:100%; max-height:100%; object-fit: cover;}
.acceptance-lists p { margin: 0px;}

.catalogue-lists ul { list-style: none; padding-left: 0px;}
.catalogue-lists li { display: inline-block; margin: 0 15px; padding: 25px; border: 1px solid #eaeaea;}
.catalogue-lists li:first-child { margin: 0px;}