@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,
body {
  margin: 0;
  padding: 0;
  /* overflow-x: hidden; */
}

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: 500px;
  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  */
.content h1 {
  color: #c29e6e;
  font-size: 27px;
  margin-top: 0px;
  padding: 60px 0 40px 0;
}

.firstsection {
  position: relative;
  padding-left: 8%;
  padding-right: 0;
}

.firstheading {
  position: absolute;
  top: 3%;
  z-index: 1;
  left: 9%
}

.heading1 {
  color: #4ac4e2;
  font-size: 40px;
  width: 20px;
}

.firstimg {
  position: absolute;
  bottom: 9.8%;
  left: 5%;
}

.quotes {
  position: absolute;
  bottom: 25%;
  left: 60%;
  z-index: 1;
  width: 30%;
}

.headpara {
  color: #007dc9;
  font-weight: 450;
  font-size: 18px;
}

.chairmanname {
  padding-top: 2%;
  font-size: 16px;
  color: #231916;
}

.lineimg {
  position: absolute;
  bottom: 7.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 h3 {
  color: #007dc9;
  font-size: 22px;
  padding: 20px 0;
}


.chairman {
  padding-left: 6%;
  letter-spacing: 1.2px;
  line-height: 30px;

}

.chairman :last-child {
  margin-top: 40px;
}

.chairman img {
  min-width: 250px;
  height: 90px;
  margin: 20px 0 10px;
}

.chairman span {
  color: #c29e6e;
  font-weight: 600;
}

/*  footer  */

#backtotop {
  float: right;
  margin-right: 90px;
  border: none;
  width: 70px;
  height: 40px;
  color: white;
  bottom: 80px;
  right: -80px;
  position: absolute;
  background-color: #da9f60;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}

.fa-caret-up:before {
  font-size: 35px
}

.scroll-to-top {
  position: relative;
}

.footer {
  text-align: center;
  padding: 80px 0px 30px;
}

.footer p {
  font-size: 14px;
}

.togglebar {
  position: absolute;
  right: 65px;
  top: 25px;
  display: none;
}

/* Media Screen 1024px */
@media (max-width: 1024px) {
  .quotes {
    bottom: 16%;
  }

  .headpara {
    line-height: normal;
  }

  .firstheading {
    top: -1%;
    left: 4%;
  }

}

/* Media Screen 761px */
@media (max-width: 761px) {
  .content h3 {
    font-size: 18px;
    text-align: left;
  }

  .sum.header a {
    width: 200px;
  }

  .subdiv a {
    width: 50px !important;
  }

  .subdiv {
    padding-left: 5%;
  }

  .firstsection {
    min-height: 0;
  }

  .content p {
    font-size: 15px;
  }

  .firstheading {
    top: 22%;
    left: 60%;
  }

  .heading1 {
    color: #4ac4e2;
    font-size: 22px;
    width: 100px;
  }

  .quotes {
    bottom: 7%;
    left: 48%;
    width: 50%;
  }

  .headpara {
    font-size: 10px;
  }

  .firstimg {
    bottom: 9%;
  }

  .chairmanname {
    padding: 15px 0;
    font-size: 9px;
  }

  .chairman {
    padding-left: 6%;
    letter-spacing: 0.2px;
    line-height: 20px;
  }

  .chairman img {
    min-width: 115px;
  }

  .footer {
    padding: 15px 20px 10px;
  }

  .footer p {
    font-size: 10px;
  }

  .chairman :last-child {
    margin-top: 15px;
  }

  .scroll-left-right button {
    width: 7vw;
    font-size: 3.5vw;
  }

  #backtotop {
    bottom: 90px;
  }

  .fa-caret-up:before {
    font-size: 22px;
  }

  .content {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width: 428px) {
  .chairmanname {
    padding: 0px 0;
  }

  .quotes {
    bottom: 13%;
    left: 48%;
    width: 50%;
  }

  #backtotop {
    margin-right: 113px !important;
  }
}

@media (max-width: 390px) {}

/* ? < !--==========================================================NEW DESIGN CSS START==============================================================================--> */
.main_baner {
  overflow-x: hidden;
}

.button_download a {
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  text-decoration: none;
  background-color: rgb(140, 52, 61);
  padding: 7px 20px 7px 42px;
  font-size: 20px;
  border-radius: 20px 20px 0px 0px;
  position: absolute;
  z-index: 999;
  right: 60px;
  top: 45px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  transition: all 0.5s ease 0s;
}

