@import url(root.css);
.headerside {
  display: flex;
  justify-content: flex-start;
  height: var(--header);
}
.logo {
  width: var(--header);
  height: var(--header);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.logo img {
  object-fit: contain;
  transform: scale(1.4);
}
.headeritem {
  width: calc(100% - var(--header));
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.headeritemtop {
  width: 100%;
  height: 5rem;
  background-color: #333;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headeritemtopleft {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1.5rem;
}
.headeritemtopleft a {
  color: #fff;
  transition: color 300ms ease-in-out;
}
.headeritemtopleft a:hover {
  color: var(--coloryellow);
}
.headeritemtopright {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 2rem;
}
.headersocialmedia {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 0.3rem;
}
.headersocialmedia a {
  width: 3rem;
  height: 3rem;
  border-radius: 0.2rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  position: relative;
  z-index: 0;
  transition: all 300ms ease-in-out;
}
.headersocialmedia a:hover {
  background-color: var(--coloryellow);
  color: var(--textcolor);
}
.language {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.gtranslate_wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 0.3rem;
}
.gtranslate_wrapper img {
  width: 2.2rem;
  border-radius: 0.2rem;
}
.headeritembottom {
  height: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  width: 100%;
}
.headeritembottomleft {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
}
.dropdownmain {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.headeritembottomleft a,
.dropdownmain p {
  font-size: 1.4rem;
  color: var(--textcolor);
  transition: color 300ms ease;
}
@media (min-width: 1200px) {
  .headeritembottomleft a,
  .dropdownmain p {
    font-size: 1.6rem;
  }
}
.headeritembottomleft a:hover,
.dropdownmain:hover p {
  color: var(--colorred);
}
.dropdownmain {
  cursor: pointer;
  position: relative;
}
.dropdownmain i {
  margin-left: 0.5rem;
  transition: transform 300ms ease-in-out, color 300ms ease;
}
.dropdownmain:hover i {
  transform: rotate(-45deg);
  color: var(--colorred);
}
.headeritembottomright {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.headeritembottomright a {
  border-radius: 0.3rem;
  background-color: var(--colorred);
  color: #fff;
  padding: 1rem 2rem;
  transition: all 300ms ease;
}
.headeritembottomright a i {
  margin-right: 0.5rem;
}
.headeritembottomright a:hover {
  background-color: var(--colorredhover);
  color: #fff;
}
.dropdowncontent {
  position: absolute;
  z-index: 5;
  top: 100%;
  left: -5rem;
  background-color: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 30rem;
  transition: transform 0.3s ease-in-out;
  transform-origin: top right;
  transform: perspective(600px) rotateX(-90deg);
}
.dropdownmain:hover .dropdowncontent {
  display: block;
  transform: perspective(600px) rotateX(0deg);
}
.dropdowncontent a {
  width: 100%;
  display: block;
  padding: 1rem;
  border-radius: 0.3rem;
  font-size: 1.5rem;
  color: var(--textcolor);
}
.dropdowncontent a i {
  transform: rotate(0) !important;
}
.mobilemenuicon {
  width: calc(100% - var(--header));
  justify-content: flex-end;
  align-items: center;
  padding-right: 1rem;
}
.topbarside {
  height: 5rem;
  background-color: var(--textcolor);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}
.topbarsideleft {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  column-gap: 1rem;
}
.topbarsideleft a {
  font-size: 1.4rem;
  color: #fff;
  transition: color 300ms ease-in-out;
}
.topbarsideleft a:hover {
  color: var(--coloryellow);
}
.topbarsideright {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.topbarsideright a {
  line-height: 1;
}
.topbarsideright .gtranslate_wrapper img {
  width: 2rem;
}
.slide {
  height: var(--slide);
  background-color: #eaeaea;
  overflow: hidden;
  position: relative;
}
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slidevideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.slideside {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slidetext {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
@media (min-width: 1200px) {
  .slidetext {
    width: 100rem;
  }
}
.slidetext h1 {
  font-size: 2rem;
}
@media (min-width: 576px) {
  .slidetext h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .slidetext h1 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .slidetext h1 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .slidetext h1 {
    font-size: 5rem;
  }
}
@media (min-width: 1600px) {
  .slidetext h1 {
    font-size: 5.5rem;
  }
}
.main-text {
  color: #fff;
  font-weight: 600;
}
.highlight-text {
  color: var(--coloryellow);
  display: block;
  font-weight: 900;
  font-size: 3rem;
}
@media (min-width: 576px) {
  .highlight-text {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) {
  .highlight-text {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  .highlight-text {
    font-size: 4.5rem;
  }
}
@media (min-width: 1200px) {
  .highlight-text {
    font-size: 8rem;
  }
}
@media (min-width: 1600px) {
  .highlight-text {
    font-size: 10rem;
  }
}
.mobilemenu {
  background-color: #f1f1f1;
  padding: 1rem 0;
  display: none;
}
.mobilemenucontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.mobilemenucontent a {
  width: 100%;
  padding: 0.5rem;
  display: block;
  border-radius: 0.3rem;
  font-size: 1.5rem;
  color: var(--textcolor);
  transition: all 300ms ease;
}
.mobilemenucontent a:hover {
  background-color: var(--coloryellow);
  color: var(--textcolor);
}
.mobiledropdownmain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  transition: all 300ms ease;
}
.mobiledropdownmain p {
  font-size: 1.5rem;
  color: var(--textcolor);
  transition: all 300ms ease;
}
.mobiledropdownmain p i {
  color: var(--textcolor);
  transition: all 300ms ease;
}
.mobiledropdownmain:hover p,
.mobiledropdownmain:hover i {
  color: var(--coloryellow);
}
.mobiledropdowncontent {
  display: none;
  padding: 1rem;
  background-color: #eaeaea;
}
.mobiledropdowncontent a:not(:last-child) {
  margin-bottom: 0.5rem;
}
.footer {
  background-color: var(--textcolor);
  padding: 5rem 0;
}
.footerbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 5rem;
}
.footerbox h4 {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: inline-block;
}
.footerbox h4::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 2rem;
  border-radius: 5rem;
  height: 0.2rem;
  background-color: var(--coloryellow);
}
.footerbox ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.8rem;
}
.footerbox ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 300ms ease;
  font-size: 1.6rem;
}
.footerbox ul li:hover a {
  color: rgba(255, 255, 255, 1);
}
.footerbox h2 {
  color: #fff;
  font-size: 4.5rem;
}
.footercontact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1rem;
  margin-top: 2rem;
}
.footercontactitem {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.footercontactitemicon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.footercontactitem .content {
  width: calc(100% - 3rem);
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
}
.footercontactitem .content a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 300ms ease;
  font-size: 1.5rem;
}
.footercontactitem .content a:hover {
  color: rgba(255, 255, 255, 1);
}
.aboutimage {
  border-radius: 1rem;
  position: relative;
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .aboutimage {
    margin-bottom: 0;
    height: 100%;
  }
}
.aboutimage img {
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .aboutimage img {
    object-fit: cover;
    aspect-ratio: 1.5;
  }
}
@media (min-width: 1200px) {
  .aboutimage img {
    aspect-ratio: 0;
  }
}
.aboutimage .content {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--coloryellow);
  padding: 1rem 2rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-top: 1.5rem solid #fff;
  border-left: 1.5rem solid #fff;
}
@media (min-width: 576px) {
  .aboutimage .content {
    padding: 3rem;
  }
}
@media (min-width: 768px) {
  .aboutimage .content {
    padding: 5rem;
  }
}
.aboutimage .content .contenttop {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.contenttopicon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.1);
  font-size: 2.2rem;
}
.aboutimage .content .contenttop p {
  width: calc(100% - 5rem);
  padding-left: 1rem;
  font-weight: 700;
  color: #fff;
  font-size: 2rem;
}
@media (min-width: 576px) {
  .aboutimage .content .contenttop p {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .aboutimage .content .contenttop p {
    font-size: 4rem;
  }
}
.aboutimage .content h3 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
}
.aboutcontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (min-width: 992px) {
  .aboutcontent {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}
@media (min-width: 1200px) {
  .aboutcontent {
    padding-left: 5rem;
    padding-right: 0;
    height: 100%;
  }
}
.aboutcontenttitle {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.aboutcontenttitle h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 576px) {
  .aboutcontenttitle h2 {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .aboutcontenttitle h2 {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  .aboutcontenttitle h2 {
    font-size: 5.5rem;
  }
}
.aboutcontenttitle p {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--coloryellow);
}
.aboutcontenttext {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.aboutcontenttext p {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: var(--textcolor);
}
.aboutlinks {
  background-color: var(--coloryellow);
  padding: 1.5rem 3rem;
  border-radius: 5rem;
  color: var(--textcolor);
  font-weight: 500;
  transition: all 300ms ease;
  margin-top: 1rem;
}
.aboutlinks i {
  transition: all 300ms ease;
}
.aboutlinks:hover i {
  transform: rotate(45deg);
}
.aboutlinks:hover {
  background-color: var(--coloryellowhover);
}
.aboutbackground {
  background-image: url(../images/robotic-arm.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 15rem;
}
@media (min-width: 576px) {
  .aboutbackground {
    background-size: 30rem;
  }
}
.sectors {
  background-color: #fbfbfb;
}
.sectorBoxes {
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  width: 100%;
}
.sectorBoxes .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.sectorBoxes .content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .sectorBoxes .content h3 {
    font-size: 1.6rem;
  }
}
.sectorBoxes .content h3 a {
  color: var(--textcolor);
  transition: color 300ms ease;
}
.sectorBoxes:hover .content h3 a {
  color: var(--colorred);
}
.sectorBoxes .content p {
  font-size: 1.5rem;
  color: var(--textcolor);
  flex: 1;
}
@media (min-width: 1200px) {
  .sectorBoxes .content p {
    font-size: 1.6rem;
  }
}
.sectorlink {
  font-weight: 500;
  margin-top: 1rem;
  font-size: 1.4rem;
  color: var(--coloryellow);
  transition: color 300ms ease-in-out;
}
@media (min-width: 576px) {
  .sectorlink {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .sectorlink {
    font-size: 1.6rem;
  }
}
.sectorlink i {
  transition: transform 300ms ease-in-out;
}
.sectorlink:hover i {
  transform: translateX(0.5rem);
}
.sectorlink:hover {
  color: var(--coloryellowhover);
}
.swipercarousel .swiper-slide {
  display: flex;
  height: auto;
}
.sectoricons {
  width: 5rem;
  height: 5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 0;
}
.pagebanners {
  padding: 2rem 0;
  background-color: var(--colorred);
}
.pagebanners ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .pagebanners ul {
    flex-wrap: nowrap;
  }
}
.pagebanners ul li a {
  color: #fff;
  font-size: 1.6rem;
}
.pagebanners ul li {
  color: #fff;
  font-size: 1.6rem;
  position: relative;
}
.pagebanners ul li:not(:last-child)::after {
  content: "\EA54";
  font-family: "remixicon";
  position: absolute;
  color: #fff;
}
.pagebanners ul li.active {
  font-weight: 800;
}
.othersectors {
  border-radius: 1rem;
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}
.sectorscontent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .sectorscontent {
    padding-left: 3rem;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .sectorscontent {
    padding-left: 5rem;
  }
}
.sectorcontenthead {
  margin-bottom: 2rem;
}
.sectorcontenthead h2 {
  font-size: 2rem;
  font-weight: 800;
}
@media (min-width: 576px) {
  .sectorcontenthead h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .sectorcontenthead h2 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .sectorcontenthead h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .sectorcontenthead h2 {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  .sectorcontenthead h2 {
    font-size: 4rem;
  }
}
.sectorcontenttext p {
  font-size: 1.6rem;
}
.othersectorshead {
  border-radius: 0.3rem;
  padding: 1rem;
  background-color: var(--coloryellow);
  margin-bottom: 1rem;
}
.othersectorshead h3 {
  font-size: 1.6rem;
  font-weight: 700;
}
.othersectorsitem {
  width: 100%;
  display: flex;
}
.othersectorsitem:not(:last-child) {
  margin-bottom: 1rem;
}
.othersectorsitem a {
  font-size: 1.6rem;
  color: var(--textcolor);
  transition: color 300ms ease;
}
.othersectorsitem:hover a {
  color: var(--colorred);
}
.refimages {
  width: 100%;
  margin-bottom: 2rem;
  background-color: #fff;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.1rem solid #eaeaea;
}
.refimages img {
  object-fit: contain;
  width: 12rem;
}
.resize1 {
  width: 10rem;
  height: auto;
}
@media (min-width: 576px) {
  .resize1 {
    width: 12rem;
  }
}
@media (min-width: 992px) {
  .resize1 {
    width: 16rem;
  }
}
.resize2 {
  width: 8rem;
  height: auto;
}
@media (min-width: 576px) {
  .resize2 {
    width: 10rem;
  }
}
@media (min-width: 992px) {
  .resize2 {
    width: 12rem;
  }
}
.refBG {
  background-color: #fbfbfb;
  padding: 1rem;
}
.refBG:hover img {
  filter: grayscale(1);
}
.pagecontents {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.pagecontentstitle {
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.pagecontentstitle h1 {
  font-size: 2rem;
  font-weight: 800;
}
@media (min-width: 576px) {
  .pagecontentstitle h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .pagecontentstitle h1 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .pagecontentstitle h1 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .pagecontentstitle h1 {
    font-size: 4rem;
  }
}
.pagecontentstitle p {
  margin-top: 0.5rem;
  color: var(--coloryellow);
  font-weight: 600;
}
.pagecontentstext p {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.maintitle {
  margin-bottom: 4rem;
}
.maintitle h2 {
  font-size: 2rem;
  font-weight: 800;
}
@media (min-width: 576px) {
  .maintitle h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .maintitle h2 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .maintitle h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .maintitle h2 {
    font-size: 4rem;
  }
}
.blogbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.blogboximage {
  border-radius: 1rem;
  overflow: hidden;
  height: 25rem;
}
.blogboximage img {
  height: 100%;
  object-fit: cover;
  transition: all 1.2s ease-in-out;
}
.blogbox:hover .blogboximage img {
  transform: scale(1.2);
  filter: brightness(60%);
}
.blogbox .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  flex: 1;
}
.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 .content p {
  font-size: 1.5rem;
  flex: 1;
}
@media (min-width: 768px) {
  .blogbox .content p {
    font-size: 1.6rem;
  }
}
.blogbox:hover .content h3 a {
  color: var(--colorred);
}
.newsinlinecontent {
  margin-top: 2rem;
  background-color: #f1f1f1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
.newsinlinecontent a {
  width: 100%;
  color: var(--textcolor);
  transition: color 300ms ease;
}
.newsinlinecontent a:hover {
  color: var(--colorred);
}
.newsinlineimage {
  border-radius: 1rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .affixnews {
    position: sticky;
    top: 1rem;
  }
}
.refimages2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8rem;
  background: #fff;
}
.refimages2 img {
  width: 10rem;
  object-fit: contain;
}
.padding2 {
  padding: 2rem 0;
}

.contactboxtitle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 2rem;
}
.contactboxtitle h3 {
  font-size: 2.5rem;
  font-weight: 800;
}
@media (min-width: 576px) {
  .contactboxtitle h3 {
    font-size: 3rem;
  }
}
.contactboxtitle h4 {
  font-size: 2rem;
  font-weight: 600;
}
@media (min-width: 576px) {
  .contactboxtitle h4 {
    font-size: 2.5rem;
  }
}
.contactboxtitle p {
  margin-top: 0.5rem;
  opacity: 0.8;
}
.contactboxitem {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.contactboxitem:not(:last-child) {
  margin-bottom: 2rem;
}
.contactboxitemicon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.3rem;
  background-color: var(--colorred);
  color: #fff;
  font-size: 1.8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.contactboxitem .content {
  width: calc(100% - 4rem);
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (min-width: 1200px) {
  .contactboxitem .content {
    padding-right: 8rem;
  }
}
.contactboxitem .content span {
  font-size: 1.6rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}
.contactboxitem .content a {
  font-size: 1.6rem;
  color: var(--textcolor);
  transition: color 300ms ease;
}
.contactboxitem .content a:hover {
  color: var(--colorred);
}
.contactboxitem .content a:not(:last-child) {
  margin-bottom: 0.3rem;
}
.contactboxBG {
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
  padding: 5rem 2rem;
  border-radius: 0.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .contactboxBG {
    margin-top: 0;
    padding: 5rem 8rem;
  }
}
@media (min-width: 1200px) {
  .contactboxBG {
    padding: 5rem 10rem;
  }
}
.contactbox form {
  width: 100%;
}
.contactboxsocial {
  margin-top: 4rem;
}
.socialmediaside {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
}
.socialmediaside a {
  width: 6rem;
  height: 6rem;
  border-radius: 0.3rem;
  color: var(--textcolor);
  transition: all 300ms ease;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  border: 0.1rem solid #f1f1f1;
}
.socialmediaside a:hover {
  background-color: var(--colorred);
  border: 0.1rem solid var(--colorred);
  color: #fff;
}
@media (min-width: 1200px) {
  .adresss {
    width: 25rem;
  }
}
.deep {
  text-align: center;
  border-top: 0.1rem dashed rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
}
.deep a {
  font-size: 2.5rem;
  color: #fff;
  font-family: "pill";
  transition: all 300ms ease;
}
.deep a:hover {
  color: var(--colorred);
}
.reftitle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2rem;
}
.reftitle h2 {
  font-size: 2.5rem;
  font-weight: 700;
  padding-left: 1rem;
}
.texturemain table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.texturemain table th,
.texturemain table td {
  padding: 1rem;
  font-size: 1.5rem;
  border: 0.1rem solid #eaeaea;
  color: var(--textcolor);
}
