.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.main-title {
  font-size: 45px;
  line-height: 1;
  color: var(--color-primary);
}

body {
  padding-top: 95px;
}

.footer {
  background: #ffffff;
  border-top: 1px solid #dedede;
  margin-top: 50px;
}

.footer-top {
  padding: 80px 0;
  display: none;
}

.footer-top .container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}

.footer_links {
  width: calc(100% / 5);
  padding-right: 20px;
}

.footer_links:first-child ul li:nth-last-child(2) a,
.footer_links:first-child ul li:last-child a {
  font-weight: bold;
}

.footer_links h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--color-primary);
  text-transform: uppercase;
}

.footer_links ul {
  display: flex;
  flex-flow: column wrap;
  row-gap: 16px;
}

.footer_links a {
  font-size: 14px;
  font-weight: 400;
  color: #001b38;
}

.footer_links a:hover {
  color: var(--color-primary);
}

.pre-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid #dedede;
}

.pre-footer p {
  font-size: 16px;
  margin: 0;
}

.footer-menu {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  column-gap: 22px;
  row-gap: 10px;
  max-width: 420px;
}

.footer-menu a:hover {
  color: var(--color-primary);
}

.footer-icons {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

/* ----------------------------------------------  */

.overview {
  padding: 100px 0;
}

.overview .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 5%;
}

.overview-image {
  width: 41%;
}
.overview-content {
  width: 54%;
}

.overview-content h2 {
  margin-bottom: 25px;
}
.overview-content p {
  font-weight: 400;
  color: #3b1f2b;
  font-size: 36px;
  line-height: 45px;
}

.overview-image img {
  border-radius: 50px;
}

/* ----------------------------------------------  */

.map-section {
  padding-bottom: 100px;
}

.map-section .container {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  row-gap: 30px;
}
.map-section h2 {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
/* ----------------------------------------------  */

.our-journey {
  padding-bottom: 100px;
}

.our-journey .container {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 30px;
}

.our-journey-left,
.our-journey-right {
  width: calc(50% - 30px);
}

.our-journey-left {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-flow: column wrap;
  row-gap: 30px;
}

.our-journey-left img {
  width: fit-content;
  margin: auto;
}

.our-journey-right ul {
  display: flex;
  flex-flow: column wrap;
  row-gap: 30px;
}

.our-journey-right ul::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--color-primary);
}

.our-journey-right ul,
.our-journey-right li {
  position: relative;
}

.our-journey-right li {
  padding-left: 45px;
}

.our-journey-right li::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 8px;
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 50%;
}

.our-journey-right h5 {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 4px;
}

.our-journey-right h5 span {
  color: #ffffff;
  position: relative;
  z-index: 0;
  display: inline-block;
  margin-right: 5px;
}

.our-journey-right h5 span::after {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  width: 55px;
  height: 43px;
  background: var(--color-primary);
  transform: translate(skew(-20deg));
  border-radius: 5px;
  z-index: -1;
}

/* ----------------------------------------------  */

.join-us {
  text-align: center;
}

.join-us-content {
  max-width: 600px;
  margin: auto;
}

.join-us-content h2 {
  color: #001b38;
}

.join-us-content h2,
.join-us-content h3 {
  font-size: 36px;
  line-height: 1.2;
}

.join-us-content .link {
  height: 54px;
  display: flex;
  width: fit-content;
  margin: auto;
  align-items: center;
  color: #ffffff;
  padding: 0 30px;
  background: var(--color-primary);
  border-radius: 100px;
}

/* ----------------------------------------------  */

.first_section {
  padding: 50px 0 0 0;
}

.first_section .content {
  max-width: 800px;
  margin: 0 auto;
}
.first_section .content p {
  color: #646f7a;
}

.image_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 0 15px;
  margin-top: 50px;
}

.image_list img {
  border-radius: 50px;
}

.repeat_section_item {
  padding: 50px 0;
}

.repeat_section_item h2 {
  margin-bottom: 50px;
}

.repeat_section_item.bg-primary{
  color: #ffffff;
}

.repeat_section_item:nth-child(even) .repeat_section_inside {
  flex-direction: row-reverse;
}

.repeat_section_inside {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}

.repeat_section_inside .content {
  width: 70%;
}
.repeat_section_inside .content ul {
  padding-left: 24px;
  list-style: disc;
  display: flex;
  flex-flow: column wrap;
  row-gap: 10px;
}

.repeat_section_inside .content li {
  font-size: 25px;
}

.repeat_section_inside .image {
  width: 20%;
}

/* ----------------------------------------------  */

.achivements h2 {
  margin-bottom: 30px;
}

.box_card_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.box_card_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  row-gap: 20px;
}

.home .box_card_list {
  max-width: 850px;
}

.box_card_list,
.box_card_list:not(.two_column) {
  margin: 0 -1%;
  width: 100%;
}

.box_card_list.two_column .box_card_item {
  width: 48%;
}

