@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;
  position: relative;
  z-index: 1;
}
html,body {
  margin:0;
  padding:0;
  overflow-x:hidden;
  }

main {
  overflow: hidden;
}

#Main {
  width: 100%;
  height: auto;
  margin-top: -68px;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.section {
  margin: 0 auto;
  padding: 6rem 0 1rem;
}

.container {
  height: auto;
  margin-top: -19px;
  /* margin: 0 auto; */
}

.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.paragraph {
  font-family: inherit;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: inherit;
  max-width: 95%;
  height: auto;
  text-transform: unset;
  color: var(--color-white-200);
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  outline: none;
  border: none;
  border-radius: 0.25rem;
  text-transform: unset;
  transition: all 0.3s ease-in-out;
}
.btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}
.btn-darken {
  padding: 0.75rem 2rem;
  color: var(--color-white-100);
  background-color: var(--color-black-200);
  box-shadow: var(--shadow-medium);
}
.btn-neutral {
  padding: 0.75rem 2rem;
  color: var(--color-black-500);
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
}


.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;
  margin: auto;
  max-width: 1140px;
}
.sum.header a{
font-family: "Rubik", sans-serif;
font-weight: 410;
line-height: 22px;
}


/* @media (max-width: 1280px){
  .custom-section {
    margin-top: 30px ;
}
.banner-paragraph {
  width: 55% !important;
}
.banner-content {
  bottom: 30%;
  width: 43% !important;
}
.banner-heading {
  font-size: 26px !important;
  margin-bottom: 30px !important;
}
.banner-paragraph p {
  font-size: 30px !important; 
}
.banner-block {
  margin-left: 30px !important;
  padding-top: 485px !important;
}
.banner-paragraph span {
  color: #e60012;
  font-size: 43px !important;
  margin-left: 30px !important;
  margin-right: 15px;
  line-height: 1.2;
  white-space: nowrap;
}
.banner-paragraph .year-span {
  font-size: 28px !important;
  margin-left: 5px !important;
}
.banner-block h6 {
  font-size: 30px !important;
}
} */


@media (max-width: 761px){
  .sum.header{
    padding: 15px 40px;
  }
}
.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;
}
.togglebar{
  position: absolute;right: 65px;top :25px;display: none;
}
.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;
  }
}
/*  Banner section */

/* Banner CSS Start */
.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
}
.blue-title{
  color: #036eb8;
  font-size: 22px;
  margin: 0px;
}
@media only screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr max-content;
    column-gap: 4rem;
    margin-top: 3rem;
  }
}
.banner-image {
  display: block;
  max-width: 18rem;
  height: auto;
  margin-top: 2rem;
  object-fit: cover;
  justify-self: center;
}
@media only screen and (min-width: 48rem) {
  .banner-image {
    order: 1;
    max-width: 20rem;
    height: auto;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-image {
    max-width: 25rem;
    height: auto;
    margin-right: 5rem;
  }
}
.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.75rem;
}
.banner-links {
  position: absolute;
  top: 30%;
  right: 1.5rem;
  display: grid;
  justify-items: center;
  row-gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 64rem) {
  .banner-links {
    opacity: 1;
    visibility: visible;
  }
}
.banner-links > * {
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--color-white-100);
}
.banner-links::before {
  position: absolute;
  content: "";
  top: -3rem;
  width: 4rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: var(--color-white-100);
}
.banner-links::after {
  position: absolute;
  content: "";
  bottom: -3rem;
  width: 4rem;
  height: 2px;
  transform: rotate(90deg);
  background: var(--color-white-100);
}


/* header */
.home-logo img{
  height: 55px;
}
.banner-section{
  background-image: url('images/Background.png');
  height: 62vw;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-top: 68px;
  position: relative;
  display: flex;
}
.banner-content{
  display: flex;
  bottom: 30%;
  /* left: 250px; */
  height: 100%;
  width: 55%;
}
.banner-block{
  /* padding: 680px 0; */
  text-align: center;
  margin-left: 140px;
  padding-top: 745px;
}
.banner-paragraph{
  bottom: 30%;
  width: 46%;
}
.banner-block h6{
  font-size: 37px;
  letter-spacing: 7px;
    font-weight: 400;
}
.banner-content h6{
  font-size: 25px;
  color: #007dc9;
  font-weight: 600;
  padding-left: 40px;
}
.banner-heading{
  font-weight: 100;
  font-size: 30px;
  text-align: left;
  margin-bottom: 30px;
}
.banner-paragraph p{
  padding: 0px 100px;
    color: #036eb8;
    font-size: 40px;
    line-height: 1;
    white-space: nowrap;
    margin: 0px;
}
.banner-paragraph .year-span{
  font-weight: bold;
  color:black;
  font-size: 28px;
  margin-left: 5px;
  margin-right: 5px;
}
.banner-paragraph span{
  color:#e60012;
  font-size: 53px;
  margin-left: 15px;
  margin-right: 15px;
  line-height: 1.2;
  white-space: nowrap;
}
.banner-paragraph span:nth-child(2){
  color:#e60012;
  font-size: 53px;
  margin-left: 15px;
  margin-right: 15px;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 10px;
  font-weight: 600;
}
.menu-link:hover{
  color:#e60012;
}
.menu-link:active,.menu-link:focus{
  color:#e60012;
}
@media screen and (max-width: 1280px){
  .banner-content {
    width: 50% ;
}
.banner-block {
  margin-left: 36px ;
  padding-top: 500px ;
}
.banner-paragraph p {
  font-size: 32px ;
  white-space: inherit ;
  padding: 0px 0px ;
}
.banner-paragraph span {
  font-size: 36px ;
  white-space: inherit ;
}
.banner-section{
  height: 79vw ;
}
.container {
  max-width: 920px;
}
}

