@import url(https://use.typekit.net/ubf3vgy.css);
@import url(https://fonts.googleapis.com/css?family=Raleway);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
h1{
  font-weight: 400;
  font-size: 26px;
  color: #2b2b2b;
}

h2{
  font-weight: 500;
  font-size: 38px;
  color: #2b2b2b;
}

h3{
  font-weight: 500;
  font-size: 26px;
  color: #2b2b2b;
}

body{
    background-color: #FAFBFC;
    overflow-x: hidden;
}

/* NAVBAR */
.TechThriveBtn{
  cursor: pointer;
  }

.menu-icon {
  display: block;
  cursor: pointer;
  font-size: 24px;
  color: #2b2b2b;
  position: absolute;
  margin-top: 20px;
  margin-right: 10px;
  top: 0;
  right: 0;
  z-index: 10;
}

nav {
  background-color: #ffffff;
  color: #2b2b2b;
  padding: 10px 0;
  position: absolute;
  z-index: 9;
  transition: top 0.3s;
  }

nav.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  }
  

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 20px;
  font-family: Arial, Helvetica, sans-serif;
  }

nav ul {
  list-style: none;
  display: flex;
  }

nav li {
  margin-right: 5px;
  }

nav a {
  position: relative;
  text-decoration: none;
  color: #2b2b2b;
  font-weight: bold;
  font-size:15px;
  font-family: "poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-left: 10px;
  }

nav a:hover{
  color:#293ff9;
  transition: 0.3s;
  }

nav a::after{
  display: block;
  content: "";
  width: 0;
  height: 1px;
  background-color: #293ff9;
  transition: 0.3s;
  }

nav a:hover::after {
  width: 0;
  }

.nav-list {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
}

.nav-list li {
  border-bottom: 1px solid #ececec;
  margin-right: 0;
}

.nav-list li a {
  display: block;
  position: relative;
  padding: 10px 20px;
  color: #333;
  text-align: left;
}

.kursy-dropdown {
  position: relative;
}

.kursy-dropdown-content {
  display: none;
  flex-direction: column;
  position: static;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
}

.kursy-dropdown-content li {
  border-bottom: 1px solid #ececec;
  margin-right: 0;
}

.kursy-dropdown-content li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-align: left;
}

.kursy-dropdown:focus-within .kursy-dropdown-content a {
  display: block;
}

/* Desktop styles for navigation bar */
@media screen and (min-width: 768px) {
  .menu-icon {
  display: none;
  }
  .nav-list {
  display: flex;
  flex-direction: row;
  position: relative;
  }
  
  .nav-list li {
  padding: 0;
  border: none;
  margin-right: -10px;
  }

  .nav-list li a {
  padding: 0 15px;
  color: #333;
  }

  nav a:hover::after {
  width: 90%;
  }
  

  .kursy-dropdown {
    position: relative;
  }

  .kursy-dropdown > a:hover::after {
    width: 0;
  }

  .kursy-dropdown-content {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 48px;
    width: max-content;
    background-color: #ffffff;
    z-index: 1;
  }

  .kursy-dropdown:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    background: transparent;
}

  .kursy-dropdown-content li a {
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    display: block;

  }

  .kursy-dropdown-content a{
    width: max-content;
    margin-left: 0px;
    margin-right: 10px;
  }

  .kursy-dropdown:hover .kursy-dropdown-content {
    display: block;
  }
}

/* Dropdown */
.dropdown {
  position: relative;
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: max-content;
  /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 16px 0 20px 2px;
  text-decoration: none;
  display: inline-block;
}

.dropdown-content a::after{
  margin-left: 0;
  position: relative;
  height: 1.5px;
}

/* .dropdown-content a:hover {background-color: #f1f1f1} */

.dropdown:hover .dropdown-content {
  display: block;
}


/* MAIN */

main {
    
    padding: 20px 10px;
    background-image: url(images/Graph_3.png);
    background-size: 30%;
    background-position-y: 40px;
    background-position-x: 80%;
    background-repeat: no-repeat;
    /* max-height: 500px; */
    margin-top: 100px;
    
}
.main h2{
    max-width: 80%;
    font-weight: bolder;
    line-height: 50px;
    margin-bottom: 20px;
}
@media only screen and (min-width: 901px) {
.background img{
  display: none;
}
}