.box_card_list:not(.two_column) .box_card_item {
  width: 31.33%;
}

.box_card_list .box_card_item,
.box_card_list:not(.two_column) .box_card_item {
  margin: 0 1%;
}

.box_card_item {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 30px 2px rgba(0, 0, 0, 0.1);
}

.box_card_item span {
  font-size: 34px;
  line-height: 40px;
  font-weight: bold;
  color: var(--color-primary);
  margin: 0;
}

.box_card_item h4 {
  text-transform: uppercase;
  color: var(--color-secondary);
  line-height: 1.1;
  margin: 0;
}

.box_card_item p {
  font-size: 18px;
  margin: 0;
  text-transform: uppercase;
  line-height: 24px;
}

.box_card_inside {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column wrap;
  row-gap: 10px;
}

/* ----------------------------------------------  */

.what_we_do {
  padding: 40px 0;
}

.what_we_do h2 {
  margin-bottom: 15px;
}

.what_we_do p {
  font-weight: 500;
  font-size: 30px;
}

.what_we_do .title {
  margin-bottom: 50px;
}

.what_do_list.two_column,
.what_do_list:not(.two_column) {
  margin: 0 -1%;
}

.what_do_list.two_column,
.what_do_list:not(.two_column) .what_do_item {
  margin: 0 1%;
}

.what_do_list:not(.two_column) .what_do_item {
  width: 31.33%;
}

.what_do_list.two_column {
  max-width: 800px;
  margin-inline: auto;
}
.what_do_list.two_column .what_do_item {
  width: 48%;
}

.what_do_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 40px;
}

.what_do_item {
  padding: 15px;
  text-align: center;
}

.what_do_item img {
  max-width: 200px;
  margin: 0 auto 30px auto;
}
.what_do_item h4 {
  color: #001b38;
  font-size: 30px;
}

.what_do_item img + p {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
}

/* ----------------------------------------------  */

.tab-block {
  padding: 30px 0;
}

.tab-block h4 {
  margin-bottom: 25px;
}

.tab-block {
  text-align: center;
  margin-bottom: 25px;
  color: var(--color-secondary);
}

.tab-block-links {
  display: flex;
  gap: 8px;
}

.tab-block-links a,
.tab-block-links li{
  width:100%;
}

.tab-block-links a {
  display: flex;
  color: var(--color-secondary);
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  font-weight: bold;
  font-size: 16px;
  height: 70px;
  padding: 0 20px;
  border-radius: 15px 15px 0 0;
}

.tab-block-links .active {
  background: var(--color-primary);
  color: #fff;
}

/* ----------------------------------------------  */

.software-section h2 {
  margin-bottom: 30px;
}

.software-section .content {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 40px;
  align-items: center;
}

.software-section .text {
  width: 62%;
}

.software-section .text p {
  font-size: 25px;
  text-align: center;
  line-height: 35px;
}

.software-section .image {
  width: calc(38% - 40px);
}

.software-section .image img {
  border-radius: 50px;
}

/* ----------------------------------------------  */

.help-block {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0;
  row-gap: 25px;
  background: var(--color-primary);
  border-radius: 50px;
}

.help-block_item {
  color: #ffffff;
  width: calc(100% / 4);
  text-align: center;
  padding: 0 30px;
}

.help-block_item h4 {
  line-height: 1.2;
  min-height: 57px;
  margin: 15px 0 10px 0;
}

.help-block_item:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.464);
}

/* ----------------------------------------------  */

.expertise h2 {
  font-size: 50px;
  line-height: 1.3;
  color: #001b38;
}

.expertise .thin {
  font-weight: 100;
}

.expertise .text-primary {
  font-weight: 600;
}

.link-contact {
  display: flex;
  width: fit-content;
  padding: 15px 30px;
  color: #ffffff;
  margin: 40px auto 0 auto;
  background: var(--color-primary);
  border-radius: 100px;
}

/* ----------------------------------------------  */

.dot_list {
  display: flex;
  flex-flow: column wrap;
  row-gap: 10px;
  justify-content: center;
  width: fit-content;
  margin: auto;
}

.dot_list li {
  padding-left: 40px;
  position: relative;
  font-size: 25px;
  font-weight: 500;
  color: #001b38;
}

.dot_list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* ----------------------------------------------  */

.contact {
  padding: 50px 0;
}

.contact .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 30px;
  column-gap: 50px;
}

.contact-image {
  width: 35%;
}

.contact-image img {
  border-radius: 50px;
}

.contact-content {
  width: calc(65% - 50px);
}

.contact-content h1 {
  margin-bottom: 70px;
}

.contact-content-inside {
  display: flex;
  flex-flow: row wrap;
  row-gap: 30px;
  column-gap: 80px;
}

.contact-form {
  width: 52%;
}

.contact-form ul {
  display: flex;
  flex-flow: column wrap;
  row-gap: 30px;
}

