@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  max-width: 1140px;
  margin: auto;
}
main {
  overflow: hidden;
}

.sum a{
  text-decoration: none;
  text-align: center;
  color: black;
}

.sum.header{
  display: grid;
  grid-template-columns: 160px auto auto ;
  gap: 13px;
  text-align: center;
  padding: 15px 70px;
}
.sum.header a{
font-family: "Rubik", sans-serif;
font-weight: 410;
line-height: 22px;
}
.sum .nav{
  display:grid;
  grid-template-columns:1px 1px 50px 70px 80px 200px 100px 1px 1px;
  margin: auto;
  gap: 25px;
}
.sum .headericon{
display: grid;
grid-template-columns: 40px 40px 40px;
line-height:50px ;
justify-content: right;
align-items: center;
}
.header.on-scroll {
  background: white;
  box-shadow: var(--shadow-medium);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 4.25rem;
  margin: 0 auto;
}


.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 4rem 0 3rem;
  overflow: hidden;
  background-color: var(--color-black-300);
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease-in-out;
}
.menu.is-active {
  top: 0;
  width: 100%;
  height: auto;
}
.menu.is-active .menu-link{
  color:white;

}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  row-gap: 1.25rem;
}
.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: black;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.menu-block {
  display: inline-block;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  padding: 0.65rem 1.5rem;
  border-radius: 3rem;
  text-transform: capitalize;
  color: var(--color-white);
  background-color: var(--color-blue-600);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease-in-out;
}
.menu-language{
  padding-left: 85px;
}
#red{
  color: red;
}
.EN{
  color: red;
}
.subdiv{
  display: flex;
 padding-right: 15%;
 padding-left: 30%;
 padding-top: 5%;
 padding-bottom:5% ;
 border-top: 1px solid orange; 
}
.subdiv span{
  font-size: 14px;
}
.subdiv img{
  width: 15px;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 440px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  line-height: 2;
  text-align: center;
}
.dropdown{
  line-height: 22px;
}
.dropdown-content a {
  color: rgb(68, 68, 68);
  padding: 8px 14px;
  text-decoration: none;
  display: block;
}
#dpcontent{
  margin-left: -800%;
  margin-top: -13%;

}
@media only screen and (max-width: 1064px){
  .menuicon{
    display: none;
  }
  #dpcontent{
    margin-left: 0px;
  } 
}
@media only screen and (min-width: 1064px){
  .menudownloadicon{
    display: none;

  } 
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content{
  display: block;
}
.menu.is-active .menu-inner{
  background-color: black;
}
@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: 0;
    width: auto;
    height: auto;
    padding: 0rem;
    padding-left: 70px;
    background: none;
    box-shadow: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2.5rem;
    margin: 0 auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .menu-block {
    margin-left: 2rem;
  }
}
.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: -1;
  z-index: 10;
  width: 1.75rem;
  height: 1rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}
@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  transform: rotate(0deg);
  background-color: black;
  transition: 0.25s ease-in-out;
}

.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  right: -1.5rem;
  opacity: 0;
  visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}
.home-logo img{
  height: 55px;
}
.menu-link:hover{
  color:#e60012;
}
.menu-link:active,.menu-link:focus{
  color:#e60012;
}
@media only screen and (max-width: 600px) {
  .menu-language{
    display: none;
  }
  .home-logo img{
    height: 36px;
    margin-left: 10px;
  }
  .navbar{
    justify-content: space-between;
  }
}

/*  Mainsection  */
  .firstsection{
    position: relative;
    /* padding-left: 5%; */
    /* padding-right:5%; */
  } 
  .firstheading{
    position: absolute;
    top: 3%;
    z-index: 1;
    left:10%
  }
  .heading1{
   
    color: #2ea6df;
    font-size: 3vw;
    /* width: 20px; */
  }
  @media only screen and (min-width: 1140px){
    .heading1{
        font-size: 40px
    }
   
  }
  .firstimg{
    position: absolute;
    bottom: 10%;
    left: 9%;

  }
  .quotes{
    position: absolute;
    bottom:25%;
    left: 60%;
    z-index: 1;
    width: 30%;
  }
  .headpara{
    color: #a1351b;
    font-weight: 500;
    font-size: 18px;
  }
  .chairmanname{
    padding-top: 2%;
    font-size: 16px;
    color: #231916;
  }
  .lineimg{
    position: absolute;
    bottom: 9.5%;
    left:0;
    right:0
  }

  /* content section  */
  .content{
    padding-left: 6%;
    padding-right:6%;
    text-align: justify;
  }
  .content p {
    font-size: 18px;
    color: #1b1918;
    line-height: 1.5;
    margin: 0 0 30px;
}
  .content h2{
    font-size: 22px;
    padding: 20px 0;
    color: #a1351b;
  }
  .content h3{
    color:#a1351b;
    font-size: 22px;
    padding: 20px 0;
  }

  
 .chairman{
    padding-left: 6%;
    letter-spacing: 1.2px;
    line-height: 30px;
    
 }
 .chairman span{   
    color: #a1351b;
    font-weight: 500;
 }
 .chairman img {
  max-width: 280px;
  margin: 20px 0 10px;
}
.chairman :last-child {
  margin-top: 40px;
}

 /*  footer  */
 #backtotop{
  background-color: #2ea7e0;
  float: right;
  margin-right: 90px;
  border: none;
  width: 40px;
  height: 40px;
  color: white;
  bottom: 60px;
  right: 30px;
  position: absolute;
}  
.fa-caret-up:before{
  font-size:35px
}
.scroll-to-top{
  position: relative;
}
.footer{
  text-align: center;
    padding: 80px 0px 30px;
}
.footer p{
  font-size: 12px;
}

.togglebar{
  position: absolute;right: 65px;top :25px;display: none;
}

/* Media Screen 1024px */
@media (max-width: 1024px){
  .quotes {
    bottom: 16%;
    left: 58%;
    width: 38%;
}
.headpara {
  line-height: normal;
}
.firstheading {
  top: -2%;
}
}

/* Media Screen 761px */
@media (max-width: 761px){
  .content h3 {
    font-size: 18px;
    text-align: left;
}
.firstsection{
  min-height: 335px;
}
.firstheading {
  top: 22%;
    left: 57%;
}
.heading1 {
  color: #4ac4e2;
  font-size: 22px;
  width: 150px;
}
.sum.header a {
  width: 200px;
}
.subdiv a{
  width: 50px !important;
}
.subdiv{
  padding-left: 5%;
}
.quotes {
  bottom: 15%;
  left: 48%;
  width: 50%;
}
.headpara {
  font-size: 10px;
}
.chairmanname{
  padding: 5px 0;
  font-size: 9px;
}
.chairman {
  padding-left: 6%;
  letter-spacing: 0.2px;
  line-height: 20px;
}
.chairman img{
  min-width: 115px;
}
.footer {
  padding: 25px 20px 30px;
}
.ceo :last-child {
  margin-top: 15px;
}
#backtotop{
  bottom: 75px;
}
.content{
  padding-left: 5%;
  padding-right: 5%;
}
@media (max-width: 390px){
}

}