@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,900&family=Montserrat:wght@300;600;900&family=Oswald&family=Paytone+One&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200&family=Shadows+Into+Light&display=swap");

/* Icon set - http://ionicons.com/ */
@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,800);


*,
*::before,
*::after {
    box-sizing: border-box;
    
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Kanit', sans-serif;
    background-color: #e9e6e6;
}

nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #c3c7ce;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}
.navbar .logo a{
  font-size: 30px;
  color: #777;
  text-decoration: none;
  font-weight: 600;
}
.navbar .logo img{
 height: 70px;
 margin-top: 5px;
}
nav .navbar .nav-links{
  line-height: 50px;
  height: 100%;
  
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #777;
  font-size: 20px;
  margin-bottom: 1rem;
  font-weight: 500;
}
nav .navbar .links li a:hover{
  color: #313030;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }
nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  margin-bottom: 1rem;
  display: inline-block;
  color: #777;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: -150%;
  line-height: 30px;
  background: #c3c7ce;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 2px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #777;
  font-size: 15px;
  margin-bottom: 0;
  font-weight: 500;
  margin-left: -40px;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}

.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }
  .navbar .links li .sub-menu li{
    padding: 0 2px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  nav .navbar .links li .sub-menu{
    position: absolute;
    top: 70px;
    left: -50;
    line-height: 30px;
    background: #c3c7ce;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
  }
  .navbar .links li .sub-menu a{
    color: #777;
    font-size: 15px;
    margin-bottom: 0;
    font-weight: 500;
  }
  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
  nav .navbar .links li .sub-menu{
    position: absolute;
    top: 50px;
    left: -300%;
    line-height: 30px;
    background: #c3c7ce;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
  }
  .navbar .links li .sub-menu a{
    color: #777;
    font-size: 12px;
    margin-bottom: 0;
    font-weight: 500;
    margin-left: -40px;
  }
}
@media (max-width:800px){

  nav .navbar{
    max-width: 100%;
    padding: 0 17px;
  }
  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 2px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 12px;
  }
  .navbar .logo img{
    height: 50px;
    margin-top: 5px;
   }
}



  @media screen and (min-width: 380px)and (max-width:430px) {
  html{
    font-size: 12px;
  }
  nav .navbar{
    max-width: 100%;
    padding: 0 10px;
  }
  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 2px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 12px;
  }
  .navbar .logo img{
    height: 40px;
    margin-top: 1px;
   }
   nav .navbar .links li .sub-menu{
    position: absolute;
    top: 70px;
    left: -150;
    line-height: 30px;
    background: #c3c7ce;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
  }
}
@media screen and (min-width: 300px)and (max-width:380px) {
  html{
    font-size: 8px;
  }
  nav .navbar{
    max-width: 100%;
    padding: 0 3px;
  
    display: flex;
  
  }
  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 1px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 10px;
  }

  .navbar .logo img{
    height: 30px;
    margin-top: 1px;
   }
   nav .navbar .links li{
    position: relative;
    align-items: left;
    justify-content: space-between;
    list-style: none;
    padding: 0 3px;
  }
  
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}


/**************** header**************/