@media screen and (max-width: 1024px){
  .banner-content {
    width: 50% ;
    margin-top: 0px;
}
.banner-heading {
  font-size: 20px;
}
.banner-paragraph p {
  font-size: 30px;
  white-space: nowrap;
}
.banner-paragraph span {
  font-size: 32px;
  white-space: nowrap;
}
.banner-block {
  margin-left: 16px ;
  padding-top: 343px ;
}
.banner-paragraph p {
  font-size: 32px ;
  white-space: inherit ;
  padding: 0px 0px ;
}
.banner-paragraph span {
  font-size: 36px ;
  white-space: inherit ;
}
.banner-section{
  height: 79vw;
  background-size: 128%;
}
.container {
  max-width: 920px;
}
}
@media (max-width:992px){
  .banner-block h6 {
    font-size: 20px;
    letter-spacing: 4px;
}
.banner-paragraph span {
    font-size: 30px;
}
.banner-paragraph p {
    font-size: 22px;
  }
  .banner-paragraph span {
    font-size: 26px;
}
}
@media only screen and (max-width: 761px) {
  .banner-content{
    left: 5px;
    width: 50%;
    bottom: 0px;
    text-align: center;
    margin-top: 42px;
  }
  .banner-block h6{
    font-size: 15px;
  }
  .banner-block{
    padding-top: 170px;
    white-space: nowrap;
    margin-left: 15px;
  }
  .banner-paragraph{
    width: 45%;
  }
  .banner-paragraph p {
    padding: 0px;
    font-size: 9px;
    font-weight: bold;
}
.banner-paragraph span {
  font-size: 12px;
  font-weight: bold;
  margin-right: 0px;
  margin-left: 7px;
}
.banner-paragraph .h6{
  font-weight: bold;
}
.banner-content h6 {
  font-size: 18px;
}
.banner-paragraph .year-span {
  font-size: 12px;
  margin: 0px;
}
.banner-heading{
  font-size: 14px;
  margin-bottom: 10px;
}
.banner-section{
  background-position: bottom;
  height: 86vw;
  margin-top: 44px;
  background-size: 100%;
}
#Main {
  margin-top: -55px;
}
@media (max-width: 428px){
  .banner-section{
    background-position: bottom;
  }
  .banner-heading {
    font-size: 11px;
}
.banner-content h6 {
  font-size: 13px;
}
.banner-block h6{
  font-size: 10px;
}
.banner-content {
  line-height: 15px;
}
@media (max-width: 390px){
  .banner-section{
    background-position: bottom;
  }
  .banner-heading {
    font-size: 10px;
}
.banner-content h6 {
  font-size: 13px;
}
.banner-content {
  line-height: 15px;
}
}
}
}

/* Banner END  */

/* corporate highlight */

#custom-corporate{
background-image: url('images/Asset5.png');
background-repeat: no-repeat;
background-size: cover;
position: relative;
background-color: white;
z-index: 98;
padding: 54px 0px;
}
.custom-section{
  padding: 40px;
}
.carousel-indicators{
  left: -60px !important;
  width: 100%;
  padding-left: 0;
  text-align: center;
  list-style: none;
}
#text-bottom{
  vertical-align: text-top;
  color: #0096BC;
}
.carousel-indicators li{
  background-color: #bfe5f9;
  width: 30px;
  height: 30px;
  margin: 5px;
  border-radius: unset;
}
.carousel-indicators .active{
  width: 30px;
  background-color: #036eb8;
  height: 30px;
  margin: 5px;
  border-radius: unset;
}
.carousel-inner{
  position: relative;
  width: 100%;
  background-color: white;
  min-height: 388px;
  overflow: hidden;
}

.custom-corporate-content1{
  position: absolute;
  bottom: 155px;
  right: 115px;
  font-size: 24px;
  width: 48%;
  height: 40%;
}

.custom-corporate-content1 #special{
  margin-bottom: -15px;
}
.custom-corporate-content #special{
  margin-bottom: -15px;
}
.custom-corporate-content{
  position: absolute;
  bottom: 13px;
  right: 168px;
  font-size: 24px;
  width: 41%;
  height: 84%;
}
.ccc2 {
  width: 46%;
  right: 132px;
}
.ccc4{
  width: 44%;
  right: 138px;
}
.custom-corporate-content .even{
  font-size: 110px;
    color: #476DB4;
    font-weight: 600;
}
.custom-corporate-content .odd{
  font-size: 110px;
    color: #2EA7E0;
    font-weight: 600;
}
.custom-corporate-content1 span{
  font-size: 110px;
  /* vertical-align: middle; */
    color: #2EA7E0;
    font-weight: 600;
}
.corporate-content-p{
  font-size: 35px;
    font-weight: 600;
    height: 140px;
    color: #2EA7E0;
}
@media screen and (max-width: 1024px){

.custom-corporate-content1 {
  bottom: 155px;
  right: 83px ;
}
.ccc2 {
  width: 46%;
  right: 104px ;
}
.ccc3 {
  right: 120px ;
}
.ccc4 {
  right: 101px ;
}

}

