@import url("root.css");
:root {
  --header: 8rem;
}
@media (min-width: 992px) {
  :root {
    --header: 10rem;
  }
}
.headerside {
  height: var(--header);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  width: 100%;
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 576px) {
  .logo {
    margin-top: 1rem;
    align-items: flex-start;
  }
}
.logo img {
  width: 7rem;
}
@media (min-width: 576px) {
  .logo img {
    width: 12rem;
    border: 0.5rem solid #fff;
    border-radius: 50%;
    background-color: #fff;
  }
}
@media (min-width: 992px) {
  .logo img {
    width: 14rem;
  }
}
.menuside {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 4rem;
  flex: 2;
}
.mainlink {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--textcolor);
  font-size: 1.4rem;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 300ms ease;
}
@media (min-width: 1500px) {
  .mainlink {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .mainlink {
    font-size: 1.6rem;
  }
}
.mainlink .mainlinkicon {
  display: inline-block;
  transition: all 300ms ease;
  margin-left: 0.3rem;
  font-size: 1.2rem;
  line-height: 1;
}
.mainlink:hover .mainlinkicon {
  transform: rotate(-180deg);
}
.mainlink:hover {
  color: var(--colorblue2);
}
.dropdownmain {
  position: absolute;
  top: 120%;
  background-color: #fff;
  padding: 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
  z-index: 1;
  right: -8rem;
  left: -8rem;
  opacity: 0;
  pointer-events: none;
  transition: all 300ms ease;
}
.mainlink:hover .dropdownmain {
  top: 100%;
  opacity: 1;
  pointer-events: all;
}
.droplinks {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  color: var(--textcolor);
  text-transform: capitalize;
  font-weight: 500;
  padding: 1rem;
  border-radius: 0.2rem;
}
.droplinks:hover {
  background-color: var(--colorblue2);
  color: #fff;
}
.droplinks i {
  display: inline-block;
  transition: all 300ms ease;
}
.droplinks:hover i {
  transform: translateX(0.5rem);
}
.headersideend {
  width: 100%;
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 1rem;
}
.headersideend .divider {
  width: 1px;
  height: 3rem;
  background-color: #ddd;
}
.headersocial {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 0.3rem;
}
.headersocial a {
  color: var(--textcolor);
  font-size: 1.4rem;
  transition: all 300ms ease;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.2rem;
}
@media (min-width: 1500px) {
  .headersocial a {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .headersocial a {
    font-size: 1.6rem;
  }
}
.headersocial a:hover {
  color: #fff;
  background-color: var(--colorblue1);
}
.headersearch {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.searchbutton {
  width: 3rem;
  height: 3rem;
  border-radius: 0.2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: var(--textcolor);
  font-size: 1.4rem;
  transition: all 300ms ease;
}
@media (min-width: 1500px) {
  .searchbutton {
    font-size: 1.6rem;
  }
}
@media (min-width: 1600px) {
  .searchbutton {
    font-size: 1.6rem;
  }
}
.searchbutton:hover {
  background-color: #f1f1f1;
  color: var(--textcolor);
}
.mobilemenuicons {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.openmenu {
  width: 3rem;
  height: 3rem;
  border-radius: 0.3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  color: var(--textcolor);
  transition: all 300ms ease;
  background-color: transparent;
}
.openmenu:hover {
  background-color: #f1f1f1;
  color: var(--textcolor);
}
.announcement {
  background-color: var(--colorblue1);
  padding: 1.5rem 0;
  overflow: hidden;
}
.announcementside {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 576px) {
  .announcementside {
    margin-left: 12rem;
  }
}
@media (min-width: 992px) {
  .announcementside {
    margin-left: 15rem;
  }
}
.announcementtitle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.announcementtitle i {
  display: inline-block;
  font-size: 1.4rem;
  color: #fff;
  margin-right: 0.5rem;
}
.announcementtitle p {
  font-size: 1.4rem;
  color: #fff;
}
@media (min-width: 1500px) {
  .announcementtitle i,
  .announcementtitle p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .announcementtitle i,
  .announcementtitle p {
    font-size: 1.6rem;
  }
}
.announcementcontent {
  position: relative;
  overflow: hidden;
  margin-left: 1rem;
}
.announcementcontentlinks {
  white-space: nowrap;
  will-change: transform;
  animation: marquee 5s linear infinite;
  display: flex;
  column-gap: 2rem;
}
@media (min-width: 992px) {
  .announcementcontentlinks {
    animation: marquee 32s linear infinite;
  }
}
.announcementcontentlinks:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.announcementcontentlinks a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  transition: all 300ms ease;
}
@media (min-width: 1500px) {
  .announcementcontentlinks a {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .announcementcontentlinks a {
    font-size: 1.6rem;
  }
}
.announcementcontentlinks a i {
  font-size: 0.5rem;
  margin-left: 2rem;
  display: inline-block;
  margin-top: 0.1rem;
}
.announcementcontentlinks a:hover {
  color: #fff;
  text-decoration: underline;
}
.slidemain {
  width: 100%;
}
.slide {
  background-color: #f1f1f1;
  padding: 2rem 0;
  position: relative;
  z-index: 0;
}
@media (min-width: 992px) {
  .slide {
    padding: 4rem 0;
  }
}
.slideitem {
  height: 35rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media (min-width: 576px) {
  .slideitem {
    height: 40rem;
  }
}
.slideitem .content {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: #002947;
  background: linear-gradient(
    180deg,
    rgba(0, 41, 71, 0) 0%,
    rgba(0, 41, 71, 1) 100%
  );
}
@media (min-width: 992px) {
  .contentlimit {
    width: 70%;
  }
}
.slideitem .content h1 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 2rem;
}
@media (min-width: 567px) {
  .slideitem .content h1 {
    font-size: 2.2rem;
  }
}
@media (min-width: 992px) {
  .slideitem .content h1 {
    font-size: 2.5rem;
  }
}
.slideitem .content p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 1500px) {
  .slideitem .content p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .slideitem .content p {
    font-size: 1.6rem;
  }
}
.slidelink {
  font-size: 1.4rem;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.2rem;
  transition: all 300ms ease;
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-block;
  margin-top: 1rem;
}
@media (min-width: 1500px) {
  .slidelink {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .slidelink {
    font-size: 1.6rem;
  }
}
.slidelink i {
  display: inline-block;
  transition: all 300ms ease;
}
.slidelink:hover {
  background-color: rgba(255, 255, 255, 1);
  color: var(--colorblue1);
}
.slidelink:hover i {
  transform: translateX(0.5rem);
}
.slideanno {
  border-radius: 0.5rem;
  background-color: #fff;
  width: 100%;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .slideanno {
    margin-top: 0;
  }
}
.slideannotitle {
  padding: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 0.1rem dashed #f1f1f1;
}
.slideannotitle i {
  color: var(--colorblue1);
  margin-right: 1rem;
}
.slideannotitle h2 {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .slideannotitle h2 {
    font-size: 1.5rem;
  }
}
.slideanno .content {
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
}
@media (min-width: 992px) {
  .slideanno .content {
    padding: 0 2rem 2rem 2rem;
    height: calc(100% - 6.4rem);
  }
}
.slideanno .content .contentitem {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.slideanno .content .contentitem:not(:last-child) {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .slideanno .content .contentitem:not(:last-child) {
    margin-bottom: 0;
  }
}
.slideanno .content .contentitem h3 {
  font-size: 1.4rem;
  font-weight: 500;
}
@media (min-width: 992px) {
  .slideanno .content .contentitem h3 {
    font-size: 1.5rem;
  }
}
.slideanno .content .contentitem h3 a {
  color: var(--textcolor);
  transition: all 300ms ease;
}
.slideanno .content .contentitem:hover h3 a {
  color: var(--colorblue2);
}
.slideanno .content .contentitembottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.slideanno .content .contentitembottom p {
  font-size: 1.4rem;
  font-weight: 500;
}
.slideanno .content .contentitembottom p i {
  display: inline-block;
  margin-right: 0.3rem;
  color: var(--colorblue2);
}
.slideanno .content .contentitembottom a {
  color: var(--colorblue1);
  transition: all 300ms ease;
  font-size: 1.4rem;
}
.slideanno .content .contentitembottom a:hover {
  color: var(--colorblue2);
}
.slideanno .content .contentitembottom a i {
  transition: all 300ms ease;
  display: inline-block;
}
.slideanno .content .contentitembottom a:hover i {
  transform: translateX(0.5rem);
}
.blogbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.blogimage {
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}
.blogimage img {
  object-fit: cover;
  transition: all 1.2s ease;
}
.blogbox:hover .blogimage img {
  transform: scale(1.1);
  filter: brightness(0.5);
}
.blogbox .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 2rem;
}
.blogbox .content h3 {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.blogbox .content h3 a {
  color: var(--textcolor);
  transition: all 300ms ease;
}
.blogbox .content h3:hover a {
  color: var(--colorblue2);
}
.blogbox .content p {
  font-size: 1.4rem;
  flex: 1;
  margin-bottom: 1rem;
}
@media (min-width: 1500px) {
  .blogbox .content p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .blogbox .content p {
    font-size: 1.6rem;
  }
}
.bloglink {
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 300ms ease;
  color: var(--colorblue1);
}
.bloglink:hover {
  color: var(--colorblue2);
}
.bloglink i {
  display: inline-block;
  transition: all 300ms ease;
}
.bloglink:hover i {
  transform: translateX(0.5rem);
}
@media (min-width: 1500px) {
  .bloglink {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .bloglink {
    font-size: 1.6rem;
  }
}
.footer {
  background-color: var(--colorblue1);
  padding: 2rem 0;
}
.footercontent {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.footercontenttop {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 0.1rem dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .footercontenttop {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footercontenttop figure {
  width: 10rem;
}
.footercontenttopend {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .footercontenttopend {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    column-gap: 2rem;
    margin-top: 0;
  }
}
.footercontenttopend .divider {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  height: 3rem;
}
.footersocial {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
  margin-top: 1rem;
}
@media (min-width: 576px) {
  .footersocial {
    justify-content: flex-end;
  }
}
@media (min-width: 768px) {
  .footersocial {
    margin-top: 0;
  }
}
.footersocial a {
  font-size: 1.4rem;
  width: 3rem;
  height: 3rem;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.3rem;
  transition: all 300ms ease;
}
@media (min-width: 1500px) {
  .footersocial a {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .footersocial a {
    font-size: 1.6rem;
  }
}
.footersocial a:hover {
  color: var(--colorblue1);
  background-color: #fff;
}
.footercontact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.5rem;
}
@media (min-width: 576px) {
  .footercontact {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    column-gap: 1rem;
    row-gap: 0;
  }
}
.footercontact a {
  color: #fff;
  font-size: 1.4rem;
}
@media (min-width: 1500px) {
  .footercontact a {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .footercontact a {
    font-size: 1.6rem;
  }
}
.footercontact a i {
  margin-right: 0.3rem;
  display: inline-block;
}
.footercontact a:hover {
  color: #fff;
  text-decoration: underline;
}
.footerbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.footerbox h4 {
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  font-weight: 600;
}
.footerbox h4::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 3rem;
  height: 0.2rem;
  background-color: var(--colorblue2);
  border-radius: 5rem;
}
.footerbox ul li {
  padding: 0.3rem 0;
}
.footerbox ul li a {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 300ms ease;
  display: inline-block;
}
.footerbox ul li:hover a {
  transform: translateX(0.5rem);
  color: rgba(255, 255, 255, 1);
}
.footercontent2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.footercontenttitle {
  margin-bottom: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footercontenttitle h4 {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.footercontenttitle p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
}
.footercontent2 form {
  width: 100%;
}
.footercontent2 .form-control {
  font-size: 1.4rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  outline: none;
  box-shadow: none;
  color: #fff;
}
@media (min-width: 1500px) {
  .footercontent2 .form-control {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .footercontent2 .form-control {
    font-size: 1.6rem;
  }
}
.footercontent2 .form-control::placeholder {
  color: #fff;
}
.mobileapp {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  column-gap: 1rem;
}
@media (min-width: 390px) {
  .mobileapp {
    flex-direction: row;
    row-gap: 0;
    justify-content: flex-end;
    align-items: center;
  }
}
.mobileappcontent {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #000;
  border-radius: 0.3rem;
  padding: 1rem;
}
.mobileappcontenticon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.mobileappcontent .content {
  width: calc(100% - 3rem);
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.mobileappcontent .content p {
  font-size: 1.4rem;
  color: #fff;
}
.mobileappcontent .content a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  transition: all 300ms ease;
}
.mobileappcontent .content a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.footerdeep {
  width: 100%;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 0.1rem dashed rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}
.footerdeep a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 300ms ease;
  font-size: 2rem;
  font-family: "pill";
}
.footerdeep a:hover {
  color: rgba(255, 255, 255, 1);
}
.newsimages {
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .newsimages {
    margin-bottom: 0;
  }
}
.newsimages img {
  aspect-ratio: 2.2/1;
  object-fit: cover;
}
@media (min-width: 992px) {
  .newsimages img {
    aspect-ratio: 1;
  }
}
@media (min-width: 992px) {
  .newspadding {
    padding-left: 5rem;
  }
}
@media (min-width: 992px) {
  .affixitem {
    position: sticky;
    top: 1rem;
  }
}
.noticebox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
  background-color: #fff;
  border-radius: 0.3rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 2rem;
}
@media (min-width: 576px) {
  .noticebox {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}
.noticebox figure {
  width: 8rem;
  height: 8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.noticebox .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-top: 1rem;
}
@media (min-width: 576px) {
  .noticebox .content {
    width: calc(100% - 8rem);
    padding-left: 2rem;
    margin-top: 0;
  }
}
.noticebox .content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.noticebox .content h3 a {
  color: var(--textcolor);
  transition: all 300ms ease;
}
.noticebox:hover .content h3 a {
  color: var(--colorblue2);
}
.noticebox .content p {
  font-size: 1.4rem;
  font-weight: 500;
}
.noticelink {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--colorblue2);
  display: inline-block;
  margin-top: 0.3rem;
  transition: all 300ms ease;
}
.noticelink:hover {
  color: var(--colorblue1);
}
.noticelink i {
  transition: all 300ms ease;
  display: inline-block;
}
.noticelink:hover i {
  transform: translateX(0.5rem);
}
.contactbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
}
.contactboxtitle {
  background-color: #f1f1f1;
  padding: 1rem;
  border-radius: 0.3rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.contactboxtitle h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.contactboxtitle p {
  font-size: 1.4rem;
}
@media (min-width: 1500px) {
  .contactboxtitle p {
    font-size: 1.5rem;
  }
}
.addresscontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 1rem 0;
}
.addresscontent h3 {
  font-size: 1.5rem;
  font-weight: 700;
}
.addresscontent p {
  font-size: 1.4rem;
}
@media (min-width: 1500px) {
  .addresscontent p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .addresscontent p {
    font-size: 1.6rem;
  }
}
.showmap {
  font-size: 1.4rem;
  color: var(--colorblue2);
  transition: all 300ms ease;
}
@media (min-width: 1500px) {
  .showmap {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .showmap {
    font-size: 1.6rem;
  }
}
.showmap i {
  display: inline-block;
  transition: all 300ms ease;
}
.showmap:hover i {
  transform: translateX(0.5rem);
}
.showmap:hover {
  color: var(--colorblue1);
}
.contactbar {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contactbaritem {
  width: 100%;
  background-color: #f1f1f1;
  padding: 1rem;
  border-radius: 0.3rem;
}
.contactbaritem:not(:last-child) {
  margin-bottom: 0.5rem;
}
.contactbaritem a {
  font-size: 1.4rem;
  color: var(--textcolor);
  transition: all 300ms ease;
}
@media (min-width: 1500px) {
  .contactbaritem a {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .contactbaritem a {
    font-size: 1.6rem;
  }
}
.contactbaritem a:hover {
  color: var(--colorblue2);
}