.button_download {
  z-index: 999;
  position: relative;
  top: 0px;
}

span.dot_circule_downlod {
  background: linear-gradient(90deg, rgb(175, 103, 42) 0%, rgb(249, 180, 94) 35%, rgb(175, 103, 42) 95%);
  padding: 15px;
  border-radius: 30px;
  position: absolute;
  left: -35px;
  text-align: center;
  top: -10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky {
  z-index: 999;
  position: fixed;
  top: -20px;
  transition: 0.4s all;
  right: 382px;
}

.main_baner {
  padding: 0 0 30px 0;
}

.main_baner .banner_image {
  position: relative;
  top: -100px;
}

.main_heading h2 {
  font-size: 30px;
  color: #c9a368;
  padding: 80px 0 0 100px;
}

.main_baner .banner_txt {
  background-color: #c9a368;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  position: absolute;
  top: 46%;
  left: 65%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner_txt .banner_txt_fix {
  padding: 0 70px;
}

.banner_txt .banner_txt_fix p {
  color: #fff;
  font-size: 20px;
  text-align: justify;
}

.banner_txt .banner_txt_fix h6 {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  padding-top: 30px;
}

@media (max-width: 1600px) {}

/*/ Desktop 1440px /*/
@media (max-width: 1440px) {

  .sticky {
    right: 150px;
  }
}

/*/ Desktop 1280px /*/
@media (max-width: 1366px) {

  .sticky {
    right: 70px;
  }

  .main_baner .banner_image {
    top: -70px;
  }

  .main_heading h2 {
    padding: 40px 0 0 100px;
  }
}

/*/ iPad 1024px /*/
@media (max-width: 1199px) {

  .sticky {
    right: 0px;
  }
}


/*/ iPad 768px /*/
@media (max-width: 991px) {
  .banner_txt .banner_txt_fix {
    padding: 0 50px;
  }

  .banner_txt .banner_txt_fix p {
    font-size: 18px;
  }

  .banner_txt .banner_txt_fix h6 {
    font-size: 16px;
  }

  .main_baner .banner_txt {
    width: 350px;
    height: 350px;
  }

  .main_baner .banner_image {
    top: -30px;
  }

  .main_heading h2 {
    margin: 0;
  }
}

/*/ Iphone 767px /*/
@media (max-width: 767px) {}

/*/ Iphone 414px /*/
@media (max-width: 567px) {

  .button_download {
    top: 0 !important;
  }

  .sticky {
    top: -6px;
  }

  .banner_image img {
    width: 780px;
    padding: 0 15px;
    margin-bottom: 240px;
  }

  .main_baner .banner_txt {
    top: 80%;
    left: 50%;
  }

  .main_baner .main_heading h2 {
    padding: 30px 0 0 17px;
    font-size: 14px;
  }

  .button_download a {
    padding: 7px 19px 7px 30px;
    font-size: 18px;
    right: 10px;
    top: 15px;
  }

  span.dot_circule_downlod {
    left: -25px;
    top: -6px;
    width: 50px;
    height: 50px;
    padding: 13px;
  }

  .main_baner .banner_image {
    top: -80px;
  }

  .main_baner {
    padding: 0;
  }
}

/*/ Mobile 375px /*/
@media (max-width: 375px) {
  .banner_image img {
    width: 712px;
  }

  .banner_txt .banner_txt_fix {
    padding: 0 42px;
  }

  .banner_txt .banner_txt_fix p {
    font-size: 14px;
  }

  .main_baner .banner_txt {
    padding: 0 0;
  }





}

/*/ Mobile 320px /*/
@media (max-width: 320px) {
  .main_baner .main_heading h2 {
    padding: 30px 0 0 7px;
    font-size: 12px;
  }

  .banner_image img {
    width: 600px;
    margin-bottom: 160px;
  }

  .main_baner .banner_txt {
    width: 280px;
    height: 280px;
    top: 84%;
  }

  .banner_txt .banner_txt_fix h6 {
    padding-top: 10px;
  }

  span.dot_circule_downlod {
    left: -20px;
    top: -5px;
    width: 44px;
    height: 44px;
  }

  .button_download a {
    font-size: 14px;
  }
}


/* ? < !--==========================================================NEW DESIGN CSS END==============================================================================--> */