@media (max-width: 992px){
  .carousel {
  max-width: 100%;
  margin: auto;
}
.carousel-inner{
  min-height: 150px;
}
.container {
    max-width: 100%;
}
.custom-section {
  padding: 10px;
  margin: 0 auto;
  width: 100%;
}
.custom-corporate-content {
  bottom: 0;
  height: 80%;
  width: 50%;
  right: 20px;
}
.ccc2{
  bottom: 23px;
  height: 80%;
  width: 42%;
  right: 95px;
}
.ccc5{
  bottom: 34px;
}
.custom-corporate-content #special{
  margin-bottom: -16px;
}
.custom-corporate-content .even,.custom-corporate-content .odd {
  font-size: 65px;
}
.corporate-content-p {
  font-size: 30px;
  height: 80px;
}
.custom-corporate-content1{
  bottom: -18px;
  right: 65px;
  width: 47%;
  height: 100%;
}
.custom-corporate-content1 #special {
  margin-bottom: 0;
}
p {
  margin: 0px;
  font-size: 14px;
}
.custom-corporate-content1 span {
  font-size: 70px;
  /* vertical-align: middle; */
}
.corporate-content-p2 {
  height: 88px !important;
}
.carousel-indicators li{
  width: 20px;
  height: 20px;
  margin: 1px;
}
.carousel-indicators .active{
  width: 20px;
  height: 20px;
  margin: 1px;
}
.carousel-indicators {
  left: 155px !important;
  width: 37%;
  bottom: 0px;
}
.h1, h1 {
  font-size: 23px;
}


}

@media (max-width: 761px){
  .carousel {
  max-width: 570px;
  margin: auto;
}
.carousel-inner{
  min-height: 150px;
}
.custom-section {
  padding: 10px;
  margin: 0 auto;
  width: 100%;
}
.custom-corporate-content {
  bottom: 80px;
  height: 100%;
  width: 56%;
  left: 162px;
}
.custom-corporate-content #special{
  margin-bottom: 8px;
}
.custom-corporate-content .even,.custom-corporate-content .odd {
  font-size: 42px;
}
.corporate-content-p {
  font-size: 30px;
}
.custom-corporate-content1{
  bottom: -18px;
  right: 9px;
  width: 56%;
  height: 100%;
  padding-right: 0px;
}
.custom-corporate-content1 #special {
  margin-bottom: -15px;
}
p {
  margin: 0px;
  font-size: 11px;
}
.custom-corporate-content1 span {
  font-size: 38px;
  /* vertical-align: middle; */
}
.corporate-content-p {
  height: 33px;
}
.corporate-content-p2 {
  height: 54px !important;
}
.carousel-indicators li{
  width: 20px;
  height: 20px;
  margin: 1px;
}
.carousel-indicators .active{
  width: 20px;
  height: 20px;
  margin: 1px;
}
.carousel-indicators {
  left: 155px !important;
  width: 37%;
  bottom: 0px;
}
.h1, h1 {
  font-size: 23px;
}
}
@media (max-width: 428px){
  .carousel-indicators {
    left: 110px !important;
    width: 37%;
    bottom: -11px;
}
.h1, h1 {
  font-size: 15px;
}
.carousel-indicators li {
  width: 15px;
  height: 15px;
}
.carousel-indicators .active {
  width: 15px;
  height: 15px;
}
.corporate-content-p {
  font-size: 17px;
}
.custom-corporate-content span {
  font-size: 28px;
  line-height: 25px;
}
  p {
    font-size: 11px;
}
.custom-corporate-content {
  bottom: -14px;
}
}
@media (max-width: 390px){
  .carousel-indicators {
    left: 110px !important;
    width: 37%;
    bottom: -11px;
}
.carousel-indicators li {
  width: 15px;
  height: 15px;
}
.custom-corporate-content {
  left: 143px;
  bottom: -19px;
}
.carousel-indicators .active {
  width: 15px;
  height: 15px;
}
.corporate-content-p {
  font-size: 17px;
}
.custom-corporate-content span {
  font-size: 24px;
  line-height: 25px;
}
  p {
    font-size: 11px;
}

}
@media (max-width: 360px){
.custom-corporate-content {
  left: 131px;
  bottom: -13px;
}
}
#backtotop{
  background-color: #2EA7E0;
  float: right;
  margin-right: 90px;
  border: none;
  width: 50px;
  height: 50px;
  color: white;
  bottom: 20px;
  right: 30px;
  position: absolute;
}  
.fa-caret-up:before{
  font-size:35px
}
.fa-caret-right::before{
  font-size: 14px;
  padding-left: 3px;
  vertical-align: bottom;
}
.scroll-to-top{
  position: relative;
}
.footer{
  text-align: center;
  padding: 30px 30px;
}
.footer p{
  font-size: 13px;
}
@media only screen and (max-width:1190px) {
 
  .fa-caret-right::before{
    font-size: 5px;
  }

}


/*Chairman's statement*/
.chairman-row{
  margin: 0px;
}
.custom-section .chairman-heading{
  width:100%;
  border: 1px solid #2EA7E0;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  background-color: #2EA7E0;
  color: white;
  margin-bottom: 0px;
}
.chairman-block{
  background-image: url('images/Asset-3.png');
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0;
}

