@charset "UTF-8";
body {
  font-family: "Lato", sans-serif;
}

* {
  padding: 0;
  margin: 0;
}

img {
  width: 100%;
}

@font-face {
  font-family: "futura";
  src: url("../fonts/Futura-Bold-font.woff2") format("woff2"), url("../fonts/Futura-Bold-font.woff") format("woff");
  font-weight: 700;
}

.btn {
  width: 228px;
  height: 53px;
  background: #000;
  border-radius: 5px;
  font-size: 21px;
  line-height: 25px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  font-family: "Lato", sans-serif;
  border: none;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

h1 {
  font-weight: 700;
  color: #343333;
  font-size: 48px;
  line-height: 65px;
}

@media (max-width: 1260px) {
  h1 {
    font-size: 40px;
    line-height: 57px;
  }
}

@media (max-width: 1199px) {
  h1 {
    font-size: 35px;
    line-height: 50px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 24px;
    line-height: 31px;
  }
}

.p-text {
  text-align: center;
  color: #343333;
  font-size: 24px;
  line-height: 35px;
}

@media (max-width: 1199px) {
  .p-text {
    font-size: 22px;
    line-height: 38px;
  }
}

@media (max-width: 575px) {
  .p-text {
    font-size: 18px;
    line-height: 22px;
  }
}

h2 {
  font-weight: 700;
  text-align: center;
  color: #343333;
  font-size: 36px;
  line-height: 46px;
}

@media (max-width: 1260px) {
  h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 24px;
    line-height: 35px;
  }
}

header {
  width: auto;
  height: 81px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 94px 0 27px;
  background: #019ea2;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9999;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 1199px) {
  header {
    padding: 0 27px;
  }
}

@media (max-width: 767px) {
  header {
    height: 75px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 27px 0;
    position: unset;
  }
}

header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .logo span {
  display: inline-block;
}

header .logo span.logo-txt {
  max-width: 207px;
  font-size: 21px;
  line-height: 27px;
  font-weight: 700;
  font-family: "futura";
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  margin-left: 23px;
}

@media (max-width: 991px) {
  header .logo span.logo-txt {
    max-width: 185px;
  }
}

@media (max-width: 767px) {
  header .logo span.logo-txt {
    font-size: 14px;
    line-height: 18px;
  }
}

header .head-text {
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 5px;
  color: #fff;
  font-family: "futura";
  padding: 0 30px;
}

@media (max-width: 767px) {
  header .head-text {
    display: none;
  }
}

@media (max-width: 991px) {
  header .btn {
    width: 170px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  header .btn {
    display: none;
  }
}
header .btn{
	background: #E74B16;
}
header .btn:hover {
  background: #000;
}

header.hide {
  top: -82px;
}

@media (max-width: 767px) {
  header.hide {
    top: -96px;
  }
}

section.banner {
  height: 100%;
  position: relative;
}

section.banner .banner-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  min-height: 689px;
}

@media (max-width: 1366px) {
  section.banner .banner-in {
    min-height: unset;
  }
}

@media (max-width: 991px) {
  section.banner .banner-in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

section.banner .banner-in > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

section.banner .banner-in .banner-image {
  height: auto;
  min-width: 733px;
}

@media (max-width: 1439px) {
  section.banner .banner-in .banner-image {
    min-width: unset;
  }
}

@media (max-width: 1199px) {
  section.banner .banner-in .banner-image {
    height: auto;
  }
}

section.banner .banner-in .banner-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991px) {
  section.banner .banner-in .banner-image img {
    max-height: 340px;
  }
}

section.banner .banner-cnt .content-inner {
  padding: 90px 98px 56px 103px;
}

@media (max-width: 1440px) {
  section.banner .banner-cnt .content-inner {
    padding: 76px 0 77px 63px;
  }
}

@media (max-width: 1439px) {
  section.banner .banner-cnt .content-inner {
    padding: 76px 0 0 63px;
  }
}

@media (max-width: 1366px) {
  section.banner .banner-cnt .content-inner {
    padding: 50px 0 0 63px;
  }
}

@media (max-width: 1280px) {
  section.banner .banner-cnt .content-inner {
    padding: 25px 0 0 63px;
  }
}

@media (max-width: 1199px) {
  section.banner .banner-cnt .content-inner {
    padding: 30px 31px 30px 45px;
  }
}

@media (max-width: 991px) {
  section.banner .banner-cnt .content-inner {
    text-align: center;
  }
}

@media (max-width: 767px) {
  section.banner .banner-cnt .content-inner {
    padding: 20px 45px 37px 38px;
  }
}

@media (max-width: 575px) {
  section.banner .banner-cnt .content-inner {
    padding: 20px 0 37px 0;
  }
}

section.banner .banner-cnt .content-inner h1 {
  max-width: 456px;
  line-height: 65px;
}

@media (max-width: 1365px) {
  section.banner .banner-cnt .content-inner h1 {
    max-width: unset;
  }
}

@media (max-width: 575px) {
  section.banner .banner-cnt .content-inner h1 {
    max-width: 239px;
    margin: 0 auto;
    line-height: 31px;
  }
}

section.banner .banner-cnt .content-inner p.p-text {
  margin-top: 28px;
  text-align: left;
  max-width: 456px;
}

@media (max-width: 1199px) {
  section.banner .banner-cnt .content-inner p.p-text {
    max-width: unset;
  }
}

@media (max-width: 991px) {
  section.banner .banner-cnt .content-inner p.p-text {
    text-align: center;
  }
}

@media (max-width: 575px) {
  section.banner .banner-cnt .content-inner p.p-text {
    max-width: 277px;
    margin: 15px auto 0 auto;
    line-height: 21px;
  }
}

section.banner .banner-cnt .content-inner .btn {
  margin-top: 57px;
  background: #e74b16;
}

@media (max-width: 575px) {
  section.banner .banner-cnt .content-inner .btn {
    margin-top: 25px;
    -webkit-transition: none;
    transition: none;
  }
}

section.banner .banner-cnt .content-inner .btn:hover {
  background: #019ea2;
}

@media (max-width: 575px) {
  section.banner .banner-cnt .content-inner .btn:hover {
    background: #e74b16;
  }
}

section.banner .banner-cnt .content-inner .banner-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 45px;
  max-width: 516px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 1199px) {
  section.banner .banner-cnt .content-inner .banner-logo {
    max-width: unset;
  }
}