.contact-form-submit {
  height: 50px;
  padding: 0 40px;
  color: #ffffff;
  border: none;
  background: var(--color-primary);
  border-radius: 100px;
}

.contact-form-submit:hover {
  background: var(--color-primary-hover);
}

.contact-details {
  width: calc(48% - 80px);
}

.contact-details > ul:not(.contact-icons) {
  display: flex;
  flex-flow: column wrap;
  row-gap: 30px;
}

.contact-details li {
  display: flex;
  flex-flow: column wrap;
  row-gap: 10px;
}

.contact-details li span {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-secondary);
}

.contact-details li a:hover {
  color: var(--color-primary);
}

.contact-icons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}

.contact-details li img {
  width: 40px;
}

/* ----------------------------------------------  */

.about_first {
  padding: 50px 0;
}

.about_first .container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
}

.about_first_left {
  width: 50%;
  display: flex;
  flex-flow: column wrap;
  row-gap: 40px;
  text-align: center;
}

.about_first_left h1 {
  font-size: 55px;
  line-height: 1;
  margin: 0;
}

.about_first_left p {
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
  color: var(--color-secondary);
}

.about_first_right {
  width: 50%;
}

.about_first_right img {
  border-radius: 50px;
}

/* ----------------------------------------------  */

.why-us_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-us_item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 25px;
  min-height: 360px;
  background-size: cover;
  border-radius: 50px;
}

.why-us_item h2 {
  margin: 0;
  line-height: 1.2;
  font-size: 45px;
}
/* ----------------------------------------------  */

.mission_vision_wrap {
  padding: 40px;
  background: #f7f8f9;
  border-radius: 50px;
}

.mission_vision .item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 15px;
}

.mission_vision .item:last-child {
  flex-direction: row-reverse;
}

.mission_vision .content {
  width: 65%;
  text-align: center;
}
.mission_vision .content p {
  font-size: 25px;
  line-height: 30px;
  color: #383961;
}

.mission_vision .image {
  width: 35%;
}

.mission_vision .item:first-child .content {
  padding: 30px 0 0 70px;
  position: relative;
}

.mission_vision .item:first-child .content::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 26px;
  background: url(../images/start.png) no-repeat;
}

.mission_vision .item:last-child .content {
  padding: 40px 70px 0 0;
  position: relative;
}

.mission_vision .item:last-child .content::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 53px;
  height: 39px;
  background: url(../images/end.png) no-repeat;
}

.mission_vision .image {
  text-align: center;
}

/* ----------------------------------------------  */

.slider-section h3 {
  color: var(--color-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
  margin: 40px 0 0 0;
}

.logo-slider-wrap {
  margin: 50px 0 0 0;
}

.logoSlider:not(:first-child){
  margin-top: 25px;
}

/* .logoSlider::after {
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    87deg,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.logoSlider::before {
  right: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    87deg,
    rgba(255, 255, 255, 0) 0%,
    rgb(255, 255, 255) 100%
  );
} */

.logoSlider::after,
.logoSlider::before {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 3;
}

.logoSlider .swiper-slide {
  display: flex;
  border: 1px solid #ddd;
  min-height: 90px;
}
.logoSlider img {
  margin: auto;
}
/* ----------------------------------------------  */

.serive_first .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 40px;
  column-gap: 40px;
}
.serive_first .content {
  width: 65%;
}

.serive_first .content h5 {
  font-weight: 400;
}

.serive_first .image {
  width: calc(35% - 40px);
}

.serive_first .image img {
  display: block;
  border-radius: 50px;
}

.ul_list ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 10px;
  list-style: disc;
  padding-left: 25px;
}

.side-side {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 30px;
}

.side-side h2 {
  width: 100%;
}
.side-side .content {
  width: 70%;
}

.side-side .image {
  width: calc(25% - 5%);
  text-align: center;
}

.side-side .image img{
  max-width: 230px;
}

/* ----------------------------------------------  */

.title-recognize {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  column-gap: 15px;
}

.title-recognize h2{
  margin: 0;
  font-size: 40px;
  color: var(--color-primary);
}
.title-recognize span{
  display: block;
  font-weight: 700;
  font-size: 28px;
  color: #001b38;
}

.outline-box {
  display: flex;
  row-gap: 30px;
  padding: 50px;
  border: 1px solid var(--color-primary);
  border-radius: 50px;
}

.outline-box-item {
  padding: 0 20px;
  text-align: center;
  width: calc(100% / 4);
}

.outline-box-item span {
  display: block;
  font-weight: 700;
  font-size: 28px;
  color: #001b38;
  margin: 5px 0 25px 0;
}

.outline-box-item p{
  color: var(--color-primary);
}

.outline-box-item:not(:first-child) {
  border-left: 1px solid var(--color-primary);
}


.ul_list,.side-side{
  margin-top: 30px;
}

.side-side p{
  font-size: 18px;
  line-height: 28px;
  /* text-align: center; */
}