html,
body {
  padding: 0;
  margin: 0;
}
* {
  margin: 0;
  padding: 0;
  font-family: "Source Sans", Arial, Helvetica, Verdana, "Microsoft YaHei";
  border: 0;
  outline: medium;
  text-shadow: none;
  text-decoration: none;
}
body {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow-x: hidden;
}
input {
  vertical-align: middle;
}
textarea {
  resize: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 14px;
  margin: 0;
  padding: 0;
}
hr {
  border-width: 1px;
  border-style: inset;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
p {
  margin: 0;
}
a,
a:link,
a:active,
a:visited,
a:hover {
  text-decoration: none;
}
a {
  transition: transform 0.3s;
}
a:hover {
  transform: translateY(-3px);
}
i {
  display: block;
}
i,
em {
  font-style: normal;
}
html {
  height: 100%;
}
html,
body {
  width: 100%;
  min-height: 100%;
}

@font-face {
  font-family: "Source Sans";
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  src: url("../fonts/SourceSans3-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans";
  font-weight: 400;
  font-style: italic;
  font-stretch: normal;
  src: url("../fonts/SourceSans3-It.ttf.woff2") format("truetype");
}

@font-face {
  font-family: "Source Sans";
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  src: url("../fonts/SourceSans3-Bold.ttf") format("truetype");
}

.h-bd {
  overflow-x: hidden;
}
.fr {
  float: right;
}
.fl {
  float: left;
}

/* head */
.head {
  position: sticky;
  top: 0px;
  height: 70px;
  width: 100%;
  z-index: 4;
  background-color: white;
  transition: height 0.3s ease-in-out, background-color 0.3s ease-in-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-top: 18px solid #d2f2fd;
  box-sizing: content-box;
}
.head .row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.headrow {
  display: flex;
  align-items: center;
  /* gap: 16px; */
  height: 100%;
}
.headrow .logo {
  padding-left: 16px;
}
.headrow .logo a {
  display: block;
  height: 100%;
}
.headrow .logo img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
}

.headsearch {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-left: 1px solid #e2e3e5;
  padding: 0px 16px;
  transition: background-color 0.3s ease-in-out;
  position: relative;
}
.headsearch .search-widget {
  position: absolute;
  top: 100%;
  left: 0px;
  background-color: #115fad;
  color: white;
  padding: 8px;
}
.headsearch .search-widget-input {
  padding: 8px 4px;
  color: initial;
  width: 200px;
  border-radius: 4px;
}

.headlogo {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  border-left: 1px solid #e2e3e5;
  padding: 0px 8px;
}
.headlogo .fda-logo {
  height: 42px;
}
.headlogo img {
  height: 35px;
}

.headtel {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  border-left: 1px solid #e2e3e5;
  padding: 0px 8px;
}
.headtel img {
  filter: invert(70%);
}
.headtel strong {
  font-size: 18px;
}

.headlang {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 4px;
  border-left: 1px solid #e2e3e5;
  padding: 0px 16px;
  transition: background-color 0.3s ease-in-out;
}
.headlang.active,
.headlang:hover {
  background-color: #115fad;
  color: white;
}
.headlang.active img,
.headlang:hover img {
  filter: unset;
}
.headlang span {
  text-align: center;
}
.headlang img {
  height: 35px;
  width: 35px;
  filter: invert(100%);
}

.navlist {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  height: 100%;
}
.navlist .child {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: background-color 0.3s ease-in-out;
  color: black;
}
.navlist .child .childContent {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  min-width: 150px;
  background-color: #115fad;
  transition: opacity 0.3s ease-in-out;
}
.navlist .child .childContent a {
  font-weight: normal;
  padding: 8px;
  text-wrap: nowrap;
}
.navlist .child .childContent .childContent-2 {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 100%;
  min-width: 150px;
  background-color: #115fad;
  transition: opacity 0.3s ease-in-out;
}
.navlist .child a {
  display: inline-flex;
  align-items: center;
  color: initial;
  height: 100%;
  padding: 0px 8px;
  font-size: 16px;
  font-weight: bold;
}
.navlist .child > a {
  text-transform: uppercase;
}
.navlist .child.active,
.navlist .child:hover {
  background-color: #115fad;
  color: white;
}
.navlist .child.active a,
.navlist .child:hover a {
  color: white;
}
.navlist .child:hover .childContent {
  visibility: visible;
  opacity: 1;
}
.navlist .child:hover .childContent .childContentLi {
  position: relative;
}
.navlist .child:hover .childContent .childContentLi a {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
}
.navlist .child:hover .childContent .childContentLi:hover .childContent-2 {
  visibility: visible;
  opacity: 1;
}

.head.tr {
  height: 70px;
  background-color: #00000080;
}

/* wapnav */
.menu-btn {
  position: absolute;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 105px;
  height: 43px;
  border-radius: 22px;
  cursor: pointer;
  transition: 0.4s 0.2s;
  background-color: #115fad;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}
.menu-btn p {
  margin-right: 10px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  transition: 0.4s 0.2s;
}
.menubtn {
  position: relative;
  z-index: 20;
  float: right;
  cursor: pointer;
  transition: 0.4s;
  cursor: pointer;
}
.menubtn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  position: relative;
  vertical-align: middle;
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.menubtn span:after,
.menubtn span:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 2px;
  left: 0;
  background-color: #fff;
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}
.menubtn span:before {
  top: -6px;
  transition-property: top, transform;
}
.menubtn span:after {
  bottom: -6px;
  transition-property: bottom, transform;
}
.menubtn.active span {
  background-color: transparent;
  transition-delay: 0s, 0s;
}
.menubtn.active span:after,
.menubtn.active span:before {
  transition-delay: 0s, 0.3s;
}
.menubtn.active span:before {
  top: 0px;
  transform: rotate(45deg);
}
.menubtn.active span:after,
.menubtn.active span:before {
  transition-delay: 0s, 0.3s;
}
.menubtn.active span:after {
  bottom: 0px;
  transform: rotate(-45deg);
}

.menu-flex.show {
  visibility: visible;
  pointer-events: visible;
}
.menu-flex {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  pointer-events: none;
  transition: 0.88s;
}
.menu-flex.show .menu-bg {
  opacity: 1;
  visibility: visible;
  transition: 0.88s 0s;
}
.menu-bg {
  position: absolute;
  left: 0;
  top: 0;
  background: #00000080;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.88s 0.3s;
  z-index: 9;
}
.menu-flex.show .menu-right {
  right: 0;
}
.menu-right {
  position: absolute;
  right: -330px;
  top: 0;
  width: 60%;
  max-width: 330px;
  height: 100%;
  background: #fff;
  transition: 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 10;
}
.menu-list {
  padding-top: 100px;
  margin: 0 30px;
}
.menu-list > li {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid #ebebeb;
}
.menu-list > li > a {
  display: block;
  position: relative;
  z-index: 2;
  color: #000000b3;
  font-size: 16px;
  height: 59px;
  line-height: 59px;
}

.area {
  width: 100%;
  padding: 0px 16px;
}
.area h2 {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-weight: bold;
  position: relative;
  line-height: 110px;
}
.area h2 p {
  font-size: 42px;
  color: #000000cc;
  position: relative;
  z-index: 2;
}
.area h2 p b {
  color: #115fad;
}
.area h2 span {
  font-size: 120px;
  color: #115fad0d;
  font-weight: normal;
  position: absolute;
  font-weight: bold;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  top: 50%;
  text-transform: uppercase;
  display: block;
  width: 100%;
  user-select: none;
}
.n-area {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
}

.area .more {
  font-size: 15px;
  padding: 15px 35px;
  line-height: 20px;
  border: 1px solid #115fad;
  color: #00000099;
}
.area .more b {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 50px;
  background-color: #115fad;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  font-family: cursive;
}

table tr td {
  border: 1px solid #222;
  padding: 5px;
}

/* adv */
.adv {
  background-size: cover;
  padding: 145px 15px;
  background-position: right 0px bottom 0px;
}
.adv .n-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
.adv .adv-l {
  width: 50%;
  align-items: center;
  max-width: 690px;
  padding: 100px 15px;
  text-align: center;
}
.adv .adv-l h2 {
  color: #000000cc;
  text-align: left;
  line-height: normal;
  margin-bottom: 20px;
}
.adv .adv-l h2 p {
  color: #ffffff;
  text-align: center;
}
.adv .adv-l > p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 30px;
}
.adv .adv-l .img {
  width: 100%;
  max-width: 560px;
  background-size: 1920px;
  background-position: bottom -70px left -143px;
  filter: brightness(1.2);
  transition: all 0.3s;
}
.adv .adv-l img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.adv .adv-r {
  width: 50%;
}
.adv .adv-r .li {
  display: flex;
  padding: 25px 0;
  align-items: center;
  background-color: #ffffff;
  border-radius: 5px;
  margin-bottom: 45px;
  height: 135px;
  transition: all 0.3s;
}
.adv .adv-r .li:last-child {
  margin-bottom: 0;
}
.adv .adv-r .li .img {
  width: 28%;
  text-align: center;
}
.adv .adv-r .li .img img {
  width: 55px;
  height: 55px;
  margin-bottom: 15px;
  transition: all 0.5s;
  padding: 10px;
  background-color: #115fad;
  border-radius: 50%;
  object-fit: none;
}
.adv .adv-r .li:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}
.adv .adv-r .li:hover .img img {
  transform: rotate3d(1, 1, 1, 360deg);
}
.adv .adv-r .li .img h4 {
  font-size: 18px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.8);
}
.adv .adv-r .li .info {
  width: 72%;
  padding: 0 5%;
  font-size: 15px;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.6);
}

