/* ========================================
Import Section Start
============================================= */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("font-awesome.css");
/* ========================================
Import Section Start
============================================= */

/* ========================================
General CSS
============================================= */
:root {
  --bg-color: #0f181f;
  --title-text-color: #ff9d00e3;
  --light-text-color: #d8d8d8;
  --dark-text-color: #24333e;
  --mid-text-color: #889097;
  --mid1-text-color: #a9b2ba;
  --selected-text-color: #ed1c24;
  --z-button-color: #ed1c24;
  --z-button-hover-color: #ff0008;

  --box-shadow: 0.1rem -0.07rem 1.5rem 0.3rem rgb(0 0 0 / 26%);

  /* font-family */
  --primary-font: "Lato", sans-serif;
  --secondary-font: "Montserrat", sans-serif;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: none;
}
/* skyanime */
/* html {
  height: 100%;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  overflow: hidden;
} */

body,
html {
  font-size: 10px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  font-family: var(--primary-font);
}

h2 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--secondary-font);
}

h3 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--primary-font);
}

h4 {
  font-size: 3rem;
  font-weight: 600;
  font-family: var(--secondary-font);
  line-height: 1;
}

h5 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  font-family: var(--primary-font);
}

h6 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  font-family: var(--secondary-font);
}

p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  font-family: var(--secondary-font);
}

a,
a:active,
a:focus,
a:hover,
.btn:focus {
  text-decoration: none;
  box-shadow: none;
  outline: 0;
}

.view-link {
  font-size: 1.4rem;
  color: var(--selected-text-color);
  transition: all 0.3s ease-in-out;
}
.view-link svg {
  margin-left: 2rem;
}
.view-link svg path {
  fill: var(--light-text-color);
}

.view-link:hover {
  font-size: 1.6rem;
  color: var(--light-text-color);
}
.view-link:hover > svg path {
  fill: var(--selected-text-color);
}

.sec-title h2 {
  color: var(--selected-text-color);
  text-transform: uppercase;
}
.sec-title h3 {
  color: var(--dark-text-color);
  text-transform: lowercase;
  font-style: italic;
}
/* ========================================
 General CSS Exit 
============================================= */

/* ========================================
info-bar CSS Start
============================================= */

#info-bar {
  background: white;
  color: var(--mid-text-color);
  padding: 5px 0 3px;
}

.top-info ul {
  list-style: none;
  float: right;
  padding: 0;
  margin: 0;
}

.top-info span {
  font: 13px/28px "open sans";
  padding-right: 5px;
}

.top-info span a {
  display: inline-block;
  font-size: 14px;
  line-height: 23px;
  margin: 0 2px;
  text-align: center;
  color: #908e8e;
  text-decoration: none;
  transition: color 400ms linear 0s;
}
.top-info span a:hover {
  color: var(--selected-text-color);
}
.top-info span i {
  font-size: 13px;
  margin-right: 5px;
}

.top-info li {
  float: left;
}

.top-info li a {
  border-radius: 100%;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  height: 25px;
  line-height: 23px;
  margin: 0 2px;
  text-align: center;
  transition: background-color 400ms linear 0s;
  width: 25px;
  background: none repeat scroll 0 0 var(--mid1-text-color);
}
.top-info li:hover a {
  color: #fff !important;
}
.top-info li:hover a.my-telegram {
  background: #00a8e5;
}
.top-info li:hover a.my-facebook {
  background: #648cd5;
}
.top-info li:hover a.my-skype {
  background: #00afff;
}
.top-info li:hover a.my-botim {
  background: #0fb1ec;
}
.top-info li:hover a.my-wechat {
  background: #2cbb00;
}
.top-info li:hover a.my-linkedin {
  background: #0a66c2;
}

.top-info .btn {
  line-height: 1.5;
}
.top-info .d-flex {
  width: 100%;
  float: right;
}
.top-info .d-flex .form-control {
  padding: 0.25rem 0.75rem;
}
/* ========================================
info-bar CSS Exit
============================================= */