/* BLOCK2 CSS START */
.block2 .main {
  max-width: 1140px;
  display: flex;
  padding: 30px 0px;
  margin: auto;
  justify-content: center;
  align-items: center;
}
.block2 .main-content{
  background-image: url('images/Asset-3.png');
  background-repeat: no-repeat;
  background-size: contain;
  padding: 0px;
  height: 435px;
}
.block2 .chairman-heading{
  margin-top: -8px;
  width:100%;
  border: 1px solid rgb(0 125 201);
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  background-color: rgb(0 125 201);
  color: white;
  margin-bottom: 0px;
}
.block2 .chairman-paragraph p{
  padding-top: 18%;
    padding-left: 0%;
    font-weight: 500;
    padding-right: 15%;
    color: #2EA7E0;
    font-size: 20px;
}
.block2 .col-md-6{
  width: 43%;
  height: 100%;
}
.block2 .col-md-6-right{
  width: 57%;
  height: 100%;
}
.block2 .row{
  height: 340px;
  display: flex;
}
.block2 .chairman-image{
    height: auto;
    max-width: 287px;
    margin-top: -72px;
    margin-left: -20px;
    overflow: hidden;
}
.block2 .chairman-bottom{
  position: absolute;
}

@media (max-width: 761px){
  .block2 .main{
    max-width: 570px;
  }
  .block2 .main-content{
    height: auto;
  }
  .chairman-heading{
    padding: 10px 0;
  }
  .block2 .chairman-paragraph p {
    font-size: 12px;
    padding-right: 0;
}
/*.chairman-paragraph a{
  margin-left: -73px !important;
}*/
.chairman-paragraph h4{
  width: 310px;
}
.h4, h4 {
  font-size: 11px;
}
.block2 .chairman-image{
  max-width: 168px;
  margin-top: 50px;
}
.block2 .row{
  max-height: 321px;
  width: 104%;
}
@media (max-width: 428px){
  .block2 .chairman-paragraph p {
    font-size: 14px;
    padding-top: 40%;
}
.block2 .col-md-6{
  width: 38%;
  height: 100%;
}
.block2 .main-content{
  height: auto;
  width: 100%;
}
.block2 .col-md-6-right{
  width: 60% !important;
  height: 100%;
}
.chairman-paragraph h4 {
  width: 229px !important;
}
}
@media (max-width: 390px){
  .block2 .chairman-paragraph p {
    font-size: 12px;
}
.chairman-paragraph h4 {
  width: 229px !important;
}
}
}
/* BLOCK2 CSS END */

/* BLOCK3 CSS START */
.block3 .main {
  max-width: 1140px;
  display: flex;
  padding: 30px 0px;
  margin: auto;
  justify-content: center;
  align-items: center;
}
.block3 .main-content{
  background-image: url('images/blk3-bg.jpg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0% 70%;
  padding: 0px;
  height: 435px;
}
.block3 .chairman-heading {
  margin-top: -8px;
  width: 100%;
  border: 1px solid rgb(176 60 33);
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  background-color: rgb(176 60 33);
  color: white;
  margin-bottom: 0px;
}
.block3 .chairman-paragraph p{
  padding-top: 18%;
    padding-left: 0%;
    font-weight: 500;
    padding-right: 15%;
    font-size: 20px;
    color:  rgb(176 60 33);
}
.block3 .col-md-6{
  width: 43%;
  height: 100%;
}
.block3 .col-md-6-right{
  width: 57%;
  height: 100%;
}
.block3 .row{
  height: 340px;
  display: flex;
}
.block3 .chairman-image{
    height: auto;
    max-width: 287px;
    margin-top: -68px;
    margin-left: -16px;
    overflow: hidden;
}
.block3 .chairman-bottom{
  position: absolute;
  border: 1px solid rgb(176 60 33);
  background-color: rgb(176 60 33);
}
/*.block3 .chairman-paragraph a {
  margin-left: 310px;
}*/
@media (max-width: 1024px){
  .block3 .main-content {
    background-position: 0% 50%;
}
/*.block3 .chairman-paragraph a {
  margin-left: 245px;
}*/
.block2 .chairman-paragraph p,
.block3 .chairman-paragraph p {
    padding-top: 16%;
    font-size: 18px;
  }
}
@media (max-width:992px){
  .block3 .main-content {
    background-position: 0% 25%;
}
}
@media (max-width: 761px){
  .sum.header a {
    width: 200px;
}
.subdiv a{
  width: 50px !important;
}
.subdiv{
  padding-left: 5%;
}
  .block3 .main{
    max-width: 570px;
  }
  .block3 .main-content{
    height: auto;
    background-position: 0% 15%;
  }
  .block2 .chairman-paragraph p,
  .block3 .chairman-paragraph p {
    font-size: 12px;
}
.chairman-paragraph a{
  height: 22px !important;
  font-size: 10px !important;
}
.chairman-paragraph h4{
  width: 310px;
}
.block3 .chairman-image{
  max-width: 168px;
  margin-top: 60px;
}
.block3 .row{
  height: auto;
  width: 104%;
}
.fb-1{
  width: 28% !important;
}
.fb-2{
  width: 38% !important;
}
.fb-3{
  width: 38% !important;
}
@media (max-width: 428px){
  .block2 .chairman-paragraph p,
.block3 .chairman-paragraph p {
    font-size: 14px;
    padding-top: 43%;
    padding-right: 0;
}
.block3 .col-md-6-right{
  width: 60% !important;
  height: 100%;
}
.block3 .main-content {
  background-position: 0% 15%;
}
.block3 .col-md-6{
  width: 38%;
  height: 100%;
}
.chairman-paragraph h4 {
  width: 229px !important;
}
}
@media (max-width: 390px){
  .block2 .chairman-paragraph p,
.block3 .chairman-paragraph p {
    font-size: 12px;
}
.chairman-paragraph h4 {
  width: 229px !important;
}
}
}
/* BLOCK3 CSS END */

/* BLOCK4 CSS START */
.block4 #custom-corporate {
  background-image: none;
  padding: 0px;
}
.block4 .chairman-heading {
  margin-top: 8px;
  width: 100%;
  border: 1px solid #E76DA5;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  background-color: #E76DA5;
  color: white;
  margin-bottom: 0px;
}
.carousel-inner2{
  position: relative;
  width: 100%;
  background-color: white;
  min-height: 580px;
  overflow: hidden;
}
.business-content p{
  color: #EA6693;
    font-weight: 600;
    font-size: 55px;
    line-height: 55px;
}
.block4 .carousel-indicators li{
  background-color: #B8E2F9;
}
.block4 .carousel-indicators .active{
  background-color: #005BAC;
}
.block4 {
  padding: 30px 20px;
}