@media (max-width: 991px) {
  section.banner .banner-cnt .content-inner .banner-logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 575px) {
  section.banner .banner-cnt .content-inner .banner-logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 575px) {
  section.banner .banner-cnt .content-inner .banner-logo {
    margin-top: 24px;
  }
}

section.banner .banner-cnt .content-inner .banner-logo .logo-icon {
  width: 160px;
  height: 55px;
  background: #ffffff;
  border: 1px solid #cacaca;
  /*-webkit-box-shadow: 2px 2px 5px 2px rgba(39, 40, 42, 0.25);
          box-shadow: 2px 2px 5px 2px rgba(39, 40, 42, 0.25);*/
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: all .5s ease-in-out;
  
}
section.banner .banner-cnt .content-inner .banner-logo .logo-icon:first-of-type span img {
/*width:84%;*/
}
/*section.banner .banner-cnt .content-inner .banner-logo .logo-icon span {
    transition: all .5s ease-in-out;
}
*/
section.banner .banner-cnt .content-inner .banner-logo .logo-icon:hover {
   /*outline: 1px solid #626060;*/
   -webkit-box-shadow: 2px 2px 5px 2px rgba(39, 40, 42, 0.25);
          box-shadow: 2px 2px 5px 2px rgba(39, 40, 42, 0.25);
}


@media (max-width: 1199px) {
  section.banner .banner-cnt .content-inner .banner-logo .logo-icon {
    width: 138px;
  }
}

@media (max-width: 1024px) {
  section.banner .banner-cnt .content-inner .banner-logo .logo-icon {
    width: 204px;
  }
}

section.banner .banner-cnt .content-inner .banner-logo .logo-icon:first-child span {
 /* padding: 13px 24px 5px 24px;*/
 padding: 13px 24px 5px 24px; }

section.banner .banner-cnt .content-inner .banner-logo .logo-icon:nth-child(2n) span {
  /*padding: 5px 18px 13px 18px;*/
  padding: 5px 25px 13px 25px;
}

section.banner .banner-cnt .content-inner .banner-logo .logo-icon:nth-child(3n) span {
  padding: 13px 25px 9px 25px;
  
}

section.banner .banner-cnt .content-inner .banner-logo .logo-icon:nth-child(4n) span {
  /*padding: 17px 13px;*/
   padding: 15px 25px;
   
}

section.banner .banner-cnt .content-inner .banner-logo .logo-icon:nth-child(5n) span {
  /*padding: 12px 7px 8px 10px;*/
  padding: 12px 22px 8px 26px;
}

section.banner .banner-cnt .content-inner .banner-logo .logo-icon:last-child span {
  /*padding: 11px 19px 10px 19px;*/
  padding: 11px 23px 10px 23px;
}
section.banner .read-more{
		position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        background: #000;
        width: 47px;
        height: 47px;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 50%;
        bottom: 22px;
        text-align: center;
        overflow: hidden;
        cursor: pointer;
}
@media(max-width:991px){
	section.banner .read-more{
    	display:none;
    }
}
section.banner .read-more .more-text{
	      color: #fff;
            font-size: 14px;
            font-weight: 700;
            margin-top: 26px;
            display: block;
}
section.banner .read-more .more-arrow{
	    display: block;  
            height: 46px;
            overflow: hidden;
}	
section.banner .read-more .more-arrow .d-arrow {
	     		display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
}
section.banner .read-more .more-arrow span.top {
             margin-top: -100%;
                animation: arrowAnimation1 infinite 2.5s ease-in-out;
}
section.banner .read-more .more-arrow span.bottom {
             /*margin-top: 110%;  */    margin-top: 70%;        
}
section.video .video-box {
  height: 100%;
  max-height: 828px;
  cursor:pointer;
}

