@import url("../fonts/ibmplex/stylesheet.css");
@import url("../fonts/poppins/stylesheet.css");
@import url("../fonts/icons/style.css");
* {
  padding: 0px;
  margin: 0px;
}

nav ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

a.btn {
  font: 20px/1.4 "ibm_plex_sansregular", sans-serif;
  padding: 10px 25px;
  color: #ffffff !important;
  background-color: #cc1d1d;
  border: 1px solid #cc1d1d;
  display: inline-block !important;
  margin-bottom: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

a.btn span::before {
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

a.btn:hover {
  background-color: #ffffff;
  color: #cc1d1d !important;
}

a.btn:hover span::before {
  color: #cc1d1d;
}

.bg-ofwhite {
  background-color: #f5f5f5;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.text-center {
  text-align: center !important;
}

body {
  padding: 0px;
  margin: 0px;
  text-align: justify;
  font: 20px/1.5 "ibm_plex_sansmedium", sans-serif;
}

.center {
  width: calc(100% - 80px);
  margin: 0px auto;
  max-width: 1300px;
}

header {
  position: absolute;
  z-index: 9999;
  width: 100%;
  padding: 40px 0px;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

header .center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  header .center {
    width: 100%;
  }
}

header .center nav ul li {
  display: inline-block;
  margin: 0 10px;
}

header .center nav ul li a {
  font: 18px/1.5 "ibm_plex_sansregular", sans-serif;
  color: #ffffff;
  position: relative;
  text-align: center;
  padding: 10px 10px;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

header .center nav ul li a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0%;
  border: 1px solid transparent;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

header .center nav ul li a:not(.btn):hover, header .center nav ul li a:not(.btn).active {
  color: #cc1d1d;
}

header .center nav ul li a:not(.btn):hover::after, header .center nav ul li a:not(.btn).active::after {
  width: 100%;
  border: 1px solid #cc1d1d;
}

header .center nav ul li a.btn {
  padding: 10px 25px;
  background-color: #cc1d1d;
  border: 1px solid #cc1d1d;
  border-radius: 5px;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

header .center nav ul li a.btn:hover {
  background-color: #ffffff;
  color: #cc1d1d;
}

header .center .responsive-menu {
  display: none;
}

header .center .responsive-menu span {
  color: #ebebeb;
}

@media (max-width: 767px) {
  header {
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

header.dark-header nav ul li a {
  color: #383838;
}

header.dark-header .responsive-menu span {
  color: #383838;
}

.banner {
  background-image: url(../images/banner.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

@media (max-width: 767px) {
  .banner {
    padding-top: 45px;
  }
}

.banner::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 820px;
  top: 0;
  background: black;
  background: -webkit-gradient(linear, left top, right top, from(black), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, black 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
}

.banner .center {
  height: 100vh;
  min-height: 820px;
  position: relative;
}

.banner .center > div {
  padding-top: 100px;
  position: absolute;
  bottom: 40px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 460px;
  gap: 60px;
}

.banner .center > div h1,
.banner .center > div h3 {
  font: 48px/1.4 "ibm_plex_serifsemibold", sans-serif;
}

.banner .center > div p {
  font: 20px/1.4 "ibm_plex_sansmedium", sans-serif;
  margin-bottom: 24px;
}

.banner .center > div a {
  display: inline-block;
}

.banner-inner {
  background-image: url(../images/inner.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.banner-inner::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 320px;
  min-height: 320px;
  background: black;
  background: -webkit-gradient(linear, left top, right top, from(black), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, black 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
}

.banner-inner .center {
  min-height: 320px;
  position: relative;
}

.banner-inner .center > div {
  padding-top: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ffffff;
  width: 100%;
}

.banner-inner .center > div h3 {
  font: 48px/1.4 "ibm_plex_serifsemibold", sans-serif;
  text-align: center;
}

.banner-inner .center > div p {
  font: 20px/1.4 "ibm_plex_sanssemibold", sans-serif;
  text-align: center;
}

.banner-inner2 {
  background-color: #f5f5f5;
  padding-bottom: 50px;
}

.banner-inner2 .center .banner_box {
  padding-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}

.banner-inner2 .center .banner_box div {
  z-index: 1;
}

.banner-inner2 .center .banner_box div:nth-child(2) {
  width: 400px;
}

.banner-inner2 .center .banner_box div h2 {
  margin-top: 150px;
  color: #565555;
  font: 36px/1.4 "ibm_plex_serifsemibold", sans-serif;
}

.banner-inner2 .center .banner_box div h3 {
  text-align: center;
  color: #ebebeb;
  font: 150px/1 "ibm_plex_sanssemibold", sans-serif;
  margin-bottom: 15px;
}

.banner-inner2 .center .about-content {
  max-width: 800px;
  background-color: #ffffff;
  padding: 50px;
  margin: -400px 0 0 50px;
  z-index: 2;
  position: relative;
}

.banner-inner2 .center .about-content h3 {
  font: 36px/1.4 "ibm_plex_serifsemibold", sans-serif;
  margin-bottom: 30px;
}

.banner-inner2 .center .about-content p {
  margin-bottom: 15px;
  font: 24px/44px "ibm_plex_sansmedium", sans-serif;
  color: #383838;
}

.main-section .dispaly-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 95px 0;
  gap: 180px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-section .dispaly-set .content.width580 {
  width: 580px;
}

.main-section .dispaly-set .content ul {
  list-style-type: none;
  margin: 20px 0;
}

.main-section .dispaly-set .content ul li {
  margin-bottom: 10px;
  padding: 3px 10px;
  display: inline-block;
  background-color: rgba(123, 123, 123, 0.1);
  border-radius: 7px;
}

.main-section .dispaly-set .img img {
  display: block;
}

.main-section .dispaly-set .img.full-img {
  width: 100%;
}

.main-section .dispaly-set .img.right-space {
  margin-right: 120px;
}

.main-section .dispaly-zset .d-row .center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 185px;
  padding: 70px 0;
}

.main-section .dispaly-zset .d-row .center > div h3 {
  font: 44px/1.4 "ibm_plex_serifsemibold", sans-serif;
}

.main-section .dispaly-zset .d-row .center > div p {
  font: 18px/1.4 "ibm_plex_sansmedium", sans-serif;
  color: #333;
  margin: 48px 0;
}

.main-section .dispaly-zset .d-row .center > div img {
  border-radius: 20px;
}

.main-section .dispaly-zset .d-row:nth-child(odd) {
  background-color: #f5f5f5;
}

.main-section .dispaly-zset .d-row:nth-child(even) .center {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.main-section .box-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 200px;
  padding: 70px 0;
}

.main-section .box-set .box:nth-child(2) {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
}

.main-section .box-set .box h3 {
  font: 36px/1.4 "ibm_plex_serifsemibold", sans-serif;
  text-align: center;
}

.main-section .box-set .box p {
  font: 16px/1.4 "ibm_plex_sansregular", sans-serif;
  text-align: center;
}

.main-section .form-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 20px;
}

.main-section .form-set fieldset {
  border: 0;
  -webkit-box-flex: calc(50% - 20px);
      -ms-flex: calc(50% - 20px);
          flex: calc(50% - 20px);
}

.main-section .form-set fieldset:last-child, .main-section .form-set fieldset:nth-last-child(2) {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}

.main-section .form-set fieldset span {
  display: block;
  font: 14px/1.4 "ibm_plex_sansmedium", sans-serif;
  color: #252f40;
  margin-bottom: 5px;
}

.main-section .form-set fieldset input:not([type="submit"]),
.main-section .form-set fieldset textarea {
  width: calc(100% - 18px);
  padding: 7px;
  display: block;
}

.main-section .form-set fieldset input:not([type="submit"])::-webkit-input-placeholder,
.main-section .form-set fieldset textarea::-webkit-input-placeholder {
  font: 14px/1.4 "ibm_plex_sansregular", sans-serif;
  color: rgba(56, 56, 56, 0.5);
}

.main-section .form-set fieldset input:not([type="submit"]):-moz-placeholder,
.main-section .form-set fieldset textarea:-moz-placeholder {
  font: 14px/1.4 "ibm_plex_sansregular", sans-serif;
  color: rgba(56, 56, 56, 0.5);
}

.main-section .form-set fieldset input:not([type="submit"])::-moz-placeholder,
.main-section .form-set fieldset textarea::-moz-placeholder {
  font: 14px/1.4 "ibm_plex_sansregular", sans-serif;
  color: rgba(56, 56, 56, 0.5);
}

.main-section .form-set fieldset input:not([type="submit"]):-ms-input-placeholder,
.main-section .form-set fieldset textarea:-ms-input-placeholder {
  font: 14px/1.4 "ibm_plex_sansregular", sans-serif;
  color: rgba(56, 56, 56, 0.5);
}

.main-section .form-set fieldset input[type="submit"] {
  font: 20px/1.4 "ibm_plex_sansregular", sans-serif;
  padding: 10px 25px;
  color: #ffffff;
  background-color: #cc1d1d;
  border: 1px solid #cc1d1d;
  cursor: pointer;
  border-radius: 5px;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.main-section .form-set fieldset input[type="submit"]:hover {
  background-color: #ffffff;
  color: #cc1d1d;
}

.main-section .team-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-section .team-set .set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px;
  gap: 40px;
  border: 1px solid rgba(123, 123, 123, 0.2);
  margin-bottom: 50px;
  border-radius: 20px;
  -webkit-box-shadow: 0 2px 12px rgba(123, 123, 123, 0.3);
  box-shadow: 0 2px 12px rgba(123, 123, 123, 0.3);
}

.main-section .team-set .set h4 {
  font: 36px/1.4 "ibm_plex_sanssemibold", sans-serif;
  color: #252f40;
}

.main-section .team-set .set h6 {
  font: 20px/1.4 "ibm_plex_sanssemibold", sans-serif;
  color: #cc1d1d;
  margin: 30px 0;
}

.main-section .team-set .set p {
  font: 24px/44px "ibm_plex_sansmedium", sans-serif;
  color: #383838;
  margin-bottom: 0px;
}

.main-section .team-set .set:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.main-section h2,
.main-section h3 {
  font: 48px/1.4 "ibm_plex_serifsemibold", sans-serif;
  color: #383838;
}

.main-section h2.main-title,
.main-section h3.main-title {
  margin: 90px 0 0px 0;
}

.main-section p {
  margin-bottom: 40px;
}

.main-section ul,
.main-section ol {
  margin: 0 0 30px 30px;
}

.main-section ul.def,
.main-section ol.def {
  margin: 0 0 20px 20px;
}

.main-section ul.def ul,
.main-section ul.def ol,
.main-section ol.def ul,
.main-section ol.def ol {
  margin-bottom: 0 !important;
}

.main-section ul ul,
.main-section ul ol,
.main-section ol ul,
.main-section ol ol {
  margin-bottom: 0 !important;
}

.main-section a {
  color: #cc1d1d;
  font-weight: bold;
}

footer {
  background-color: #181818;
  color: #7b7b7b;
}

footer .footer-top {
  padding: 70px 0;
  border-bottom: 1px solid #7b7b7b;
}

footer .footer-top .center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

footer .footer-top .center div:not(:first-child) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

footer .footer-top .center div:first-child {
  -ms-flex-preferred-size: 400px;
      flex-basis: 400px;
  text-align: left;
}

footer .footer-top .center h4 {
  margin-top: 10px;
  font-weight: normal;
}

footer .footer-top .center h4 span:first-child {
  color: #fff;
}

footer .footer-top .center h4 span:last-child {
  color: #cc1d1d;
}

footer .footer-top .center p {
  font: 18px/1.4 "ibm_plex_sansregular", sans-serif;
  margin-top: 0px;
  color: #acacad;
}

footer .footer-top .center ul li {
  list-style-type: none;
}

footer .footer-top .center ul:not(.sml) li {
  margin-bottom: 10px;
}

footer .footer-top .center ul:not(.sml) li a {
  font: 16px/1.4 "poppinsmedium", sans-serif;
  color: #7b7b7b;
}

footer .footer-top .center ul.sml li {
  display: inline-block;
  padding: 0 5px;
}

footer .footer-top .center ul.sml li a span::before {
  color: #7b7b7b;
}

footer .footer-bottom {
  padding: 40px 0;
  text-align: center;
  font: 14px/1.4 "poppinsmedium", sans-serif;
  color: #7b7b7b;
}

/* Accordion
================================================== */
.acc {
  margin: 100px auto;
  max-width: 1200px;
}

.acc__card {
  position: relative;
  border: 1px solid #7b7b7b;
  margin-bottom: 24px;
  border-radius: 10px;
}

.acc__title {
  font: 20px/1.4 "ibm_plex_sanssemibold", sans-serif;
  color: #7b7b7b;
  cursor: pointer;
  display: block;
  padding: 1em 2em;
  position: relative;
  text-align: left;
}

.acc__title::after {
  width: 8px;
  height: 8px;
  border-right: 1px solid #4a6e78;
  border-bottom: 1px solid #4a6e78;
  position: absolute;
  right: 10px;
  content: " ";
  top: 17px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.acc__title.active {
  color: #cc1d1d;
}

.acc__title.active::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.acc__panel {
  font: 20px/1.4 "ibm_plex_sansregular", sans-serif;
  color: #595656;
  display: none;
  margin: 0;
  padding: 0 2em 1em;
}

@media only screen and (min-width: 960px) and (max-width: 1199px) {
  .main-section .dispaly-set {
    gap: 30px;
  }
  .main-section .dispaly-zset .d-row .center {
    gap: 30px;
  }
  .main-section .dispaly-zset .d-row .center > div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .main-section .dispaly-zset .d-row .center img {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
  header .center > div nav {
    display: none;
  }
  header .center .responsive-menu {
    display: block !important;
  }
  .banner-inner2 .center .banner_box > div:nth-child(1), .banner-inner2 .center .banner_box > div:nth-child(2) {
    display: none;
  }
  .banner-inner2 .center .about-content {
    max-width: inherit;
    margin-left: 0;
    margin-right: 0;
  }
  .main-section .dispaly-set {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .main-section .dispaly-set .content.width580 {
    width: 100%;
  }
  .main-section .dispaly-zset .d-row:nth-child(even) .center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .main-section .dispaly-zset .d-row .center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
  .main-section .dispaly-zset .d-row .center > div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .main-section .dispaly-zset .d-row .center img {
    width: 100%;
  }
  .main-section .team-set {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .main-section .team-set .set {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-section .team-set .set:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-section .team-set .set:nth-child(odd) .text {
    text-align: left;
  }
  .main-section .box-set {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
  footer .footer-top .center {
    gap: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer-top .center div:not(:first-child) {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  footer .footer-top .center div:first-child {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
    width: 100%;
  }
  footer .footer-bottom {
    padding: 40px 0;
    text-align: center;
    font: 14px/1.4 "poppinsmedium", sans-serif;
    color: #7b7b7b;
  }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
  header .center > div nav {
    display: none;
  }
  header .center .responsive-menu {
    display: block !important;
  }
  .banner-inner2 .center .banner_box > div:nth-child(1), .banner-inner2 .center .banner_box > div:nth-child(2) {
    display: none;
  }
  .banner-inner2 .center .about-content {
    max-width: inherit;
    margin-left: 0;
    margin-right: 0;
  }
  .main-section .dispaly-set {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .main-section .dispaly-set .content.width580 {
    width: 100%;
  }
  .main-section .dispaly-zset .d-row:nth-child(even) .center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .main-section .dispaly-zset .d-row .center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
  .main-section .dispaly-zset .d-row .center > div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .main-section .dispaly-zset .d-row .center img {
    width: 100%;
  }
  .main-section .form-set fieldset {
    -webkit-box-flex: calc(100% - 20px);
        -ms-flex: calc(100% - 20px);
            flex: calc(100% - 20px);
  }
  .main-section .team-set {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .main-section .team-set .set {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-section .team-set .set:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-section .team-set .set:nth-child(odd) .text {
    text-align: left;
  }
  .main-section .box-set {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
  footer .footer-top .center {
    gap: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  footer .footer-top .center div:not(:first-child) {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  footer .footer-top .center div:first-child {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
    width: 100%;
  }
  footer .footer-bottom {
    padding: 40px 0;
    text-align: center;
    font: 14px/1.4 "poppinsmedium", sans-serif;
    color: #7b7b7b;
  }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
  header .center > div nav {
    display: none;
  }
  header .center .responsive-menu {
    display: block !important;
  }
  .banner .center > div {
    padding-top: 100px;
    position: absolute;
    bottom: 40px;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 460px;
    gap: 60px;
  }
  .banner .center > div h3 {
    font: 28px/1.4 "ibm_plex_serifsemibold", sans-serif;
  }
  .banner .center > div p {
    font: 15px/1.4 "ibm_plex_sansmedium", sans-serif;
    margin-bottom: 24px;
  }
  .banner .center > div a {
    display: inline-block;
  }
  .banner-inner2 .center .banner_box > div:nth-child(1), .banner-inner2 .center .banner_box > div:nth-child(2) {
    display: none;
  }
  .banner-inner2 .center .about-content {
    max-width: inherit;
    margin-left: 0;
    margin-right: 0;
  }
  .main-section .dispaly-set {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .main-section .dispaly-set .content.width580 {
    width: 100%;
  }
  .main-section .dispaly-zset .d-row:nth-child(even) .center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .main-section .dispaly-zset .d-row .center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
  .main-section .dispaly-zset .d-row .center > div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .main-section .dispaly-zset .d-row .center img {
    width: 100%;
  }
  .main-section .form-set fieldset {
    -webkit-box-flex: calc(100% - 20px);
        -ms-flex: calc(100% - 20px);
            flex: calc(100% - 20px);
  }
  .main-section .team-set {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .main-section .team-set .set {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-section .team-set .set:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-section .team-set .set:nth-child(odd) .text {
    text-align: left;
  }
  .main-section .box-set {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
  footer .footer-top .center {
    gap: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  footer .footer-top .center div:not(:first-child) {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  footer .footer-top .center div:first-child {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
    width: 100%;
  }
  footer .footer-bottom {
    padding: 40px 0;
    text-align: center;
    font: 14px/1.4 "poppinsmedium", sans-serif;
    color: #7b7b7b;
  }
}
/*# sourceMappingURL=default.css.map */