@import url("https://fonts.googleapis.com/css2?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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
*::after, *::before, * {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  box-sizing: border-box;
  background: #ddd !important;
  font-family: "Roboto", sans-serif !important;
}

#visitor_profile {
  display: flex;
  justify-content: space-evenly;
  margin-top: 30px;
}
#visitor_profile li {
  width: 370px;
  height: 200px;
  /* border-radius: 50%; */
  background: #d02525;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 20px;
  text-align: center;
  box-shadow: 4px 10px 20px #888;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.wave {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23003F7C'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  position: absolute;
  top: 65%;
  width: 300%;
  height: 100%;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
  z-index: 1;
}

.wave:nth-of-type(2) {
  bottom: 0;
  animation: wave 18s linear reverse infinite;
  opacity: 0.5;
}

.wave:nth-of-type(3) {
  bottom: 0;
  animation: wave 20s -1s linear infinite;
  opacity: 0.5;
}

@keyframes wave {
    0% {transform: translateX(0);}
    50% {transform: translateX(-25%);}
    100% {transform: translateX(-50%);}
}

html{
  scroll-behavior: smooth;
}
.wrapper {
  max-width: 1920px;
  margin: 0 auto;
  background: #fff;
}
.wrapper .header {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 65%;
  margin: 0 auto;
}
.wrapper .header .logo-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.wrapper .header .logo-area img {
  width: 200px;
  height: 80px;
  object-fit: contain;
}
/* .wrapper .header .logo-area .line {
  width: 1px;
  height: 80px;
  background: #ddd;
  display: block;
  margin: 0 20px;
} */
.wrapper .header .counter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.wrapper .header .counter h4 {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  background: #ddb345;
  border-radius: 30px;
  padding: 8px 20px;
}
.wrapper .header .counter .counter_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 250px;
}
.wrapper .header .counter .counter_inner div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 10px;
  background: #09f;
  padding: 10px;
  width: 60px;
  border-radius: 3px;
  color: #fff;
  text-transform: uppercase;
}
.wrapper .header .counter .counter_inner div span {
  font-size: 16px;
  font-weight: bold;
}
.wrapper .navigation {
  background: #f1f1f1;
}
.wrapper .navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  margin: 0;
}
.wrapper .navigation ul a {
  text-decoration: none;
  color: #101010;
  font-size: 16px;
  text-transform: uppercase;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
.wrapper .navigation ul a:hover {
  background: #F09819;
  color: #fff;
}
.wrapper .navigation ul a.active {
  background: #d02525;
  color: #fff;
}
.wrapper .strip {
  width: 100%;
  background: #d02525;
  color: #ffff;
  border-top: 3px solid #ffda23;
  border-bottom: 3px solid #ffda23;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.wrapper .strip h3 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 35px;
  margin: 0;
  color: #ffda23;
}
@keyframes colorChanger {
  0% {
    background: #101010;
    color: #ddb345;
  }
  50% {
    background: #ddb345;
    color: #101010;
  }
  100% {
    background: #101010;
    color: #ddb345;
  }
}
.wrapper .heroSection {
  width: 100%;
  height: 500px;
  background-image:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url("../../images/istockphoto-1184804468-1024x1024.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position:center;
  /* background-attachment: fixed; */
  display: flex;
  padding: 0 25px;
  flex-direction: column;
  border-bottom: 30px solid #d02525;
}
.wrapper .heroSection .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  height: 90%;
  padding: 30px 0;
  margin: 0 auto;
}
.wrapper .heroSection .content .left {
  flex-basis: 55%;
  overflow: hidden;
}
.wrapper .heroSection .content .left .slides {
  color: #fff;
  display: none;
}
.wrapper .heroSection .content .left .slides h1 {
  font-weight: 800;
  font-size: 50px;
  text-transform: uppercase;
}
.wrapper .heroSection .content .left .slides h1 span.blue {
  color: #0099ff;
}
.wrapper .heroSection .content .left .slides h1 span.grey {
  color: #afafaf;
}
.wrapper .heroSection .content .left .slides h3 {
  font-weight: 300;
  font-size: 50px;
  text-transform: uppercase;
  line-height: 50px;
}
.wrapper .heroSection .content .left .slides.active {
  display: block !important;
  animation: slideIn 0.46s ease-in linear;
}
@keyframes slideIn {
  from {
    left: 100%;
  }
  to {
    left: 0;
  }
}
.wrapper .heroSection .content .right {
  flex-basis: 40%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.wrapper .heroSection .content .right h4 {
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.wrapper .heroSection .content .right h3 {
  background: #d02525;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  padding: 10px 30px;
  border-radius: 50px;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .heroSection .content .right h1 {
  font-size: 40px;
  color: #fff;
}
.wrapper .heroSection .slide_dots {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60px;
  margin-bottom: 20px;
}
.wrapper .heroSection .slide_dots a {
  display: block;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.wrapper .heroSection .slide_dots a.active {
  background: #0099ff;
  border: none;
}
.wrapper .strip_bottom_hero {
  height: auto;
  padding: 10px;
  background: #101010;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .strip_bottom_hero h3 {
  color: #fff;
  font-weight: 300;
  font-size: 25px;
  margin-right: 10px;
  text-transform: uppercase;
}
.wrapper .strip_bottom_hero h3 span.blue {
  color: #0099ff;
  font-weight: 600;
}
.wrapper .strip_bottom_hero h3 span.grey {
  color: #afafaf;
  font-weight: 600;
}
.wrapper .strip_bottom_hero h4 {
  color: #fff;
  font-weight: 300;
  font-size: 25px;
  text-transform: uppercase;
}
.wrapper .section-wrapper section {
  margin: 40px 0;
}
.wrapper .section-wrapper section .content {
  width: 90%;
  margin: 0 auto;
}
.wrapper .section-wrapper section .content h2.title{
  font-size: 35px;
  font-weight: 300;
  margin-bottom: 30px;
}
.wrapper .section-wrapper section .content .title h3 {
  text-transform: uppercase;
  font-weight: 800;
  color: #101010;
  font-size: 40px;
}
.wrapper .section-wrapper section .content .title h3 span {
  color: #ddb345;
}
.wrapper .section-wrapper section .content .title h2 {
  color: #101010;
  font-size: 50px;
  font-weight: 300;
  text-transform: uppercase;
}
.wrapper .section-wrapper section.about .inner_content {
  margin: 30px 0;
}
.wrapper .section-wrapper section.about .inner_content ul {
  list-style-type: circle;
  margin-left: 20px;
}
.wrapper .section-wrapper section.about .inner_content ul li {
  margin: 20px 0;
  font-size: 1em;
  color: #333;
}
.wrapper .section-wrapper section.about .inner_content .imp_links {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.wrapper .section-wrapper section.about .inner_content .imp_links a {
  margin: 0 10px 0 0;
  text-decoration: none;
  width: 180px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-transform: uppercase;
}
.wrapper .section-wrapper section.about .inner_content .imp_links a.ckE {
  background: #333;
  color: #fff;
}
.wrapper .section-wrapper section.about .inner_content .imp_links a.atN {
  background: #d02525;
  color: #fff;
}
.wrapper .section-wrapper section.QualityText {
  position: relative;
  width: 100%;
  height: auto;
  background-image: linear-gradient(#422f0175, #422f0185), url("../../images/istockphoto-1184804468-1024x1024.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: 15%;
  padding: 25px;
}
.wrapper .section-wrapper section.QualityText span{
  position: absolute;
  width: 100px;
  height: 100px;
  background: #b6e4ff;
  border-radius: 50%;
  right: 20%;
  top: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .section-wrapper section.QualityText span img{
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.wrapper .section-wrapper section.QualityText .content {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  height: 100%;
  flex-direction: column;
}
.wrapper .section-wrapper section.QualityText .content ul{
  list-style: circle;
  margin-left: 30px;
}
.wrapper .section-wrapper section.QualityText .content ul li{
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}
.wrapper .section-wrapper section.QualityText .content h1 {
  color: #fff;
  font-weight: 800;
  font-size: 50px;
  margin: 0;
  /* text-align: center; */
  margin-bottom: 15px;
  width: 60%;
}
.wrapper .section-wrapper section.QualityText .content h3 {
  color: #fff;
  font-weight: 300;
  font-size: 35px;
  margin: 0;
  /* text-align: center; */
  margin-bottom: 15px;
  width: 60%;
}
.wrapper .section-wrapper section.QualityText .content h4 {
  color: #fff;
  font-weight: 600;
  font-size: 30px;
  margin: 0;
  /* text-align: center; */
  margin-bottom: 15px;
  width: 60%;
}
.wrapper .section-wrapper section.QualityText .content h2 {
  color: #fff;
  font-weight: 600;
  font-size: 35px;
  margin: 0;
  /* text-align: center; */
  width: 90%;
}
.wrapper .section-wrapper section.eligibility ul {
  list-style: none;
  margin-top: 30px;
}
.wrapper .section-wrapper section.eligibility ul li {
  margin: 0;
  margin-bottom: 1em;
  padding-left: 1.5em;
  position: relative;
}
.wrapper .section-wrapper section.eligibility ul li:after {
  content: "";
  height: 0.6em;
  width: 0.6em;
  background: #ddb345;
  display: block;
  position: absolute;
  transform: rotate(45deg);
  top: 0.5em;
  left: 0;
}
.wrapper .section-wrapper section.whyApply {
  width: 100%;
  height: auto;
  background-image: linear-gradient(#1b1a189c, #292722a1), url("../../images/istockphoto-1184804468-1024x1024.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: 15%;
  padding: 25px;
  border-bottom: 10px solid #ddb345;
}
.wrapper .section-wrapper section.whyApply .content {
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  justify-content: space-between;
  /* width: 90%; */
  margin: 0 auto;
  height: 100%;
}
.wrapper .section-wrapper section.whyApply .content h3 {
  font-weight: 900;
  color: #fff;
  /* flex-basis: 30%; */
  text-transform: uppercase;
  font-size: 30px;
}
.wrapper .section-wrapper section.whyApply .content h3 span {
  color: #ddb345;
}
.wrapper .section-wrapper section.whyApply .content p {
  flex-basis: 60%;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-top: 30px;
}
.wrapper .section-wrapper section.Categories .content .inner_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.wrapper .section-wrapper section.Categories .content .inner_content .blocks {
  flex-basis: 30%;
  border: 1px solid #f2f2f2;
  height: 150px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin: 30px 10px 0 10px;
  position: relative;
}
.wrapper .section-wrapper section.Categories .content .inner_content .blocks .icon-wrap {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFDC8C;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.wrapper .section-wrapper section.Categories .content .inner_content .blocks .icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wrapper .section-wrapper section.Categories .content .inner_content .blocks h3 {
  font-weight: 400;
  font-size: 15px;
  text-align: center;
}
.wrapper .section-wrapper section.Categories .content .inner_content .blocks .typesTrophy {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .section-wrapper section.Categories .content .inner_content .blocks .typesTrophy span {
  padding: 6px;
  flex-basis: 30%;
  background: #ddd;
  text-align: center;
  font-size: 13px;
}
.wrapper .section-wrapper section.Categories .content .inner_content .blocks .typesTrophy span:first-child {
  background: #ADA996;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #000;
}
.wrapper .section-wrapper section.Categories .content .inner_content .blocks .typesTrophy span:nth-child(2) {
  background: #F09819;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #EDDE5D, #F09819);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #EDDE5D, #F09819);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.wrapper .section-wrapper section.Categories .content .inner_content .blocks .typesTrophy span:last-child {
  background: #757F9A;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #D7DDE8, #757F9A);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #D7DDE8, #757F9A);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.wrapper .section-wrapper section.Revised {
  margin-top: 80px;
}
.wrapper .section-wrapper section.Revised .content .inner_content p {
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
}
.wrapper .section-wrapper section.Revised .content .inner_content p:last-child {
  text-align: left;
  font-size: 14px;
  font-style: italic;
}
.wrapper .section-wrapper section.Revised .content .inner_content table thead {
  background: #101010;
}
.wrapper .section-wrapper section.Revised .content .inner_content table thead th {
  text-transform: uppercase;
  color: #fff;
}
.wrapper .section-wrapper section.Revised .content .inner_content table tbody td:first-child {
  background: #DDB345;
  color: #000;
}
.wrapper .section-wrapper section.Revised .content .inner_content table tbody td:nth-child(3) {
  background: #DDB345;
  color: #000;
}
.wrapper .section-wrapper section.Revised .content .inner_content table tbody td:last-child {
  background: #FFDC8C;
  color: #000;
}
.wrapper .section-wrapper section.Revised .content .inner_content table tbody td:nth-child(2) {
  background: #FFDC8C;
  color: #000;
}
.wrapper .section-wrapper section.Activites {
  width: 100%;
  /* background-image: linear-gradient(#1b1a189c, #292722a1), url("../../images/Top-pic.png"); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: 15%;
  padding: 0 25px;
  margin: 0 auto;
}
.wrapper .section-wrapper section.Activites .content {
  padding: 20px;
}
.wrapper .section-wrapper section.Activites .content .inner_content {
  margin: 60px 0 30px 0;
}
.wrapper .section-wrapper section.Activites .content .inner_content .block_content {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 20px;
}
.wrapper .section-wrapper section.Activites .content .inner_content .block_content .block {
  flex-basis: 45%;
  height: 100px;
  background: #d02525;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 3px solid rgb(247, 183, 7);
  z-index: 100;
}
.wrapper .section-wrapper section.Activites .content .inner_content .block_content .block p {
  color: #fff;
  font-size: 25px;
  font-weight: 300;
  margin: 0;
}
.wrapper .section-wrapper section.Activites .content .inner_content .block_content .line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 3px;
  background: rgb(247, 183, 7);
}
.wrapper .section-wrapper section.Activites .content .inner_content .links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.wrapper .section-wrapper section.Activites .content .inner_content .links a {
  width: 250px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  margin: 0 20px;
}
.wrapper .section-wrapper section.Activites .content .inner_content .links a:first-child {
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
}
.wrapper .section-wrapper section.Activites .content .inner_content .links a:last-child {
  border: 1px solid #fff;
  color: #fff;
}
.wrapper .section-wrapper section.award_winners {
  width: 100%;
  background-image: linear-gradient(#1b1a18c7, #292722de), url("../../images/Top-pic.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: 15%;
  padding: 0 25px;
  border-bottom: 10px solid #ddb345;
  margin: 0 0 !important;
}
.wrapper .section-wrapper section.award_winners .content {
  padding: 40px 20px;
  
}
.wrapper .section-wrapper section.award_winners .content h3 {
  color: #DDB345;
  font-weight: 800;
  font-size: 30px;
}
.wrapper .section-wrapper section.award_winners .content h2 {
  color: #fff;
}
.wrapper .section-wrapper section.award_winners .content .inner_content {
  margin: 60px auto 30px auto;
  width: 60%;
}
.wrapper .section-wrapper section.award_winners .content .inner_content .row .col-md-6 {
  border: 1px solid #fff;
  color: #fff;
  padding: 20px;
  font-size: 20px;
}
.wrapper .section-wrapper section.award_winners .content .inner_content .row .col-md-6 ul {
  list-style: none;
}
.wrapper .section-wrapper section.award_winners .content .inner_content .row .col-md-6 ul li {
  color: #ddb345;
  font-size: 20px;
  margin: 10px 0;
}
.wrapper .section-wrapper footer {
  background: #ffda23;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wrapper .section-wrapper footer .left h3 {
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
}
.wrapper .section-wrapper footer .left p {
  margin: 0;
  font-size: 18px;
}
.wrapper .section-wrapper footer .right h3 {
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
}
.wrapper .section-wrapper footer .right .social {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .section-wrapper footer .right .social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 20px;
  justify-content: center;
  color: #fff;
  background: #d02525 !important;
  border-radius: 50%;
  margin: 0 10px;
}
.wrapper .section-wrapper footer .right .social a img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}
.wrapper .section-wrapper footer .left .contain_block{
  display: flex;
  align-items: flex-start;
}
.wrapper .section-wrapper footer .left .contain_block .block{
  /* width: 300px; */
  height: auto;
  padding: 10px 20px;
  border:1px solid #333; 
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
}
.wrapper .section-wrapper footer .left .contain_block .block:last-child{
  margin-left: 10px;
}
.wrapper .section-wrapper footer .left .contain_block .block img{
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}
.wrapper .section-wrapper footer .left .contain_block .block .info{
  margin-left: 20px;
}
.wrapper .section-wrapper footer .left .contain_block .block .info p:first-child{
  font-size: 16px;
  font-weight: 600;
}
.wrapper .section-wrapper footer .left .contain_block .block .info p:nth-child(2){
  font-size: 14px;
}
.wrapper .section-wrapper footer .left .contain_block .block .info p:nth-child(3){
  font-size: 14px;
}
.wrapper .section-wrapper footer .left .contain_block .block .info p:last-child{
  font-size: 14px;
}


.wrapper .section-wrapper .footer-strip{
  background: #d02525;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.wrapper .section-wrapper .footer-strip p{ 
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}



@media only screen and (max-width: 1400px) {
  .navigation {
    background: #f1f1f1;
  }
  .navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    margin: 0;
  }
  .navigation ul a {
    text-decoration: none;
    color: #101010;
    font-size: 12px !important;
    text-transform: uppercase;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
  }
  .navigation ul a:hover {
    background: #0099ff;
    color: #fff;
  }

  .strip {
    width: 100%;
    background: #ddb345;
    color: #101010;
    border-top: 3px solid #ddb345;
    border-bottom: 3px solid #ddb345;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
  }
  .strip h3 {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 30px !important;
    margin: 0;
  }
  @keyframes colorChanger {
    0% {
      background: #101010;
      color: #ddb345;
    }
    50% {
      background: #ddb345;
      color: #101010;
    }
    100% {
      background: #101010;
      color: #ddb345;
    }
  }

  .heroSection {
    width: 100%;
    height: 400px;
    background: url("../../images/Top-pic.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 15%;
    display: flex;
    padding: 0 25px;
    flex-direction: column;
    border-bottom: 30px solid #101010;
  }
  .heroSection .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 90%;
    padding: 30px 0;
  }
  .heroSection .content .left {
    flex-basis: 55%;
    overflow: hidden;
  }
  .heroSection .content .left .slides {
    color: #fff;
    display: none;
  }
  .heroSection .content .left .slides h1 {
    font-weight: 800;
    font-size: 45px;
    text-transform: uppercase;
  }
  .heroSection .content .left .slides h1 span.blue {
    color: #0099ff;
  }
  .heroSection .content .left .slides h1 span.grey {
    color: #afafaf;
  }
  .heroSection .content .left .slides h3 {
    font-weight: 300;
    font-size: 25px !important;
    text-transform: uppercase;
    line-height: 35px;
  }
  .heroSection .content .left .slides.active {
    display: block !important;
    animation: slideIn 0.46s ease-in linear;
  }
  @keyframes slideIn {
    from {
      left: 100%;
    }
    to {
      left: 0;
    }
  }
  .heroSection .content .right {
    flex-basis: 40%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .heroSection .content .right h4 {
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .heroSection .content .right h3 {
    background: #ddb345;
    color: #101010;
    text-transform: uppercase;
    font-size: 20px;
    padding: 10px 30px;
    border-radius: 50px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .heroSection .content .right h1 {
    font-size: 40px;
    color: #fff;
  }
  .heroSection .slide_dots {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60px;
    margin-bottom: 20px;
  }
  .heroSection .slide_dots a {
    display: block;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 10px;
    height: 10px;
  }
  .heroSection .slide_dots a.active {
    background: #0099ff;
    border: none;
  }
}


.backToTop{
  position: fixed;
  bottom:30px;
  right: 50px;
  background: #101010;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  font-size: 20px;
  text-decoration: none !important;
  color: #F09819 !important;
  display: none;
}