/* foot */
/*-------footer -------*/
.footer {
  overflow: hidden;
  background-size: cover;
  background-color: #d2f2fd;
}
.footer .n-area {
  border-bottom: 1px solid #7abef3;
}
.footer .flogo {
  width: 100%;
  padding: 32px 0px;
  border-bottom: 1px solid #7abef3;
  border-right: 1px solid #7abef3;
}
.footer .flogo .sitelogo {
  max-width: 98px;
  max-height: 98px;
  border-radius: 50%;
}
.footer .flogo .sns-logo {
  padding-right: 16px;
}
.footer .flx .sns-logo img {
  max-width: 36px;
  max-height: 36px;
  border-radius: 8px;
}
.footer .flm {
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 185px;
  border-right: 1px solid #7abef3;
}
.footer .fnav {
  padding: 0;
  overflow: hidden;
  padding-top: 30px;
  margin-bottom: 10px;
  display: flex;
  gap: 16px;
}
.footer .fnav dl {
  text-align: center;
}
.footer .fnav dt a {
  color: initial;
  font-size: 16px;
  line-height: 32px;
  display: block;
  margin-bottom: 15px;
  text-align: left;
  font-weight: normal;
  position: relative;
}
.footer .fnav dd a {
  display: block;
  color: #666;
  font-size: 14px;
  line-height: 35px;
  text-align: left;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
}
.footer .fnav dt a:hover,
.footer .fnav dd a:hover {
  color: #115fad;
}
.footer .flx {
  padding: 0;
  overflow: hidden;
}
.footer .flx h3 {
  color: initial;
  font-size: 16px;
  line-height: 24px;
  display: block;
  padding-top: 32px;
  margin-bottom: 16px;
  position: relative;
}
.footer .flx h3::after {
  position: absolute;
  /* content: ""; */
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: black;
  top: 100%;
  left: 0;
}
.footer .flx p {
  color: #666;
  font-size: 14px;
  line-height: 24px;
}
.footer .fewm {
  padding: 10px 0 0;
  overflow: hidden;
}
.footer .fewm .fewml {
  float: left;
  padding: 0;
  overflow: hidden;
}
.footer .fewm .fewml .fewmimg {
  width: 90%;
  height: 105px;
  margin: 0 auto;
  text-align: center;
}
.footer .fewm .fewml .fewmimg img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.footer .fewm .fewml p {
  color: #637182;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
}

