
:root{
  /*BACKGROUND COLOR*/

  --bg-nav-top:#214E40;
  --bg-home:#2B6956;
  --bg-white:#ffffff;
  --bg-black:#000;

  /*font-color*/

  --font-1:#ffffff;
  --font-2:#214E40;
  --font-3:#74747422;
  --font-4:#cccccc;
  --font-5:#000;

  /*BORDER-COLOR*/

  --border-1:#c3ccb9;
  --border-2:#cccccc;
  --border-3:rgb(161, 138, 3);
  --border-4:#214E40;
  --border-5:#348f48;
  --border-6:#5c5c5c;

  /*hover-color*/

  --hover-1:#214E40;
  --hover-2:#d3dad7;



}
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Dancing+Script:wght@400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playwrite+MX+Guides&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



@import url('https://fonts.googleapis.com/css2?family=Anton&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
a{
  text-decoration: none;
  color:var(--font-1) ;
  cursor: pointer;
}
button{
  cursor: pointer;
}
i{
  cursor: pointer;
}
li{
  list-style: none;
}

.header{
  background-color: var(--bg-nav-top);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.navber{
  margin: 10px 0;
  width: 100% ;
  height: 60px;
  padding: 30px;
  visibility: hidden;
  
}
.top-nevber-left{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 10px;
}

.top-nevber-left a{
  display: flex;
  gap: 5px;
  align-items: center;
}

.navber-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block-end: 15px;
  margin-block-end: 15px;}

.nav-open-btn {
  background:transparent;
  outline: none;
  border: none;
  padding: 10px;
  border-radius: 5px;
  color: var(--font-1);
  font-size: 20px;
  
}
.nav-open-btn:hover{
  background: var(--bg-white);
  color: var(--bg-nav-top);
}


.bottom-navber{
  border-top: 2px solid var(--border-5);
  border-bottom: 1px solid var(--border-2);
  
}
.bottom-navber-left{
  display: flex;
  cursor: pointer;
}
.bottom-navber-left img{
  width: 150px;
  
}
.bottom-navber-left-1 img{
  width: 150px;
  
}
.bottom-navber-left-1{
  display: flex;
  cursor: pointer;
}
.bottom-nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 0 10px;
}
.logo-img-text{
  display: grid;
  align-items: center;
}
.logo-img-text a{
  color: var(--font-1);
  font-size:25px ;
  font-weight: 600;
}
.logo-img-text p{
  color: var(--font-1);
}


.bottom-navber-middle{
  display: flex;
  gap: 30px;
}
.bottom-navber-middle ul{
  display: flex;
  gap: 30px;
}
.bottom-navber-middle ul li{
  list-style: none;

}
.menu-item{
  display: none;
  color: var(--font-1);
  font-size: 25px;
  padding: 10px ;
  border-radius: 5px;
  cursor: pointer;
}
.menu-item:hover{
  color: var(--bg-nav-top);
  background-color: var(--bg-white);
}
.bottom-navber-middle ul li a {
  display:block;
  position: relative;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color:var(--font-1);
}


.bottom-navber-middle ul li a::before{
  content: "";
  position: absolute;
  width:0%;
  height: 3px;
  background:var(--bg-white);
  left: 0;
  bottom: -37px;
  transition: .5s ease-in-out;
}
.bottom-navber-middle ul li a:hover::before,
.bottom-navber-middle ul li a:focus::before {
  width: 100%;
}
.bottom-nabver-right{
  display: flex;
  gap: 30px;
  align-items: center;
}
.bottom-nabver-right i{
  color: var(--font-1);
  font-size: 18px;
}

.bottom-nabver-right button{
  padding: 7px 20px;
  font-size: 17px;
  border-radius: 30px;
  border:1px solid var(--border-1);
  color: var(--font-1);
  font-weight: 500;
  transition: .3s ease-in-out;
  background: transparent;
}

.bottom-nabver-right button:hover,
.bottom-nabver-right button:focus{
  background:var(--border-1) ;
}

.home{
  background: var(--bg-home);
  width: 100%;
  height: auto;
}
.home-top{
  margin: 60px;
}
.home-top h1{
  color: var(--font-1);
  font-size: 50px;
}
.home-top p{
  color: var(--font-1);
  width: 70%;
  line-height: 1.6;
  margin-top: 20px;
  font-size: 14px;
}
.home-middle{
  display: flex;
  justify-content: center;
  background:var(--bg-white);
  width: 80%;
  padding: 20px ;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 5px var(--bg-white);
  align-items: center;
}

.home-middle .home-1{
  flex-basis: 20%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-right: 2px solid var(--border-6); 
}