.container_main {
    max-width: 50%;
    margin-top: 30px;
    margin-left: 180px;
    padding: 0px 20px 0px;
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-style: normal; 
    color: #2b2b2b;
    margin-bottom: 25px;
    font-size: 26px;
}

.discription_main {
    /* max-width: 60%; */
    margin-left: 180px;
    padding: 0 20px;
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-style: normal; 
    color: #2b2b2b;
    line-height: 2;
    
}

.icons_main{
    margin-top: 10px;
}

.icon1{
    display: flex;
    margin-bottom: 10px;
  }
.icon1 img{
    border-radius: 50%;
}

.icon1 p{
    padding-top: 10px;
    margin-left: 10px;
    padding-left: 20px;
    display: flex;
    flex-direction: row;
}
.icon1 h1{
    font-size: 14px;
    margin-left: 10px;
    padding-left: 20px;
    color: #293ff9;
    font-family: 400;
}

/* MAIN DESC */
.main_article{
    padding-top: 50px;
    max-width: 70%;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    margin: auto;
    padding-bottom: 100px;
}
.main_article h1{
    font-family: poppins;
    font-weight: 600;
    font-size: 18px;
    line-height: 100px;
}
.main_article h2{
  font-family: poppins;
  font-size: 13px;
  line-height: 24px;
  margin-left: 43%;
  font-weight: 400;
  
}

.main_article h3{
  font-family: poppins;
  font-size: 13px;
  line-height: 24px;
  margin-left: 18%;
  font-weight: 400;
  
}

.main_article p{
    font-family: poppins;
    font-size: 13px;
    line-height: 24px;
    font-weight: 400;
}
.main_article img{
  width: 500px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  margin-top: 30px;
}

/* FOOTER */
footer {
  background-color: #2b2b2b;
  color: #2b2b2b;
  padding: 30px;
  margin-top: 30px;
}

.footer-section {
  display: flex;
  /* flex-wrap: wrap; */
  /* flex-direction: column; */
  background-color: #2b2b2b;
  text-align: right;
  margin-left: 5%;
  margin-right: 5%;
  justify-content: space-between;
  align-items: center;
}

/* FOOTER WRAPPING ON MOBILE */
@media only screen and (max-device-width: 480px){
.footer-section{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background-color: #2b2b2b;
  text-align: center;
  margin-left: 5%;
  margin-right: 5%;
  justify-content: space-between;
  align-items: center;
}
}
/* FOOTER WRAPPING ON MOBILE */

.footer-section p {
  margin: 0;
}

.footer_type {

font-size: 16px;
line-height: 1.5;
font-family: "poppins", sans-serif;
color: #ffffff;
margin-right: 50px;

}

.Type_section {

font-size: 16px;
line-height: 1.5;
font-family: "poppins", sans-serif;
font-weight: 300;
color: #2b2b2b;
}

.spacer{
  flex: 1;
  margin-left: 30px;
  margin-right: 110px;
  margin-top: 22px;
  height: 1px; /* Height of the line */
  background: linear-gradient(to right, #D9D9D9, #D9D9D9 100vw, transparent 100vw, transparent);
}

@media only screen and (max-width: 900px) {
  main{
    background-image: none;
  }
  .main-2{
    background-image: none;
  }
  .main3{
    background-image: none;
  }
  .background img{
    width: 70%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }

/* 
  .main h2{
    margin-top: -40%;
    text-align: center;
  } */

  .container_main{
    /* margin-top: -20%; */
    margin-left: 0px;
    max-width: 100%;
    text-align: center;
  }
  .discription_main{
    margin-left: 0px;
    text-align: center;
    width: 100%;
  }
  .discription_main p{
    min-width: 100%;
  }

  .icon1 p{
    margin-left: 8px;
    padding-left: 0px;
    text-align: left;
  }

 
}