.footer .global-whatapp-icon {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 20;
}
.footer .global-whatapp-icon a {
  display: block;
}
.footer .global-whatapp-icon img {
  border-radius: 50%;
  border: 3px solid #e2e3e5;
}
/*-------友链-------*/
.links {
  padding: 0 0 10px;
  overflow: hidden;
  color: #818181;
  font-size: 14px;
  line-height: 25px;
}
.links a {
  display: inline-block;
  color: #818181;
  font-size: 14px;
  line-height: 25px;
  margin-right: 15px;
}
.links a:hover {
  color: #cf0b0f;
}
/*-------友链 end-------*/
.footer .copryright {
  padding: 5px 15px;
  overflow: hidden;
  text-align: center;
}
.footer .copryright,
.footer .copryright p,
.footer .copryright span,
.footer .copryright a {
  color: #818181;
  font-size: 15px;
  line-height: 30px;
}
.footer .copryright a:hover {
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .area h2 p {
    font-size: 36px;
  }
  .adv .adv-r .li .info {
    padding-left: 0;
  }
}

@media screen and (max-width: 992px) {
  .area h2 {
    line-height: 80px;
  }
  .area h2 p {
    font-size: 34px;
  }
  .area h2 span {
    font-size: 90px;
  }

  .adv {
    padding: 40px 15px;
    background-size: cover;
  }
  .adv .adv-l {
    width: 100%;
  }
  .adv .adv-l .img {
    display: none;
  }
  .adv .adv-r {
    width: 100%;
  }
  .adv .adv-r .li {
    height: auto;
    padding: 25px 0;
  }
}

