@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #080707;
  font-weight: 700;
  font-size: 12px;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 14px;
  width: 14px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  border: 1px solid #080707;
  background-color: #FFFFFF;
}
input[type=number] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #FFFFFF;
}
::-webkit-scrollbar-thumb {
  background: #EE5D3A;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'Poppins';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  color: #080707;
  width: 100%;
}
p strong,
p b {
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}
h2 {
  font-weight: 600;
  font-style: normal;
}
ul {
  width: 100%;
}
ul,
li {
  padding: 0;
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
  color: #080707;
  list-style: none;
  font-size: 14px;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.import-export .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.import-export .buttons .btn-orange,
.import-export .buttons .btn-transparent {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.import-export .buttons .btn-orange img,
.import-export .buttons .btn-transparent img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.import-export .buttons .btn-orange::before,
.import-export .buttons .btn-transparent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  transform-origin: bottom;
  transform: scaleY(0);
  z-index: -1;
}
.import-export .buttons .btn-orange:hover,
.import-export .buttons .btn-transparent:hover {
  box-shadow: 0 0px 2px #FFFFFF;
}
.import-export .buttons .btn-orange:hover::before,
.import-export .buttons .btn-transparent:hover::before {
  transform: scaleY(1);
  transform-origin: left;
  transition: transform 0.5s;
}
.import-export .buttons .btn-orange {
  background-color: #EE5D3A;
  color: #FFFFFF;
}
.import-export .buttons .btn-orange::before {
  background-color: #081B60;
}
.import-export .buttons .btn-transparent {
  border: 1px solid #080707;
}
.import-export .buttons .btn-transparent::before {
  background-color: #FFFFFF;
}
.import-export .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.import-export .heading p {
  margin-top: 1rem;
}
.import-export .heading h2 {
  width: 100%;
  font-size: 22px;
}
.import-export .center-heading {
  justify-content: center;
  align-items: center;
}
.import-export .center-heading h2,
.import-export .center-heading p {
  text-align: center;
}
.import-export .white-heading h2,
.import-export .white-heading p {
  color: #FFFFFF;
}
@keyframes turn {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.import-export .banner {
  flex-direction: column;
  background-color: #081B60;
  padding-top: 1.5rem;
}
.import-export .banner .logo-container,
.import-export .banner .tka-logo,
.import-export .banner .menu {
  display: flex;
}
.import-export .banner .container {
  height: 100%;
}
.import-export .banner .logo-container {
  height: 100%;
  padding: 1rem;
  border: 1px solid #FFFFFF;
}
.import-export .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  height: auto;
}
.import-export .banner .tka-logo {
  max-width: 190px;
}
.import-export .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.import-export .banner .menu {
  margin-left: auto;
}
.import-export .banner .menu img {
  width: 22px;
  height: 23px;
}
.import-export .banner .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #F5F5F5;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.import-export .banner .menu-toggle {
  font-weight: 500;
  display: none;
  justify-content: flex-end;
  align-items: center;
}
.import-export .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.import-export .banner ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #080707;
}
.import-export .banner ul .links-li:first-child {
  padding-top: 0;
}
.import-export .banner ul .links-li:nth-child(4) {
  border-bottom: none;
  padding-bottom: 0;
}
.import-export .banner ul .links-li:last-child {
  display: none;
}
.import-export .banner .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.import-export .banner .menu.active + .menu-links .menu-toggle {
  display: flex;
}
.import-export .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
  background-color: #081B60;
  box-shadow: 0 0px 6px #FFFFFF;
  border: 0 ;
  padding: 1rem 1.5rem;
}
.import-export .banner .sticky-down {
  top: -100px;
}
.import-export .banner .banner-container,
.import-export .banner .banner-content,
.import-export .banner .banner-info {
  display: flex;
  flex-direction: column;
}
.import-export .banner .banner-container {
  padding-top: 1.5rem;
}
.import-export .banner .banner-content h1 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.import-export .banner .banner-content h1 img {
  width: 45px;
  height: 45px;
  margin-right: 0.8rem;
  transform: translate(6px, 10px);
}
.import-export .banner .banner-content h1 span {
  text-shadow: 5px 10px 10px rgba(0, 0, 0, 0.2);
}
.import-export .banner .banner-content h1,
.import-export .banner .banner-content p {
  color: #FFFFFF;
}
.import-export .banner .banner-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.import-export .banner .banner-info img {
  width: 100%;
  height: 100%;
}
.import-export .type .type-container,
.import-export .type .type-list,
.import-export .type .type-item,
.import-export .type .content {
  display: flex;
  flex-direction: column;
}
.import-export .type .type-item img {
  display: none;
}
.import-export .type .type-item .content h3 {
  font-size: 16px;
  margin: 0.5rem 0 1rem;
}
.import-export .type .type-item .content p {
  font-size: 13px;
  line-height: 1.4;
}
.import-export .type .type-item:nth-child(2) {
  margin-top: 2rem;
}
.import-export .type .circle-percent {
  font-size: 115px;
  width: 115px;
  height: 115px;
  position: relative;
  background: #EE5D3A;
  border-radius: 50%;
  overflow: hidden;
}
.import-export .type .round-per {
  position: absolute;
  left: 0;
  top: 0;
  width: 115px;
  height: 115px;
  background: #EEAC42;
  clip: rect(0 1em 1em 0.5em);
  transform: rotate(180deg);
  transition: 1.05s;
}
.import-export .type .percent-more::after {
  content: '';
  position: absolute;
  left: 0.5em;
  top: 0em;
  right: 0;
  bottom: 0;
  background: #EEAC42;
}
.import-export .type .circle-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 115px;
  height: 115px;
  clip: rect(0 1em 1em 0.5em);
}
.import-export .type .circle-inbox {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  background: #FFFFFF;
  z-index: 3;
  border-radius: 50%;
  width: 75%;
  height: 75%;
}
.import-export .type .percent-more .circle-inner {
  clip: rect(0 0.5em 1em 0em);
}
.import-export .type .percent-text {
  position: absolute;
  font-size: 30px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
}
.import-export .course {
  padding-top: 0;
}
.import-export .course .course-container,
.import-export .course .course-list,
.import-export .course .course-item,
.import-export .course .course-content {
  display: flex;
  flex-direction: column;
}
.import-export .course .heading {
  margin-bottom: 0;
}
.import-export .course .heading p {
  margin: 0 0 0.2rem 0;
}
.import-export .course .heading p strong {
  color: #081B60;
}
.import-export .course .course-list {
  counter-reset: counter;
}
.import-export .course .course-item {
  margin-top: 2rem;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  transition: 1s all;
  border-radius: 8px;
  position: relative;
}
.import-export .course .course-item::before {
  content: 'Course ' counter(counter);
  counter-increment: counter;
  position: absolute;
  background-color: #F5F5F5;
  padding: 0.5rem 0.8rem;
  text-align: center;
  right: 18px;
  top: 18px;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 500;
  border-radius: 30px;
  transition: 1s all;
}
.import-export .course .course-item a {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  padding: 1.2rem 1.5rem;
  border-top: 2px solid #E8E8E8;
  transition: 1s all;
}
.import-export .course .course-item a span {
  width: 18px;
  height: 18px;
  margin-left: 1rem;
}
.import-export .course .course-item span {
  display: flex;
}
.import-export .course .course-item span img {
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.import-export .course .course-item span img:last-child {
  width: 0;
}
.import-export .course .course-item:hover {
  background-color: #081B60;
}
.import-export .course .course-item:hover a {
  border-top: 2px solid #102278;
}
.import-export .course .course-item:hover span img:first-child {
  width: 0;
}
.import-export .course .course-item:hover span img:last-child {
  width: 100%;
}
.import-export .course .course-item:hover::before {
  background-color: #102278;
  color: #FFFFFF;
}
.import-export .course .course-item:hover p,
.import-export .course .course-item:hover h3,
.import-export .course .course-item:hover a {
  color: #FFFFFF;
}
.import-export .course .course-content {
  padding: 1.2rem 1.5rem;
}
.import-export .course .course-content h3 {
  font-size: 14px;
  margin-top: 1rem;
}
.import-export .course .course-content p {
  font-size: 12px;
}
.import-export .course .course-content p:nth-child(3) {
  margin: 0.8rem 0 0.2rem;
}
.import-export .course .course-content h3,
.import-export .course .course-content p {
  transition: 1s all;
}
.import-export .course .course-content span {
  width: 55px;
  height: 55px;
}
.import-export .overview {
  padding-top: 0;
}
.import-export .overview .overview-container,
.import-export .overview .overview-content,
.import-export .overview .overview-info {
  display: flex;
  flex-direction: column;
}
.import-export .overview .overview-content {
  align-items: center;
}
.import-export .overview .overview-content p {
  text-align: center;
}
.import-export .overview .overview-info {
  height: 100%;
  margin-top: 2rem;
}
.import-export .overview .overview-info span {
  display: flex;
  width: 100%;
  height: 100%;
}
.import-export .overview .overview-info span img {
  width: 100%;
  height: 100%;
}
.import-export .method {
  padding-top: 0;
}
.import-export .method .method-container,
.import-export .method .method-list,
.import-export .method .method-item {
  display: flex;
  flex-direction: column;
}
.import-export .method .heading {
  margin-bottom: 0;
}
.import-export .method .method-item {
  padding: 2rem 1rem;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  margin-top: 2rem;
  text-align: center;
  position: relative;
  transition: 1s all;
}
.import-export .method .method-item::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/import-export/particle.svg);
  background-size: 100% 100%;
  width: 38px;
  height: 38px;
  top: 27px;
  left: 27px;
  transition: 1.5s all;
}
.import-export .method .method-item span {
  display: flex;
}
.import-export .method .method-item span img {
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.import-export .method .method-item span img:last-child {
  width: 0;
}
.import-export .method .method-item .image {
  width: 90px;
  height: 90px;
  padding: 1.5rem;
  align-self: center;
  position: relative;
  z-index: 1;
}
.import-export .method .method-item .image::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/import-export/polygon.png);
  background-size: 100% 100%;
  width: 90px;
  height: 90px;
  top: 0;
  left: 0;
  z-index: -1;
  animation: turn 5s linear infinite;
}
.import-export .method .method-item h3 {
  margin: 1rem 0 0.8rem;
  font-size: 17px;
}
.import-export .method .method-item p {
  font-size: 13px;
}
.import-export .method .method-item a {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  transition: 1s all;
  align-self: center;
  margin-top: 0.5rem;
}
.import-export .method .method-item a span {
  width: 18px;
  height: 18px;
  margin-left: 0.8rem;
}
.import-export .method .method-item:hover {
  background-color: #081B60;
}
.import-export .method .method-item:hover::before {
  top: 96px;
  opacity: 0.2;
}
.import-export .method .method-item:hover span::before {
  opacity: 0.2;
}
.import-export .method .method-item:hover span img:first-child {
  width: 0;
}
.import-export .method .method-item:hover span img:last-child {
  width: 100%;
}
.import-export .method .method-item:hover h3,
.import-export .method .method-item:hover p,
.import-export .method .method-item:hover a {
  color: #FFFFFF;
}
.import-export .statistic {
  background-color: #081B60;
}
.import-export .statistic .statistic-container,
.import-export .statistic .list,
.import-export .statistic .price-list,
.import-export .statistic .price-item,
.import-export .statistic .content {
  display: flex;
  flex-direction: column;
}
.import-export .statistic .transport {
  display: flex;
  background-color: #102278;
  padding: 1.5em 0;
  border-radius: 10px;
  height: 100%;
}
.import-export .statistic .transport img {
  width: 100%;
  height: 100%;
}
.import-export .statistic .list .item {
  display: flex;
  background-color: #102278;
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  align-items: center;
}
.import-export .statistic .list .item img {
  width: 46px;
  height: 46px;
  margin-right: 1rem;
}
.import-export .statistic .list .item h3 {
  color: #FFFFFF;
  font-size: 16px;
}
.import-export .statistic .price-list .price-item {
  text-align: center;
  width: 272px;
  margin: 1.5rem auto 0;
}
.import-export .statistic .price-list .price-item h4,
.import-export .statistic .price-list .price-item p {
  color: #FFFFFF;
}
.import-export .statistic .price-list .price-item h4 {
  font-weight: 500;
  font-size: 12px;
}
.import-export .statistic .price-list .price-item p {
  font-size: 12px;
}
.import-export .statistic .price-list .content {
  background-color: #102278;
  padding: 1.5rem 1rem;
  margin-bottom: 2rem;
  position: relative;
}
.import-export .statistic .price-list .content::before {
  content: '';
  position: absolute;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #102278;
  bottom: -20px;
  left: 0;
  width: 0px;
  right: 0;
  margin: auto;
}
.import-export .statistic .price-list .content h3 {
  color: #EE5D3A;
  font-size: 18px;
  margin-bottom: 0.3rem;
}
.import-export .fact .fact-container,
.import-export .fact .fact-list,
.import-export .fact .fact-item {
  display: flex;
  flex-direction: column;
}
.import-export .fact .heading {
  margin-bottom: 0;
}
.import-export .fact .fact-item {
  border: 3px solid #E8E8E8;
  margin-top: 2rem;
  padding: 1.3rem 0.6rem;
  align-items: center;
  position: relative;
}
.import-export .fact .fact-item::before,
.import-export .fact .fact-item::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 65px;
  background-color: #FFFFFF;
}
.import-export .fact .fact-item::before {
  left: -3px;
  top: 0;
}
.import-export .fact .fact-item::after {
  right: -3px;
  bottom: 0;
}
.import-export .fact .fact-item img {
  width: 45px;
  height: 45px;
}
.import-export .fact .fact-item h3,
.import-export .fact .fact-item p {
  text-align: center;
}
.import-export .fact .fact-item .fact-count {
  display: flex;
  margin-top: 0.8rem;
}
.import-export .fact .fact-item .fact-count h3 {
  color: #EE5D3A;
  font-size: 35px;
  line-height: 1.1;
}
.import-export .choose {
  background-color: #F5F5F5;
}
.import-export .choose .choose-container,
.import-export .choose .choose-list,
.import-export .choose .choose-item {
  display: flex;
  flex-direction: column;
}
.import-export .choose .heading {
  margin-bottom: 0.5rem;
}
.import-export .choose .choose-item {
  align-items: center;
  background-color: #FFFFFF;
  padding: 0 0.8rem 1.5rem;
  margin-top: 3.5rem;
  position: relative;
  border-radius: 12px;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.import-export .choose .choose-item::before {
  content: '';
  position: absolute;
  background-color: #081B60;
  width: calc(100% - 40px);
  height: 48px;
  border-radius: 30px 30px 0 0;
  left: 0;
  right: 0;
  margin: auto;
  top: -30px;
  z-index: -1;
}
.import-export .choose .choose-item p,
.import-export .choose .choose-item h3 {
  text-align: center;
}
.import-export .choose .choose-item p {
  font-size: 12px;
  line-height: 1.5;
}
.import-export .choose .choose-item h3 {
  font-size: 14px;
  margin-bottom: 0.8rem;
  width: 100%;
}
.import-export .choose .choose-item span {
  display: flex;
  width: 65px;
  height: 65px;
  background-color: #081B60;
  padding: 0.9rem;
  border-radius: 50px;
  transform: translateY(-28px);
}
.import-export .choose .choose-item span img {
  width: 100%;
  height: 100%;
}
.import-export .step .step-container,
.import-export .step .step-content,
.import-export .step .step-info {
  display: flex;
  flex-direction: column;
}
.import-export .step .step-content {
  align-items: center;
}
.import-export .step .step-content p {
  text-align: center;
}
.import-export .step .step-content p:nth-last-child(2) {
  margin-top: 0.5rem;
}
.import-export .step .step-info {
  margin-top: 2rem;
  height: 100%;
}
.import-export .step .step-info img {
  width: 100%;
  height: 100%;
}
.import-export .client {
  background-color: #F5F5F5;
}
.import-export .client .client-container,
.import-export .client .client-list,
.import-export .client .client-item {
  display: flex;
  flex-direction: column;
}
.import-export .client .client-item {
  background-color: #FFFFFF;
  padding: 1.5rem 1rem;
  width: 93%;
  margin: 1rem auto;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.import-export .client .client-item span {
  display: flex;
  width: 75px;
  height: 75px;
  background-color: #E8E8E8;
  border: 5px solid #FFFFFF;
  padding: 0.8rem;
  box-shadow: 0 0 0 2px #102278;
  border-radius: 50px;
}
.import-export .client .client-item span img {
  width: 100%;
  height: 100%;
}
.import-export .client .client-item p {
  margin: 1rem 0;
  font-size: 13px;
  text-align: center;
}
.import-export .client .client-item h3 {
  font-size: 18px;
}
.import-export .client .client-item .star {
  width: 100px;
  height: 18px;
}
.import-export .client .owl-nav {
  display: flex;
  margin-top: 1.5rem;
  width: 90px;
  align-self: center;
  justify-content: space-between;
}
.import-export .client .owl-nav .owl-prev,
.import-export .client .owl-nav .owl-next {
  display: flex;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  border: 1px solid #080707;
  background-image: url(/_public/images/import-export/arrow.svg);
  background-size: 15px 15px;
  background-repeat: no-repeat;
  opacity: 0.7;
  background-position: center;
}
.import-export .client .owl-nav .owl-prev {
  transform: rotate(180deg);
}
.import-export .client .owl-nav .btn-active {
  opacity: 1;
}
.import-export .faq .faq-container,
.import-export .faq .faq-list,
.import-export .faq .faq-item,
.import-export .faq .form {
  display: flex;
  flex-direction: column;
}
.import-export .faq .form {
  margin-bottom: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
}
.import-export .faq .form .buttons {
  align-self: center;
}
.import-export .faq .form .buttons .btn-orange {
  min-width: 125px;
}
.import-export .faq .form .buttons .btn-orange img {
  height: 16px;
  width: 16px;
}
.import-export .faq .input-container {
  display: flex;
  margin-bottom: 0.8rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.6rem 1rem;
  border-radius: 8px;
}
.import-export .faq .input-container:nth-child(6) {
  align-items: flex-start;
}
.import-export .faq .input-container span {
  display: flex;
  height: 16px;
  width: 16px;
}
.import-export .faq .input-container span img {
  height: 100%;
  width: 100%;
}
.import-export .faq .input-container span img:last-child {
  display: none;
}
.import-export .faq .input-container input,
.import-export .faq .input-container textarea {
  width: calc(100% - 30px);
  border: none;
  outline: 0;
  padding: 0;
  font-size: 14px;
  background-color: transparent;
}
.import-export .faq .input-container textarea {
  height: 50px;
  resize: none;
  overflow: auto;
}
.import-export .faq .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #808080;
}
.import-export .faq .input-container :-ms-input-placeholder {
  /* Edge */
  color: #808080;
}
.import-export .faq .input-container ::placeholder {
  color: #808080;
}
.import-export .faq .input-error {
  border: 1px solid #ff0000;
}
.import-export .faq .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.import-export .faq .input-error :-ms-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.import-export .faq .input-error ::placeholder {
  color: #ff0000;
}
.import-export .faq .input-error span img:first-child {
  display: none;
}
.import-export .faq .input-error span img:last-child {
  display: flex;
}
.import-export .faq .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.import-export .faq .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.import-export .faq .form-consent label {
  display: flex;
  font-size: 11px;
  width: 93%;
  align-self: center;
  margin-left: 0.3rem;
  cursor: pointer;
  line-height: 1.6;
  color: #080707;
  font-weight: 500;
}
.import-export .faq .form-consent p {
  font-size: 11px;
}
.import-export .faq .form-consent a {
  font-weight: 600;
  color: #EE5D3A;
}
.import-export .faq .consent-error,
.import-export .faq .consent-error-other {
  margin-bottom: 0.5rem;
}
.import-export .faq .consent-error p,
.import-export .faq .consent-error-other p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
}
.import-export .faq .faq-list {
  margin-top: 2rem;
}
.import-export .faq .faq-list .heading {
  margin-bottom: 1rem;
}
.import-export .faq .faq-item {
  border: 1px solid transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: 1s all;
}
.import-export .faq .faq-item .ques {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  transition: 1s all;
  cursor: pointer;
}
.import-export .faq .faq-item .ques h3 {
  font-size: 15px;
  align-self: center;
  width: calc(100% - 35px);
}
.import-export .faq .faq-item .ques span {
  display: flex;
  width: 20px;
  height: 20px;
}
.import-export .faq .faq-item .ques span img {
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.import-export .faq .faq-item .ques span img:last-child {
  width: 0;
}
.import-export .faq .faq-item .ans {
  display: none;
  padding: 0.8rem 1rem;
}
.import-export .faq .faq-item.active {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.import-export .faq .faq-item.active .ques {
  background-color: #F5F5F5;
}
.import-export .faq .faq-item.active .ques h3 {
  color: #081B60;
}
.import-export .faq .faq-item.active .ques span img:first-child {
  width: 0;
}
.import-export .faq .faq-item.active .ques span img:last-child {
  width: 100%;
}
.import-export .faq .text {
  border-bottom: 1px solid transparent;
  transition: 1s all;
}
.import-export .faq .faq-item,
.import-export .faq .ques {
  border-radius: 10px 10px 0 0;
}
.import-export .footer {
  background-color: #081B60;
}
.import-export .footer .footer-container,
.import-export .footer .info {
  display: flex;
  flex-direction: column;
}
.import-export .footer .footer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.import-export .footer .footer-item:last-child {
  margin-top: 1rem;
}
.import-export .footer .footer-item img {
  width: 35px;
  height: 35px;
}
.import-export .footer .footer-item .info {
  width: calc(100% - 52px);
  align-items: flex-start;
}
.import-export .footer .footer-item .info h3,
.import-export .footer .footer-item .info a {
  color: #FFFFFF;
}
.import-export .footer .footer-item .info a {
  font-size: 12px;
  margin-top: 0.2rem;
  font-weight: 500;
}
.import-export .footer .footer-item .info h3 {
  font-size: 15px;
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .import-export .banner .menu.active + .menu-links {
    width: 50%;
  }
  .import-export .banner .sticky {
    padding: 1rem 2rem !important;
  }
  .import-export .banner .banner-info {
    display: none;
  }
  .import-export .type .type-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .import-export .type .type-item img {
    display: flex;
    width: 255px;
    height: 95px;
  }
  .import-export .type .type-item .content {
    width: 42%;
  }
  .import-export .type .type-item .content h3 {
    margin-top: 0;
  }
  .import-export .type .type-item:nth-child(2) .content {
    order: 1;
  }
  .import-export .type .type-item:nth-child(2) .content p,
  .import-export .type .type-item:nth-child(2) .content h3 {
    text-align: right;
  }
  .import-export .type .type-item:nth-child(2) .circle-percent {
    order: 2;
  }
  .import-export .type .type-item:nth-child(2) img {
    order: 3;
  }
  .import-export .course .course-list {
    flex-flow: Wrap;
    justify-content: center;
  }
  .import-export .course .course-item {
    width: 47%;
    margin-right: 2rem;
  }
  .import-export .course .course-item h3 {
    min-height: 42px;
  }
  .import-export .course .course-item:nth-child(2n) {
    margin-right: 0;
  }
  .import-export .course .course-item:last-child {
    margin-right: 0 !important;
  }
  .import-export .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .import-export .overview .overview-content {
    width: 48%;
    align-items: flex-start;
  }
  .import-export .overview .overview-content h2,
  .import-export .overview .overview-content p {
    text-align: left;
  }
  .import-export .overview .overview-info {
    width: 48%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .import-export .method .method-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .import-export .method .method-item {
    width: 48%;
  }
  .import-export .statistic .transport {
    display: none;
  }
  .import-export .statistic .list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .import-export .statistic .list .item {
    width: 47.5%;
  }
  .import-export .statistic .list .item:first-child,
  .import-export .statistic .list .item:nth-child(2) {
    margin-top: 0;
  }
  .import-export .statistic .price-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .import-export .statistic .price-list .price-item {
    width: 26%;
    margin: 2.5rem 2rem 0 0;
  }
  .import-export .statistic .price-list .price-item h4 {
    min-height: 36px;
  }
  .import-export .statistic .price-list .price-item:nth-child(3),
  .import-export .statistic .price-list .price-item:last-child {
    margin-right: 0;
  }
  .import-export .fact .fact-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .import-export .fact .fact-item {
    width: 45%;
  }
  .import-export .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .import-export .choose .choose-item {
    width: 47%;
  }
  .import-export .step .step-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .import-export .step .step-content {
    width: 48%;
    align-items: flex-start;
  }
  .import-export .step .step-content h2,
  .import-export .step .step-content p {
    text-align: left;
  }
  .import-export .step .step-info {
    width: 46%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .import-export .client .client-item p {
    min-height: 188px;
  }
  .import-export .faq .faq-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .import-export .faq .form {
    width: 47%;
    position: sticky;
    top: 60px;
  }
  .import-export .faq .faq-list {
    width: 48%;
    margin-top: 0;
  }
  .import-export .footer .footer-container {
    flex-flow: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .import-export .footer .footer-item {
    width: 50%;
  }
  .import-export .footer .footer-item .info h3 {
    font-size: 16px;
  }
  .import-export .footer .footer-item .info a {
    font-size: 14px;
  }
  .import-export .footer .footer-item:last-child {
    margin-top: 0;
  }
}
@media (min-width : 1024px) {
  p,
  li {
    line-height: 1.8;
  }
  .import-export .heading h2 {
    font-size: 28px;
  }
  .import-export .buttons .btn-orange,
  .import-export .buttons .btn-transparent {
    font-size: 16px;
  }
  .import-export .banner .tka-logo {
    max-width: 228px;
  }
  .import-export .banner .menu,
  .import-export .banner .menu-toggle {
    display: none;
  }
  .import-export .banner .logo-container {
    border: none;
    padding: 0;
  }
  .import-export .banner .menu-links {
    width: auto;
    display: flex;
    position: relative;
    padding: 1.3rem 1.5rem 1.3rem 2.5rem;
    border-radius: 50px 0 0 50px;
    box-shadow: none;
  }
  .import-export .banner ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .import-export .banner ul .links-li {
    border-bottom: none;
    margin-right: 1rem;
    padding: 0;
    transition: 1s all;
  }
  .import-export .banner ul .links-li:hover {
    color: #EE5D3A;
  }
  .import-export .banner ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .import-export .banner ul .links-li:last-child:hover {
    color: inherit;
  }
  .import-export .banner ul .links-li:last-child .btn-transparent {
    margin-right: 1rem;
  }
  .import-export .banner ul .links-li:last-child .btn-transparent,
  .import-export .banner ul .links-li:last-child .btn-orange {
    height: 45px;
    font-size: 14px;
  }
  .import-export .banner ul .links-li:nth-last-child(2) {
    display: none;
  }
  .import-export .banner .sticky {
    background-color: transparent;
    background-image: linear-gradient(90deg, #081B60 35%, #F5F5F5 35%);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #FFFFFF;
  }
  .import-export .banner .sticky .menu-links {
    background-color: transparent;
    padding: 0;
  }
  .import-export .banner .banner-container {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 3.5rem;
    align-items: center;
  }
  .import-export .banner .banner-content {
    width: 50%;
  }
  .import-export .banner .banner-content h1 {
    font-size: 40px;
  }
  .import-export .banner .banner-content h1 img {
    width: 52px;
    height: 52px;
  }
  .import-export .banner .banner-content h1 span {
    font-size: 44px;
  }
  .import-export .banner .banner-info {
    width: 45%;
    display: flex;
    margin-top: 0;
  }
  .import-export .type .type-container {
    padding: 2.5rem 3rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  }
  .import-export .type .type-item img {
    width: 45%;
    height: 100%;
  }
  .import-export .type .type-item .content {
    width: 38%;
  }
  .import-export .course .course-item {
    width: 31%;
  }
  .import-export .course .course-item h3 {
    min-height: 63px;
  }
  .import-export .course .course-item:nth-child(2n) {
    margin-right: 2rem;
  }
  .import-export .course .course-item:nth-child(3n) {
    margin-right: 0;
  }
  .import-export .method .heading {
    width: 80%;
    margin: auto;
  }
  .import-export .method .method-item {
    width: 23.5%;
    margin-top: 3rem;
  }
  .import-export .method .method-item h3 {
    min-height: 50px;
  }
  .import-export .method .method-item p {
    min-height: 91px;
    line-height: 1.4;
  }
  .import-export .statistic .statistic-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .import-export .statistic .transport {
    display: flex;
    width: 36%;
  }
  .import-export .statistic .list {
    width: 61%;
  }
  .import-export .statistic .list .item {
    margin-top: 2rem;
  }
  .import-export .statistic .price-list {
    width: 100%;
    position: relative;
  }
  .import-export .statistic .price-list::before {
    content: '';
    position: absolute;
    border-bottom: 3px dashed #EE5D3A;
    width: 100%;
    bottom: 19%;
  }
  .import-export .statistic .price-list .price-item {
    width: 16.5%;
    margin: 3rem 2.5rem 0 0;
  }
  .import-export .statistic .price-list .price-item:nth-child(3) {
    margin-right: 2.5rem;
  }
  .import-export .statistic .price-list .content {
    margin-bottom: 7rem;
  }
  .import-export .statistic .price-item {
    z-index: 1;
  }
  .import-export .statistic .price-item p {
    position: relative;
    min-height: 44px;
  }
  .import-export .statistic .price-item p::before {
    content: '';
    position: absolute;
    background-color: #EE5D3A;
    width: 15px;
    height: 15px;
    border-radius: 50px;
    top: -61%;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: 0px 0px 0px 2px #081B60, 0px 0px 0px 4px #FFFFFF;
    animation: scale 4s linear infinite;
  }
  .import-export .statistic .price-item .content:after {
    content: '';
    position: absolute;
    border-left: 2px dashed #EE5D3A;
    width: 0px;
    height: 74px;
    bottom: -80%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
  }
  .import-export .fact .heading {
    width: 80%;
    margin: auto;
  }
  .import-export .fact .fact-item {
    width: 20%;
  }
  .import-export .choose {
    background-color: transparent;
    background-image: url(/_public/images/import-export/choose-bg.jpg);
    background-size: 100% 100%;
    background-attachment: fixed;
  }
  .import-export .choose .heading {
    width: 75%;
    align-self: center;
  }
  .import-export .choose .choose-list {
    width: 80%;
    margin: auto;
  }
  .import-export .client .heading {
    width: 70%;
    align-self: center;
  }
  .import-export .client .client-list {
    width: 90%;
    margin: auto;
  }
  .import-export .client .client-item {
    align-items: flex-start;
    position: relative;
    width: 86%;
    margin: 1rem 1rem 1rem auto;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    background-image: url(/_public/images/import-export/quotes.svg);
    background-size: 45px 40px;
    background-repeat: no-repeat;
    background-position: bottom 30px right 30px;
  }
  .import-export .client .client-item p {
    text-align: left;
    margin-top: 0;
    min-height: 210px;
  }
  .import-export .client .client-item span {
    position: absolute;
    left: -38px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .import-export .client .owl-nav {
    position: absolute;
    top: 44%;
    left: -45px;
    width: calc(100% + 90px);
    margin: auto;
  }
  .import-export .faq .form {
    padding: 2rem;
    width: 42%;
  }
  .import-export .faq .faq-list {
    width: 50%;
  }
  .import-export .faq .faq-item .ques h3 {
    width: calc(100% - 85px);
  }
  .import-export .faq .faq-item .ques::before {
    content: '';
    width: 25px;
    height: 25px;
    background-image: url(/_public/images/import-export/black-ques.svg);
    background-size: 8px 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #F5F5F5;
    border-radius: 50px;
    transition: 1s all;
  }
  .import-export .faq .faq-item.active .ques::before {
    background-color: #EE5D3A;
    background-image: url(/_public/images/import-export/white-ques.svg);
  }
  .import-export .footer {
    position: relative;
    z-index: 1;
    background-image: url(/_public/images/import-export/footer-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
  }
  .import-export .footer::before {
    content: '';
    position: absolute;
    width: 58%;
    height: 55%;
    border: solid #FFFFFF;
    border-width: 1px 0 1px 1px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
  }
  .import-export .footer .heading {
    width: 38%;
    margin-bottom: 0;
  }
  .import-export .footer .footer-item {
    width: 17%;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 0.8rem;
  }
  .import-export .footer .footer-item:last-child {
    width: 32%;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .import-export .heading h2 {
    font-size: 32px;
  }
  .import-export .banner {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
    background-image: url(/_public/images/import-export/banner-bg.png);
    background-size: 90% 90%;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .import-export .banner .sticky {
    padding: 1rem 0!important;
  }
  .import-export .banner .tka-logo {
    max-width: 250px;
  }
  .import-export .banner ul .links-li:nth-last-child(2) {
    display: flex;
  }
  .import-export .banner .banner-container {
    padding-top: 4rem;
  }
  .import-export .banner .banner-content h1 {
    font-size: 48px;
    margin-bottom: 1.8rem;
  }
  .import-export .banner .banner-content h1 img {
    width: 57px;
    height: 57px;
  }
  .import-export .banner .banner-content h1 span {
    font-size: 55px;
  }
  .import-export .type .type-container {
    width: 90%;
    margin: auto;
  }
  .import-export .course .course-item {
    width: 23%;
  }
  .import-export .course .course-item:nth-child(3n) {
    margin-right: 2rem;
  }
  .import-export .course .course-item:nth-child(4n) {
    margin-right: 0rem;
  }
  .import-export .overview .overview-info {
    position: static;
    top: 0;
  }
  .import-export .method .method-item {
    width: 22%;
  }
  .import-export .method .method-item p {
    min-height: 73px;
  }
  .import-export .statistic .statistic-container {
    width: 90%;
    margin: auto;
  }
  .import-export .statistic .price-list .price-item {
    width: 17%;
  }
  .import-export .fact .fact-list {
    justify-content: space-between;
  }
  .import-export .fact .fact-item p {
    font-size: 18px;
  }
  .import-export .choose .choose-list {
    width: 100%;
    justify-content: space-between;
  }
  .import-export .choose .choose-item {
    width: 23%;
  }
  .import-export .step .step-container {
    align-items: center;
  }
  .import-export .step .step-info {
    position: static;
    top: 0;
  }
  .import-export .client .client-item p {
    min-height: 165px;
  }
  .import-export .footer::before {
    width: 52%;
  }
  .import-export .footer .heading {
    width: 43%;
  }
  .import-export .footer .footer-item {
    width: 13%;
  }
  .import-export .footer .footer-item:last-child {
    width: 25%;
  }
}