.banner{
    position: relative;
    overflow: ;
    height: 70vh;
    
   
}
.banner-container{
    display: grid;
    align-items: flex-start;
    height: 100%;
    margin-left: 70px;
    margin-right: 1rem;
    
    
}

    
.banner {

    background-image:url(images/globe.jpg) ;
    height: 100%; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

.banner-left h2{
    margin-left: 32rem;
    color: #f7f7f7;
    font-weight: bolder;
    margin-top: 7rem;
    font-size: 50px;
    line-height: 1;
}
.banner p{
    margin-bottom: 9rem;
    margin-left: 32rem;
    color: white;
}



/******** services *********/

.services{
    background: #e9e6e6;


}
.services h2{
    line-height: 1;
    margin-bottom: 3rem;
    font-size: 35PX;
    font-weight: bolder;
    text-align: center;
}

.services p{
    margin-left: 130px;
    margin-right: 130px;
    margin-bottom: 3rem;
    text-align: justify;
}

figure.snip1218 {
    font-family: 'Raleway', Arial, sans-serif;
    position: relative;
    min-width: 28px;
    max-width: 300px;
    
    width: 100%;
    background: #12034c;
    color: #333;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    align-items: center;
    align-content: center;
    margin-left: 30px;
    margin-right: 90px;
    border: 0;
  

   
  }
  figure.snip1218 * {
    
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
  }
  .services .container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    align-items: center;
    align-content: center;
  }
  figure.snip1218 img {
    width: 300px;
   border-left-width: 0;
   height: 400px;
    vertical-align: top;
    border: 0;
  }
  figure.snip1218 .image {
    position: ;
    border-bottom: 4px solid #12034c;
    z-index: 1;
  }
  figure.snip1218 .image:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #442ca181 transparent transparent transparent;
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -15px);
    transform: translate(-50%, -15px);
    z-index: -1;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
  }
  figure.snip1218 .image p {
    font-weight: 500;
    margin: 0;
    padding: 0 10px;
    line-height: 1.6em;
    position: absolute;
    top: 50%;
    width: 100%;
    color: #ffffff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    font-style: italic;
  }
  figure.snip1218 figcaption {
    background-color: #ffffff;
    padding: 25px;
  }
  figure.snip1218 h3 {
    margin: 0 0 5px;
    text-transform: uppercase;
    font-weight: 400;
  }
  figure.snip1218 h3 span {
    font-weight: 800;
  }
  figure.snip1218 h5 {
    margin: 0 0 15px;
    font-weight: 400;
  }
  figure.snip1218 i {
    margin-right: 5px;
    display: inline-block;
    font-size: 24px;
    color: #000000;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: white;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    background-color: rgba(0, 0, 0, 0.05);
  }
  figure.snip1218 i:hover {
    background-color: #8676c749;
    color: white !important;
  }
  figure.snip1218:hover .image:before,
  figure.snip1218.hover .image:before {
    border-color: #725ccb7e transparent transparent transparent;
    -webkit-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
  }
  figure.snip1218:hover .image p,
  figure.snip1218.hover .image p {
    opacity: 1;
  }
  figure.snip1218:hover img,
  figure.snip1218.hover img {
    opacity: 0.2;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  .button {
    background-color: #12034c;
    border-radius: 15px;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    cursor: pointer;
  }
  .button:hover {
    
        letter-spacing: .2rem;
       
}

/********** catogery ***********/
.catogery{
    padding: 6rem;
    background-color: #d5d3d3;
}
.catogery h1{
    text-align: center;
    font-size: 35px;
    font-weight: normal;
}
.catogery p{
    margin-left: 5rem;
    margin-right: 5rem;
    font-size: 18px;
    text-align: justify;
}
/********** catogerytwo ***********/
.catogerytwo{
    padding: 1rem;
    background-color: #e9e6e6;
    
}
.catogery h1{
    text-align: center;
    font-size: 35px;
    font-weight: bold;
}
.catogerytwo h3{
    margin-left: 5rem;
    margin-right: 5rem;
    font-size: 25px;
    text-align: center;
    font-weight: normal;
    
}
.catogerytwo .button {
    background-color: #ffffff;
    border-radius: 15px;
    color: black;
    padding: 15px 120px;
    text-align: center;
    text-decoration: none;
    position: relative;
    font-size: 18px;
    cursor: pointer;
   left: 36%;
   margin-bottom: 7rem;
  }
 .catogerytwo .button:hover {
    
        letter-spacing: .2rem;
       
}


/********** footer ***********/
footer{
  background: #c3c7ce;
  background: #c3c7ce;
  background-color: ;
  padding-top: 1rem;
  font-size: 13px;
  
  color: #777;
}
.footer-container{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-left: 0rem;
  margin-right: 0;
  
}
.footer-container > div h4{
margin-bottom: 1.2rem;
color: #777;

}
.footer a{
  text-decoration: none;
}
.footer-2 a{
  text-decoration: none;
  list-style: none;
}
.footer-1 p{
list-style: none;
  color: #777;
}
footer ul li{
 list-style: none;
  color: #777;
  list-style: none;
}
footer ul li a{
  color: #777;
  list-style: none;
}
footer ul li a:hover{
  text-decoration: underline;
}
.footer a{
  color: #777;
}
.footer-2 a{
  font-size: 13px;
}
.footer ul li a{
  font-size: 13px;
  line-height: 1;
  list-style: none;
  text-decoration: none;
}
.footer-socials{
  display: flex;
 
  font-size: 13px;
  margin-top: 2rem;
}
.footer-copyright{
  text-align: center;
  margin-top: 1rem;
  font-size: 25px;
  padding: 1.2rem;
  border-top: 1px solid var(--color-bg2);
}
.footer-4{
margin-right: 0rem;
}
@media screen and (max-width:800px) {
  
  .footer-container{
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    gap: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
}
.footer-1 p{
    margin: 1rem auto;
}
}

@media screen and (min-width: 200px)and (max-width:500px) {
  html{
    font-size: 12px;
  }
 
  .footer-container{
      grid-template-columns: 1fr;
      text-align: center;
      gap: 2rem;
  }
  .footer-1 p{
      margin: 1rem auto;
  }
}


  
  /*****footer**********/

 
@media (max-width:1500px){

 
  
} 
@media (max-width:900px){

  html{
    font-size: 17px;
  }
  
 
.banner-container{
  margin-left: 70px;
}

.banner-left h2{
  margin-left: 22rem;
 
  margin-top: 7rem;
  font-size: 45px;
  line-height: 1;
}
.banner p{
  margin-bottom: 7rem;
  margin-left: 22rem;
  margin-right: 2rem;
  
}
.services .container{
  grid-template-columns: repeat(2, 1fr);
 
}
.services h2{
  font-size: 30PX;
}

.services p{
  margin-left: 50px;
  margin-right: 50px;
  margin-bottom: 3rem;
}
}
@media (max-width:800px){
 
figure.snip1218 {
 
  min-width: 27px;
  max-width: 300px;
  width: 100%;
  margin-left: 30px;
  margin-right:0px;
  border: 0;
}

.services .container{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
 
}
figure.snip1218 img {
  width: 300px;
}

}
@media (max-width:650px){

  html{
    font-size: 12px;
  }
 
 
.banner-container{
  margin-left: 60px;
}

.banner-left h2{
  margin-left: 16rem;
 
  margin-top: 7rem;
  font-size: 30px;
  line-height: 1;
}
.banner p{
  margin-bottom: 7rem;
  margin-left: 16rem;
  margin-right: 1rem;
  
}
.services .container{
  grid-template-columns: 1fr;
 
}

figure.snip1218 {
  margin-left: 40px;
}
.services h2{
  font-size: 30PX;
}

.services p{
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 3rem;
}

.catogery h1{
  text-align: center;
  font-size:20px;
  font-weight: bold;
}
.catogerytwo h3{
  margin-left: 2rem;
  margin-right: 2rem;
  font-size: 20px;
}
.catogery p{
  margin-left: 2rem;
  margin-right: 2rem;
font-size: 12px;
}
.catogerytwo .button {
  padding: 15px 80px;
 left: 16%;
 margin-bottom: 5rem;

}
}
@media (max-width:470px){

  html{
    font-size: 10px;
  }
  .banner-left h2{
    margin-left: 13rem;
   
    margin-top: 10rem;
    font-size: 25px;
    line-height: 1;
  }
  .banner p{
    margin-bottom: 7rem;
    margin-left: 13rem;
    margin-right: 2rem; 
  }

}

@media (max-width:370px){

  html{
    font-size: 10px;
  }
  .banner-container{
    margin-left: 40px;
  }
  
  .banner-left h2{
    margin-left: 12rem;
   
    margin-top: 9rem;
    font-size: 25px;
    line-height: 1;
  }
  .banner p{
    margin-bottom: 7rem;
    margin-left: 12rem;
    margin-right: 2rem; 
  }
  figure.snip1218 {
    margin-left: 10px;
  }
  
  .catogery h1{
    text-align: center;
    font-size:20px;
    font-weight: bold;
  }
  .catogerytwo h3{
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 20px;
  }
  .catogery p{
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 12px;
  }
  .catogerytwo .button {
    padding: 15px 50px;
   left: 16%;
   margin-bottom: 5rem;
  }
    
  
}

@media (max-width:344px){

  html{
    font-size: 10px;
  }
  .banner-container{
    margin-left: 40px;
  }
  
  .banner-left h2{
    margin-left: 10rem;
   
    margin-top: 10rem;
    font-size: 25px;
    line-height: 1;
  }
  .banner p{
    margin-bottom: 7rem;
    margin-left: 10rem;
    margin-right: 2rem; 
  }
}

@media (max-width:300px){

  html{
    font-size: 7px;
  }
  .banner-container{
    margin-left: 40px;
  }
  
  .banner-left h2{
    margin-left: 12rem;
   
    margin-top: 7rem;
    font-size: 25px;
    line-height: 1;
  }
  .banner p{
    margin-bottom: 7rem;
    margin-left: 12rem;
  }
  
  .catogerytwo h3{
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 10px;
  }
  .catogery p{
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .catogerytwo .button {
    padding: 15px 40px;
   left: 10%;
   margin-bottom: 5rem;
  }
   
       
  .container{
    width: var(--container-width-xs);
    margin: 0 1rem ;
    overflow: hidden;
}


}