.home-middle .home-1 a{
  color: var(--font-5);
  font-weight: 600;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-middle .home-2{
  flex-basis: 20%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  border-right: 2px solid var(--border-6);
}
.home-middle .home-2 a{
  color: var(--font-5);
  font-weight: 600;
}

.home-middle .home-3{
  flex-basis: 60%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
.home-middle .home-3 input{
  outline: none;
  border: none;
  width: 100%;
  height: 20px;
  color: var(--font-1);
  font-size: 18px;
  padding-left: 40px;
}
.home-last ul{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

}
.home-last ul li{
  list-style: none;
  padding: 10px 20px;
  margin: 20px 20px;
  border: 1px solid var(--border-2);
  font-weight: 600;
  border-radius: 30px;
}
.home-last ul li:hover{
  background-color: var(--border-1);
}

.home-last ul li a:focus{
  color:var(--font-5) ;
}
.home-last{
  padding-bottom: 40px;
}
.top-job{
  display: flex;
  justify-content: space-between;
  margin:50px 0;
}
.top-job h2{
  font-size: 35px;
  font-weight: 600;
}
.top-job-right{
  display: flex;
  gap: 30px;
}
.top-job-right a{
  color: var(--font-2);
  font-size: 14px;
  display: flex;
  gap: 10px;
  padding: 10px 20px;
  border: 2px solid var(--font-2);
  border-radius: 30px;
  font-weight: 600;
  
}
.top-job-right a:hover:focus{
  color: var(--font-1);
  background: var(--bg-home);
}
.middle-job{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.middle-job-box{
  border: 1px solid var(--border-2);
  margin: 10px 0;
  padding: 20px;
  border-radius: 20px;
  width: 100%;
}
.middle-job-box img{
  border-radius: 50%;
  width:50px;
  height: 50px;
}
.middle-job-box-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  
}

.middle-job-left{
  display: flex;
  align-items: center;
  gap: 20px;
  line-height: 2;
}
.middle-job-left h4{
  font-weight: 700;
}
.middle-job-left p{
  font-size: 13px;
  color: var(--border-5);
}
.middle-job-right{
  display: flex;
  align-items: center;
  gap: 20px;
}
.middle-job-right a{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  color: var(--font-2);
  font-size: 15px;
  height: 40px;
  font-weight: 700;
  background: #ddf1e2;
  border-radius: 40px;
  
}
.middle-job-right i{
  padding:  20px 22px ;
  border: 1px solid var(--font-2);
  border-radius: 50%;
  color: var(--font-2);
}

.middle-job-right a:hover,.middle-job-right a:focus{
  background: var(--bg-nav-top);
  color: var(--font-1);
}

.middle-job-right i:hover{
  color: var(--font-1);
  background-color: var(--bg-home);
}
.middle-job-box-bottom{
  display: flex;
  justify-content: space-around;
}
.middle-job-box-left{
  display: flex;
  gap: 15px;
}
.middle-job-box-left i{
  color: var(--bg-home);
  font-size:19px ;
}


.middle-job-box-left h6 {
font-size: 17px;
margin-bottom: 10px;
}

.middle-job-box-left p{
  font-size: 12px;
  
}
.bottom-job{
  margin: 50px 0;
  display: flex;
  justify-content: space-between;
}
.bottom-job-left a{
  color: var(--font-2);
  font-size: 15px;
  font-weight: 700;
}
.bottom-job-right{
  display: flex;
  gap: 30px;
  align-items: center;
}


.bottom-job-right a{
  color: var(--font-2);
  font-size: 15px;
  font-weight: 700;
}
.input {
  display: flex;
  flex-direction: row;
  background-color: #c2ebcb;
  justify-content: center;
  border-radius: 30px;
  gap: 7.5px;
  padding-left: 10px;
  padding-right: 10px;
  transition: all 0.2s ease;
 
}

.value {
  background-color: transparent;
  border: none;
  padding: 15px;
  color: var(--font-2);
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.2s ease;
  font-weight: 800;
}

.value:not(:active):hover,
.active,
.value:focus {
  background-color: var(--bg-nav-top);
  color: var(--font-1);
}

.value:focus,
.value:active {
  background-color:var(--bg-nav-top);;
  outline: none;
}
.member-wrapper{
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 50px 0;
  border-top: 1px solid var(--font-3);
  border-bottom: 1px solid var(--font-3);
  margin-bottom: 50px;
}
.member-wrapper i{
  font-size: 60px;
  color: var(--font-2);
}
.member-wrapper a{
  color: var(--font-2);
  display: block;
  margin: 30px 0;
  margin-left: -25px;
  font-size: 30px;
  font-weight: 700;
}
.member-wrapper p{
  font-size: 14px;
}
.update{
  background: var(--bg-black);
  
}

.update h2{
  color: var(--font-1);
  font-size: 35px;
  font-weight: 500;
  width: 50%;
  line-height: 1.7;
}
.update-box{
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.input-wrapper{
  position: relative;
  width: 400PX;
  border: 1px solid var(--border-1);
  z-index: 1;
  border-radius: 20px;
}


.input-sub {
  width: 400px;
  height: 45px;
  padding: 5px;
  border: none;
  outline: none;
  padding-left: 15px;
  background-color:transparent;
  color: white;
  font-size: 1em;
}

.Subscribe-btn {

position: absolute;
top: 5px;
right: 5px;
width: 95px;
padding: 10px;
background: var(--bg-home);
border: none;
border-radius: 30px;
color: var(--font-1);
font-weight: 700;
font-size: 14px;
cursor: pointer;
}

.Subscribe-btn:active {
  transform: scale(0.9);
}
footer .container{
  margin-top: 40px;
}
.footer-box{
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.left-footer a{
  color: var(--font-5);
}
.left-footer p{
  color: #747474;
  font-size: 12px;
}
.left-footer{
  display: grid;

}
.left-footer .footer-text {
 color: var(--font-5);
 font-size: 16px;
 margin: 30px 0;
}

.left-footer h5{
  font-size: 17px;
  margin-bottom: 15px;
}

.left-footer i{
  font-size: 23px;
  margin: 0 5px;
  padding: 15px;
  color: #4e5f52;
}
.left-footer i:hover{
  color: var(--font-2);
  background:#c2e2ca ;
  border-radius: 50%;
}
.middle-footer{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  gap: 10px;
}
.middle-footer-1{
  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
}
.middle-footer-1 a{
  color: #2e2e2e;
  font-size: 13px;
}
.middle-footer-1 h5{
font-size: 17px;

}
.right-footer{
  display: grid;
  gap: 10px;
}
.right-footer a{
  color: #2e2e2e;
  display: flex;
  gap: 20px;
  line-height: 1.5;

}
.right-footer h5{
  font-size: 17px;
}
.footer-last{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-1);
  height: 50px;

}
.footer-last-2 a{
  margin: 0 10px;
  color: var(--border-6);

}
.bottom-footer-left {
  display:flex;
}
.bottom-footer-left img{
 width: 150px;
}

/*CONTACT*/
.contact-navber{
  background-color: var(--bg-home);
}



form{
  background:var(--bg-white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px var(--font-3);
  width: 80%;
  max-width: 1000px;
}

.form-top{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}


.form__group {
  position: relative;
  padding: 20px 0 0;
  width: 100%;
  margin-bottom: 30px;
}

.form__field {
  font-family: inherit;
  width: 100%;
  border: none;
  border-bottom: 2px solid #6b6b6b;
  outline: 0;
  color:var(--font-5);
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}

.form__field::placeholder {
  color: transparent;
}

.form__field:placeholder-shown ~ .form__label {
  font-size: 17px;
  cursor: text;
  top: 20px;
}

.form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  font-weight: 700;
  color:var(--border-6);
  pointer-events: none;
}

.form__field:focus {
  padding-bottom: 6px;
  font-weight: 700;
  border-width: 3px;
  border-color: var(--border-5);
  
}

.form__field:focus ~ .form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  font-weight: 700;
}


.form__field:required, .form__field:invalid {
  box-shadow: none;
}

.form-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}
.form-bottom label{
  font-size: 15px;
  margin-left: 5px;
  color: var(--border-6);
  font-weight: 700;
}

.form-bottom button{
  border: none;
  padding: 15px 35px;
  background-color: var(--font-2);
  color:var(--font-1);
  font-size: 17px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
}
.form-bottom button:focus{
  transform: scale(0.95);
}

.map-box{
  position: relative;
}
.map-box iframe{
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 20px;
}
.map-location {
  position: absolute;
  bottom: -30%;
  top: auto;
  right: 20px;
  width: 350px;
  left: auto;
  background: var(--bg-white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 10px var(--border-1);
}
.map-location a{
  color: var(--bg-black);
  display: block;
  font-size: 15px;
  font-weight: 550;
}
.map-name{
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 20px 0;
}
.map-name i{
  padding: 15px;
  border-radius: 50%;
  background-color: var(--border-5);
  color: var(--font-1);
  cursor: pointer;
  transition: .3s ease-in-out;
}
.map-name i:hover{
  transform: scale(1.15);
  color: var(--bg-nav-top);
  background: var(--bg-white);
}
.partner-box img{
  width: 150px;
}
.partner-box{
  display: flex;
  justify-content: space-between;
  height: auto;
  width: auto;
}

.pertnership h2{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

/*NEWS*/


.top-home-news-1 {
  margin: 50px auto;
  color:var(--font-1) ;
}
.top-home-news-1 h1{
  font-size: 35px;
  margin-bottom: 20px;

}
.top-home-news-1 p{
  line-height: 1.7;
  font-size: 15px;
  width: 80%;
}

.top-home-news-20{
  width: 80%;
  margin: 0 auto;
}
.top-home-news-2{
  width: 100%;
  position: relative;
}

.top-home-news-2 input{
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--border-1);
  font-size: 18px;
  color: var(--font-5);
  font-weight: 600;
  position: relative;
  margin-bottom: -30px;
}
.top-home-news-2 input:focus{
  outline: none;
}
.top-home-news-2 input::placeholder{
  font-size: 18px;
  color: var(--font-5);
  font-weight: 600;
}

.top-home-news-2 i{
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 20px;
  cursor: pointer;
  background: var(--bg-white);
}
/*news report*/

.news-wrapper{
  width: 330px;
  border: 2px solid var(--border-1);
  background-clip:content-box;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--border-1);
  margin: 0 auto;
  transition: .2s ease-in-out;
}

.news-wrapper:hover{
  transform: translateY(-5px);
}


.img-news{
  position: relative;
  height: 200px;
  overflow: hidden;
}
.img-news button{
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: auto;
  top: auto;
  padding: 10px 15px;
  background: var(--bg-home);
  border: none;
  border-radius: 20px;
  font-weight: 800;
  cursor: pointer;

}
.img-news button:active{
  transform: scale(.90);
}
.write-news{
  padding: 20px;

}
.write-news h5{
  font-size: 12px;
  font-weight: 400;
}
.write-news h3{
  font-size: 15px;
  margin: 10px 0;
}
.write-news p{
  font-size: 12px;
  line-height: 1.3;
}

.news-box{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.news-wrapper img{
  transition: .5s ease-in-out;
}
.news-wrapper img:hover{
transform:scale(1.4);
}

.news .bottom-job{
  display: flex;
  justify-content: center;
}

.news-partner h2{
  display: flex;
  justify-content: center;
   margin-bottom: 20px;
}
.mobile-apps{
  background: var(--bg-black);
  border-bottom: 1px solid var(--border-1);
}


.mobile-box{
  margin-top: 100px;
  position: relative;
  display: grid;
  justify-content: center;
  align-items: center;
}
.mobile-apps .update-box{
  background: var(--bg-home);
  padding: 0 40px;
  border-radius: 10px;
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
}

.mobile-apps-bottom h3{
  margin-top: 50px;
  color: var(--font-1);
  font-size: 25px;
  margin-bottom: 20px;
}

.mobile-apps-bottom p{
  color: var(--font-1);
  font-size: 15px;
  width: 70%;
  line-height: 1.7;
}

.mobile-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.mobile-icon-1{
  background: var(--border-1);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 30px;
}
.mobile-icon-1:active{
  transform: scale(.95);
}
.mobile-icon-1 i{
  font-size: 30px;
}
.mobile-icon-1 p{
  font-size: 14px;
  line-height: 1.5;
  width: 100%;
  color: var(--font-5);
  font-weight: 600;
}
.news-footer{
  background: var(--bg-black);
  padding: 10px;
}
.news-footer .container{
  margin-top: 0px;
  color: var(--font-1);
  padding: 30px 0;
}
.news-footer .container a{
  color: var(--font-1);
}
.news-footer .container p{
  color: var(--font-1);
}
.news-footer .container i{
  color: var(--font-1);
}
.news-footer .container i:hover{
  background: #348f48;
}

/*about*/
.about .contact-top{
  background: var(--bg-home);
  padding: 70px 0;
}
.about .contact-top p{
  width: 70%;
}


.history-box{
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.history-box h2{
  font-size: 45px;
  display: flex;
  justify-content: center;
  font-family: "Open Sans", sans-serif;
  padding-top: 30px ;
}
.timeline-wrapper {
  display: grid;
  grid-template-columns: 1fr .5fr 1fr .5fr 1fr .5fr 1fr .5fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: auto;
  position: relative;
  margin-bottom: 20px;
}

.event {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.icon-circle {
  background-color: #d6ede7;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #144d43;
  z-index: 2;
  margin-bottom: 10px;
  position: relative;
}

.event h4 {
  margin: 0;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
}

.event p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #444;
}

.connector {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0; 
  position: relative;
  top: -40px; 
}

.connector svg {
  width: 100px; 
  height: 4px;
}

.connector line {
  stroke: #eee;
  stroke-width: 4;
}
.about-middle{
  background: var(--bg-home);
  
}
.about-middle .container{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
 position: relative;
 width: auto;
}
.about-middle-box{
  background-color: var(--border-1);
  position: absolute;
  border-radius: 10px;
}
.about-middle-section{
  position: relative;
}
.about-middle-img img{
  width: 170px;
  height: 170px;
  border-radius: 50%;
  position: absolute;
  top: -17%;
  bottom: auto;
  left: 41%;
}
.about-middle-img p{
   padding-top: 90px;
   padding-bottom: 20px;

  color: var(--border-5);
}
.about-middle-write{
  margin: 30px auto;
}
.about-middle-write h2{
  font-size: 35px;
  width: 70%;
}
.about-middle-write p{
  width: 80%;
  padding: 20px 0;
}
.about-middle-write h4{
  font-family: "Dancing Script", cursive;
  font-size: 20px;
}

.about-service-box h2{
  font-size: 35px;
  width: 40%;
  margin: 20px 0;
}
.about-service-box p{
  font-size: 14px;
  line-height: 1.3;
  width: 60%;
}
.service-contant{
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}
.service-contant i{
  font-size: 12px;
  padding: 3px;
  border-radius: 50%;
  background-color: var(--bg-home);
  color: var(--font-1);
}
.service-contant h5{
  font-weight: 600;
}
.service-button-box{
  display: flex;
  align-items: center;
  gap: 20px;
}
.service-button-box button{
  padding: 10px 15px;
  color: var(--font-1);
  background: var(--bg-home);
  border: none;
  border-radius: 20px;
  font-size: 14px;
  transition: .3s ease-in-out;
}
.service-button-box button:hover{
  background: var(--bg-white);
  color: var(--font-5);
  font-weight: 600;
  border: 2px solid var(--bg-black);
}
.service-button-box button i{
  margin-right: 5px;
}
.about-service-box{
  display: flex;
  align-items: center;
  padding: 50PX 0;
  margin-top: 320px;
}
.service-right{
  display: flex;
  position: relative;
}
.service-right img{
  width: 400px;
  height: 500px;
  border-radius: 10px;
}
.service-right .service-right-img{
  width: 400px;
  height: 250px;
  position: absolute;
  left: -60%;
  bottom: 40px;
}
.about-partner{
  padding: 50px 0;
  background: var(--border-1);
}
.about-network-box{
  padding: 100px 0;
  display: grid;
  grid-template-columns: 2fr 3fr;
}
.about-network-box-left{
  width: 100%;
}
.about-network-box-left h2{
  font-size: 35px; 
}
.about-network-box-left p{
  font-size: 14px;
  line-height: 1.3;
  padding: 30px 0;
}
.about-network-box-left button{
  padding: 10px 25px;
  border: 2px solid var(--bg-home);
  color: var(--bg-home);
  font-size: 16px;
  font-weight: 600;
  background: var(--bg-white);
  border-radius: 30px;
}
.about-network-box-left button:focus{
  transform: scale(.90);
  background: var(--bg-home);
  color: var(--font-1);
}
.about-network-grid{
  display: flex;
  align-items:baseline;
  gap: 20px;
  margin: 20px 10px;
  
  
}
.about-network-grid i{
  color: var(--bg-nav-top);
  padding: 15px;
  border-radius: 50%;
  background: #c8e4ce;
  font-size: 20px;
}
.about-network-grid p{
  width: 100%;
  padding-top: 10px;
  font-size: 12px;
}
.about-network-box-right{
  display: grid;
  grid-template-columns: 6fr 6fr;
}
.team-member-write p{
  font-size: 15px;
  line-height: 1.4;
  padding: 30px 0;
  width: 50%;
}
.team-member-write h2{
 font-size: 35px;
}
.team-member-img img{
  height: 150px;
  width: 100%;

}
.team-member-img-box{
  cursor: pointer;
  height: 200px;
  border: 1px solid var(--border-1);
  overflow: hidden;
  border-radius: 10px;
}
.team-member-img-box h5{
  display: flex;
  justify-content: center;
  margin-top: 7px;
}
.team-member-img{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.testimonial-box{
  padding: 50px 0;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 20px;
}
.left-testimonial h2{
  font-size: 35px;
}
.left-testimonial p{
  font-size: 15px;
  width: 100%;
  padding: 20px 0;
}
.testimonial-img{
  display: flex;
  align-items: center;
}
.testimonial-img a{
  padding: 15px 10px;
  font-size: 10px;
  background-color: var(--border-1);
  color: var(--font-5);
  font-weight: 600;
  border-radius: 50%;
  border-left: 4px solid var(--bg-white);
  border-radius: 50%;
  margin-left: -5px;
}
.testimonial-img img{
  border-left: 4px solid var(--bg-white);
  width: 50px;
  border-radius: 50%;
  margin-left: -5px;
}
.fa-quote-left{
  font-size: 50px;
  color: #747474;
  margin-left:-10px ;
}
.right-testimonial-write{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
}
.right-testimonial-write i{
  padding: 10px;
  background: var(--border-1);
  border-radius: 50%;
  border: 2px solid var(--bg-black);
  font-size: 18px;
}
.right-testimonial-write p{
  display: flex;
  justify-content: center;
  font-size: 13px;
  line-height: 1.2;
}
.right-testimonial-id{
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.right-testimonial-id-left{
  display: flex;
  align-items: center;
  gap: 20px;
}
.right-testimonial-id-left img{
  width: 50px;
}
.right-testimonial-id-left p{
  font-size: 10px;
}
.right-testimonial-id-right i{
  color: orangered;
}
/*main*/
.main{
  background: var(--bg-home);
}
.main-p{
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--bg-white);
  font-size: 14px;
  margin-bottom: 20px;
}
.main-contant{
  padding: 50px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  
}
.main-left-contant h2{
  font-size: 40px;
  color: var(--font-1);
  line-height: 1.3;
  font-family:sans-serif;
  padding: 30px 0;
}
.main-left-contant h6{
  font-size: 13px;
  color: var(--font-1);
  font-weight: 400;
}
.main-left-contant button{
  margin: 40px 0;
  padding: 10px 25px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  
}
.main-left-contant button:active{
  transform: scale(.96);
  background: var(--bg-black);
  color: var(--font-1);
}
.main-right-contant{
  display: flex;
  padding: 0 30px;
  width: auto;
  justify-content: center;
}
.main-right-contant img{
  width: 380px;
  height: 400px;
  border-radius: 50%;
  animation:  floatimage 4s ease-in-out infinite;
}
@keyframes floatimage{
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(10px);
  }
  100%{
    transform: translateY(0);
  }
}
.left-svg-main{
  position: relative;
}

.left-svg-main svg{
  position: absolute;
  bottom: 20%;
  left: -100px;
}
.left-svg-main .svg-img{
  position: absolute;
  top: 40%;
  left:-100px;
  animation: sayemsvg 4s ease-in-out infinite;
}
@keyframes sayemsvg{
  0%{
    transform: translateX(-1000px);
  }
  25%{
    transform: translateX(0);
  }
  50%{
    transform: translateX(0);
  }
  75%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(1000px);
  }
}
.right-svg-main{
  position: relative;
}
.right-svg-main .svg-1{
  position: absolute;
  top: 10%;
  left: 40px;
}
.right-svg-main svg{
  position: absolute;
  top: 20%;
  left: 120px;
}
.right-svg-main .gradut{
  position: absolute;
  bottom: 20%;
  left: 10px;
  padding: 25px;
  background-color: #fff;
  border-radius: 13px;
  transform:rotate(45deg);
  display: flex;
  align-items: center;
}
.right-svg-main i{
  font-size: 20px;
  color: #6b6b6b;
  transform:rotate(-45deg);
  margin-left: 2px;
  margin-bottom: 13px;
}
.main-under{
  background: var(--bg-black);
  padding: 40px 0;
  color: #fff;
}
.main-under-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-under-box-1{
  display: flex;
  gap: 20px;
  padding: 0 20px;
}
.main-under-box-2 h3{
  font-size: 40px;
  display: flex;
  justify-content: center;
}
.main-under-box-2 p{
  font-size: 14px;
}
.main-under-box-3 h4{
  font-size: 14px;
  font-weight: 500;
  color: goldenrod;
}
.main-under-box-3 p{
  font-size: 12px;
}
.border-right{
  border-right: 2px solid #444;
}
.meetup-top{
  padding: 50px 0;
}
.meetup-top h5{
  font-size: 15px;
  color: var(--border-5);
  font-weight: 500;
}
.meetup-top h2{
  font-size: 35px;
  line-height: 1.4;
  padding: 10px 0;
}
.meetup-top h6{
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  padding: 10px 0;
}
.meetup-top h6 i{
  font-size: 14px;
}
.meetup-top p{
  font-size: 14px;
  line-height: 1.3;
  width: 80%;
}
.meetup-middle{
  background-image: url(img/Untitled-2.jpg);
  background-size: cover;
  width: 100%;
  height: 400px;
}
.meetup-box{
  display: grid;
  justify-content: center;
  padding: 20px 0;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.meetup-left-side{
  display: flex;
  justify-content: space-between;
}
.left-meetup-box-1 a{
  display: flex;
  align-items: center;
  gap: 15px;
  color: #747474;
}
.left-meetup-box-1 a:focus{
  text-decoration: underline;
  color: var(--border-4);
  transform: scale(1.05);
  font-weight: 600;
}
.left-meetup-box-2{
  padding: 20px;
  border-radius: 10px;
  background: var(--bg-nav-top);
  margin-top: -150px;
}
.meetup-number{
  display: flex;
  justify-content: space-between;
  color: var(--font-1);
  border-bottom: 1px solid #686262;
  padding-bottom: 20px;
}
.meetup-number-1 h2{
  display: grid;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.meetup-number-1 p{
  font-size: 15px;
  font-weight: 300;
}
.meetup-number-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-top: 20px;
}
.meetup-number-bottom h4{
  font-size: 14px;
  color: var(--font-1);
  font-weight: 400;
}
.meetup-number-bottom p{
  font-size: 12px;
  color: var(--font-1);
  font-weight: 290;
}
.meetup-number-bottom a{
  color: var(--font-1);
  padding: 10px 15px;
  border: 1px solid var(--bg-white);
  border-radius: 50%;
}
.meetup-number-bottom a:focus{
  transform: scale(1.05);
  background: #c3ccb9;
  color: #000;
  border: none;
}
.meetup-number-bottom-4{
  display: flex;
  gap: 20px;
  align-items: center;
}
.meetup-number-bottom-4 button{
  padding: 7px 15px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid var(--font-1);
  color: var(--font-1);
  font-weight: 600;
}
.meetup-number-bottom button:focus{
  transform: scale(1.05);
  background: #c3ccb9;
  color: #000;
  border: none;
}
.meetup-number-bottom button:active{
  transform: scale(.95);
}
.join-elmna-box{
  padding: 50px 0;
}
.join-elmna-top{
  padding: 40px 0;
}
.join-elmna-top h2{
  font-size: 35px;
  padding: 10px 0;
}
.join-elmna-top p{
  font-size: 14px;
  width: 60%;
}
.join-elmna-wrapper{
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 10px 0;
}
.join-elmna-wrapper i{
  color: var(--bg-nav-top);
  font-size: 25px;
}
.join-elmna-wrapper h5{
  font-size: 18px;
  font-weight: 700;
}
.join-elmna-wrapper p{
  font-size: 12px;
  padding: 10px 0;
  padding-right: 40px;
}
.join-elmna-bottom{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
}
.design{
  background: #D4C9BE;
  margin-right: 20%;
  padding: 50px 0;
}
.design .container{
  margin-right: 0;
}
.design-box-right img{
  width: 350px;
  height: 300px;
  margin-left: 20px;
  margin-top: -20px;
  margin-right: -20px;
  margin-bottom: 10px;
  
}
.design-box-right-1 {
  width: 350px;
  height: 300px;
  border: 2px solid #9e815a;
}



.design-box-left h5{
  font-size: 17px;
  color: #2B6956;
}
.design-box-left h2{
  font-size: 35px;
  padding: 10px 0;
}
.design-box-left p{
  font-size: 13px;
  width: 60%;
  padding-bottom: 40px;
}
.design-box{
  display: flex;
  align-items: center;
  position: relative;
}
.design-box-right{
  position: absolute;
  right: -200px;
  
}
.career h2{
  font-size: 35px;
  padding: 20px;
}
.career p{
  font-size: 13px;
  padding-bottom: 30px;
}
.home-member{
  display: flex;
  margin: 0 auto;
  justify-content: center;
  margin: 40px 0;
}
.home-member button{
  padding: 10px 60px;
  border: none;
  color: var(--bg-nav-top);
  background: #d4ecd9;
  border-radius: 30px;
  font-size: 15px;
  font-weight:600 ;
}
.home-member button:focus{
  transform: scale(.95);
  background: var(--bg-black);
  color: var(--font-1);
}

.design-2{
  background: var(--bg-home);
  width: 80%;
  margin-left: auto;
}
.design-2 .design-box{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.design-read button{
  padding: 10px 40px;
  border-radius: 30px;
  font-size: 15px;
  border: none;
  color: var(--bg-home);
  font-weight: 600;
}
.design-read button:focus{
  transform: scale(.95);
  color: var(--bg-black);
}

.design-read .icon-footer{
  display: inline;
}
.design-read .icon-footer i{
  margin: 0 5px;
  padding: 10px;
  color:#9dcca7;
  font-size: 17px;
  border-radius: 50%;
  transition: .3s;
}
.design-read .icon-footer i:hover{
  background-color: var(--font-1);
  color: var(--bg-black);

}
.news-home{
  padding: 50px 0;
}
.home-news-top-1 h2{
  font-size: 35px;
}
.home-news-top-1 p{
  font-size: 13px;
}
.home-news-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: var(--bg-nav-top);
  font-size: 20px;
}
.home-news-bottom a{
  color: var(--bg-nav-top);
  font-size: 15px;
  font-weight: 600;
}
.home-news-bottom a:active{
  transform: scale(.95);
}
.home-event .img-news button {
  display: flex;
  align-items: center;
  bottom: 0px;
  left: 0px;
  padding: 20px 20px;
  background: var(--bg-black);
  border-radius: 0px; 
  border-top-right-radius: 10px;
  transition: .3s;
  font-size: 20px;
}
.home-event{
  padding: 50px 0;
}
.home-event .img-news button:hover{
  background: var(--bg-nav-top);
}
.home-event .img-news button i{
  color: var(--bg-white);
  margin-left: 30px;
  font-size: 15px;
  padding: 15px 17px;
  background-color: #332f2f;
  border-radius: 50%;
}
.home-event .img-news button i:hover{
  background: var(--bg-white);
  color: var(--bg-nav-top);
}
.event-home-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.event-home-top h2{
  font-size: 35px;
  padding-left: 20px;
}
.event-home-top a{
  color: var(--font-1);
  padding: 10px 30px;
  background: var(--bg-nav-top);
  border-radius: 30px;
  font-weight: 600;
}
.event-home-top a:active{
  transform: scale(.92);
  background: var(--bg-black);
  
}
.event-top{
  background-color: var(--bg-home);
}
.event-under{
  background: #1b7c5f;
}
.home-event .bottom-job-right{
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.business-write{
  padding: 50px 0;
}
.business-write-1{
  margin: 20px 0;
}
.business-write-1 h4{
  font-size: 17px;
  padding: 15px 0;
}
.business-write-1 p{
  font-size: 12px;
}
.share-busness{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.share-icon{
  display: flex;
  gap: 20px;
}
.share-icon-1{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  background: #ccf7f8;
  border-radius: 30px;
}
.share-icon-1 i{
  color: #00999e;
}
.share-icon-2{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  background: #cab4d6;
  border-radius: 30px;
}
.share-icon-2 i{
  color: #03787c;
}
.share-icon-3{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  background: #a3ccf3;
  border-radius: 30px;
}
.share-icon-3 i{
  color: #03787c;
}
.share-icon-4{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #b7ffb5;
  border-radius: 30px;
}
.share-icon-4 i{
  color: #013f0c;
  font-size: 20px;
  font-weight: bolder;
}
.comment-form h2{
  font-size: 35px;
  padding: 30px 0;
}
.form-3{
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}
.form-4{
  display: grid;
  gap: 20px;
}
.form-4 input{
  padding: 5px 10px;
  border: 2px solid var(--bg-nav-top);
  border-radius: 5px;
  color: var(--bg-white);
  font-weight: 700;
}
.form-4 input:focus{
  background: #000;
  box-shadow: 0 2px 10px #00999e;
}
.form-3 textarea{
  width: 100%;
  height: 85px;
  padding: 5px 10px;
  border: 2px solid var(--bg-nav-top);
  border-radius: 5px;
  color: var(--bg-white);
  font-weight: 500;
  font-size: 18px;
}
.form-3 textarea:focus{
  background: #000;
  box-shadow: 0 2px 10px #00999e;
}
.comment-form button{
  padding: 10px 30px;
  background: var(--bg-nav-top);
  border: none;
  color: var(--bg-white);
  font-weight: 600;
  border-radius: 30px;
}
.comment-form button:active{
  transform: scale(.95);
  background: var(--bg-black);
}
.comment-12 img{
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.comment-12{
  display: grid;
  grid-template-columns: 1fr 11fr;
  gap: 30px ;
}
.comment-12 h4{
  font-size: 17px;
  padding: 10px 0;
}
.comment-12 p{
  font-size: 13px;
  line-height: 1.4;
}
.comment-12 h6{
  margin: 20px 0;
  font-size: 14px;
  font-weight: 600;
  color: #013f0c;
}

.area-bottom{
  display: grid;
  gap: 30px;
  width: 90%;
  margin-left: auto;
  margin-top: 20px;
}

.business-form{
  padding: 50px 0;
  border: 2px solid var(--border-1);
}
.business-partner{
  padding: 50px 0;
}
.meetup-1{
  background: var(--bg-white);
}
.meetup-1 a{
  color:var(--border-4);
}
.meetup-1 i{
  color:var(--border-4);
}
.contact-top .meetup-500{
  width: 100%;
  font-size: 12px;
}
.meetup-2{
  background: var(--bg-white);
}
.meetup-2 a{
  color: var(--bg-black);
}
.meetup-2 ul li a{
  color: var(--bg-black);
}
.meetup-2 button{
  color: var(--bg-black);
}
.meetup-2 i{
  color: var(--bg-black);
}
.meetup-2 .bottom-nabver-right i{
  color: var(--bg-black);
}
.meetup-2 .contact-top h1{
  color: #000;
}
.meetup-2 .contact-top P{
  color: #000;
  font-weight: 600;
}
.meetup-3 .meetup-box{
  display:flex;
}

.meetup-3 .meetup-box .left-meetup-box-2{
  width: 700px;
  margin-top: -120px;
}
.meetup-map{
  padding: 50px 0;
}
.business-write button{
  display: flex;
  margin: 50px auto;
  padding: 10px 40px;
  font-size: 15px;
  border-radius: 30px;
  border: none;
  background-color: var(--bg-home);
  color: var(--font-1);
  font-weight:600; 
}
.business-write button:active{
transform: scale(.92);
}
.write-news h5{
  color: var(--bg-home);
}
.meetup-event{
  padding: 20px 0;
  border-top: 2px solid var(--border-1);
  border-bottom: 2px solid var(--border-1);
}
.meetup-update{
  margin-top: 50px;
}
.meetup-attan{
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}
.meetup-attan .event p{
  font-size: 12px;
}
.attantion-box {
  margin: 100px 0 0;
  padding: 15px;
  border: 2px dashed var(--border-6);
}
.attantion-write{
  padding: 20px;
  background-color: #fcf0de;
}

.attantion-box h3{
  font-size: 25px;
  margin-bottom: 10px;
}
.attantion-box h6{
  font-size: 15px;
}
.left-1{
  min-width: 220px;
  padding: 20px;
  margin: 20px;
  border: 2px solid var(--border-1);
  border-radius: 10px;
  height: fit-content;
}
.left-1 img{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  margin: 20px auto;
}
.left-img {
  display: grid;
  justify-content: center;
 
}
.left-img h4{
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto;
}
.left-img p{
  font-size: 12px;
  padding:5px 0 20px;
  margin: 0 auto;
}
.left-img button{
  padding: 5px 20px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  background: var(--bg-home);
  color: var(--font-1);
}
.left-img button:active{
  background: #000;
  transform: scale(.95);
}
.left-img-down {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.left-img-down h2{
  font-size: 25px;
  font-weight: 600;
}
.left-img-down p{
  font-size: 12px;
  text-align: right;
}
.left-img-down i{
  color: rgb(230, 180, 17);
}
.left-img-down i:nth-last-child(2){
  color: #b1a2a2;
}
.width-5{
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 10px 0;
}
.width-5 h6{
  font-size: 20px;
  font-weight: 600;
}
.width-5 p{
  font-size: 13px;
}
.width-5 i{
  font-size: 20px;
  color: var(--bg-home);
}
.left-about{
  padding: 30px 0 10px;
  border-top: 2px solid var(--border-1);
}
.left-about h4{
  font-size: 20px;
  color: #444;
  padding: 10px 0;
}
.left-about p{
  font-size: 13px;
}
.left-2 .middle-job-left-1 p{
  font-size: 15px;
  color: #000;
}
.left-2 .middle-job-left-1 h4{
  font-size: 35px;
}
.left-2{
  padding: 20px;
  margin: 20px;
  border: 2px solid var(--border-1);
  border-radius: 10px;
  height: fit-content;
}
.portfolio .container{
display: flex;
}

.left-2 .middle-job-box-bottom {
  margin-top: 40px;
}
.gelery h3{
  font-size: 25px;
  padding: 20px 0;
}
.img-gelery{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
.img-gelery iframe{
  width: 200px;
  height: 200px;
  border-radius: 10px;
}










@media (min-height:300px) and (max-height:400px){
  .map .container {
   padding-block-start:200px;
  }
  .pertnership{
    padding-top: 500px;
  }
  
   .form-container .contact-top {
      margin-bottom:-20px ;
      background: var(--bg-home);
      padding-bottom: 40px;
  }
  

  
}




@media (min-height:400px) and (max-height:500px){
  .map .container {
   padding-block-start:200px;
  }
  .pertnership{
    padding-top: 450px;
  }
}
@media (min-height:500px) and (max-height:600px){
  .map .container {
   padding-block-start:150px;
  }
  .pertnership{
    padding-top: 330px;
  }
}
@media (min-height:600px) and (max-height:700px){
  .map .container {
   padding-block-start:130px;
  }
  .pertnership{
    padding-top: 250px;
  }
}
@media (min-height:700px) and (max-height:800px){
  .map .container {
   padding-block-start:100px;
  }
  .pertnership{
    padding-top: 150px;
  }
}


@media (min-width:320px) {
  .container {
    max-width:450px;
    margin: 0 auto;
    padding: 0 5px;
  }
  .menu-item{
    display: inline;
  }
  .home-top h1{
    font-size: 25px;
  }
  .navber{
    display: none;
  }
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .bottom-navber-middle ul{
    display: none;
  }
  .bottom-navber-left{
    display: none;
  }
  .bottom-nabver-right {
    display: flex;
    gap: 10px;
    align-items: center;
}
  .home-top p{
    width: 100%;
    line-height: 1.2;
  }
  .bottom-nabver-right i {
    color: var(--font-1);
    font-size: 15px;
}
.bottom-nabver-right a{
  font-size: 10px;
}
  .middle-job{
    display: grid;
    grid-template-columns:  1fr;
    gap: 10px;
  }
  .top-job-right{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px; 
  }
  .top-nevber-left a {
    display: flex;
    gap: 5px;
    font-size: 11px;
}
.home-last ul li {
  padding: 10px 15px;
  margin:5px;
  font-size: 13px;
}
.home-top {
  margin: 20px;
}

  .top-job-right a:nth-last-child(1){
    width: 70px;
  }
  .bottom-job{
    display: grid;
    justify-content:center;
    align-items: center;
    gap: 5px;
  }
  .bottom-job-right a{
    color: var(--font-2);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .bottom-job-left{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }
  .left-footer i {
    font-size: 20px;
    padding: 10px;
    color: #4e5f52;
  }

  .member-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .member-wrapper .member-box{
    display: grid;
    justify-content: center;
  }
  .update h2{
    color: var(--font-1);
    font-size: 15px;
    font-weight: 500;
    width: 50%;
    line-height: 1.7;
  }
  .input-wrapper{
    position: relative;
    width: 200PX;
  }
  .input-sub {
    width: 200px;}
    

    .Subscribe-btn {
      position: absolute;
      top: 1px;
      bottom: 1px;
      right: 1px;
      width: 70px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 11px;
      border-radius: 17px;
      
  }
  .mobile-apps .input-wrapper{
    width: 200px;
  }
  .mobile-apps .Subscribe-btn{
    background: var(--border-1);
    color:var(--font-5);
  }

    .footer-box{
      display: grid;
      grid-template-columns: 1fr;     
      gap: 40px;
      margin-bottom: 40px;
}
.footer-last{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  height: auto;
  padding-top: 10px;

}
.middle-footer-1 h5{
  font-size: 12px;
  
  }
  .right-footer h5{
    font-size: 12px;
  }
  .home-middle{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    padding: 10px;
  }
  .middle-job-left h4 {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 5px;
}
  .home-middle .home-1{    
    border-right: none; 
    padding: 0 5px;
  }
  .home-middle .home-2{
    border-right: none; 
    padding: 0 5px;
  }
  .home-middle .home-3 input{
    background:var(--bg-home);
    color: #fff;
    padding: 20px 10px;
    border-radius: 10px;
  }
  .home-middle .home-3{
    align-items: center;
    gap: 10px;
    padding: 0 5px;
  }
  .home-middle .home-3 i{
    font-size: 20px;
  }
  .home-middle .home-3 input::placeholder{
    color: #fff;
  }
  .left-footer .footer-text {
    color: var(--font-5);
    font-size: 12px;
    margin: 30px 10px;
    width: 80%;
}
.middle-footer {
  display: grid;
  grid-template-columns: 1fr  1fr;
  gap: 10px;
  
}
.top-job h2 {
  display: flex;
  align-items: center;
  font-size: 25px;
  font-weight: 600;
}

.top-job-right a {
  color: var(--font-2);
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border: 2px solid var(--font-2);
  border-radius: 30px;
  font-weight: 600;
}
.top-job {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.middle-job-left p {
  font-size: 13px;
  color: var(--border-5);
  line-height: 1.2;
}
.middle-job-right a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 13px;
  color: var(--font-2);
  font-size: 12px;
  height: 35px;
  font-weight: 700;
  background: #ddf1e2;
  border-radius: 40px;
  text-align: center;
}
.middle-job-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.middle-job-right i {
  padding: 10px 12px;
  border: 1px solid var(--font-2);
  border-radius: 50%;
  color: var(--font-2);
  font-size: 12px;
}
.middle-job-box-left {
  display: flex;
  
  gap: 8px;
}
.middle-job-box-left i {
  color: var(--bg-home);
  font-size: 14px;
}
.middle-job-box-left h6 {
  font-size: 12px;
  margin-bottom: 5px;
}
.middle-job-left {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}
.menu-item {
  
  color: var(--font-1);
  font-size: 20px;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.bottom-nabver-right button {
  padding: 5px 10px;
  font-size: 10px;
}

.bottom-navber-left-1 img{  
  width: 60px;
}
.bottom-navber-left-1 .logo-img-text a{
  font-size:7px ;
}
.bottom-navber-left-1 .logo-img-text p{
font-size: 7px;
}

 .bottom-nabver-right-1{
  display: flex;
  gap: 5px;
  align-items: center;
 } 
 .bottom-nabver-right-1 button{
  padding: 5px;
  font-size: 10px;
 }
 .bottom-nabver-right-1 i {
  color: var(--font-1);
  font-size: 10px;
}
.bottom-job-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

/*contact*/
.form-container{
  background: var(--bg-home);
  width: 100%;
  position: relative;
  height: 35vh;
}
.contact-top{
  padding-top:50px;
}

.contact-top h1{
 font-size: 25px;
 color: var(--font-1);
}
.contact-top p{
  color: var(--font-1);
  font-size: 12px;
  padding: 10px 0 ;
  width: 80%;
}
.map .container{
  width: 100%;
  height: 70vh;
  display: grid;
  align-items: center;
  margin-top: 200px;
}

.form-top {
  display: grid;
  grid-template-columns:  1fr;
  gap: 0;
  margin-bottom:0;
}

.form-bottom {
  display: grid;
  align-items: center;
  justify-content: center;
  margin: 0;
  gap: 20px;
}
form{
  padding: 5px 15px;
  width: 100%;
}
.form__group {
  padding:10px 0 ;
  margin-bottom: 0px;
}
.form-bottom button {
  margin-bottom: 20px;

}
.form__field:placeholder-shown ~ .form__label{
  font-size: 13px;
}

.map-location {
  margin-top: 20px;
  position: inherit;
  right: 0px;
  width: auto;
  padding:15px;

}

.map-name {
  gap: 10px;
  margin: 10px 0;
}
.map-name i {
  padding: 10px;
  font-size: 12px;
}
.map-location h2{
  font-size: 18px;
}

.map-location a {
  font-size: 12px;
  font-weight: 500;
}

.partner-box {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr;
}







/*news*/


.news .top-job {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  margin-top: 40px;
}
.news-box{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 30px 0;
}

.mobile-apps .update-box h2{
  font-size: 14px;
}
.mobile-apps .update-box{
  padding: 20px 10px;
}
.mobile-icon-1 {
  padding: 5px;
}
.mobile-icon-1 i {
  font-size: 20px;
}
.mobile-icon-1 p {
  font-size: 10px;
  line-height: 1.2;
}
.mobile-box{
  padding: 0 0 20px;

}
.mobile-apps-bottom p {
  width: 100%;
  line-height: 1.3;
}

.mobile-apps .mobile-icon p{
  width: 100%;
  line-height: auto;
}

/*about*/
.about .contact-top{
  padding: 30px 0;
}
.about .contact-top p{
  width: 100%;
}

.history-box h2{
  font-size: 25px;
  font-weight:800;
}
.event h4 {
  font-size: 12px;
  line-height: 1.0;
}
.timeline-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  

}
.connector{
  top: -30px;
}
.svg{
  opacity: 1;
}
.history-write{
  font-size: 12px;
}
.history-box{
  padding: 20px;
}
.about-middle-img img{
  width: 130px;
  height: 130px;
  border-radius: 50%;
  position: absolute;
  top: 20;
  bottom: auto;
  left: 31%;
}
.about-middle-img p{
  padding-top: 70px;
  padding-bottom: 0px;

}
.about-middle-write h2{
  font-size: 22px;
  width: 90%;
}
.about-middle-write p {
  width: auto;
  padding: 10px ;
  font-size: 12px;
  line-height: 1.2;
}
.about-middle .container{
  padding-top: 350px ;
  bottom: -90%;
}
.about-middle-box{
  margin: 0 10px;
}
.about-service-box h2{
  font-size: 25px;
  width: 100%;

}
.about-service-box{
  display: grid;
  align-items: center;
  gap: 30px;
}

.service-left{
  margin: 0 auto;
}

.about-service-box p {
  font-size: 12px;
  width: 100%;
}
.about-service-box {

  padding: 50px 0;
  margin-top: 200px;
}

.service-right {
  margin: 0 auto;
  }
.service-right img {
  width: 300px;
  height: 300px;
  border-radius: 10px;
}
.service-right .service-right-img {
  width: 200px;
  height: 150px;
  position: absolute;
  left: -10%;
  bottom: 10px;
}
.news-partner h2 {
  font-size: 25px;
}
.about-network-box{
  grid-template-columns: 2fr;
  padding: 30px 0;
}
.about-network-box-right {
  grid-template-columns: 6fr;
}
.about-network-box-left h2 {
  font-size: 25px;
}
.team-member-write h2{
  font-size: 25px;
 }
 .team-member-write p {
  font-size: 12px;
  padding: 20px 0;
  width: 100%;
}
.team-member-img{

  grid-template-columns: 1fr 1fr ;
  gap: 20px;

}
.testimonial-box{
  padding: 30px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
.main-contant {
  padding: 50px 0;
  display: grid;
  grid-template-columns: 1fr;
}
.main-left-contant h2 {
  font-size: 30px;
}
.main-right-contant img {
  width: 250px;
  height: 270px;
}
.right-svg-main{
  position: relative;
}
.right-svg-main .svg-1{
  position: absolute;
  top: 10%;
  left: 0px;
}
.right-svg-main svg{
  position: absolute;
  top: 40%;
  left: 60px;
}
.right-svg-main i{
  position: absolute;
  bottom: 5%;
  left: 10px;
}
.main-under-box-2 h3{
  font-size: 15px;
}
.main-under-box-2 p{
  font-size: 4px;
}
.main-under-box-3 h4{
  font-size: 6px;
  font-weight: 500;
}
.main-under-box-3 h3{
  font-size:8px;
}
.main-under-box-3 p{
  font-size: 5px;
}
.main-under-box-1{
  gap:5px;
  padding: 0 5px;
}
.left-svg-main svg{
  position: absolute;
  bottom: 20%;
  left: -70px;
}
.left-svg-main .svg-img {
  top: 30%;
  left: -70px;
}
.meetup-top{
  padding: 20px 0;
}
.meetup-top h5{
  font-size: 13px;
  color: var(--border-5);
  font-weight: 500;
}
.meetup-top h2{
  font-size: 25px;
  line-height: 1.4;
  padding: 0px 0;
}
.meetup-top h6{
  font-size: 10px;
  font-weight: 500;
  padding: 10px 0;
}
.meetup-top h6 i{
  font-size: 14px;
}
.meetup-top p{
  font-size: 12px;
  line-height: 1.3;
  width: 100%;
}
.meetup-middle{
  height: 300px;
}
.left-meetup-box-2{
  margin-top: 0px;
}
.meetup-box{
  grid-template-columns: 1fr;
  gap: 20px;
}
.left-meetup-box-1 a{
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
}

.join-elmna-bottom{
  grid-template-columns: 1fr;
}
.design-box{
  display: block;
}

.design-box-right {
    position: inherit;
    right: auto;
    margin-top: 50px;
    
}
.design{
  margin-right: 0%;
  margin-top: 50px;
}

.design-box-left h5{
  font-size: 13px;

}
.design-box-left h2{
  font-size: 25px;

}
.design-box-left p{
  font-size: 10px;
  width: 90%;

}
.career h2{
  font-size: 25px;
  padding: 20px;
}
.career p{
  font-size: 11px;
  padding-bottom: 30px;
  width: 90%;
}
.design-2 .design-box-right{

  left: 0px;
}
.design-2{
  width: 100%;
}
.design-2 .design-box {
  display: grid;
  grid-template-columns: 1fr;
  padding: 30px 0;
}
.home-news-top-1 h2{
  font-size: 25px;
}
.home-news-top-1 p{
  font-size: 10px;
}
.event-home-top h2{
  font-size: 25px;
  padding-left: 20px;
}
.share-icon{
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 20px;
}
.comment-form h2{
  font-size: 25px;
  padding: 10px 0;
}

.form-3{
  display: grid;
  grid-template-columns: 1fr;
}
.meetup-3 .meetup-box .left-meetup-box-2{
  width: 350px;
}

.meetup-attan{
  margin-top: -100px;
}
.attantion-box h3{
  font-size: 19px;
  margin-bottom: 10px;
}
.left-2 .middle-job-left-1 h4{
  font-size: 15px;
}
.left-2 .middle-job-left-1 p{
  font-size: 10px;
}
.left-2 .business-write-1 h4{
  font-size: 15px;
 }
}



@media (min-width:450px) {
  .container {
    max-width:575px;
    margin: 0 auto;
    padding: 0 8px;
  }

  .menu-item{
    display: inline;
  }
  .home-top h1{
    font-size: 35px;
  }
  .bottom-navber-middle ul{
    display: none;
  }
  .bottom-navber-left{
    display: none;
  }
  .top-job-right a {
    color: var(--font-2);
    font-size: 14px;
    display: flex;
    gap: 10px;
    padding: 10px 20px;
    border: 2px solid var(--font-2);
    border-radius: 30px;
    font-weight: 600;
}
.bottom-job-right {
  display: flex;
  gap: 30px;
  align-items: center;
}
  .home-top p{
    width: 100%;
  }
  .middle-job{
    display: grid;
    grid-template-columns:  1fr;
    gap: 30px;
  }
  .top-job-right{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    
  }
  .middle-job-left {
    display: flex;
    align-items: center;
    gap: 20px;
    line-height: 2;
}
  .top-job-right a:nth-last-child(1){
    width: 100px;
  }
  .bottom-job{
    display: grid;
    justify-content:space-around;
    align-items: center;
    gap: 20px;
  }
  .bottom-job-right a{
    color: var(--font-2);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    gap: 10px;
  }
  .middle-job-left h4 {
    font-weight: 700;
    font-size: 18px;
}
.middle-job-left p {
  font-size: 13px;
  color: var(--border-5);
  line-height: 1.2;
}
  .bottom-job-left{
    margin: 20px 110px;
  }
  .member-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .middle-job-box-left h6 {
    font-size: 17px;
    margin-bottom: 10px;
}
  .member-wrapper .member-box{
    display: grid;
    justify-content: center;
  }
  .update h2{
    color: var(--font-1);
    font-size: 20px;
    font-weight: 500;
    width: 50%;
    line-height: 1.7;
  }
  .input-wrapper{
    position: relative;
    width: 250PX;
  }
  .mobile-apps .input-wrapper{
    width: 250px;
  }
  .input-sub {
    width: 250px;}
    .footer-box{
      display: grid;
      grid-template-columns: 1fr;
      justify-content: center;
      gap: 40px;
      margin-bottom: 40px;
}
.footer-last{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  height: auto;

}
.middle-footer-1 h5{
  font-size: 12px;
  
  }
  .right-footer h5{
    font-size: 12px;
  }
  .home-middle{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 80%;
    padding: 20px;
    
    
  }
  .home-middle .home-1{
    padding: 0 20px;
    border-right: none; 
  }
  .home-middle .home-2{
    padding: 0 20px;
    border-right: none; 
  }
  .home-middle .home-3 input{
    background:var(--bg-home);
    color: #fff;
    padding: 20px 10px;
    border-radius: 10px;
  }

  .home-middle .home-3{
    align-items: center;
    gap: 10px;
    padding: 0 20px;
  }
  .home-middle .home-3 i{
    font-size: 20px;
  }
  .home-middle .home-3 input::placeholder{
    color: #fff;
  }
  .left-footer .footer-text {
    color: var(--font-5);
    font-size: 16px;
    margin: 30px 0;
    width: 100%;
}
.left-footer {
  display: grid;
}
.middle-job-right a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  color: var(--font-2);
  font-size: 15px;
  height: 40px;
  font-weight: 700;
  background: #ddf1e2;
  border-radius: 40px;
}
.middle-job-box-left {
  display: flex;
  gap: 15px;
}
.middle-job-box-left i {
  color: var(--bg-home);
  font-size: 19px;
}
.bottom-navber-left-1 img{
  width: 100px;
  
}

.bottom-navber-left-1 .logo-img-text a{
  font-size:14px ;
}
.bottom-navber-left-1 .logo-img-text p{
font-size: 8px;
}
.partner-box{
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr  1fr;
}


.news-wrapper{
  border: 2px solid var(--border-1);
  background-clip:content-box;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--border-1);
  margin: 0 auto;
}
.news-box{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 30px 0;
}
.mobile-apps .update-box{
  padding: 40px 20px;
}
/*about*/
.about-middle-img img{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: absolute;
  top: -22%;
  bottom: auto;
  left: 33%;
}
.about-middle-img p{
  padding-top: 85px;
  padding-bottom: 0px;
}
.about-middle-box{
  margin: 0 20px;
}

.about-service-box h2{
  font-size: 25px;
  width: 90%;

}
.team-member-img{

  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;

}
.main-right-contant img {
  width: 280px;
  height: 300px;
}
.main-under-box-2 h3{
  font-size: 15px;
}
.main-under-box-2 p{
  font-size: 4px;
}
.main-under-box-3 h4{
  font-size: 6px;
  font-weight: 500;
}
.main-under-box-3 h3{
  font-size:8px;
}
.main-under-box-3 p{
  font-size: 5px;
}
.main-under-box-1{
  gap:5px;
  padding: 0 5px;
}
.left-meetup-box-1 a{
  gap: 8px;
  font-size: 13px;
}
.share-icon{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
}

@media (min-width:575px) {
  .container {
    max-width: 770px;
    margin: 0 auto;
  }
  .menu-item{
    display: inline;
  }
  .mobile-apps .update-box{
    padding: 30px 40px;
  }
  .bottom-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}
.left-footer i {
  font-size: 23px;
  margin: 0 5px;
  padding: 15px;
  color: #4e5f52;
}
  
  .bottom-navber-middle ul{
    display: none;
  }
  .bottom-navber-left{
    display: none;
  }
  .home-top p{
    width: 100%;
    line-height: 1.6;
  }
  .middle-job{
    display: grid;
    grid-template-columns:  1fr;
    gap: 30px;
  }
  .bottom-nabver-right {
    display: flex;
    gap: 30px;
    align-items: center;
}
  .menu-item {
    
    color: var(--font-1);
    font-size: 25px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}
.home-last ul li {
  list-style: none;
  padding: 10px 20px;
  margin: 20px 20px;
  border: 1px solid var(--border-2);
  font-weight: 600;
  border-radius: 30px;
}
.bottom-nabver-right i {
  color: var(--font-1);
  font-size: 18px;
}
.bottom-nabver-right a {
  font-size: 14px;
}
.bottom-nabver-right button {
  padding: 7px 10px;
  font-size: 14px;
  
}    
  .top-job-right{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .middle-job-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
  .top-job-right a:nth-last-child(1){
    width: 100px;
  }
  .bottom-job{
    display: grid;
    grid-template-columns: 1fr;
    justify-content:space-around;
    align-items: center;
    gap: 20px;
    margin: 50px 120px;
  }

  .bottom-job-left{
    margin: 20px 110px;
  }
  .member-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .update h2{
    color: var(--font-1);
    font-size: 25px;
    font-weight: 500;
    width: 50%;
    line-height: 1.7;
  }
  .input-sub {
    width: 250px;}
    .Subscribe-btn {
      position: absolute;
      top: 1px;
      bottom: 1px;
      right: 1px;
      width: 95px;
      padding: 10px;
      display: flex;
      justify-content: center;
      font-size: 15px;
  }
  .left-footer h5 {
    font-size: 17px;
    margin-bottom: 15px;
}
.middle-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  gap: 10px;
}
.top-nevber-left a {
  display: flex;
  gap: 5px;
  font-size: 16px;
}
.middle-job-right i {
  padding: 20px 22px;
  border: 1px solid var(--font-2);
  border-radius: 50%;
  color: var(--font-2);
  font-size: 16px;
}
.home-top {
  margin: 60px;
}

/*contact*/



.form-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}
.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}
form{
  padding: 30px;
  width: 80%;
}
.form__group {
  padding: 20px 0 0;
  margin-bottom: 30px;
}
.form-bottom button {
  margin-bottom: 0;
}

.left-2 .middle-job-left-1 h4{
  font-size: 20px;
}

/*news*/



.news-box{
  display: grid;
  grid-template-columns:1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}
.news-wrapper{
  width: 270px;
  border: 2px solid var(--border-1);
  background-clip:content-box;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--border-1);
  margin: 0 auto;
}
.mobile-box{
  padding: 50px 0 20px;

}
.mobile-apps .update-box h2{
  font-size: 18px;
}

/*about*/

.about .contact-top p{
  width: 70%;
}
.timeline-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  
}
.connector{
  top: -30px;
}
.svg{
  opacity: 0;
}
.about-middle-img img{
  width: 170px;
  height: 170px;
  border-radius: 50%;
  position: absolute;
  top: -22%;
  bottom: auto;
  left: 36.5%;
}
.about-middle-write p {
  width: 85%;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.3 ;
}
.about-middle-box{
  margin: 0 30px;
}
.about-service-box p {
  font-size: 14px;
  line-height: 1.3;
  width: 100%;
}
.service-right img{
  width: 300px;
  height: 400px;
  border-radius: 10px;
}
.service-right .service-right-img{
  width: 250px;
  height: 150px;
  position: absolute;
  left: -30%;
  bottom: 40px;
}
.about-network-box{
  grid-template-columns: 2fr;
}

   .team-member-write p {
    font-size: 12px;
    padding: 20px 0;
    width: 70%;
  }
  .main-right-contant img {
    width: 350px;
    height: 370px;
  }
  .main-under-box-2 h3{
    font-size: 20px;
  }
  .main-under-box-2 p{
    font-size: 9px;
  }
  .main-under-box-3 h4{
    font-size: 8px;
    font-weight: 500;
  }
  .main-under-box-3 h3{
    font-size:10px;
  }
  .main-under-box-3 p{
    font-size: 7px;
  }
  .main-under-box-1{
    gap:10px;
    padding: 0 10px;
  }
  .left-svg-main svg{
    position: absolute;
    bottom: 20%;
    left: -100px;
  }
  .join-elmna-bottom{
    grid-template-columns: 1fr 1fr;
  }
  .form-3{
    display: grid;
    grid-template-columns: 1fr 1.8fr;
  }

  .meetup-3 .meetup-box .left-meetup-box-2{
    width: 500px;
  }
  .left-2 .middle-job-left-1 p{
    font-size: 15px;
    color: #000;
  }
 .left-2 .middle-job-box-left h6{
  font-size: 23px;
 }
 .left-2 .middle-job-box-left {
  display: flex;
  align-items: center;
 }
 .left-2 .middle-job-box-left i{
  font-size: 23px;
 }
 .left-2 .middle-job-box-left p{
  font-size: 16px;
 }
 .left-2 .business-write-1 h4{
  padding-top: 20px;
  font-size: 23px;
 }

}

@media (min-width:770px) {

  .home-top h1{
    font-size: 55px;
  }

  .container{
     max-width: 850px;
  margin: 0 auto;}
  .menu-item{
    display: inline;
  }
  
  .bottom-navber-middle ul{
    display: none;
  }
  
  .bottom-navber-left{
    display: none;
  }
  .bottom-nabver-right button {
    padding: 7px 20px;
    font-size: 17px;
    
  }
  .home-top p{
    width: 100%;
  }
  .middle-job{
    display: grid;
    grid-template-columns:  1fr;
    gap: 30px;
  }
  .top-job-right{
    display: flex;
    gap: 30px;
  }
  .bottom-job{
    margin: 50px 0;
    display: flex;
    justify-content: space-between;
  }
  .bottom-job-left{
    margin: 0px;
  }
  .member-wrapper{
    display: flex;
    justify-content: space-around;
    align-items: center;}
  .update h2{
      color: var(--font-1);
      font-size: 25px;
      font-weight: 500;
      width: 100%;
      line-height: 1.7;
    }
    .input-wrapper{
      position: relative;
      width: 400PX;
    }
    .mobile-apps .input-wrapper{
      width: 400px;
    }
    .input-sub {
      width: 400px;}
    .footer-box{
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
        gap: 40px;
        margin-bottom: 40px;
  }
  .footer-last{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-1);
    height: 50px;
  
  }
  .middle-footer-1 h5{
    font-size: 17px;
    
    }
    .right-footer h5{
      font-size: 17px;
    }
    .left-footer p{
      color: #747474;
      font-size: 12px;
    }
    .home-middle{
      display: flex;
      justify-content: center;
      background:var(--bg-white);
      width: 80%;
      padding: 20px ;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 2px 5px var(--bg-white);
      align-items: center;
    }
    .home-middle .home-1{
      flex-basis: 20%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
      border-right: 2px solid var(--border-6); 
    }
    .home-middle .home-2{
      flex-basis: 20%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
      border-right: 2px solid var(--border-6); 
    }
    .home-middle .home-3 input{
      outline: none;
      border: none;
      width: 100%;
      height: 20px;
      color: var(--font-5);
      font-size: 18px;
      padding-left: 40px;
    }
    .top-job h2 {
      font-size: 35px;
      font-weight: 600;
  }
  .top-job {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}
.bottom-navber-left-1 img{
  width: 150px;
  
}
.bottom-navber-left-1{
  display: flex;
  cursor: pointer;
}
.bottom-navber-left-1 .logo-img-text a{
  font-size:25px ;
}
.bottom-navber-left-1 .logo-img-text p{
font-size: 16px;
}
.bottom-nabver-right a{
  font-size: 16px;
}
/*contact*/
.form-container{
  height: 50vh;
}
.contact-top{
  padding-top:80px;
  padding-bottom: 40px;
}

.contact-top h1{
 font-size: 45px;

}
.contact-top p{
  font-size: 16px;
  line-height: 1.7;
  padding: 15px 0 0 0;
}

.map .container{
  margin-top: 0px;
  height: 75vh;
}
.form__field:placeholder-shown ~ .form__label{
  font-size: 17px;
}

.map-location {
  margin-top: 0px;
  position:absolute;
  width: 350px;
  padding: 30px;
}
.map-location h2{
  font-size: 24px;
}
.map-name {
  gap: 20px;
  margin: 20px 0;
}
.map-name i {
  padding: 15px;
  font-size: 16px;
}
.map-location a {
  font-size: 15px;
  font-weight: 550;
}








/*news*/
.news-box{
  display: grid;
  grid-template-columns: 1fr  1fr;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0;
}
.news-wrapper{
  width: 330px;
  border: 2px solid var(--border-1);
  background-clip:content-box;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--border-1);
  margin: 0 auto;
}
.mobile-apps .update-box h2{
  font-size: 25px;
}
.mobile-icon-1 {
  padding: 10px;
}
.mobile-icon-1 i {
  font-size: 30px;
}
.mobile-icon-1 p {
  font-size: 14px;
  line-height: 1.5;
}
.mobile-apps-bottom p {

  width: 70%;
  line-height: 1.7;
}

/*about*/
.history-box h2{
  font-size: 45px;
  font-weight:800;
}
.about .contact-top{
  padding: 70px 0;
}

.connector{
  top: -40px;
}
.history-write{
  font-size: 16px;
}
.history-box{
  padding: 50px;
}
.about-middle-img img{
  width: 170px;
  height: 170px;
  border-radius: 50%;
  position: absolute;
  top: -24%;
  bottom: auto;
  left: 39%;
}
.about-middle-write h2 {
  font-size: 28px;
  width: 70%;
}
.about-middle-box{
  margin: 0 70px;
}
.about-service-box h2{
  font-size: 30px;
  width: 60%;

}
.about-service-box h2{
  font-size: 25px;
  width: 80%;

}
.service-right img{
  width: 350px;
  height: 500px;
  border-radius: 10px;
}
.service-right .service-right-img{
  width: 300px;
  height: 250px;
  position: absolute;
  left: -40%;
  bottom: 40px;
}
.about-network-box{
  grid-template-columns: 2fr ;
  padding: 100px 0;
}
.about-network-box-left h2 {
  font-size: 35px;
}
.team-member-write h2{
  font-size: 35px;
 }
 .team-member-write p {
  font-size: 15px;
  padding: 30px 0;
  width: 50%;
}
.team-member-img{
  grid-template-columns: 1fr 1fr 1fr 1fr ;
  gap: 20px;
}
.testimonial-box{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 20px;
}
.main-left-contant h2 {
  font-size: 40px;
}
.meetup-top{
  padding: 50px 0;
}
.meetup-top h5{
  font-size: 15px;
  font-weight: 500;
}
.meetup-top h2{
  font-size: 35px;
  line-height: 1.4;
  padding: 10px 0;
}
.meetup-top h6{
  gap: 10px;
  font-size: 12px;
  padding: 10px 0;
}
.meetup-top h6 i{
  font-size: 14px;
}
.meetup-top p{
  font-size: 14px;
  line-height: 1.3;
  width: 80%;
}

.meetup-box{
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.left-meetup-box-2{
  margin-top: -150px;
}
.career h2{
  font-size: 35px;
  padding: 20px;
}
.career p{
  font-size: 13px;
  padding-bottom: 30px;
}

.design-2 .design-box {
  display: grid;
  grid-template-columns: .5fr 2fr;
  padding: 50px 0;
}
.home-news-top-1 h2{
  font-size: 35px;
}
.home-news-top-1 p{
  font-size: 13px;
}
.event-home-top h2{
  font-size: 35px;
  padding-left: 20px;
}
.share-icon{
  display: flex;
  gap: 20px;
}
.comment-form h2{
  font-size: 35px;
  padding: 30px 0;
}
.meetup-attan{
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-top: 0;
}
.meetup-attan .left-meetup-box-2 {
  margin-top: -100px;
}
.attantion-box h3{
  font-size: 25px;
  margin-bottom: 10px;
}
.left-2 .middle-job-left-1 h4{
  font-size: 35px;
}












}



@media (min-width: 850px) {

  .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  .navber {
    all: unset;
    display: block;}
    .bottom-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 90px;
  }
    
  .navber-list{
    border-block-end: none;
    display: flex;
    align-items: center;
    height: 60px;
    gap: 40px;
    margin-inline: auto;
  }
  .nav-open-btn{
    display: none;
  }
  
  .bottom-navber-middle ul{
    display: none;
  }
  .bottom-navber-left{
    display: none;
  }
  .home-top p{
    width: 80%;
  }
  .middle-job{
    display: grid;
    grid-template-columns: 1fr ;
    gap: 30px;
  }
  .update h2{
    color: var(--font-1);
    font-size: 35px;
    font-weight: 500;
    width: 50%;
    line-height: 1.7;
  }
  .footer-box{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .home-middle .home-2 {
       padding: 0 10px;
    
}
.home-middle .home-1 {

  padding: 0 10px;
}
.partner-box{
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-bottom: 40px;
}

.pertnership{
  height: auto;
  display: inline;
}
.news-wrapper{
  width: 380px;
  border: 2px solid var(--border-1);
  background-clip:content-box;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--border-1);
  margin: 0 auto;
}
.news-wrapper img{
  width: 380px;
}
.mobile-apps .update-box{
  padding: 50px 40px;
}
/*about*/
.event h4 {
  font-size: 16px;
  line-height: 1.2;
}
.timeline-wrapper {
  display: grid;
  grid-template-columns: 1fr .5fr 1fr .5fr 1fr .5fr 1fr .5fr 1fr;

}
.svg{
  opacity: 1;
}
.about-middle-img img{
  width: 170px;
  height: 170px;
  border-radius: 50%;
  position: absolute;
  top: -20%;
  bottom: auto;
  left: 40%;
}
.about-middle-write p {
  width: 80%;
  padding: 20px 0;
  font-size: 16px;
  line-height: 1.5 ;
}
.about-middle .container{
  padding-top: 450px ;
  bottom: -90%;
}
.left-meetup-box-1 a{
  font-size: 16px;
  gap: 15px;
}
.about-service-box h2{
  font-size: 35px;
  width: 40%;
  margin: 20px 0;
}
.about-service-box h2{
  font-size: 35px;
  width: 60%;

}
.about-service-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-right img{
  width: 350px;
  height: 500px;
  border-radius: 10px;
}
.service-right .service-right-img{
  width: 300px;
  height: 250px;
  position: absolute;
  left: -40%;
  bottom: 40px;
}
.service-right {
  display: flex;
  position: relative;
  justify-content: center;
}
.about-service-box h2{
  font-size: 35px;
  width: 60%;

}
.about-service-box p {
  font-size: 14px;
  line-height: 1.3;
  width: 60%;
}
.about-service-box {
  padding: 50PX 0;
  margin-top: 320px;
}
.news-partner h2 {
  font-size: 35px;
}
.about-network-box-right {
  grid-template-columns: 6fr 6fr;
}
.about-network-box{
  grid-template-columns: 2fr 3fr;
  padding: 100px 0;
}
.main-contant {
  padding: 50px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.main-right-contant img {
  width: 380px;
  height: 400px;
}
.right-svg-main{
  position: relative;
}
.right-svg-main .svg-1{
  position: absolute;
  top: 10%;
  left: 40px;
}
.right-svg-main svg{
  position: absolute;
  top: 20%;
  left: 120px;
}
.right-svg-main i{
  position: absolute;
  bottom: 5%;
  left: 10px;
}
.main-under-box-2 h3{
  font-size: 30px;
}
.main-under-box-2 p{
  font-size: 12px;
}
.main-under-box-3 h4{
  font-size: 12px;
  font-weight: 500;
}
.main-under-box-3 h3{
  font-size: 14px;
}
.main-under-box-3 p{
  font-size: 10px;
}
.meetup-middle{
  height: 500px;
}
.design-box{
  display: flex;
  align-items: center;
}
 
  .design-box-right {
    position: absolute;
    right: -200px;
}
.design{
  margin-right: 15%;
}
.design-box-left h5{
  font-size: 17px;
}
.design-box-left h2{
  font-size: 35px;
}
.design-box-left p{
  font-size: 13px;
  width: 60%;
}
.design-2 .design-box-right{
  right: auto;
  top: 10%;
  left: -30%;
}
.design-2{
  width: 80%;
  margin-left: auto;
}
.meetup-3 .meetup-box .left-meetup-box-2{
  width: 700px;
  margin-top: -120px;
}
.left-2 .middle-job-left-1 h4 {
  font-size: 25px;
}






}

@media (min-width: 1000px) {

.container {
  max-width: 1000px;
  margin: 0 auto;
}



.navber {
  all: unset;
  display: block;
    margin: 10px 0;
    height: 60px;
    
}
.home-middle .home-2 {
  flex-basis: 20%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-right: 2px solid var(--border-6);
}



.menu-item{
  display: inline;
}
.bottom-navber-middle ul{
  display: none;
}
.bottom-navber-left{
  display: flex;
}
.middle-job{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.home-middle .home-1 {
  flex-basis: 20%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-right: 2px solid var(--border-6);
}
.partner-box{
  display: flex;
  justify-content: space-between;
}
/*about*/
.about-middle-img p {
  padding-top: 90px;
  padding-bottom: 0px;
}
.about-middle-box{
  margin: 0 100px;
}
.service-right img{
  width: 350px;
  height: 500px;
  border-radius: 10px;
}
.service-right .service-right-img{
  width: 350px;
  height: 230px;
  position: absolute;
  left: -60%;
  bottom: 40px;
}
.team-member-img{

  grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;
  gap: 40px;

}
.main-under-box{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.main-under-box-2 h3{
  font-size: 40px;
}
.main-under-box-2 p{
  font-size: 14px;
}
.main-under-box-3 h4{
  font-size: 14px;
  font-weight: 500;
}
.main-under-box-3 h3{
  font-size: 18px;
}
.main-under-box-3 p{
  font-size: 12px;
}
.join-elmna-bottom{
  grid-template-columns: 1fr 1fr 1fr;
}


}


@media (min-width: 1050px) {

  .container {
    max-width: 1050px;
    margin: 0 auto;
  }
  .news-box{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
  }
  .news-wrapper{
    width: 360px;
    border: 2px solid var(--border-1);
    background-clip:content-box;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--border-1);
    margin: 0 auto;
  }
  .about-middle-img img{
    width: 170px;
    height: 170px;
    border-radius: 50%;
    position: absolute;
    top: -21%;
    bottom: auto;
    left: 41%;
  }
  .about-middle-write h2 {
    font-size: 35px;
  }

}

@media (min-width: 1240px) {

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .nav-open-btn{
    display: none;
  }
  
.menu-item{
  display: none;
}
.bottom-navber-middle ul{
  display: flex;
}
.home-top p{
  width: 70%;
}
.about-middle-img img{
  width: 170px;
  height: 170px;
  border-radius: 50%;
  position: absolute;
  top: -21%;
  bottom: auto;
  left: 43%;
}

.about-service-box h2{
  font-size: 35px;
  width: 40%;

}
.portfolio .container{
  display: flex;
  }
  .left-1{
    display: block;
  }

}