@media (max-width: 1280px){
  .carousel-inner2 {
    min-height: 455px;
} 
.carousel-indicators {
  left: -35px !important;
  bottom: 11px;
}
.business-content{
  width: 48%;
}
.business-content p {
  font-size: 44px;
  line-height: 45px;
}
.bc3 {
  width: 55%;
}

}

@media (max-width: 1024px){
  .carousel-inner2 {
    min-height: 355px;
} 
.carousel-indicators {
  left: 0px !important;
  bottom: 0px;
  margin-left: 0px;
}
.business-content{
  width: 48%;
}
.business-content p {
  font-size: 44px;
  line-height: 30px;
}
.bc2 {
  width: 59%;
}
.bc3 {
  width: 55%;
}
.bc6 {
  width: 57%;
  left: 33%;
}

}
@media (max-width: 992px){
 
/*.chairman-paragraph a {
    margin-left: 145px;
}*/
/*.block3 .chairman-paragraph a {
    margin-left: 225px;
}*/

.business-content p {
    font-size: 28px;
}


}

  
/* .block4 .carousel-indicators li {
  width: 15px !important;
  height: 15px !important;
}
.block4 .carousel-indicators .active {
  width: 15px !important;
  height: 15px !important;
} */
@media (max-width: 761px){
  .business-content p{
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .block4 .carousel-indicators li{
    width: 20px !important;
    height: 20px !important;
    margin: 1px;
  }
  .block4 .carousel-indicators .active{
    width: 20px !important;
    height: 20px !important;
    margin: 1px;
  }
  
  .carousel-inner2{
    min-height: 230px;
  }
  .block4 .carousel-indicators {
    left: 90px !important;
    width: 49%;
    bottom: 23px;
}
  }
@media (max-width: 428px){
  .business-content p {
    font-size: 14px !important;
  line-height: 12px !important;
}
.business-content{
  left: 42% !important;
}
.block4 .carousel-indicators {
left: -15px !important;
bottom: -5px;
}
.block4 .carousel-indicators li {
  width: 15px !important;
  height: 15px !important;
}
.block4 .carousel-indicators .active {
  width: 15px !important;
  height: 15px !important;
}
}
  @media (max-width: 390px){
    
  .block4 .carousel-indicators {
    left: -14px !important;
    width: 49%;
    bottom: 20px;
}
.carousel-inner {
  min-height: 180px;
}
.custom-corporate-content .even, .custom-corporate-content .odd {
  font-size: 34px;
}
  }

/* BLOCK4 CSS END */

/* BLOCK5 CSS START */
.block5 .main {
  width: 100%;
  display: flex;
  padding: 30px 381px;
  margin-top: 60px;
}
.block5 .main-content{
  background-image: url('images/Asset-6.jpg');
  background-repeat: no-repeat;
  background-size: contain;
  padding: 0px;
  height: 590px;
  margin-top: 30px;
}
.block5 .chairman-heading{
  margin-top: -60px;
  border: 1px solid rgb(161 177 27);
  background-color: rgb(161 177 27);
}
.block5 .chairman-paragraph p{
  padding-top: 24%;
  padding-left: 0%;
  font-weight: 500;
  font-size: 20px;
}
.block5 .chairman-paragraph {
  width: 23%;
}
.block5 .col-md-6{
  width: 71%;
  height: 100%;
}
.block5 .row{
  height: 340px;
}
.block5 .chairman-image{
    height: auto;
    max-width: 287px;
    margin-top: -78px;
    margin-left: -20px;
}
.social-view-more{
  padding-top: 5%;
  padding-right: 25px;
}
@media only screen and (max-width:1280px){
  .social-block {
    background-position: 67% 0%;
  }
  .social-paragraph {
    background-color: #F6F7C5;
  }
  .social-view-more {
    padding-top: 28%;
    padding-right: 25px;
  }
  }
@media only screen and (max-width:1024px){
.social-block {
  background-position: 67% 0%;
}
.social-paragraph {
  background-color: #F6F7C5;
}
.social-view-more {
  padding-top: 20%;
  padding-right: 20px;
}
}
@media only screen and (max-width:761px){
  .social-block{
    background-size: 128% !important;
  }
  .social-content{
    max-width: 570px !important;
    height: auto !important;
  }
  .social-paragraph{
    padding: 0px !important;
  }
  .social-paragraph a {
    font-size: 9px !important;
  }
  .social-paragraph-p1 {
    padding-left: 25px !important;
    font-size: 10px !important;
    padding-top: 25% !important;
    padding: 30px 8% 5px !important;
    width: 100%;
    float: right;
}
.social-paragraph-p2 {
  padding-left: 25px !important;
  font-size: 10px !important;
  padding: 0px 8% !important;
  width: 100%;
  float: right;
}
.social-view-more{
  padding-top: 13%;
}
}
/* BLOCK5 CSS END */

.chairman-image{
  height: 70vh;
  width: auto;
  padding-top: 70px;
}
.chairman-paragraph{
  width: 50%;
  /* text-align: justify; */
}
/* .chairman-paragraph p{
  padding-top: 35%;
  padding-left: 0%;
  font-weight: 500;
  font-size: 20px;
} */

.chairman-paragraph h4{
  padding-top: 0%;
  padding-left: 0%;
  color: #000;
  /* font-weight: 100; */
}
.chairman-paragraph a{
  border: 1px solid #2EA7E0;
  background: #2EA7E0;
  color: white;
  padding: 3px 10px;
  /*margin-left: 250px;*/
  margin-top: 50px;
  height: 32px;
  font-size: 14px;
}
.chairman-bottom{
  width:100%;
  border: 1px solid rgb(0 125 201);
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  background-color: rgb(0 125 201);
}

.chairman-view-more{
  display: flex;
  margin-left: 0px;
  justify-content: space-between;
  padding-right: 20px;
}

@media only screen and (max-width: 1024px) {
  .chairman-paragraph a {
   
    margin-top: 35px ;
  }
}


@media only screen and (max-width: 600px) {
  .chairman-paragraph {
      width: 100%;
  }
  .chairman-paragraph p {
      padding-top: 10%;
      padding-left: 0;
  }
  .chairman-paragraph h4 {
      padding-top: 0%;
      padding-left: 0;
      float: unset;
  }
  
  /*.chairman-view-more{
      display: unset;
      margin-left: 0px;
  }*/
  /*.chairman-paragraph a{
      margin-left: unset;
      float: right;
      margin-top: 35px;
  }*/
}
@media (max-width:428px){
  .chairman-paragraph a {
    margin-left: -130px;
}
}
/*Chairman's statement*/

/*ceo's Review*/
.ceo-section{
  padding-top: 30px;
}
.ceo-row{
  margin: 0px;
}
.ceo-heading{
  width:100%;
  border: 1px solid rgb(176 60 33);
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  background-color: rgb(176 60 33);
  color: white;
  margin-bottom: 0px;
}
.ceo-block{
  background-image: url('images/Asset-3.png');
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
}
.ceo-image{
  height: 70vh;
  width: auto;
  padding-top: 70px;
}
.ceo-paragraph{
  width: 50%;
  text-align: justify;
}
.ceo-paragraph p{
  padding-top: 35%;
  padding-left: 0%;
  font-weight: 500;
  font-size: 20px;
}

.ceo-paragraph h4{
  padding-top: 0%;
  padding-left: 0%;
  color: #00000078;
    font-weight: 100;
}
.ceo-paragraph a{
  border: 1px solid red;
  background: red;
  color: white;
  padding: 3px 10px;
  margin-left: 225px;
  height: 28px;
  font-size: 14px;
  margin-top: 10px;
}
.ceo-bottom{
  width:100%;
  border: 1px solid rgb(176 60 33);
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  background-color: rgb(176 60 33);
}

.ceo-view-more{
  display: inline-flex;
  margin-left: 0px
}

@media only screen and (max-width: 600px) {
  .ceo-paragraph {
      width: 100%;
  }
  .ceo-paragraph p {
      padding-top: 10%;
      padding-left: 0;
  }
  .ceo-paragraph h4 {
      padding-top: 10%;
      padding-left: 0;
      float: unset;
  }
  .ceo-view-more{
      display: unset;
      margin-left: 0px;
  }
  .ceo-paragraph a{
      margin-left: unset;
      float: right;
  }
}
/*ceo's Review*/

/* overview */

.business-overview{
  width:100%;
  padding-top:30px
}
.block4 .carousel-indicators li{
  background-color: #B8E2F9;
  width: 30px;
  height: 30px;
  border-radius: unset;
}
.block4 .carousel-indicators .active{
  width: 30px;
  background-color: #005BAC;
  height: 30px;
  border-radius: unset;
}
.business-heading{
  width:100%;
  border: 1px solid rgb(230 0 18);
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  background-color: rgb(230 0 18);
  color: white;
  margin-bottom: 0px;
}
.business-content{
  position: absolute;
    bottom: 14px;
    left: 35%;
    width: 50%;
}

.bc2 {
  width: 70%;
}
.bc2 p{
  color: #C7025D;
}
.bc3 {
  
  width: 41%;
}
.bc3 p{
  color: #02B29F;
}
.bc4{
  color: #F0831E;
  width: 62%;
}
.bc4 p{
  color: #F0831E;
}
.bc5 {
  width: 51%;
}
.bc5 p{
  color: #584C9D;
}
.bc6 {
  width: 66%;
  left: 33%;
}
.bc6 p{
  color: #9EBD2B;
}
@media (max-width: 992px){
.block4 .carousel-indicators li {
    width: 20px;
    height: 20px;
    margin: 1px;
}
.block4 .carousel-indicators .active {
  width: 20px;
  height: 20px;
}
}
@media (max-width:761px){
  .bc2 {
    width: 55%;
}
.bc3 {
  width: 36%;
}
.bc5 {
  width: 43%;
}
.bc6 {
  width: 58%;
}
}
@media (max-width:428px){
  .bc2 {
    width: 50%;
}
.bc4 {
  width: 55%;
}
.bc6 {
  width: 46%;
}
}

/* overview end */


/*ENVIRONMENTAL, SOCIAL AND GOVERNANCE*/
.social-row{
  margin-top: 30px;
}
.social-heading{
  margin-top: 8px;
  width: 100%;
  border: 1px solid rgb(161 177 27);
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  background-color: rgb(161 177 27);
  color: white;
  margin-bottom: 0px;
}
.social-block{
  background-image: url('images/Asset-6.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  height: 560px;
}
.social-image{
  height: 70vh;
  width: auto;
  padding-top: 70px;
}
.social-paragraph{
  width: 33%;
  float: right;
  margin-right: 5px;
  display: flex;
  flex-direction: column;
}

.social-paragraph-p1{
  font-weight: 500;
  padding: 15% 10% 0px;
  font-size: 20px;
}
.social-paragraph-p2{
  padding: 0px 10%;
  font-weight: 500;
  font-size: 20px;
  padding-top: 5%;
}

.social-paragraph h4{
  padding-top: 0%;
  padding-left: 0%;
}
.social-paragraph a{
  border: 1px solid #2EA7E0;
  background: #2EA7E0;
  color: white;
  padding: 5px;
  float: right;
  font-size: 14px;
}

.social-view-more a{
  background: #2EA7E0;
}
@media only screen and (max-width: 1280px) {
  .social-paragraph-p1 {
    padding: 20% 10% 0px;
    font-size: 15px;
}

}
@media only screen and (max-width: 761px) {
  .social-paragraph {
      width: 46%;
      height: 100%;
      margin-top: -1px;
      margin-right: -1px;
      background-color: #F6F7C5;
  }
  .social-heading{
    margin-top: 10px;
  }
  .social-paragraph p {
      padding-top: 10%;
      padding-left: 0;
  }
  .social-paragraph h4 {
      padding-top: 10%;
      padding-left: 0;
      float: unset;
  }
  .social-paragraph a{
      margin-left: unset;
      float: right;
  }
  .social-block{
      background-image: url('images/Asset-6.png');
      background-repeat: no-repeat;
      background-size: cover;
      background-position: 108% 50%;
      margin: 0;
      height: 56vh;
  }
  .social-row{
    margin-left: 5px;
    margin-top: 10px;
  }
  @media (max-width: 428px){
    .social-row {
      margin-left: -29px;
      margin-top: 37px;
  }
  .social-paragraph p{
    font-size: 9px !important;
    padding-right: 26px !important;
  }
  .social-block{
    height: 255px;
  }
  .block4{
    padding: 30px 0 0 0;
  }
  .carousel-inner {
    min-height: 165px;
}
.carousel-inner2 {
  min-height: 203px;
}
.custom-corporate-content {
  width: 54%;
}
  .social-view-more {
    padding-right: 25px;
    padding-top: 12px;
}
  }
  @media (max-width: 390px){
    .social-row {
      margin-left: -29px;
      margin-top: 15px;
  }
  .social-paragraph p{
    font-size: 9px !important;
    padding-right: 8px !important;
  }
  
  .social-paragraph-p1 {
    padding-top: 8% !important;
}
.carousel-inner2 {
  min-height: 200px;
}
/* .social-block {
  height: 36.2vh;
} */
  }
  @media (max-width:375px){
    .social-block {
      height: 255px;
    }
    .social-block {
      background-size: 157% !important;
    }
    .social-block {
      background-position: 80% 50%;
    }
  }

}
/*ENVIRONMENTAL, SOCIAL AND GOVERNANCE*/


/*FINANCIAL HIGHLIGHTS*/
#financial-highlight{
  padding: 40px;
  margin-top:89px;
}
.financial-bg{
  background-image: url('images/Asset\ 8.png');
      background-repeat: no-repeat;
      background-size: cover;
      height: 625px;
      margin-top: -70px;
}
.financial-row{
  margin: 0px;
  margin-top:48px;
}
#financial-highlight .container{
  max-width: 1200px;
}

