@import url("root.css");
:root {
  --topbar: 4rem;
  --header: 8rem;
  --slide: 45rem;
}
@media (min-width: 576px) {
  :root {
    --slide: 50rem;
    --header: 10rem;
  }
}
.topbar {
  background-color: var(--colorred);
}
.topbarside {
  height: var(--topbar);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbarsideleft {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
  width: 100%;
  text-align: center;
}
@media (min-width: 576px) {
  .topbarsideleft {
    column-gap: 2rem;
  }
}
@media (min-width: 768px) {
  .topbarsideleft {
    width: auto;
    text-align: left;
    justify-content: flex-start;
  }
}
.topbarsideleft a {
  font-size: 1.25rem;
  color: #fff;
  transition: all 300ms ease;
}
@media (min-width: 350px) {
  .topbarsideleft a {
    font-size: 1.3rem;
  }
}
@media (min-width: 576px) {
  .topbarsideleft a {
    font-size: 1.4rem;
  }
}
.topbarsideleft a i {
  margin-right: 0.3rem;
}
.topbarsideleft a:hover {
  opacity: 0.8;
}
.topbarsideright {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 2rem;
}
.topbarsocial {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  column-gap: 1rem;
}
.topbarsocial a {
  font-size: 1.4rem;
  color: #fff;
  transition: all 300ms ease;
}
.topbarsocial a:hover {
  opacity: 0.8;
}
.topbarsocial::after {
  content: "";
  position: absolute;
  top: 1.2rem;
  bottom: 1.2rem;
  width: 0.05rem;
  right: -1rem;
  background-color: #fff;
  opacity: 0.4;
}
.catalog {
  height: 100%;
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}
.catalog a {
  font-size: 1.3rem;
  color: var(--colorred);
  background-color: #fff;
  border-radius: 0.3rem;
  padding: 0.5rem 1rem;
  transition: all 300ms ease;
  display: inline-block;
  font-weight: 500;
}
.catalog a:hover {
  color: #fff;
  background-color: var(--colorblue);
}
.headerside {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header);
}
.logo {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: 14rem;
}
@media (min-width: 576px) {
  .logo {
    width: 16rem;
  }
}
@media (min-width: 768px) {
  .logo {
    width: 18rem;
  }
}
@media (min-width: 992px) {
  .logo {
    width: 20rem;
  }
}
.mainmenu {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 4rem;
}
.mainmenu li {
  font-size: 1.5rem;
  color: var(--textcolor);
  cursor: pointer;
  transition: all 300ms ease;
  height: 100%;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.mainmenu li a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--textcolor);
  transition: all 300ms ease;
}
.mainmenu li:hover {
  color: var(--colorred);
}
.mainmenu li:hover .mainlink {
  color: var(--colorred);
}
.dropdownlink i {
  transition: all 300ms ease;
  margin-left: 0.5rem;
  font-size: 1.4rem;
  line-height: 1;
}
.dropdownlink:hover i {
  transform: rotate(-45deg);
}
.dropdownmenu {
  position: absolute;
  z-index: 20;
  top: 100%;
  right: 0;
  background-color: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 22rem;
  transition: transform 0.3s ease-in-out;
  transform-origin: top right;
  transform: perspective(600px) rotateX(-90deg);
  border-radius: 0 0 0.3rem 0.3rem;
}
.dropdownlink:hover .dropdownmenu {
  display: block;
  transform: perspective(600px) rotateX(0deg);
}
.droplinks {
  display: block;
  width: 100%;
  font-weight: 400 !important;
  color: var(--textcolor);
  transition: all 300ms ease;
  border-radius: 0.3rem;
  padding: 1rem;
  text-transform: capitalize;
}
.droplinks:hover {
  background-color: var(--colorblue);
  color: #fff;
}
.droplinks:not(:last-child) {
  margin-bottom: 0.3rem;
}
.slideside {
  height: var(--slide);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.slideside::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--colorblue);
  background: linear-gradient(
    142deg,
    rgba(32, 66, 134, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.slideside .container {
  height: 100%;
}
.slidetext {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 1;
  width: calc(100% - 2rem);
}
@media (min-width: 768px) {
  .slidetext {
    width: 80%;
  }
}
@media (min-width: 992px) {
  .slidetext {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .slidetext {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .slidetext {
    width: 50%;
  }
}
.slidetext h1 {
  font-size: clamp(2rem, 0.5714rem + 7.1429vw, 5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.slidetext p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 1rem;
}
.slidetext a {
  color: #fff;
  background-color: var(--colorred);
  border-radius: 0.3rem;
  padding: 1.2rem 2rem;
  font-size: 1.4rem;
  display: inline-block;
  transition: all 300ms ease;
}
.slidetext a:hover {
  color: #fff;
  background-color: var(--colorredhover);
}
.slidetext a i {
  margin-left: 0.5rem;
  transition: all 300ms ease;
  display: inline-block;
}
.slidetext a:hover i {
  transform: translateX(0.5rem);
}
.mobileatach {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 0.5rem;
}
#mobilemenu {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: transparent;
  color: var(--colorblue);
  font-size: 2rem;
}
#mobilesearch,
#mobilesearch2 {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--colorred);
  color: #fff;
  font-size: 1.2rem;
  transition: all 300ms ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
#mobilesearch:hover,
#mobilesearch2:hover {
  background-color: var(--colorblue);
  color: #fff;
}
@media (min-width: 576px) {
  #mobilemenu {
    width: 3.5rem;
    height: 3.5rem;
  }
  #mobilesearch,
  #mobilesearch {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.4rem;
  }
}
.homeaboutcontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .homeaboutcontent {
    margin-bottom: 0;
    padding-right: 2rem;
  }
}
@media (min-width: 1200px) {
  .homeaboutcontent {
    padding-right: 5rem;
  }
}
.homeaboutcontenttitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .homeaboutcontenttitle {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}
.homeaboutcontenttitle figure {
  width: 8rem;
  height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.homeaboutcontenttitle .content {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (min-width: 576px) {
  .homeaboutcontenttitle .content {
    width: calc(100% - 8rem);
    padding-left: 2rem;
    margin-top: 0;
  }
}
.homeaboutcontenttitle .content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .homeaboutcontenttitle .content h2 {
    font-size: 2.5rem;
  }
}
.homeaboutcontenttitle .content p {
  font-size: 1.5rem;
  opacity: 0.8;
}
.homeaboutcontentmaintitle {
  margin-bottom: 2rem;
}
.homeaboutcontentmaintitle h3 {
  font-size: 2rem;
  font-weight: 700;
}
.homeaboutbuttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 2rem;
  width: 100%;
}
@media (min-width: 576px) {
  .homeaboutbuttons {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    row-gap: 0;
    column-gap: 2rem;
  }
}
.aboutphone {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.phoneicon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--textcolor);
  font-size: 2rem;
  border: 0.2rem dashed var(--colorred);
}
.aboutphone .content {
  width: calc(100% - 4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 1rem;
}
.aboutphone .content p {
  font-size: 1.4rem;
  opacity: 0.8;
}
.aboutphone .content a {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--textcolor);
  transition: all 300ms ease;
}
.aboutphone .content a:hover {
  color: var(--colorred);
  text-decoration: underline;
}
.aboutlink {
  background-color: var(--colorred);
  color: #fff;
  transition: all 300ms ease;
  font-size: 1.4rem;
  padding: 1.2rem 2rem;
  border-radius: 0.3rem;
}
.aboutlink:hover {
  background-color: var(--colorredhover);
  color: #fff;
}
.aboutlink i {
  transition: all 300ms ease;
  display: inline-block;
}
.aboutlink:hover i {
  transform: translateX(0.5rem);
}
.homeaboutmaintext figure {
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.homeaboutmaintext figure img {
  object-fit: cover;
  aspect-ratio: 3.5;
}
.homeaboutmaintext p {
  font-size: 1.5rem;
}
.aboutservice {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #fff;
}
@media (min-width: 576px) {
  .aboutservice {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}
.aboutservice:not(:last-child) {
  margin-bottom: 2rem;
}
.aboutservice figure {
  width: 10rem;
  height: 14rem;
  background-color: var(--colorblue);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2rem;
}
.aboutservice.secondservice figure {
  background-color: var(--colorred) !important;
}
.aboutservice figure::after {
  content: "";
  position: absolute;
  left: 99%;
  width: 100%;
  top: 0;
  bottom: 0;
  background-color: var(--colorblue);
  clip-path: polygon(22% 50%, 0 0, 0 100%);
}
.aboutservice.secondservice figure::after {
  background-color: var(--colorred);
}
.aboutservice .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
}
@media (min-width: 576px) {
  .aboutservice .content {
    width: calc(100% - 12rem);
    padding: 0 0 0 4rem;
  }
}
.aboutservice .content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.aboutservice .content p {
  font-size: 1.5rem;
  opacity: 0.8;
}
.blogtitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .blogtitle {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.blogtitleleft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.blogtitleleft h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .blogtitleleft h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .blogtitleleft h2 {
    font-size: 3rem;
  }
}
.blogtitleleft p {
  font-size: 1.5rem;
  opacity: 0.8;
}
.blogtitleright {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex: 1;
}
.blogtitleright a {
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  color: #fff;
  background-color: var(--colorblue);
  transition: all 300ms ease;
}
.blogtitleright a:hover {
  background-color: var(--colorred);
  color: #fff;
}
.blogtitleright a i {
  margin-left: 0.5rem;
  display: inline-block;
  transition: all 300ms ease;
}
.blogtitleright a:hover i {
  transform: translateX(0.5rem);
}
.blogbox2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 0.2rem solid #f1f1f1;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}
.blogbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.blogboxdate {
  margin-bottom: 1rem;
}
.blogboxdate p {
  font-size: 1.4rem !important;
  font-weight: 500;
  color: var(--textcolor);
}
.blogboxdate p i {
  color: var(--colorred);
  margin-right: 0.5rem;
}
.blogbox figure {
  border-radius: 0.5rem;
  overflow: hidden;
}
.blogbox figure img {
  height: 100%;
  object-fit: cover;
  transition: all 1.2s ease;
  aspect-ratio: 1.8;
}
.blogbox:hover figure img {
  transform: scale(1.2);
  filter: brightness(0.5);
}
.blogbox .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2rem;
}
.blogbox .content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.blogbox .content h3 a {
  color: var(--textcolor);
  transition: color 300ms ease;
}
.blogbox:hover .content h3 a {
  color: var(--colorred);
}
.blogbox .content p {
  font-size: 1.5rem;
  flex: 1;
}
.bloglink {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--textcolor);
  transition: all 300ms ease;
  margin-top: 1rem;
}
.bloglink i {
  display: inline-block;
  color: var(--colorred);
  transition: all 300ms ease;
}
.bloglink:hover {
  color: var(--textcolor);
}
.bloglink:hover i {
  transform: translateX(0.5rem);
}
.blogbox2 h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.blogbox2 h3 a {
  color: var(--textcolor);
  transition: color 300ms ease;
}
.blogbox2:hover h3 a {
  color: var(--colorred);
}
.blogdate p {
  font-size: 1.4rem;
}
.blogdate p i {
  color: var(--colorred);
}
.footer {
  padding: 5rem 0 2rem 0;
  position: relative;
  z-index: 0;
  background-color: #fbfbfb;
  border-top: 1rem solid var(--colorblue);
  border-bottom: 1rem solid var(--colorred);
}
.footerbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.footerbox h4 {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.footerbox h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 1rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  background-color: var(--colorred);
}
.footerbox h4::after {
  content: "";
  position: absolute;
  left: 1.3rem;
  bottom: -1rem;
  width: 2rem;
  height: 0.3rem;
  background-color: var(--colorblue);
  border-radius: 0.3rem;
}
.footerbox ul li {
  padding: 0.3rem 0;
  transition: all 300ms ease;
}
.footerbox ul li a {
  font-size: 1.5rem;
  color: var(--textcolor);
  transition: color 300ms ease;
}
.footerbox ul li:hover {
  transform: translateX(0.5rem);
}
.footerbox ul li:hover a {
  color: var(--colorred);
}
.footerlogo {
  width: 18rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .footerlogo {
    width: 15rem;
  }
}
@media (min-width: 1400px) {
  .footerlogo {
    width: 18rem;
  }
}
.footercontact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footercontactitem {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.footercontactitem:not(:last-child) {
  margin-bottom: 2rem;
}
.footercontactitemicon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  background-color: #f1f1f1;
  border: 0.1rem solid #ddd;
}
.footercontactitem .content {
  width: calc(100% - 4rem);
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footercontactitem .content span {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.footercontactitem .content p {
  font-size: 1.4rem;
}
.footercontactitem .content a {
  color: var(--textcolor);
  font-size: 1.4rem;
  transition: color 300ms ease;
}
.footercontactitem .content a:hover {
  color: var(--colorred);
}
.footersocial p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footersocial a {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 0.1rem solid #ddd;
  color: var(--textcolor);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms ease;
}
.footersocial a:hover {
  color: #fff;
  background-color: var(--colorblue);
  border: 0.1rem solid var(--colorblue);
}
.deep {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 0.1rem dashed #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.deep a {
  color: var(--textcolor);
  font-family: "pill";
  font-size: 2rem;
  transition: all 300ms ease;
}
.deep a:hover {
  color: var(--colorred);
}
.pagemap {
  background-color: var(--colorblue);
  padding: 2rem 0;
}
@media (min-width: 576px) {
  .pagemap {
    padding: 3rem 0;
  }
}
@media (min-width: 768px) {
  .pagemap {
    padding: 5rem 0;
  }
}
.pagemapcontent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.pagemapcontent h1 {
  color: #fff;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .pagemapcontent h1 {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .pagemapcontent h1 {
    font-size: 2.2rem;
  }
}
@media (min-width: 1500px) {
  .pagemapcontent h1 {
    font-size: 2.5rem;
  }
}
.pagemapcontent ul {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .pagemapcontent ul {
    flex-wrap: nowrap;
  }
}
.pagemapcontent ul li {
  font-size: 1.4rem;
  position: relative;
  cursor: pointer;
}
.pagemapcontent ul li a {
  color: #fff;
  font-size: 1.4rem;
  transition: all 300ms ease;
}
.pagemapcontent ul li:hover a {
  opacity: 0.8;
}
.pagemapcontent ul li:not(:last-child)::after {
  content: "\EA54";
  position: absolute;
  font-family: "remixicon";
  color: #fff;
  right: -1.8rem;
  top: 0.1rem;
}
.pagemapcontent ul li.active {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
}
.bloginlineimages {
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.bloginlineimages img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1.5;
}
@media (min-width: 576px) {
  .bloginlineimages img {
    aspect-ratio: 2;
  }
}
@media (min-width: 768px) {
  .bloginlineimages img {
    aspect-ratio: auto;
  }
}
.bloginlinecontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .bloginlinecontent {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) {
  .bloginlinecontent {
    padding-left: 2rem;
  }
}
@media (min-width: 1200px) {
  .bloginlinecontent {
    padding-left: 5rem;
  }
}
.bloginlinecontenttitle {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #eaeaea;
  width: 100%;
}
.bloginlinecontenttitle h2 {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .bloginlinecontenttitle h2 {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .bloginlinecontenttitle h2 {
    font-size: 2rem;
  }
}
.affixitem {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .affixitem {
    position: sticky;
    top: 1rem;
    margin-top: 0;
  }
}
.othercontent {
  width: 100%;
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background-color: #f1f1f1;
  margin-bottom: 2rem;
}
.othercontent a {
  border-radius: 0.3rem;
  background-color: #fff;
  transition: all 300ms ease;
  font-size: 1.4rem;
  color: var(--textcolor);
  padding: 1rem;
}
@media (min-width: 768px) {
  .othercontent a {
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .othercontent a {
    font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  .othercontent a {
    font-size: 1.4rem;
  }
}
.othercontent a:not(:last-child) {
  margin-bottom: 0.8rem;
}
.othercontent a:hover {
  background-color: var(--colorred);
  color: #fff;
}
.othercontenttitle {
  margin-bottom: 1rem;
}
.othercontenttitle h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.tickets {
  display: flex;
  flex-wrap: wrap;
}
.tickets a {
  background-color: #fff;
  font-size: 1.2rem;
  border-radius: 0.3rem;
  padding: 0.3rem 0.5rem;
  color: var(--textcolor);
}
.tickets a:hover {
  background-color: var(--colorblue);
  color: #fff;
}
.pagecontrolbuttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.pagecontrolbuttons .pageprev,
.pagecontrolbuttons .pagenext,
.pagecontrolbuttons .pagecurrent {
  flex: 1;
}
.pagecontrolbuttons .pageprev {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.pagecontrolbuttons .pagecurrent {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagecontrolbuttons .pagenext {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.pagecontrolbuttons .pageprev a,
.pagecontrolbuttons .pagenext a,
.pagecontrolbuttons .pagecurrent a {
  padding: 0.5rem 1rem;
  color: var(--textcolor);
  font-size: 1.4rem;
  transition: all 300ms ease;
  border-radius: 0.3rem;
}
.pagecontrolbuttons .pageprev a:hover,
.pagecontrolbuttons .pagenext a:hover,
.pagecontrolbuttons .pagecurrent a:hover {
  background-color: var(--colorred);
  color: #fff;
}
.contactbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}
#iframemap {
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.addresscontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.addresscontent:not(:last-child) {
  margin-bottom: 1rem;
  border-bottom: 0.1rem solid #eaeaea;
  padding-bottom: 1rem;
}
.addresscontent h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.addresscontent p {
  font-size: 1.5rem;
}
.addresscontent a {
  font-size: 1.4rem;
  color: var(--colorred);
  transition: all 300ms ease;
  margin-top: 0.3rem;
}
.addresscontent a:hover {
  color: var(--colorred);
  text-decoration: underline;
}
.addresscontent a i {
  transition: all 300ms ease;
  display: inline-block;
}
.addresscontent a:hover i {
  transform: translateX(0.5rem);
}
.contactboxestitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
  background-color: #f4f4f4;
  border-radius: 0.5rem;
  padding: 1rem;
}
.contactboxestitle h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contactboxestitle p {
  font-size: 1.4rem;
}
.contactbars {
  border-radius: 0.3rem;
  padding: 1rem;
  background-color: #f1f1f1;
  width: 100%;
  margin-top: 1rem;
  column-gap: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1rem;
}
@media (min-width: 768px) {
  .contactbars {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    row-gap: 0;
  }
}
.contactbars a {
  color: var(--textcolor);
}
.contactbars a:hover i {
  transform: translateX(0) !important;
}
.imagebox {
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
.imagebox img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: all 1.2s ease;
}
.imagebox:hover img {
  transform: scale(1.2);
  filter: brightness(0.5);
}
.videobox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.videobox figure {
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}
.videobox figure img {
  aspect-ratio: 1.5;
  height: 100%;
  object-fit: cover;
}
.videofilter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.videofilter a {
  width: 5rem;
  height: 5rem;
  border: 0.2rem solid #fff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: #fff;
  transition: all 300ms ease;
}
.videofilter a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 0.2rem solid #fff;
}
.videobox .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  flex: 1;
}
.videobox .content h3 {
  font-size: 1.6rem;
  font-weight: 500;
}
.bloginlinecontentdesc {
  margin-bottom: 1rem;
}
.bloginlinecontentdesc p {
  font-size: 1.4rem;
}
@media (min-width: 350px) {
  .bloginlinecontentdesc p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .bloginlinecontentdesc p {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .paddingleft {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) {
  .paddingleft {
    padding-left: 2rem;
  }
}
@media (min-width: 1200px) {
  .paddingleft {
    padding-left: 5rem;
  }
}
.productbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  background-color: #f1f1f1;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 300ms ease-in-out;
}
.productimage {
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.productimage img {
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1;
}
.productbox .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 1rem;
}
.productbox .content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  flex: 1;
}
.productbox .content h3 a {
  color: var(--textcolor);
  transition: color 300ms ease;
}
.productbox:hover {
  background-color: var(--colorblue);
}
.productbox:hover .content h3 a {
  color: #fff;
}
.productlink {
  font-size: 1.4rem;
  font-weight: 500;
  transition: color 300ms ease;
  color: var(--colorred);
}
.productlink:hover {
  color: #fff;
}
.productlink i {
  display: inline-block;
  transition: all 300ms ease;
}
.productlink:hover i {
  transform: translateX(0.5rem);
}
.productbox:hover .productlink {
  color: #fff;
}
.categorycontact {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.categorycontact p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.categorycontactbuttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.wpcontact {
  width: 100%;
  padding: 0.8rem 1rem;
  color: #fff;
  font-size: 1.4rem;
  background-color: #25d366;
  border-radius: 0.3rem;
  transition: all 300ms ease;
}
.wpcontact:hover {
  background-color: #075e54;
  color: #fff;
}
.singlecontact {
  width: 100%;
  padding: 0.8rem 1rem;
  color: #fff;
  font-size: 1.4rem;
  background-color: var(--colorred);
  border-radius: 0.3rem;
  transition: all 300ms ease;
}
.singlecontact:hover {
  background-color: var(--colorblue);
  color: #fff;
}
.productinlineimage {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.productinlineimage img {
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1;
}
.allcategory {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fbfbfb;
  border-radius: 0.5rem;
}
.allcategorytitle {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #f4f4f4;
}
.allcategorytitle h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.allcategorylinks {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.allcategorylinks a {
  border-radius: 0.3rem;
  width: 100%;
  background-color: #fff;
  font-size: 1.5rem;
  color: var(--textcolor);
  transition: all 300ms ease;
  padding: 1rem;
}
.allcategorylinks a:hover {
  color: #fff;
  background-color: var(--colorred);
}
.mobilemenu {
  padding: 2rem 0;
  display: none;
  border-top: 0.2rem solid var(--colorblue);
}
.mobilemenucontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.mainmobilelink {
  width: 100%;
  padding: 0.8rem 1rem;
  color: var(--textcolor);
  transition: all 300ms ease;
  border-radius: 0.3rem;
  font-size: 1.5rem;
  font-weight: 500;
}
.mainmobilelink:hover {
  background-color: var(--colorred);
  color: #fff;
}
.mobiledropdownlink {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  font-size: 1.5rem;
  background-color: transparent;
  color: var(--textcolor);
  font-weight: 500;
  border-radius: 0.3rem;
  transition: all 300ms ease;
}
.mobiledropdownlink:hover {
  background-color: var(--colorred);
  color: #fff;
}
.mobiledrops {
  padding: 1rem;
  background-color: #f1f1f1;
  width: 100%;
  display: none;
}
.mdroplinks {
  color: var(--textcolor);
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 0.3rem;
  transition: all 300ms ease;
  padding: 0.8rem 1rem;
  width: 100%;
  display: block;
}
.mdroplinks:hover {
  background-color: var(--colorblue);
  color: #fff;
}
.searchbar {
  background-color: #f1f1f1;
  padding: 2rem 0;
  display: none;
}
.searchboxes {
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.searchboxestitle {
  border-bottom: 0.1rem solid #ddd;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.searchboxestitle h3 {
  font-size: 1.6rem;
  font-weight: 600;
}
.searchlinks {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 0.3rem;
  border: 0.1rem solid #ddd;
  padding: 1rem;
  transition: all 300ms ease;
  margin-bottom: 1rem;
}
.searchlinks a {
  color: var(--textcolor);
  transition: all 300ms ease;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .searchlinks a {
    font-size: 1.5rem;
  }
}
.searchlinks:hover {
  border: 0.1rem solid var(--colorblue);
  background-color: var(--colorblue);
}
.searchlinks:hover a {
  color: #fff;
}
.searchlinks i {
  color: var(--textcolor);
  transition: all 300ms ease;
  margin-right: 0.5rem;
}
.searchlinks:hover i {
  color: #fff;
}
.searchresults {
  width: 100%;
  padding: 1rem;
  border-radius: 0.3rem;
  margin-bottom: 2rem;
  background-color: #f1f1f1;
}
.searchresults ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1rem;
  flex-wrap: wrap;
}
.searchresults ul li {
  font-size: 1.4rem;
}
.producteximages {
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
.producteximages img {
  height: 100%;
  object-fit: cover;
  transition: all 1.2s ease;
  aspect-ratio: 1;
}
.producteximages:hover img {
  transform: scale(1.2);
}