/* ========================================
Navbar CSS Start
============================================= */

.header {
  background-color: var(--bg-color);
  padding: 0.3rem 0;
  /* top: 3rem; */
}
.header .navbar {
  /* position: fixed;
   */
  padding: 0.2rem;
  /* min-height: 5.7rem; */
}
.header .navbar-brand img {
  width: calc(5vw + 5vh);
  height: auto;
  object-fit: cover;
}
.header .navbar-nav .nav-link {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  font-family: var(--primary-font);
  text-transform: uppercase;
  color: var(--light-text-color);
  padding: 0.4rem 2rem;
  margin: 0 0.2rem;
}

.header .dropdown-item {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  font-family: var(--primary-font);
  color: var(--light-text-color);
  text-transform: uppercase;
  padding: 1rem;
}

/* dropdown menu */
.header .dropdown-menu {
  min-width: 10rem;
  padding: 0.5rem 0;
  background-color: var(--bg-color);
  border: 0.2rem solid var(--light-text-color);
}

.header .dropdown-toggle::after {
  content: "+";
  border: none;
  vertical-align: middle;
  font-size: 1rem;
}

.header .nav-item:hover > .dropdown-toggle::after,
.header .nav-link.dropdown-toggle.show {
  color: var(--selected-text-color);
}
.header .dropdown-item:focus,
.header .dropdown-item:hover,
.header .navbar-nav .nav-link:hover {
  color: var(--selected-text-color);
  background-color: transparent;
}

/* dropdown items show on hover */
.header .navbar-nav li:hover > ul.dropdown-menu {
  display: block;
}

/* **************** */

/* menu togler start */
.header .navbar-toggler {
  color: var(--white-color);
  font-size: 2rem;
  height: calc(2vw + 3vh);
  padding: 0;
}
.header .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler-icon {
  height: calc(2vw + 2vh);
  width: calc(2vw + 2vh);
}
.wrapper {
  padding: 4rem 0;
}
/* menu togler Exit */

/* **************** */

/* ========================================
Navbar CSS Exit
============================================= */

/* ========================================
Fraction Slider CSS Start
============================================= */
.wrapper-fraction {
  margin-top: 6.7rem;
  height: 90vh;
}

.wrapper-fraction::after {
  content: "PROFESSIONAL TRADE ASSOCIATE";
  position: absolute;
  font-size: 4vw;
  font-weight: 800;
  color: var(--title-text-color);
  font-family: var(--primary-font);
  top: calc(3vw + 9vh);
  left: 5vw;
  z-index: 5;
}

.wrapper-fraction::before {
  content: "FOR EFFORTLESS TRADING EXPERIENCE";
  position: absolute;
  font-size: 3.2vw;
  font-weight: 600;
  color: #d8d8d8;
  font-family: var(--secondary-font);
  text-transform: lowercase;
  font-style: italic;
  top: calc(7vw + 10vh);
  left: 5vw;
  z-index: 5;
}
/* ========================================
Fraction Slider CSS Exit
============================================= */

/* ========================================
============================================= */
/* parallax CSS Start */