.financial-image{
  height: 70vh;
  width: auto;
  padding-top: 70px;
}

.financial-view-more{
  padding-top: 35%;
}
@media only screen and (max-width: 1024px) {
  #financial-highlight .container{
    max-width: 920px;
  }
}
@media only screen and (max-width: 761px) {
  .financial-paragraph {
      width: 100%;
  }
  .financial-paragraph p {
      padding-top: 10%;
      padding-left: 0;
  }
  .financial-content{
    margin: auto;
    background-color: white;
  }
  .financial-paragraph h4 {
      padding-top: 10%;
      padding-left: 0;
      float: unset;
  }
  .financial-paragraph a{
      margin-left: unset;
      float: right;
  }
  .financial-block{
      height: 43vh !important;
      display: flex;
      padding: 0px !important;
  }
  .financial-bg{
    margin-top: -325px;
    height: 360px;
  }
  #financial-highlight .container {
    min-width: 100%;
}
  .financial-box{
    margin: 20px 5px;
    /* width: 33% !important; */
    height: 85% !important;
  }
  .financial-view-more {
    padding-top: 3%;
    margin-right: 15px;
    float: right;
}
#financial-highlight{
  margin-top: 350px;
  padding: 10px;
  padding-bottom: 50px;
}
@media (max-width: 428px){
  .social-section{
    padding-right: 0px !important;
  }
  .financial-box{
    height:85% !important;
    margin: 2px !important;
    margin-top: 10px !important;
  }
  .financial-block{
    height: 20vh !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .financial-amount{
    font-size: 29px !important;
  }
  .financial-footer{
    height: 34px !important;
  }
  .financial-view-more {
    margin-right: 11px !important;
    padding-top: 3%;
}
.financial-view-more a {
  font-size: 10px !important;
}
.financial-bg {
  height: 320px;
}
}
@media (max-width: 390px){
  
.social-section{
  padding-right: 0px !important;
}
.financial-box{
  height:85% !important;
  margin: 2px !important;
  margin-top: 10px !important;
}
.financial-block{
  height: 20vh !important;
  margin-left: 5px !important;
  margin-right: 5px !important;
}
.financial-amount{
  font-size: 26px !important;
}
.financial-footer{
  height: 34px !important;
}
.financial-view-more {
  margin-right: 11px !important;
  padding-top: 3%;
}
.financial-view-more a {
font-size: 10px !important;
}
.financial-bg {
height: 310px;
}
}
}