@media screen and (max-width: 768px) {
  .col-xs-6:nth-child(2n-1) {
    padding-right: 7.5px;
  }
  .col-xs-6:nth-child(2n) {
    padding-left: 7.5px;
  }
  .adv .adv-l {
    padding: 0 15px;
  }
  .area h2 {
    line-height: 70px;
  }
  .area h2 p {
    font-size: 30px;
  }
  .area h2 span {
    font-size: 80px;
  }

  .footer .flogo {
    padding: 20px 0;
  }
  .footer .flm {
    min-height: auto;
  }
  .footer .fnav dl dd {
    display: none;
  }
  .footer .fnav {
    padding-top: 10px;
  }
  .footer .fnav dt a {
    font-size: 15px;
    line-height: 55px;
  }
  .footer .fnav dl {
    margin-bottom: 5px;
  }
  .footer .flx h3 {
    padding-top: 0;
    font-size: 15px;
    margin-bottom: 20px;
  }
  .footer .n-area {
    padding-bottom: 15px;
  }
  .footer .copryright,
  .footer .copryright p,
  .footer .copryright span,
  .footer .copryright a {
    font-size: 14px;
  }

  .multirow-block {
    flex-direction: column;
  }

  .multirow-block .text {
    width: 100% !important;
  }

  .multirow-block .image {
    width: 100% !important;
  }

  .text-gallery {
    flex-direction: column;
  }

  .text-gallery .images {
    flex-direction: column;
    height: unset !important;
  }

  .contact-page-content {
    flex-direction: column;
  }
}