.parallax {
  position: relative;
  background-position: left;
  background-size: 48%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: inline-block;
  align-items: center;
  width: 100%;
  height: 100vh;
}
.parallax-1 {
  position: relative;
  background-position: right;
  background-size: 48%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: inline-block;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.parallax.img2 {
  background-image: url("../images/Services/exim.jpg");
  height: 35rem;
}
.parallax.img3 {
  background-image: url("../images/Services/logistic.jpg");
  height: 35rem;
}
.parallax.img4 {
  background-image: url("../images/Services/sourcing.jpg");
  height: 35rem;
}
.parallax.img5 {
  background-image: url("../images/Services/negotiation.jpg");
  height: 35rem;
}
.parallax.img6 {
  background-image: url("../images/Services/supply.jpg");
  height: 35rem;
}
.parallax.img7 {
  background-image: url("../images/Services/it.jpg");
  height: 35rem;
}

.main-wrapper .black-card {
  position: absolute;
  top: 5rem;
  left: -60rem;
  width: 100%;
  box-shadow: var(--box-shadow);
  background-color: var(--bg-color);
  padding: 2rem;
  border-radius: 2rem;
  text-align: justify;
  z-index: 1;
  height: 25rem;
}

.main-wrapper .black-card.right {
  right: -60rem;
  left: unset;
}

.main-wrapper .black-card h4,
.black-card.right h4 {
  color: var(--light-text-color);
  font-family: var(--secondary-font);
  text-transform: capitalize;
}

.main-wrapper .black-card h6,
.black-card.right h6 {
  color: white;
  padding-bottom: 2rem;
  font-family: var(--primary-font);
  text-transform: lowercase;
  font-style: italic;
}
.main-wrapper .black-card p,
.black-card.right p {
  color: var(--light-text-color);
  line-height: 1.5;
  font-family: var(--secondary-font);
}
.main-wrapper .black-card .card-content {
  min-height: 18rem;
}

/* parallax CSS Exit */
/* ========================================
============================================= */

/* ========================================
============================================= */
/* Unused CSS Start */

/* process CSS */
.process-wrapper {
  background-color: var(--bg-color);
}
.process-wrapper h2 {
  padding-bottom: 3rem;
}
.process-wrapper h4 {
  color: var(--light-text-color);
  text-transform: lowercase;
  padding-bottom: 1.5rem;
}
.process-wrapper p {
  color: var(--light-text-color);
  text-align: justify;
  line-height: 1.6;
}

.process-wrapper .process-content {
  padding: 2rem 7rem;
  position: relative;
  height: 15rem;
}

.process-wrapper .process-content::after {
  position: absolute;
  content: "";
  width: 70%;
  margin: auto;
  bottom: 0;
  border-bottom: 0.1rem solid var(--title-text-color);
}

/* parallax CSS Exit */
/* ========================================
============================================= */

/* ========================================
============================================= */
/* Work CSS Start */

.work-wrapper {
  padding-top: 6rem;
  background-color: var(--light-text-color);
}
.work-wrapper h2 {
  padding-top: 4rem;
}
.work-wrapper p {
  color: var(--bg-color);
  line-height: 1.6;
  font-weight: 500;
  font-family: var(--secondary-font);
}
.work-wrapper a {
  text-align: center;
}
.work-wrapper .view-link svg path {
  fill: var(--dark-text-color);
}

.work-wrapper .view-link:hover {
  font-size: 1.6rem;
  color: var(--dark-text-color);
}
.work-wrapper .view-link:hover > svg path {
  fill: var(--selected-text-color);
}

/* Work CSS Exit */
/* ========================================
============================================= */

/* ========================================
============================================= */
/* testimonial CSS Start */

.testimonial-wrapper {
  background-color: var(--bg-color);
}

.testimonial-wrapper .card {
  border: none;
  background-color: var(--light-text-color);
  box-shadow: var(--box-shadow);
  border-radius: 1rem;
  margin: 2rem;
  padding: 4rem 2rem;
}
.achievement-wrapper .img-fluid {
  border: 2.5rem solid var(--black-color);
}
.testimonial-wrapper .card i {
  color: rgb(255, 191, 0);
  font-size: 1.4rem;
}
.testimonial-wrapper .card p {
  color: var(--bg-color);
  line-height: 1.5;
}
.testimonial-wrapper .card h4 {
  color: var(--bg-color);
  font-weight: 600;
  font-family: var(--primary-font);
}
.testimonial-wrapper .card h6 {
  color: var(--bg-color);
}

.testimonial-wrapper .carousel-indicators {
  margin-bottom: -3rem;
}

.testimonial-wrapper .carousel-indicators button {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--selected-text-color);
}
/* testimonial CSS Exit */
/* ========================================
============================================= */

/* ========================================
============================================= */
/* partner CSS Start */