section.video .video-box video {
  max-height: 828px;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonials .testi-inner {
  padding: 99px 0 94px 0;
}

@media (max-width: 767px) {
  .testimonials .testi-inner {
    padding: 60px 30px 74px 49px;
  }
}

.testimonials .testi-inner .testimonial-text {
  max-width: 871px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 991px) {
  .testimonials .testi-inner .testimonial-text {
    max-width: unset;
    padding: 0 50px;
  }
}

@media (max-width: 575px) {
  .testimonials .testi-inner .testimonial-text {
    max-width: 281px;
    padding: 0 0;
  }
}
.first-testi .testi-inner .testimonial-text{
	max-width:705px;
    margin:0 auto 0 auto;
    text-align:center;
}
@media (max-width: 1200px) {
	.first-testi .testi-inner .testimonial-text{
    	max-width:705;																padding:0 69px;																	
    }
}
@media (max-width: 767px) {
	.first-testi .testi-inner .testimonial-text{
    	padding:0;
        max-width:705px;
    }
}
@media (max-width: 575px) {
	.first-testi .testi-inner .testimonial-text p.p-text {
    	margin:0 auto;    
        display:block;       
    }
    .first-testi .testi-inner .testimonial-text p.p-text:nth-child(2n){
    	display:block;
        margin:20px auto;        
    }
}

.testimonials .testi-inner .testimonial-text p.p-text {
  color: #272424;
  position: relative;
  line-height: 45px;
  font-size:22px;
  text-align:center;
}

@media (max-width: 767px) {
  .testimonials .testi-inner .testimonial-text p.p-text {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .testimonials .testi-inner .testimonial-text p.p-text {
    line-height: 26px;
    text-align:left;
  }
}

.testimonials .testi-inner .testimonial-text p.p-text::before {
  content: "“";
  position: absolute;
  display: inline-block;
  font-size: 84px;
  color: #e74b16;
  left: -40px;
  top: -11px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  line-height: 64px;
}

.testimonials .testi-inner .testimonial-text p.p-text::after {
  content: "“";
  position: absolute;
  display: inline-block;
  font-size: 84px;
  color: #e74b16;
  right: -40px;
  bottom: 9px;
  font-family: "Lato", sans-serif;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  font-weight: 700;
}

.testimonials .testi-inner .testimonials-profile {
  text-align: left;
  margin: 40px auto 0 auto;
  max-width:871px;
}
@media(max-width:991px){
	.testimonials .testi-inner .testimonials-profile{
		max-width:unset;
    	padding:0 50px;
	}

   }
   @media(max-width:575px){
	.testimonials .testi-inner .testimonials-profile{
		max-width:281px;
    	padding:0;
	}

   }
.first-testi .testi-inner .testimonials-profile{
	margin: 40px auto 0 auto;
    text-align:center;
    
}
@media(max-width:1200px){
	.first-testi .testi-inner .testimonials-profile{
		margin: 40px auto 0 auto;    
	}
}
@media(max-width:767px){
	.first-testi .testi-inner .testimonials-profile{
		margin: 40px auto 0 0;    
        padding:0;
	}
}
@media(max-width:575px){
	.first-testi .testi-inner .testimonials-profile{
		margin: 40px auto 0 auto;    
        padding:0;
	}
}

.testimonials .testi-inner .testimonials-profile .profile-icon {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.testimonials .testi-inner .testimonials-profile .profile-name {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #5ca9b4;
  margin-top: 10px;
}

@media (max-width: 575px) {
  .testimonials .testi-inner .testimonials-profile .profile-name {
    font-size: 24px;
    margin-top: 25px;
  }
}

.testimonials .testi-inner .testimonials-profile .profile-desi {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #272424;
  margin-top: 10px;
}

@media (max-width: 575px) {
  .testimonials .testi-inner .testimonials-profile .profile-desi > span {
    display: none;
  }
}

@media (max-width: 575px) {
  .testimonials .testi-inner .testimonials-profile .profile-desi {
    max-width: 281px;
    margin: 20px auto 0 auto;
  }
}

.first-testi .testi-inner .testimonial-text .p-text {
  display: inline;
  color: #272424;
}
.first-testi .testi-inner{
	max-width:1135px;
    margin:0 auto;
}
.first-testi .testi-inner .testimonial-text{
margin:0 auto 0 aito;
text-align:center;
}
.first-testi .testi-inner .testimonial-text .p-text:nth-child(2n){
	margin:15px 0;
    display:inline-block;
}

@media (max-width: 575px) {
  .first-testi .testi-inner .testimonial-text .p-text {
    max-width: 281px;
    margin: 0 auto;
  }
}

.first-testi .testi-inner .testimonial-text .p-text:first-of-type::before {
  left: -55px;
  top: -18px;
}

.first-testi .testi-inner .testimonial-text .p-text:first-of-type::after {
  content: none;
}

.first-testi .testi-inner .testimonial-text .p-text:nth-child(2n)::before {
  content: none;
}

.first-testi .testi-inner .testimonial-text .p-text:nth-child(2n)::after {
  content: none;
}

@media (max-width: 575px) {
  .first-testi .testi-inner .testimonial-text .p-text:nth-child(2n) {
    margin: 20px 0;
  }
}

.first-testi .testi-inner .testimonial-text .p-text:last-of-type::before {
  content: none;
}

.first-testi .testi-inner .testimonial-text .p-text:last-of-type::after {
  right: -67px;
  bottom: 0;
}

@media (max-width: 575px) {
  .first-testi .testi-inner .testimonial-text .p-text:last-of-type::after {
    right: 20px;
  }
}

@media (max-width: 575px) {
  .first-testi .testi-inner .testimonial-text .p-text {
    display: inline-block;
  }
}

.cynical {
  background: url("../imgaes/bg.jpg");
}

.cynical .cynical-inner {
  padding: 77px 0 65px 0;
}

@media (max-width: 767px) {
  .cynical .cynical-inner {
    padding: 58px 45px 59px 50px;
  }
}

@media (max-width: 575px) {
  .cynical .cynical-inner {
    padding: 58px 0 59px 0;
  }
}

@media (max-width: 575px) {
  .cynical .cynical-inner h2 {
    max-width: 266px;
    margin: 0 auto;
  }
}

.cynical .cynical-inner .p-text {
  max-width: 655px;
  display: block;
  margin: 15px auto 0 auto;
  text-align: center;
  color: #343333;
}

@media (max-width: 767px) {
  .cynical .cynical-inner .p-text {
    max-width: unset;
  }
}

@media (max-width: 575px) {
  .cynical .cynical-inner .p-text {
    max-width: 236px;
  }
}

.cynical .cynical-inner .info-graphics {
  max-width: 950px;
  margin: 28px auto 84px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1024px) {
  .cynical .cynical-inner .info-graphics {
    max-width: unset;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .cynical .cynical-inner .info-graphics {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 575px) {
  .cynical .cynical-inner .info-graphics {
    margin: 34px 0 59px 0;
  }
}

.cynical .cynical-inner .info-graphics .info-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cynical .cynical-inner .info-graphics .info-image:first-of-type, .cynical .cynical-inner .info-graphics .info-image:nth-child(3n) {
  margin-top: 50px;
}

@media (max-width: 991px) {
  .cynical .cynical-inner .info-graphics .info-image:first-of-type, .cynical .cynical-inner .info-graphics .info-image:nth-child(3n) {
    margin-top: 0;
  }
}

.cynical .cynical-inner .info-graphics .info-image .info-arrow:nth-child(2n) svg {
  margin-top: -7px;
}

@media (min-width: 992px) {
  .cynical .cynical-inner .info-graphics .info-image .info-arrow-desk {
    display: block;
  }
  .cynical .cynical-inner .info-graphics .info-image .info-arrow-mob {
    display: none;
  }
}

@media (max-width: 991px) {
  .cynical .cynical-inner .info-graphics .info-image .info-arrow-desk {
    display: none;
  }
  .cynical .cynical-inner .info-graphics .info-image .info-arrow-mob {
    display: block;
  }
  .cynical .cynical-inner .info-graphics .info-image:nth-child(4n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .cynical .cynical-inner .info-graphics .info-image:last-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.cynical .cynical-inner .info-graphics .info-image .infor-image1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1024px) {
  .cynical .cynical-inner .info-graphics .info-image .infor-image1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cynical .cynical-inner .info-graphics .info-image .infor-image1:first-child {
  margin-bottom: 77px;
}

@media (max-width: 991px) {
  .cynical .cynical-inner .info-graphics .info-image .infor-image1:first-child {
    margin-bottom: 0;
    margin-left: 77px;
  }
}

.cynical .cynical-inner .info-graphics .info-image .infor-image1 .info-text {
  margin-left: 28px;
  margin-top: 0;
}

@media (max-width: 1024px) {
  .cynical .cynical-inner .info-graphics .info-image .infor-image1 .info-text {
    margin-left: 0;
    margin-top: 15px;
  }
}

.cynical .cynical-inner .info-graphics .info-image .info-arrow {
  margin: 0 20px;
}

@media (max-width: 991px) {
  .cynical .cynical-inner .info-graphics .info-image .info-arrow {
    margin: 0;
  }
}

.cynical .cynical-inner .info-graphics .info-image .info-text {
  text-align: center;
  margin-top: 27px;
  font-size: 21px;
  font-weight: 800;
  color: #545454;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .cynical .cynical-inner .info-graphics .info-image .info-text {
    margin-top: 15px;
  }
}

@media (max-width: 991px) {
  .cynical .cynical-inner .info-graphics .info-image .info-text {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .cynical .cynical-inner .info-graphics .info-image:nth-child(2n) {
    margin: 15px 0;
  }
}

@media (max-width: 991px) {
  .cynical .cynical-inner .info-graphics .info-image:nth-child(4n) {
    margin: 11px 0 16px 0;
  }
}

.cynical .cynical-inner .info-graphics .info-image:nth-child(4n) .info-arrow-mob:last-child {
  margin-left: -4px;
}

.cynical .cynical-inner .btn {
  margin: 0 auto;
  display: block;
  background: #e74b16;
}

@media (max-width: 575px) {
  .cynical .cynical-inner .btn {
    -webkit-transition: none;
    transition: none;
  }
}

.cynical .cynical-inner .btn:hover {
  background: #000;
}

@media (max-width: 575px) {
  .cynical .cynical-inner .btn:hover {
    background: #e74b16;
  }
}

.book-audio {
  background: #daf1f1;
}

.book-audio .audio-inner {
  padding: 76px 0 90px 0;
}

@media (max-width: 575px) {
  .book-audio .audio-inner {
    padding: 50px 0 38px 0;
  }
}
.book-audio .audio-inner .sub-title{
	font-weight:700;
    font-size:24px;
    line-height:65px;
    display:block;
    text-align:center;
    margin:81px 0 20px 0;
    text-transform:uppercase;
}
@media(max-width:575px){
	.book-audio .audio-inner .sub-title{
    	font-size:14px;
        margin:45px 0 11px 0;
        line-height:15px;
    }
}
@media(max-width:991px){
	.book-audio .audio-inner .audio-player1{
   		padding:0 10px;
    }
}
.book-audio .audio-inner .audio-player {
  max-width: 789px;
  margin: 20px auto 30px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
          background: #F9F9F8;
          border-radius: 20px;
          padding:50px 43px 46px 29px;
}

@media (max-width: 575px) {
  .book-audio .audio-inner .audio-player {
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            padding:10px 15px 15px 15px;
  }
}
.book-audio .audio-inner .audio-player > div{
	
}
.book-audio .audio-inner .audio-player .play-container{
    vertical-align:top;
    display:inline-block;
}
.book-audio .audio-inner .audio-player .audio-details{
	display:inline-block;
    width:90%
}
@media(max-width:767px){
.book-audio .audio-inner .audio-player .audio-details{
	width:85%;
    margin:0 auto;  
}
}
@media(max-width:575px){
.book-audio .audio-inner .audio-player .audio-details{
	width:calc(100% - 91px);
    margin:0 auto;  
}
}
.book-audio .audio-inner .audio-player .controls .audio-name{
	font-size:24px;
    font-weight:400;
}
@media(max-width:767px){
.book-audio .audio-inner .audio-player .controls .audio-name{
	 font-size: 16px;
    margin-top: 2px;
    font-weight:700;
}
.book-audio .audio-inner .audio-player .controls .audio-name.mobile{
	display:block !important;   
    font-size: 16px;
    margin-top: 2px;
    font-weight:700;
}
}
@media(max-width:575px){
.book-audio .audio-inner .audio-player .controls .audio-name{
	font-size:14px;
}
.book-audio .audio-inner .audio-player .controls .time.audio-time{
	font-size:14px;
}
}
.book-audio .audio-inner .audio-player .controls .audio-title-mob{
    font-size:16px;
    font-weight:700;
    color:#000;
}
@media(max-width:575px){
.book-audio .audio-inner .audio-player .controls .audio-title-mob{
	font-size:14px;
}

}
@media(min-width:768px){
.book-audio .audio-inner .audio-player .controls .audio-title-mob{
	display:none;

}
.book-audio .audio-inner .audio-player .controls .audio-name.mobile{
	display:none;   
}
}
.book-audio .audio-inner .border{
	max-width:1306px;
    height:1px;
    margin:71px auto 50px auto;
    background:#5CA9B4;
    display:block;
}
@media(max-width:767px){
.book-audio .audio-inner .border{
	display:none;
}
	
}
.book-audio .audio-inner .book-title{
	display:block;
    text-transform:uppercase;
    font-size:24px;
    line-height:65px;
    text-align:center;
    margin-bottom:20px;
    font-weight:700;
}
@media(max-width:767px){
    .book-audio .audio-inner .book-title{
	margin-top:76px;
     margin-bottom:0;
    }
}
@media(max-width:575px){
    .book-audio .audio-inner .book-title{
       font-size:14px;
       line-height:15px;
       
    }
}
.book-audio .audio-inner .audio-player button.play {
  border: none;
  width: 64px;
  height: 64px;
  background: #1a888c;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.book-audio .audio-inner .audio-player button.play .pause-icon {
  position: relative;
  width: 15px;
  height: 25px;
}

.book-audio .audio-inner .audio-player button.play .pause-icon::before {
  width: 5px;
  height: 25px;
  display: inline-block;
  position: absolute;
  content: "";
  background-color: #daf1f1;
  border-radius: 20px;
  left: 0;
}

.book-audio .audio-inner .audio-player button.play .pause-icon::after {
  width: 5px;
  height: 25px;
  display: inline-block;
  position: absolute;
  content: "";
  background-color: #daf1f1;
  border-radius: 20px;
  right: 0;
}

.book-audio .audio-inner .audio-player .audio-track {
  width: 100%;
  height: 12px;
  border-radius: 10px;
  position: relative;
  background: #d7d7d7;
  overflow: hidden;
  margin-left: 15px;
  margin-top: 12px;
}

@media (max-width: 575px) {
  .book-audio .audio-inner .audio-player .audio-track {
   
    margin-top: 12px;
    height:7px;
    
  }
}

.book-audio .audio-inner .audio-player .audio-track::after {
  position: absolute;
  width: 5%;
  background: #1a888c;
  height: 100%;
  content: "";
  display: inline-block;
}

.book-audio .audio-inner .audio-player .audio-time-in {
  font-size: 16px;
  line-height: 17px;
  color: #000;
  margin-top: 8px;
  margin-left: 15px;
}
@media(max-width:767px){
 .book-audio .audio-inner .audio-player .audio-time-in{
 	font-weight:700;
 }
}
@media (max-width: 575px) {
  .book-audio .audio-inner .audio-player .audio-time-in {
    text-align: center;
  }
  .book-audio .audio-inner .audio-player .audio-time-in:first-of-type{
  	margin-top:0;
  }
}

.book-audio .audio-inner h2 {
  color: #000;
  font-weight:700;
}

@media (max-width: 575px) {
  .book-audio .audio-inner h2 {
    max-width: 300px;
    margin: 0 auto;
  }
  .book-audio .audio-inner h2 span{
  		letter-spacing: 1px;
  }
    .book-audio .audio-inner h2 i{
  		font-weight:600;
  }
}

.book-audio .audio-inner .btn {
  width: 361px;
  background: #e74b16;
  display: block;
  margin: 37px auto 0 auto;
}

@media (max-width: 575px) {
  .book-audio .audio-inner .btn {
    width: 317px;
    margin: 27px auto 0 auto;
    -webkit-transition: none;
    transition: none;
  }
}

.book-audio .audio-inner .btn:hover {
  background: #000;
}

@media (max-width: 575px) {
  .book-audio .audio-inner .btn:hover {
    background: #e74b16;
  }
}

.book-audio .audio-inner .content .df-ui-wrapper.df-ui-controls {
  display: none !important;
}

.author .author-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 991px) {
  .author .author-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.author .author-inner .author-img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.author .author-inner .author-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.author .author-inner .author-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #4d4d4d;
}

@media (max-width: 991px) {
  .author .author-inner .author-content {
    margin-top: -4px;
  }
}

.author .author-inner .author-content .author-content-in {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 148px 0 119px;
}

@media (max-width: 1365px) {
  .author .author-inner .author-content .author-content-in {
    padding: 0 74px 0 59px;
  }
}

@media (max-width: 1199px) {
  .author .author-inner .author-content .author-content-in {
    padding: 60px 74px 60px 59px;
    height: auto;
  }
}

@media (max-width: 991px) {
  .author .author-inner .author-content .author-content-in {
    padding: 22px 38px 50px 45px;
  }
}

@media (max-width: 575px) {
  .author .author-inner .author-content .author-content-in {
    padding: 22px 0 50px 0;
  }
}

.author .author-inner .author-content .author-content-in .author-title {
  font-size: 18px;
  font-weight: 700;
  display: block;
  color: #fff;
}

@media (max-width: 575px) {
  .author .author-inner .author-content .author-content-in .author-title {
    min-width: 277px;
    margin: 0 auto;
  }
}

.author .author-inner .author-content .author-content-in h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 65px;
  margin-top: 15px;
  text-align: left;
  max-width: 296px;
}

@media (max-width: 1260px) {
  .author .author-inner .author-content .author-content-in h2 {
    font-size: 40px;
    line-height: 57px;
  }
}

@media (max-width: 1199px) {
  .author .author-inner .author-content .author-content-in h2 {
    font-size: 35px;
    line-height: 50px;
    max-width: unset;
  }
}

@media (max-width: 575px) {
  .author .author-inner .author-content .author-content-in h2 {
    max-width: 277px;
    margin: 15px auto 0 auto;
  }
}

.author .author-inner .author-content .author-content-in .p-text {
  color: #fff;
  margin-top: 20px;
  text-align: left;
  max-width: 456px;
  font-weight: 400;
}
.author .author-inner .author-content .author-content-in .p-text:first-of-type{
margin-top: 35px;
}
@media (max-width: 991px) {
  .author .author-inner .author-content .author-content-in .p-text {
    max-width: unset;
  }
}

@media (max-width: 575px) {
  .author .author-inner .author-content .author-content-in .p-text {
    line-height: 35px;
    max-width: 277px;
    margin: 35px auto 0 auto;
  }
}

section.second-testi .testi-inner .testimonial-text {
  max-width: 780px;
  text-align:center;
}
section.second-testi .testi-inner .testimonials-profile{
	max-width:780px;
    text-align:center;
}

@media (max-width: 1200px) {
  section.second-testi .testi-inner .testimonial-text {
    max-width: 838px;
    padding: 0 100px;
  }
  section.second-testi .testi-inner .testimonials-profile{
	max-width:838px;
    padding: 0 100px;
	}
}

@media (max-width: 767px) {
  section.second-testi .testi-inner .testimonial-text {
    padding: 0;
  }
    section.second-testi .testi-inner .testimonials-profile{
	max-width:unset;
    padding: 0;
	}
}
@media (max-width:575px){
	section.second-testi .testi-inner .testimonials-profile{
    	max-width:280px;
        
    }
}

section.second-testi .testi-inner .testimonial-text p.p-text {
  display: inline-block;
  line-height: 45px;
}
section.second-testi .testi-inner .testimonial-text p.p-text:nth-of-type(2n){
	display:inline-block;
	margin-top:0;
    width:100%;
}
section.second-testi .testi-inner .testimonial-text p.p-text:nth-of-type(2n)::before,
section.second-testi .testi-inner .testimonial-text p.p-text:nth-of-type(2n)::after{
content:none;
}
section.second-testi .testi-inner .testimonial-text p.p-text:first-of-type::after,
section.second-testi .testi-inner .testimonial-text p.p-text:last-of-type::before
{
	content:none;
}

@media (max-width: 575px) {
  section.second-testi .testi-inner .testimonial-text p.p-text {
    max-width: 280px;
    margin: 0 auto;
    line-height: 26px;
    display: block;
  }
}

section.second-testi .testi-inner .testimonial-text p.p-text::before {
  left: -50px;
}

section.second-testi .testi-inner .testimonial-text p.p-text::after {
  bottom: 13px;
  right:40px;
}

@media (max-width: 575px) {
  section.second-testi .testi-inner .testimonial-text p.p-text::after {
    right: 0px;
  }
}

@media (max-width: 575px) {
  section.second-testi .testi-inner .testimonials-profile .profile-desi {
    max-width: 189px;
    margin: 22px auto 0 auto;
  }
}
.profile-gallery .gallery-header{
  width: 100%;
  height: 100px;
  background: #1cb0b6;
  text-align: center;
  line-height: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
}
@media(max-width:575px){
  .profile-gallery .gallery-header{
    display: none;
  }
}
.profile-gallery .gallery-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.profile-gallery .gallery-in .gallery-img {
  -webkit-box-flex: 25%;
      -ms-flex: 25%;
          flex: 25%;
  position: relative;
}

@media (max-width: 1440px) {
  .profile-gallery .gallery-in .gallery-img {
    min-width: auto;
    -webkit-box-flex: 25%;
        -ms-flex: 25%;
            flex: 25%;
    max-width: unset;
  }
}

@media (max-width: 991px) {
  .profile-gallery .gallery-in .gallery-img {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 50%;
  }
}

@media (max-width: 575px) {
  .profile-gallery .gallery-in .gallery-img {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: unset;
  }
  .profile-gallery .gallery-in .gallery-img:nth-child(2n) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .profile-gallery .gallery-in .gallery-img:nth-child(2n) .gallery-inner .names-main .profile-acheve {
    display: none;
  }
  .profile-gallery .gallery-in .gallery-img:nth-child(3n) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .profile-gallery .gallery-in .gallery-img:nth-child(5n) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .profile-gallery .gallery-in .gallery-img:nth-child(7n) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media (min-width: 576px) {
  .profile-gallery .gallery-in .gallery-img:nth-child(3n) .gallery-inner .names-main .profile-acheve {
    display: none;
  }
}

.profile-gallery .gallery-in .gallery-img .gallery-inner {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
  width: 100%;
  height: 100%;
  min-height: 558px;
}

@media (max-width: 1440px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner {
    min-height: auto;
  }
}

.profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-img,
.profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
}

.profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-img {
  -webkit-transform: translateZ(-1px);
          transform: translateZ(-1px);
  position: relative;
}

.profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-img .names-main {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-img .names-main .profile-acheve {
  position: absolute;
  top: 20px;
  width: 100%;
  text-align: center;
  font-size: 28px;
  line-height: 35px;
  letter-spacing: 2px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

@media (max-width: 1366px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-img .names-main .profile-acheve {
    font-size: 28px;
  }
}
@media (max-width: 1260px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-img .names-main .profile-acheve {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-img .names-main .profile-acheve {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-img .names-main .profile-acheve {
    font-size: 20px;
  }
}

.profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-img .names-main .pro-names {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 28px;
  line-height: 35px;
  letter-spacing: 2px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

@media (max-width: 1366px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-img .names-main .pro-names {
    font-size: 28px;
  }
}
@media (max-width: 1260px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-img .names-main .pro-names {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-img .names-main .pro-names {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-img .names-main .pro-names {
    font-size: 20px;
  }
}

.profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  background: #daf1f1;
}

.profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt .pro-cnt-in {
  padding: 33px 42px;
}

@media (max-width: 1260px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt .pro-cnt-in {
    padding: 20px 25px;
  }
}
@media (max-width: 992px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt .pro-cnt-in {
    padding: 24px 30px;
  }
}

.profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt .pro-cnt-in .p-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #272424;
  text-align: left;
}

@media (max-width: 1366px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt .pro-cnt-in .p-text {
    line-height: 20px;
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt .pro-cnt-in .p-text {
    line-height: 20px;
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt .pro-cnt-in .p-text {
    line-height: 20px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt .pro-cnt-in .p-text {
    line-height: 28px;
    font-size: 17px;
  }
}

.profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt .pro-cnt-in .galery-name {
  display: block;
  margin-top: 15px;
  font-weight: 700;
  font-size: 16px;
  color: #e74b16;
}

@media (max-width: 1366px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt .pro-cnt-in .galery-name {
    margin-top: 10px;
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt .pro-cnt-in .galery-name {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt .pro-cnt-in .galery-name {
    line-height: 24px;
    font-size: 16px;
    margin-top: 10px;
  }
}

.profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt .pro-cnt-in .galery-desi {
  display: block;
  margin-top: 17px;
  font-size: 16px;
}

@media (max-width: 1366px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt .pro-cnt-in .galery-desi {
    margin-top: 10px;
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt .pro-cnt-in .galery-desi {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 992px) {
  .profile-gallery .gallery-in .gallery-img .gallery-inner .glry-pro-cnt .pro-cnt-in .galery-desi {
    line-height: 20px;
    font-size: 16px;
    margin-top: 10px;
  }
}

.profile-gallery .gallery-in .gallery-img:hover .gallery-inner {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

@media (max-width: 576px) {
  .profile-gallery .gallery-in .mob-none {
    display: none;
  }
}

.info-graphics {
  background: url("../imgaes/bg.jpg");
}

.info-graphics .info-graphics-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 991px) {
  .info-graphics .info-graphics-in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.info-graphics .info-graphics-in .graphic-img,
.info-graphics .info-graphics-in .graphic-cnt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.info-graphics .info-graphics-in .graphic-img {
  min-height: 612px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .info-graphics .info-graphics-in .graphic-img {
    display: none;
  }
}

.info-graphics .info-graphics-in .graphic-img img {
  width: auto;
}

@media (max-width: 1024px) {
  .info-graphics .info-graphics-in .graphic-img img {
    width: 100%;
  }
}

.info-graphics .info-graphics-in .graphic-cnt {
  background: rgba(1, 158, 162, 0.6);
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .info-graphics .info-graphics-in .graphic-cnt {
    background: #019ea2;
  }
}

.info-graphics .info-graphics-in .graphic-cnt .graphic-cnt-in {
  padding: 0 215px 0 187px;
}

@media (max-width: 1550px) {
  .info-graphics .info-graphics-in .graphic-cnt .graphic-cnt-in {
    padding: 0 215px 0 127px;
  }
}

@media (max-width: 1440px) {
  .info-graphics .info-graphics-in .graphic-cnt .graphic-cnt-in {
    padding: 0 150px 0 127px;
  }
}

@media (max-width: 1366px) {
  .info-graphics .info-graphics-in .graphic-cnt .graphic-cnt-in {
    padding: 0 120px 0 127px;
  }
}

@media (max-width: 1199px) {
  .info-graphics .info-graphics-in .graphic-cnt .graphic-cnt-in {
    padding: 85px 110px 56px;
  }
}

@media (max-width: 575px) {
  .info-graphics .info-graphics-in .graphic-cnt .graphic-cnt-in {
    padding: 85px 15px 56px 20px;
  }
}

.info-graphics .info-graphics-in .graphic-cnt .graphic-cnt-in h2 {
  color: #fff;
  max-width: 420px;
  text-align: left;
  line-height: 46px;
}

@media (max-width: 1199px) {
  .info-graphics .info-graphics-in .graphic-cnt .graphic-cnt-in h2 {
    max-width: unset;
  }
}

@media (max-width: 767px) {
  .info-graphics .info-graphics-in .graphic-cnt .graphic-cnt-in h2 {
    font-size: 36px;
    font-weight: 700;
  }
}

@media (max-width: 575px) {
  .info-graphics .info-graphics-in .graphic-cnt .graphic-cnt-in h2 {
    max-width: 311px;
    margin: 0 auto;
  }
}

.info-graphics .info-graphics-in .graphic-cnt .graphic-cnt-in .p-text {
  font-size: 24px;
  color: #fff;
  line-height: 46px;
  margin-top: 72px;
  max-width: 420px;
  text-align: left;
}

@media (max-width: 1199px) {
  .info-graphics .info-graphics-in .graphic-cnt .graphic-cnt-in .p-text {
    max-width: unset;
  }
}

@media (max-width: 575px) {
  .info-graphics .info-graphics-in .graphic-cnt .graphic-cnt-in .p-text {
    max-width: 311px;
    margin: 52px auto 0 auto;
  }
}

.info-graphics .info-graphics-in .graphic-cnt .graphic-cnt-in .btn {
  margin-top: 50px;
  background: #e74b16;
}

@media (max-width: 575px) {
  .info-graphics .info-graphics-in .graphic-cnt .graphic-cnt-in .btn {
    display: block;
    margin: 50px auto 0 0;
    width: 293px;
    -webkit-transition: none;
    transition: none;
  }
}

.info-graphics .info-graphics-in .graphic-cnt .graphic-cnt-in .btn:hover {
  background: #000;
}

@media (max-width: 575px) {
  .info-graphics .info-graphics-in .graphic-cnt .graphic-cnt-in .btn:hover {
    background: #e74b16;
  }
}

footer {
  padding: 63px 0 46px 0;
  background: #fff;
}

@media (max-width: 767px) {
  footer {
    padding: 40px 0 40px 0;
  }
}

footer .footer-in h2 {
  color: #343333;
}

@media (max-width: 575px) {
  footer .footer-in h2 {
    line-height: 46px;
    max-width: 315px;
    margin: 0 auto;
  }
}

footer .footer-in .foot-text {
  color: #343333;
  font-size: 24px;
  font-weight: 400;
  line-height: 46px;
  display: block;
  text-align: center;
  margin-top: 33px;
}

@media (max-width: 767px) {
  footer .footer-in .foot-text {
    margin-top: 15px;
  }
}

@media (max-width: 575px) {
  footer .footer-in .foot-text {
    font-size: 18px;
    line-height: 25px;
    max-width: 247px;
    margin: 15px auto 0 auto;
  }
}

footer .footer-in .foot-logos {
  margin-top: 27px;
  max-width: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 85px auto 0 auto;
  flex-wrap:wrap;
  justify-content: center;
}

@media (max-width: 1024px) {
  footer .footer-in .foot-logos {
    max-width: unset;
    padding: 0 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 767px) {
  footer .footer-in .foot-logos {
    margin-top: 36px;
  }
}

@media (max-width: 575px) {
  footer .footer-in .foot-logos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

footer .footer-in .foot-logos .foot-logo-item {
  min-width: 162px;
  height: 55px;
  background: #fff;
  /* -webkit-box-shadow: 2px 2px 5px 2px rgba(39, 40, 42, 0.25);
          box-shadow: 2px 2px 5px 2px rgba(39, 40, 42, 0.25); */
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: all .5s ease-in-out;
  border: 1px solid #cacaca;
}

@media (max-width: 575px) {
  footer .footer-in .foot-logos .foot-logo-item {
    width: 204px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

footer .footer-in .foot-logos .foot-logo-item span img {
  max-width: 114px;
  transition: all .5s ease-in-out;
}
footer .footer-in .foot-logos .foot-logo-item:hover span img{
/*opacity:.7;*/
}
/*footer .footer-in .foot-logos .foot-logo-item span{
    transition: all .5s ease-in-out;
}*/
footer .footer-in .foot-logos .foot-logo-item:hover{
-webkit-box-shadow: 2px 2px 5px 2px #cacaca;
          box-shadow: 2px 2px 5px 2px #cacaca;
        /* outline: 1px solid #E74B16; */
}
footer .footer-in .foot-logos .foot-logo-item:first-child span {
  padding: 13px 24px 5px 24px;
}

footer .footer-in .foot-logos .foot-logo-item:nth-child(2n) span {
  padding: 5px 18px 13px 18px;
}

footer .footer-in .foot-logos .foot-logo-item:nth-child(3n) span {
  padding: 13px 25px 9px 25px;
}

footer .footer-in .foot-logos .foot-logo-item:nth-child(4n) span {
  padding: 17px 13px;
}

footer .footer-in .foot-logos .foot-logo-item:nth-child(5n) span {
  padding: 12px 7px 8px 10px;
}

footer .footer-in .foot-logos .foot-logo-item:last-child span {
  padding: 11px 19px 10px 19px;
}

footer .footer-in .foot-logo {
  max-width: 420px;
  margin: 98px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  footer .footer-in .foot-logo {
    margin-top: 54px;
  }
}

@media (max-width: 575px) {
  footer .footer-in .foot-logo {
    max-width: 210px;
  }
}

footer .footer-in .foot-logo span:last-child {
  margin-left: 23px;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-family: "futura";
}

footer .footer-in .foot-logo .foot-logo-icon {
  max-width: 44px;
}

@media (max-width: 575px) {
  footer .footer-in .foot-logo .foot-logo-icon {
    max-width: 27px;
  }
}

footer .footer-in .foot-logo span.foot-logo-desk {
  display: none;
}

@media (min-width: 576px) {
  footer .footer-in .foot-logo span.foot-logo-desk {
    display: block;
    margin-left: 23px;
  }
}

footer .footer-in .foot-logo span.foot-logo-mob {
  display: none;
}

@media (max-width: 575px) {
  footer .footer-in .foot-logo span.foot-logo-mob {
    display: block;
  }
}
footer .footer-in .footer-logo{
  max-width: 420px;
  display: block;
  margin: 69px auto 0 auto;
}
@media(max-width:575px){
  footer .footer-in .footer-logo{
    padding: 0 20px;
  }
}
.three-in-one .three-in-box .icon .toggle-play.play {
  left: 0 !important;
  border: 15px solid #0000 !important;
  border-left: 25px solid white !important;
  -webkit-transform: translate(25%, 0) !important;
          transform: translate(25%, 0) !important;
}

.three-in-one .three-in-box .icon .toggle-play.pause {
  -webkit-transform: translate(-50%, 0) !important;
          transform: translate(-50%, 0) !important;
  left: 8px;
  top: 3%;
  height: 30px !important;
  width: 16px !important;
}

.three-in-one .three-in-box .icon .toggle-play.pause:hover {
  -webkit-transform: translate(-50%, 0) !important;
          transform: translate(-50%, 0) !important;
  left: 8px;
  top: 3%;
}

.three-in-one .three-in-box .icon .toggle-play.pause::before {
  height: 25px !important;
  width: 5px !important;
  left: 0 !important;
  display: inline-block;
}

.three-in-one .three-in-box .icon .toggle-play.pause::after {
  height: 25px !important;
  width: 5px !important;
  display: inline-block;
  right: 0 !important;
}

@media (max-width: 991px) {
  .df-container.df-floating > .df-ui-prev {
    left: -10px !important;
  }
}

@media (max-width: 575px) {
  .df-container.df-floating > .df-ui-prev {
    font-size: 25px;
    padding: 0 !important;
  }
}

@media (max-width: 991px) {
  .df-container.df-floating > .df-ui-next {
    right: -9px !important;
  }
}

@media (max-width: 575px) {
  .df-container.df-floating > .df-ui-next {
    font-size: 25px;
    padding: 0 !important;
  }
}

@media (max-width: 768px) {
  .content {
    padding: 0 !important;
  }
}

@media (max-width: 575px) {
  .content {
    max-width: 300px !important;
  }
}

@media (max-width: 575px) {
  .df-container.df-floating > .df-ui-next,
  .df-container.df-floating > .df-ui-prev {
    width: 34px !important;
  }
}
/*# sourceMappingURL=styles.css.map */
/* Mobile style */
@media (max-width: 767px) {
section.banner .banner-cnt .content-inner .banner-logo .logo-icon:first-child span {
    padding: 13px 45px 5px 46px;
}
section.banner .banner-cnt .content-inner .banner-logo .logo-icon:nth-child(2n) span {
    padding: 9px 43px 12px 47px;
}
section.banner .banner-cnt .content-inner .banner-logo .logo-icon:nth-child(3n) span {
    padding: 17px 47px 11px 46px;
}
section.banner .banner-cnt .content-inner .banner-logo .logo-icon:nth-child(4n) span {
    padding: 0px 46px;
}
section.banner .banner-cnt .content-inner .banner-logo .logo-icon:nth-child(5n) span {
    padding: 10px 50px 8px 43px;
}
section.banner .banner-cnt .content-inner .banner-logo .logo-icon:last-child span {
    padding: 10px 42px 10px 47px;
}
}
.logo-icon span,.foot-logo-item span{cursor:pointer;}

@keyframes arrowAnimation1 {
   from {margin-top: -100%;}
    to {margin-top: 38%;}
}

/* --- new section for audio */
.three-in-one{
  margin: 83px auto 0 auto;
  display: flex;
  justify-content: center;
  max-width: 1200px;
}
@media(max-width:1200px){
  .three-in-one{
    padding: 0 30px;
  }
}
@media(max-width:768px){
  .three-in-one{
    flex-direction: column;
  }
}
.three-in-one .three-in-box{
  width: 351px;
  max-height: 404px;
  background: #fff;
  border-radius: 20px;
  display: flex;
 flex-direction: column;
  justify-content: space-between;
  align-items:center;
  padding: 36px 0 29px 0;
  cursor: pointer;
  
}
@media(max-width:768px){
  .three-in-one .three-in-box{
    margin: 0 auto;
  }
}
@media(max-width:575px){
  .three-in-one .three-in-box{
    width: 100%;
  }
}
/* .three-in-one .three-in-box.audio-box{
  justify-content: flex-start;
} */
.three-in-one .three-in-box.audio-box .time-count{
  margin-top: 25px;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 17px;
  color: #000;
  font-weight: 400;
}
.three-in-one .three-in-box:nth-child(2n){
  margin: 0 83px;
}
@media(max-width:1200px){
  .three-in-one .three-in-box:nth-child(2n){
    margin: 0 30px;
  }
}
@media(max-width:768px){
  .three-in-one .three-in-box:nth-child(2n){
    margin: 30px auto;
  }
}
.three-in-one .three-in-box .icon{
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  background: #E74B16;
  display: flex;
  align-items: center;
  justify-content: center;
}
.three-in-one .three-in-box .three-in-item{
  margin:39px 0 35px 0;
}
.three-in-one .three-in-box .audio-graph{
  width: 285px;
  height: 48px;
  margin-bottom: 0;
}
@media(max-width:1200px){
  .three-in-one .three-in-box .audio-graph{
    width: 90%;
  }
  .three-in-one .three-in-box .audio-graph wave canvas{
    width: 100% !important;
    left: 50% !important;
    transform: translate(-50%, 0) !important;
  }

}

.three-in-one .three-in-box .three-in-text{
  text-transform: uppercase;
  font-size: 24px;
  line-height: 65px;
  font-weight: 700;
  color: #000;
}
@media(max-width:1200px){
  .three-in-one .three-in-box .three-in-text{
    font-size: 18px;
    text-align: center;
    padding: 0 20px;
    line-height: inherit;
  }
}
@media(max-width:575px){
  .three-in-one .three-in-box .three-in-text{
    font-size: 14px;
  
  }
}