@media screen and (max-width: 640px) {
  .footer .fnav dl {
    width: 25%;
  }
  .footer .fnav dt a {
    line-height: 30px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 550px) {
  .head {
    height: 70px;
  }
  .head.tr {
    height: 60px;
  }
}

@media screen and (max-width: 440px) {
  .menu-list > li > a {
    font-size: 16px;
    line-height: 48px;
    height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-wrap: nowrap;
  }
  .menu-list {
    padding-top: 80px;
  }

  .area h2 p {
    font-size: 26px;
  }
  .area h2 span {
    font-size: 60px;
  }

  .adv .adv-l > p {
    font-size: 14px;
  }
  .adv .adv-r .li .info {
    font-size: 14px;
    line-height: 28px;
  }
  .adv .adv-r .li .img h4 {
    font-size: 14px;
    font-weight: normal;
  }
  .adv .adv-r .li {
    margin-bottom: 15px;
  }
  .adv .adv-l > p {
    margin-bottom: 20px;
  }

  .footer .fnav {
    padding-top: 20px;
  }
  .footer .fnav dt a {
    margin-bottom: 0px;
    font-size: 14px;
  }

  .news .info > span {
    font-size: 14px;
    line-height: 35px;
  }
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contacts p {
  display: flex;
  flex-direction: column;
  /* border-bottom: 1px solid #7abef3; */
}

.contacts span:last-child {
  /* min-width: 80px; */
  color: #2b2b2b;
}

.contact .inline-link {
  display: flex;
  gap: 4px;
  align-items: center;
}

.contact .whatsapp-link {
  height: 20px;
  width: 20px;
}
.contact .whatsapp-link img {
  height: 20px;
  width: 20px;
  transform: translateY(-3px);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 16px;
  max-width: 650px;
  margin: 32px auto;
}

.brand-grid img {
  width: 100%;
}

.text-primary {
  color: #115fad;
}

.page-scope {
  padding: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.multirow-block {
  display: flex;
  gap: 24px;
}

.multirow-block .text {
  flex-grow: 1;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.multirow-block .text p {
  font-size: 1.75rem;
  line-height: 24px;
  max-width: 500px;
  margin-bottom: 16px;
}

.multirow-block .text p:last-child {
  margin-bottom: unset;
}

.multirow-block .text h1 {
  margin-bottom: 16px;
}

.multirow-block .text h2 {
  margin-bottom: 16px;
}

.multirow-block .text h3 {
  margin-bottom: 16px;
}

.multirow-block .image {
  flex-grow: 1;
  width: 50%;
}

.multirow-block .image-full {
  width: 100%;
}

.multirow-block .image img,
.multirow-block .image-full img {
  width: 100%;
}

.page-scope h1 {
  font-size: 4rem;
}

.page-scope h2 {
  font-size: 3rem;
}

.page-scope h3 {
  font-size: 2.5rem;
}

.page-scope .headline-block {
  margin: 32px 0px;
  display: flex;
  justify-content: center;
}

.page-scope .swiper-block {
  overflow: hidden;
}

.page-scope .swiper-container {
  position: relative;
}

.page-scope .swiper-vertical-center {
  align-items: center;
}

.text-gallery {
  display: flex;
  justify-content: space-between;
}

.text-gallery .images {
  display: flex;
  gap: 8px;
  height: 250px;
  overflow: auto;
}

.text-gallery .images img {
  height: 100%;
}

.contact-page {
  height: 100vh;
  position: relative;
}

.contact-page-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-page-bg-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.contact-page-content {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2;
  padding: 32px;
  background-color: #fffc;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.contact-page-content-left {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}

.contact-page-content-left .contact-button {
  padding: 20px 16px;
  background-color: #115fad;
  color: white;
  font-size: 2rem;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 24px;
}

.contact-page-content-left h1 {
  font-size: 6rem;
}

.contact-page-content-right h2 {
  font-size: 3rem;
  margin-bottom: 50px;
  font-weight: bold;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-method {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method h3 {
  font-size: 2.5rem;
  font-weight: bold;
}

.contact-method div {
  font-size: 2rem;
  max-width: 500px;
}

.contact-method .whatsapp-link img {
  height: 20px;
  width: 20px;
  transform: translateY(-3px);
}

.sns-logo {
  display: flex;
  gap: 8px;
}

.sns-logo a {
  display: block;
}

.container-full-width {
  width: 100%;
}

.in-page-search {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.in-page-search h3 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 16px;
}

.in-page-search-widget {
  display: flex;
  justify-content: center;
  padding: 32px 0px 56px 0px;
}

.in-page-search-widget form {
  display: flex;
  max-width: 100%;
}

.in-page-search-widget input {
  padding: 8px 4px;
  border: 1px solid #e2e3e5;
  width: 400px;
  border-radius: 4px;
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}

.in-page-search-widget button {
  padding: 8px 16px;
  font-size: 1.25rem;
  background-color: #115fad;
  color: white;
  border-radius: 4px;
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
  text-wrap: nowrap;
}

.mobile-search input {
  padding: 8px 4px;
  font-size: 16px;
  width: 100%;
}