.partner-wrapper {
  display: grid;
  place-items: center;
  background: var(--light-text-color);
}
.partner-wrapper .sec-title {
  margin-bottom: 3rem;
  text-align: center;
}
.partner-wrapper h5 {
  font-weight: 500;
  font-family: var(--primary-font);
}

.partner-wrapper .slider {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 75%;
  overflow: hidden;
  background: rgb(255, 255, 255);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.4px);
  -webkit-backdrop-filter: blur(7.4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.partner-wrapper .slider-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  animation: scrolling 20s linear infinite;
}

@keyframes scrolling {
  0% {
    transform: translateX(80%);
  }

  100% {
    transform: translateX(-20%);
  }
}

.partner-wrapper .slider-items img {
  width: 12%;
  margin: 20px;
}

/* partner CSS Exit */
/* ========================================
============================================= */

/* ========================================
============================================= */
/* footer CSS Start */

.footer-wrapper {
  /* background-color: var(--black-color); */
  background-image: url("../images/banner/footer-img.jpg");
  padding-bottom: 0rem;
}

.footer-wrapper .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.footer-wrapper .social {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-wrapper .addresses {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 2rem;
}

.footer-wrapper .footer-logo img {
  width: 6rem;
  height: auto;
  object-fit: cover;
}
.footer-wrapper h5 {
  color: var(--light-text-color);
  font-weight: 600;
  text-transform: capitalize;
  font-size: 2rem;
}
.footer-wrapper h5 a {
  color: var(--light-text-color);
  font-weight: 600;
  text-transform: lowercase;
  font-size: 2rem;
}

.footer-wrapper ul {
  list-style: none;
  display: flex;
  align-items: center;
}
.footer-wrapper ul li {
  margin-right: 1.5rem;
}
.footer-wrapper .copyright-section p {
  margin: 0;
  padding: 3rem 0;
  text-align: center;
}

/* MAP CSS */

.mapouter {
  display: table;
  text-align: center;
  margin: auto;
}

.gmap_canvas {
  overflow: hidden;
  position: relative;
  height: 400px;
  width: 550px;
  background: #fff;
}
.gmap_canvas iframe {
  position: relative !important;
  z-index: 2 !important;
}
.gmap_canvas a {
  color: #fff !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 0 !important;
}

/* whatsapp CSS */
.whatsapp-icon {
  position: relative;
}
.whatsapp-icon .whatsapp {
  position: fixed;
  width: 6rem;
  z-index: 3;
  bottom: 1rem;
  right: 0.5rem;
}
.whatsapp-icon .whatsapp img {
  width: 5.5rem;
}

/* footer CSS Exit */
/* ========================================
============================================= */

/*  ===================================
About Page CSS
======================================== */
.whoweare-wrapper {
  background-color: var(--bg-color);
}
.whoweare-wrapper h2 {
  padding-bottom: 4rem;
}
.whoweare-wrapper p {
  color: var(--light-text-color);
  font-family: var(--secondary-font);
  line-height: 2rem;
  text-align: justify;
  padding-right: 2rem;
  line-height: 1.4;
}

/* Company Strength */

.strength-wrapper h5 {
  color: var(--bg-color);
  font-weight: 800;
}
.strength-wrapper ol li {
  font-size: 2rem;
}

/* Team CSS */
.team-wrapper .sec-title {
  padding-left: 11rem;
}
.team-wrapper .card .team-img {
  width: 15rem;
  height: 15rem;
  margin: 0 auto;
  border-radius: 50%;
  border: 0.5rem solid var(--primary-color);
}
.team-wrapper .card .team-img img {
  border-radius: 50%;
}
.team-wrapper .card .team-detail h5 {
  font-weight: 800;
  color: var(--black-color);
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.team-wrapper .card .team-detail p {
  color: var(--black-color);
  margin: 0;
}

/*  ===================================
Achievements Page CSS
======================================== */
.achievement-wrapper .card-detail {
  box-shadow: var(--box-shadow);
  background-color: var(--black-color);
  border-radius: 2rem;
  padding: 3rem;
  margin-top: -2rem;
}
.achievement-wrapper .card-detail {
  font-family: var(--secondary-font);
}

/*  ===================================
Upcoming Page CSS
======================================== */
/*  ===================================
Contacts Page CSS
======================================== */
.contact .get-in-touch .card {
  background-color: var(--white-color);
  min-height: 36rem;
  padding: 3rem;
  border-radius: 2rem;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.contact .card i {
  font-size: 8rem;
  margin-bottom: 3rem;
}
.contact .card h4 {
  font-weight: 800;
}
.contact .card p {
  color: var(--black-color);
}
.contact .card p:last-child {
  font-family: var(--secondary-font);
  font-weight: 700;
}

.form-section {
  padding: 10rem;
  background-color: var(--black-color);
  box-shadow: var(--box-shadow);
  border-radius: 2rem;
}

.form-section .form-control:focus {
  box-shadow: none;
  border-color: var(--light-color);
}

.form-section .form-control {
  height: 4.5rem;
  border: 0.1rem solid var(--light-color);
  font-size: 1.5rem;
}

.form-section textarea {
  border: 0.1rem solid var(--light-color);
  font-size: 1.5rem;
  min-height: 20rem;
}

/* Software & IT Services */

.wrapper-it-services .parallax.img1 {
  background-image: url("../images/it-services/it-consultancy.jpg");
  height: 40rem;
}
.wrapper-it-services .parallax.img2 {
  background-image: url("../images/it-services/software-service.jpg");
  height: 40rem;
}
.wrapper-it-services .parallax.img3 {
  background-image: url("../images/it-services/hardware.jpg");
  height: 40rem;
}
.wrapper-it-services .parallax.img4 {
  background-image: url("../images/it-services/managed-service.jpg");
  height: 40rem;
}
.wrapper-it-services .parallax.img5 {
  background-image: url("../images/it-services/data-storage.jpg");
  height: 40rem;
}
.wrapper-it-services .parallax.img6 {
  background-image: url("../images/it-services/network-service.jpg");
  height: 40rem;
}
.wrapper-it-services .parallax.img7 {
  background-image: url("../images/it-services/it-training.jpg");
  height: 40rem;
}

.wrapper-it-services .black-card {
  position: absolute;
  top: 5rem;
  left: -60rem;
  width: 100%;
  box-shadow: var(--box-shadow);
  background-color: rgb(228, 228, 228);
  padding: 2rem;
  border-radius: 2rem;
  text-align: justify;
  z-index: 1;
  height: 30rem;
}

.wrapper-it-services .black-card.right {
  right: -60rem;
  left: unset;
}

.wrapper-it-services .black-card h4,
.wrapper-it-services .black-card.right h4 {
  color: var(--dark-text-color);
  font-family: var(--secondary-font);
  text-transform: capitalize;
}

.wrapper-it-services .black-card h6,
.wrapper-it-services .black-card.right h6 {
  color: var(--bg-color);
  padding-bottom: 2rem;
  font-family: var(--primary-font);
  text-transform: lowercase;
  font-style: italic;
}
.wrapper-it-services .black-card p,
.wrapper-it-services .black-card.right p {
  color: var(--bg-color);
  line-height: 1.5;
  font-family: var(--secondary-font);
}
.wrapper-it-services .black-card .card-content {
  min-height: 18rem;
}

.wrapper-it-services .view-link {
  font-size: 1.4rem;
  color: var(--selected-text-color);
  transition: all 0.3s ease-in-out;
}
.wrapper-it-services .view-link svg {
  margin-left: 2rem;
}
.wrapper-it-services .view-link svg path {
  fill: var(--bg-color);
}

.wrapper-it-services .view-link:hover {
  font-size: 1.6rem;
  color: var(--bg-color);
}
.wrapper-it-services .view-link:hover > svg path {
  fill: var(--selected-text-color);
}

.wrapper-partner-it .partner-slider {
  width: 55%;
}