/*FINANCIAL HIGHLIGHTS*/

.financial-heading{
  margin-top: -8px;
  width:100%;
  border: 1px solid #A6539C;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  background-color: #A6539C;
  color: white;
  margin-bottom: 0px;
}
.financial-block{
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  margin: 0;
  height: 426px;
  background-color: white;
  padding: 5px 30px;
}
.financial-image{
  height: 70vh;
  width: auto;
  padding-top: 70px;
}
.financial-box{
  background-color: rgb(231 228 242);
  width: 100%;
  color: black;
  font-size: 27px;
  font-weight: 500;
  margin: 5px;
  margin-top: 45px;
  padding-top: 19px;
  height: 84%;
}
.fb-1{
  width: 75%;
}
.financial-footer{
  width: 100%;
  height: 50px;
  background-color: white;
}

.financial-amount{
  color: rgb(114 36 137);
  font-size: 100px;
  text-align: center;
}
.financial-box .col{
  padding: 0 20px 0 0;
}
.financial-note{
  text-align: right;
  width: 100%;
}

.financial-view-more{
  padding-top: 0%;
  float:right;
  margin-right: 25px;
}
.financial-view-more a{
  background: #2EA7E0;
  color: white;
  padding: 5px;
  font-size: 14px;
}
@media only screen and (max-width: 1024px) {
  #backtotop{
    bottom: 72px;
  }
}
@media (max-width: 992px){
 

.financial-amount {
    font-size: 60px;
  }
.financial-block {
    height: 246px;
}
.financial-box {
  margin-top: 25px;
}
#backtotop {
    right: -40px;
}
#text-bottom {
    font-size: 78px;
    vertical-align: middle;
}
#financial-highlight {
    padding: 40px 0px;
}
.financial-bg {
    height: 65vw;
}
.financial-block {
    height: 40vw !important;
}
.financial-block {
    padding: 5px 10px;
}
#financial-highlight .container {
    max-width: 710px;
}
.financial-view-more {
    margin-right: 15px;
}
}
@media only screen and (max-width: 761px) {
  #backtotop{
    margin-right: 0px;
    bottom:68px;
  }
  .menu-language{
    display: none;
  }
  .home-logo img{
    height: 36px;
    margin-left: 10px;
  }
  .navbar{
    justify-content: space-between;
  }
  .financial-paragraph {
      width: 100%;
  }
  #text-bottom {
    font-size: 50px;
}
  .financial-paragraph p {
      padding-top: 10%;
      padding-left: 0;
  }
  .financial-bg {
    height: 82vw;
  }
  .financial-paragraph h4 {
      padding-top: 10%;
      padding-left: 0;
      float: unset;
  }
  .financial-amount{
    font-size: 35px;
  }
  .financial-box .col{
    padding: 0 5px 0 0;
  }
  .financial-paragraph a{
      margin-left: unset;
      float: right;
  }
  .financial-footer{
    background-color: white;
    width: 100%;
    height: 50px;
  }

}
@media (max-width:428px){
  #financial-highlight {
    margin-top: 320px;
}
}

@media only screen and (max-width: 374px) {
  #financial-highlight {
    padding: 0px 0px;
}
  .financial-bg {
    height: 90vw;
  }
}

@media only screen and (max-width: 360px) {
  #financial-highlight {
    margin-top: 355px;
}
}
/*FINANCIAL HIGHLIGHTS*/

