@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Paytone+One&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700;800;900&amp;display=swap");

@font-face {
  font-family: 'Circular Std black';
  src: url("../fonts/circularStd/CircularStd-Black.eot");
  src: url(../fonts/circularStd/CircularStd-Black.ttf) format("truetype"), url(../fonts/circularStd/CircularStd-Black.woff) format("woff"), url(../fonts/circularStd/CircularStd-Black.woff2) format("woff2");
}

@font-face {
  font-family: 'Circular Std regular';
  src: url("../fonts/circularStd/CircularStd-Book.eot");
  src: url(../fonts/circularStd/CircularStd-Book.ttf) format("truetype"), url(../fonts/circularStd/CircularStd-Book.woff) format("woff"), url(../fonts/circularStd/CircularStd-Book.woff2) format("woff2");
}

@font-face {
  font-family: 'Circular Std bold';
  src: url("../fonts/circularStd/CircularStd-Bold.eot");
  src: url(../fonts/circularStd/CircularStd-Bold.ttf) format("truetype"), url(../fonts/circularStd/CircularStd-Bold.woff) format("woff"), url(../fonts/circularStd/CircularStd-Bold.woff2) format("woff2");
}

@font-face {
  font-family: 'Circular Std medium';
  src: url("../fonts/circularStd/CircularStd-Medium.eot");
  src: url(../fonts/circularStd/CircularStd-Medium.ttf) format("truetype"), url(../fonts/circularStd/CircularStd-Medium.woff) format("woff"), url(../fonts/circularStd/CircularStd-Medium.woff2) format("woff2");
}

/* Circular Std Font Variables */
/* Circular Std Font End */
a {
  color: unset;
  text-decoration: none;
}

a:focus {
  outline: 0 solid;
}

a:hover {
  text-decoration: none;
  color: unset;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #183B56;
}

html, body {
  font-weight: 400;
  line-height: 1.6;
  color: #5A7184;
  font-family: "DM Sans", sans-serif;
}

p {
  margin-bottom: 0;
}

input:focus, textarea:focus, button:focus {
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

i.bx {
  vertical-align: middle;
}

/* Remove Chrome Input Field's Unwanted Yellow Background Color */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

input:-webkit-autofill:hover, input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

.mt-100 {
  margin-top: 100px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-26 {
  margin-top: 26px;
}

.mb-76 {
  margin-bottom: 76px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-76 {
  padding-bottom: 76px;
}

.pb-100 {
  padding-bottom: 100px;
}

.shape {
  position: absolute;
  z-index: -1;
}

.positioning {
  position: relative;
  z-index: 2;
}
.back-to-top-btn {
    position: fixed;
    bottom: 40px;
    right: 30px;
    background: #fff;
    height: 38px;
    width: 38px;
    text-align: center;
    line-height: 36px;
    display: none;
    z-index: 9999;
    -webkit-box-shadow: 0px 0px 2px rgb(0 0 0 / 40%);
    box-shadow: 0px 0px 2px rgb(0 0 0 / 40%);
}
/*--------------headercss---------------*/
/*================================================
2. Header Menu CSS
=================================================*/
.main_index.logo, .main-nav, .menu-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.header-menu-area {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  background: transparent;
}

.main_index .main-nav {
  float: right;
}

.main_index .menu-btn-wrap {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.hamburger {
  position: relative;
  width: 40px;
  height: 30px;
  cursor: pointer;
  border: 5px solid transparent;
  margin-top: 10px;
  display: none;
  z-index: 1;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: #EB0913;
  display: block;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.hamburger span.h-top {
  top: 0;
}

.hamburger span.h-bottom {
  bottom: 0;
  width: 27px;
}

.hamburger span.h-middle {
  top: 50%;
  margin-top: -1px;
  width: 25px;
}

.hamburger.h-active span {
  width: 100%;
}

.hamburger.h-active span.h-top {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
  margin-top: -1px;
}
.hamburger.h-active span.h-middle {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  opacity: 0;
}

.hamburger.h-active span.h-bottom {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 50%;
  margin-bottom: -1px;
}

.main-nav > ul > li {
  display: inline-block;
  position: relative;
  padding: 47px 23px;
}

. .main-nav > ul > li.has-child-menu:after {
  position: absolute;
  right: 2px;
  top: 45px;
  font-family: "boxicons";
  content: "";
  font-size: 20px;
  color: #183b56a3;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.main-nav > ul > li:hover.has-child-menu:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

 .main-nav > ul > li > a {
  display: block;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: #183B56;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.main-nav > ul > li:hover > a {
  color: #EB0913;
}

.main-nav > ul > li:hover > a:after {
  opacity: 1;
}
.main-nav ul li .sub-menu {
    position: absolute;
    left: 0;
    top: 90px;
    right: 0;
    min-width: 219px;
    list-style: none;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: #ffffff;
    -webkit-box-shadow: 7px 10px 40px rgb(13 52 79 / 10%);
    box-shadow: 7px 10px 40px rgb(13 52 79 / 10%);
}
.main-nav ul li .sub-menu li .sub-menu {
  right: -200px;
  left: inherit;
  top: 0;
}

.main-nav ul li .sub-menu > li {
  display: block;
  margin: 0;
  position: relative;
}

.main-nav ul li .sub-menu > li a {
  display: block;
  padding: 15px 18px;
  line-height: 1;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.main-nav ul li .sub-menu > li a:last-child {
  border: none;
}

.main-nav ul li .sub-menu > li a:hover {
  color: #EB0913;
}
.main-nav .fl {
  width: 30px;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  font-style: normal;
  position: absolute;
  right: -5px;
  top: 0;
  z-index: 999;
  display: none;
  cursor: pointer;
}

.main-nav .fl:before {
  font-size: 14px;
  text-align: center;
  line-height: 35px;
}

.main-nav > ul > li + li > .sub-menu {
  left: 15px;
}

 .main-nav > ul > li:hover > .sub-menu, .main-nav ul li .sub-menu li:hover > .sub-menu, .main-nav ul li .sub-menu li .sub-menu li:hover > .sub-menu {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.slideInUp {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate3d(0, 30px, 0);
          transform: translate3d(0, 30px, 0);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.is-active .slideInUp {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slideInUp2 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.main_index  .menu-btn-wrap .menu-reg {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  color: #183B56;
  margin-right: 54px;
}


.sticky{
    position: fixed;
    top: 0;
    background: #F8F9FA;
    z-index: 99;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 2px 28px 0 rgb(0 0 0 / 1%);
    box-shadow: 0 2px 28px 0 rgb(0 0 0 / 1%);
    padding-top: unset;
}

.sticky .main-nav > ul > li > a {
    color: #322d2d !important;
}
.sticky .main-nav > ul > li:hover > a {
    color: #EB0913 !important;
}


/*================================================
4. Client Logo Area CSS
=================================================*/
.client-logo-box {
  margin-bottom: 24px;
}

/*================================================
42.  footer style start
=================================================*/
.edu-footer-style {
    background: #252641;
    padding: 80px 0px;
}

.edu-footer-style .footer-copyright {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.edu-footer-style .footer-copyright p {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  color: #B2B2B2;
}

.edu-footer-style .edu-footer-about .f-about-texts {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  line-height: 32px;
  color: #B2B2B2;
  padding-top: 5px;
}

.edu-footer-style .footer-social-links {
  margin-top: 45px;
}

.edu-footer-style .footer-social-links li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  background: #29292e;
  border: 1px solid #29292e;
}

.edu-footer-style .footer-social-links li a:hover {
  background: #18181b;
}

.edu-footer-style .footer-social-links li a:hover i {
  color: rgba(255, 255, 255, 0.8);
}

.edu-footer-style .footer-social-links li a i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

.edu-footer-style .footer-widget .footer-widget-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #F2F2F2;
  padding-bottom: 8px;
}

.edu-footer-style .footer-widget .footer-contact-links li {
  padding-top: 17px;
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #B2B2B2;
}

.edu-footer-style .footer-widget .footer-contact-links li span {
  color: #fff;
}

.edu-footer-style .footer-widget .footer-links li a {
    /* font-family: "Rubik", sans-serif; */
    font-size: 16px;
    color: #B2B3CF;
    display: inline-block;
    padding-top: 8px;
    -webkit-transition: all .25s;
    /* transition: all .25s; */
}
.edu-footer-style .footer-widget .footer-links li a:hover {
  -webkit-transform: translate3d(3px, 0, 0);
          transform: translate3d(3px, 0, 0);
  color:#9094f8;
}



.register-florting-image {
  right: 100px;
}

.footer-copyright{
	background-color: #EAF4FF;
	padding: 18px 0px;
}

.footer-copyright ul#footermenu li {
  display:inline;
  
  padding:0px 12px;
  color: #B2B3CF;
}
.border-right{
	border-right:1px solid #626381;
}
.align-right{
	text-align: right;
}
/*------------new css-----------------/*/
 .grid-item-wrap {
    position: relative;
    overflow: initial!important;
}
.grid-item {
    width: 100%;
    float: left;
    height: auto;
    padding: 0 0 20px;
    cursor: pointer;
}

.grid-image{
  /*  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);*/
    border-radius: 5px;
    transition: all .3s ease;
    position: relative;
}
.bg-overlay[data-style="4"] {
   background-color: #EAF4FF;
}
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    z-index: 0;
    background: rgba(0,0,0,.59);
   
}
.shape-divider {
    position: absolute;
    width: 100%;
    z-index: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    display: block;
}
.shape-divider svg {
    width: 100%;
    height: 100%;
    left: 50%;
    position: absolute;
    transform: translatex(-50%);
    bottom: -2px;
}
svg {
    overflow: hidden;
    vertical-align: middle;
}

  .edu-hero-content{
    position: relative;
  }
.edu-hero-style .edu-hero-content .edu-hero-title span{
    color: #EB0913; 
}
.edu-hero-style .ag-hero-figure .florting-mail-label1 {
    position: absolute;
    top: -18%;
    right: 89px;
    text-align: center;
    background: #FFFFFF;
    -webkit-box-shadow: 5px 15px 50px rgb(0 0 0 / 10%);
    box-shadow: 5px 15px 50px rgb(0 0 0 / 10%);
    border-radius: 20px;
    padding: 18px 26px;
    padding-top: 26px;
    -webkit-animation: slide-top 3.5s ease infinite alternate;
    animation: slide-top 3.5s ease infinite alternate;
}

.edu-hero-style .ag-hero-figure .florting-mail-label2 {
    position: absolute;
    bottom: -12%;
    left: -77px;
    text-align: center;
    background: #FFFFFF;
    -webkit-box-shadow: 5px 15px 50px rgb(0 0 0 / 10%);
    box-shadow: 5px 15px 50px rgb(0 0 0 / 10%);
    border-radius: 20px;
    padding: 18px 26px;
    padding-top: 26px;
    -webkit-animation: slide-top 3.5s ease infinite alternate;
    animation: slide-top 3.5s ease infinite alternate;
}

.edu-hero-style .ag-hero-figure .florting-mail-label p  {
  font-size: 13px;
  color: #6F6F76;
  font-family: "Rubik", sans-serif;
   padding-left: 0px;
}

.edu-hero-style {
    overflow-x: hidden;
    padding-top: 200px;
    padding-bottom:74px;
}
.bottom {
 border-bottom-left-radius: 600px;
  border-bottom-right-radius: 600px;
  background-color:#EAF4FF;
}
.edu-hero-style .edu-hero-content .edu-hero-title {
    font-weight: 700;
    font-size: 51px;
    line-height: 81px;
    color: #2F327D;
    font-family: "Poppins", sans-serif;
    padding-bottom: 30px;
}

.edu-hero-style .edu-hero-content p {
    font-family: "Rubik", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 29px;
    color: #6F6F76;
    padding-bottom: 22px;
}
.edu-hero-style .ag-hero-figure {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  position: relative;
}

.edu-hero-style .ag-hero-figure .florting-mail-label {
    position: absolute;
    top: -19%;
    left: -77px;
    text-align: center;
    background: #FFFFFF;
    -webkit-box-shadow: 5px 15px 50px rgb(0 0 0 / 10%);
    box-shadow: 5px 15px 50px rgb(0 0 0 / 10%);
    border-radius: 20px;
    padding: 18px 26px;
    padding-top: 26px;
    -webkit-animation: slide-top 3.5s ease infinite alternate;
    animation: slide-top 3.5s ease infinite alternate;
}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}

.edu-hero-style .ag-hero-figure .florting-mail-label .icon,.edu-hero-style .ag-hero-figure .florting-mail-label1 .icon,
.edu-hero-style .ag-hero-figure .florting-mail-label2 .icon {
    width: 48px;
    height: 48px;
    background: #23BDEE;
    border-radius: 30%;
    /* -webkit-box-shadow: 2px 8px 20px rgb(107 71 252 / 50%); */
    /* box-shadow: 2px 8px 20px rgb(107 71 252 / 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;
    position: absolute;
    top: 45px;
    left: 16%;
    -webkit-transform: translate(-50%, -50%);
    /* transform: translate(-50%, -50%); */
}
.edu-hero-style .ag-hero-figure .florting-mail-label1 .icon {
    width: 48px;
    height: 48px;
    background: #F88C3D;
    border-radius: 30%;
    /* -webkit-box-shadow: 2px 8px 20px rgb(107 71 252 / 50%); */
    /* box-shadow: 2px 8px 20px rgb(107 71 252 / 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;
    position: absolute;
    top: 45px;
    left: 16%;
    -webkit-transform: translate(-50%, -50%);
    /* transform: translate(-50%, -50%); */
}
.edu-hero-style .ag-hero-figure .florting-mail-label2 .icon {
    width: 48px;
    height: 48px;
    background: #F3627C;
    border-radius: 30%;
    /* -webkit-box-shadow: 2px 8px 20px rgb(107 71 252 / 50%); */
    /* box-shadow: 2px 8px 20px rgb(107 71 252 / 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;
    position: absolute;
    top: 45px;
    left: 16%;
    -webkit-transform: translate(-50%, -50%);
    /* transform: translate(-50%, -50%); */
}
.edu-hero-style .ag-hero-figure .florting-mail-label .icon i,.edu-hero-style .ag-hero-figure .florting-mail-label1 .icon i,.edu-hero-style .ag-hero-figure .florting-mail-label2 .icon i  {
  color: #fff;
  font-size: 22px;
}

.edu-hero-style .ag-hero-figure .florting-mail-label h6,.edu-hero-style .ag-hero-figure .florting-mail-label1 h6 ,.edu-hero-style .ag-hero-figure .florting-mail-label2 h6 {
  font-weight: 600;
  font-size: 16px;
  
  color: #111116;
  font-family: "Poppins", sans-serif;
/*  padding-top: 8px;
  padding-bottom: 2px;*/
  padding-left: 66px;
}

.edu-hero-style .ag-hero-figure .florting-mail-label p,.edu-hero-style .ag-hero-figure .florting-mail-label1 p,.edu-hero-style .ag-hero-figure .florting-mail-label2 p {
  font-size: 16px;
  color: #6F6F76;
  font-family: "Rubik", sans-serif;
   padding-left: 66px;
}

.edu-hero-style .ag-hero-figure .florting-mail-label-two {
  position: absolute;
  top: 15%;
  right: 0;
  text-align: center;
  background: #FFFFFF;
  -webkit-box-shadow: 5px 15px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 15px 50px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 36px 22px;
  padding-bottom: 30px;
}

.edu-hero-style .ag-hero-figure .florting-mail-label-two .icon {
  width: 48px;
  height: 48px;
  background: #51C8FF;
  -webkit-box-shadow: 2px 8px 20px rgba(81, 200, 255, 0.5);
          box-shadow: 2px 8px 20px rgba(81, 200, 255, 0.5);
  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;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.edu-hero-style .ag-hero-figure .florting-mail-label-two .icon i {
  color: #fff;
}

.edu-hero-style .ag-hero-figure .florting-mail-label-two h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #111116;
}

.edu-hero-style .ag-hero-figure .florting-mail-label-two p {
  font-size: 16px;
  color: #6F6F76;
  
  padding-top: 3px;
  padding-bottom: 16px;
}

.edu-hero-style .ag-hero-figure .florting-mail-label-two img {
  max-width: 154px;
}

.edu-btn-fill {
 
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
   /* display: inline-block;*/
    background: #EB0913;
    /*-webkit-box-shadow: 5px 10px 30px rgb(255 165 2 / 30%);*/
  border:none;
  /*  box-shadow: 5px 10px 30px rgb(255 165 2 / 30%);*/
    border-radius: 80px;
    padding: 15px 38px;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}

.edu-btn-fill:hover {
 /* -webkit-box-shadow: 5px 10px 30px rgba(255, 165, 2, 0.3);
          box-shadow: 5px 10px 30px rgba(255, 165, 2, 0.3);*/
  color: #fff;
 /* -webkit-transform: translate3d(0, -3px, 0);
          transform: translate3d(0, -3px, 0);*/
  background: #c30911;
}


/*All-In-One Cloud Software. start*/
.all-in-one{
	padding: 80px 0px;
}
.all-in-one h2{
	font-size: 26px;
	color: #2F327D;
	text-align: center;

}
.all-in-one h2 span{

	color: #EB0913;
}
.all-in-one .headingpara {
    text-align: center;
    color: #696984;
    /*padding: 0px 442px;*/
}
.all-in-one .all-services-box {
    background: #FFFFFF;
    border-radius: 16px;
    margin-bottom: 24px;
    padding: 24px 30px;
    -webkit-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.all-in-one .all-services-box .all-services-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    top: -60px;
}
.all-in-one .all-services-box .all-services-icon i {
    width: 70px;
    height: 70px;
   
    border-radius:50%;
    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;
    color: #ffffff;
    font-size: 30px;
    -webkit-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.all-in-one .all-services-box .all-services-content h3 {
    margin: -17px 0 25px;
    font-style: normal;
    font-size: 22px;
    color: #2F327D;
}

.all-in-one .all-services-box .all-services-content p {
    color: #696984;
    margin-bottom: 14px;
    line-height: 28px;
}
.all-services-area {
  background: #F9F9F9;
}

.all-services-area .latest-text {
  margin: 25px 0 0px;
}

.all-in-one .all-services-box {
  background: #FFFFFF;
  border-radius: 16px;
  margin-bottom: 24px;
  padding: 24px 30px;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  -webkit-box-shadow:  0px 10px 60px rgba(38, 45, 118, 0.08);
          box-shadow:  0px 10px 60px rgba(38, 45, 118, 0.08);
}

.all-in-one .all-services-box:hover {
  -webkit-box-shadow: 0px 10px 60px rgba(38, 45, 118, 0.08);
          box-shadow: 0px 10px 60px rgba(38, 45, 118, 0.08);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.all-in-one .all-services-box:hover .all-services-icon i {
    color: #ffffff;
}
/*All-In-One Cloud Software. end*/

.comm_red{
	 background:#EB0913;
}
.comm_blue{
	 background:#5B72EE;
}

/*-----------welcome Section start---------------*/

.welcome_section{
	background: #EAF4FF;
	padding: 80px 0px;
}
.welcome_section h2
{
	font-size: 26px;
    color: #2F327D;
    text-align: center;
  
}

.welcome_section h2 span
{
	color: #EB0913;
}
.welcome_section h2 span
{
	color: #EB0913;
}

/*-----------welcome Section end-----------------*/

/*----------------All  Courses section start-------------------------------*/
.courses_section{
	padding: 80px 0px;
}
.courses_section h2{
	font-size: 26px;
	color: #2F327D;
	text-align: center;

}
.courses_section h2 span{

	color: #EB0913;
}
.courses_section img {
    top: 10px;
    position: relative;
    width: 120px;
    height: 120px;
    left: 15px;
}
/*----------------All  Courses section end-------------------------------*/
.relative-div{
    position: relative;
    margin: 40px 0px;
}

.outer-box{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background:#EAF4FF;
    transform: rotate(4deg);
    border-radius: 10px;
}

.course-box{
    position: relative;
    width: 100%;
    display: block;
    
    background: #FFF;
    border: 1px solid rgba(0, 0, 0, 0.17);
    border-radius:10px;
    padding: 22px;
    max-height: 280px;
}

.course-icon{
    position: absolute;
    top: -100px;
    right: 75px;
    width: 150px;
    height: 150px;
    background: #FFF;
    border-radius: 100%;
    box-shadow: 0px 1px 5px rgba(41, 44, 124, 0.15);
}
.title {
    font-size: 22px;
    color: #2F327D;
    font-weight: 700;
}

.discription .bottom-content{
	margin: 12px 0px;
  display: flex; 
  font-size: 15px;
  

}
.discription .bottom-content p {
	color: #696984;
	font-weight:700;
	font-size: 16px;
}
.discription .bottom-content p span{
	color: #696984;
	font-size: 16px;
	font-weight:500;
}


/*-----------call to action start---------------*/

.call_to_action_section{
 
  padding: 80px 0px;
}
.call_to_action_section h2
{
  font-size: 26px;
    color: #2F327D;
    text-align: center;
   
}

.call_to_action_section h2 span
{
  color: #EB0913;
}
.call_to_action_section h2 span
{
  color: #EB0913;
}

/*----------call to action  end-----------------*/


/*----------------------testimonial start------------------------*/

.testimonial_section h2 {
    font-size: 32px;
    color: #2F327D;
   
    margin: 30px 0px;
}

.testimonial_section h2 span
{
  color: #EB0913;
}
.pos-relative{
  position: relative;
}
/*-------------------------- Testimonial ----------------------*/

.py-80{
  padding:80px 0px ;
}
.single-about-team:hover .single-about-team-img img {
  -webkit-filter: grayscale(50%);
          filter: grayscale(50%);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.single-about-team:hover .single-about-team-content h3 {
  color: #eb0913;
}
.heading {
    font-size: 14px;
    color: #525596;
    letter-spacing: 6px;
    margin-left: 65px;
}
.heading:before {
    position: absolute;
    left: 0px;
    top: 5%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
    width: 46px;
    height: 2px;
    background: #525596;
}
.single-about-team .single-about-team-content h3 {
 
  font-style: normal;
  font-size: 22px;
  color: #3B3B3B;
  margin: 36px 0 12px;
  -webkit-transition: color .25s ease-in-out;
  transition: color .25s ease-in-out;
}

.single-about-team .single-about-team-content p {
  line-height: 1;
}

.single-about-team .single-about-team-img {
  overflow: hidden;
  border-radius: 16px;
}

.single-about-team .single-about-team-img img {
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95), -webkit-filter 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  will-change: filter;
}

.inner-slide-wrap-testi .owl-dots, .inner-slide-wrap .owl-dots {
  text-align: center;
 
}

.inner-slide-wrap-testi .owl-dots button, .inner-slide-wrap .owl-dots button {
  width: 16px;
  height: 16px;
  background: #EBE0E0;
  border: none;
  border-radius: 50%;
  margin-right: 16px;
}

.inner-slide-wrap-testi .owl-dots button.active,.inner-slide-wrap .owl-dots button.active {
  background: #eb0913;
}

.inner-slide-wrap-testi .owl-dots button:last-child,.inner-slide-wrap .owl-dots button:last-child {
  margin-right: 0;
}

.inner-slide-wrap-testi .owl-item img {
  display: unset;
  width: unset;
}

.about-testimonial-area {
  background: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(rgba(249, 249, 249, 0)));
  background: linear-gradient(180deg, #F9F9F9 0%, rgba(249, 249, 249, 0) 100%);
}

.single-client-testimonial {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 10px;
  border-left: 17px solid red;

}

.single-client-testimonial:hover .client-testimonial-img img {
  -webkit-filter: grayscale(50%);
          filter: grayscale(50%);
}

.single-client-testimonial:hover .client-testimonial-info h2 {
  color: #EB0913;
}

.single-client-testimonial .client-testimonial-img img {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.single-client-testimonial .client-testimonial-info {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #EFEFEF;
}

.single-client-testimonial .client-testimonial-info h2 {
  
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  color: #3B3B3B;
  margin: 28px 0 4px;
  -webkit-transition: color .25s ease-in-out;
  transition: color .25s ease-in-out;
}
.single-client-testimonial .client-testimonial-info p {
    font-weight: 500;
    font-size: 14px;
    line-height: 32px;
    color: #5A7184;
}

.single-client-testimonial .client-testimonial-rating ul {
    margin-bottom: 6px;
    margin-top: 6px;
}
.single-client-testimonial .client-testimonial-rating ul li {
  display: inline-block;
  color: #FAB33F;
  font-size: 14px;
  margin-right: 5px;
}

.single-client-testimonial .client-testimonial-rating ul li:last-child {
  margin-right: 0;
}

.inner-slide-wrap .owl-dots button {
    width: 6px;
    height: 4px;
    background: #EBE0E0;
    border: none;
    border-radius: 50%;
    margin-right: 16px;
}
.btn-glyphicon {
  
    padding: 12px;
    margin-left: 24px;
    border-radius: 88px;
    border: 1px solid #EB0913;
   color: #EB0913;
}

.icon-btn {
    padding: 10px 0px 10px 30px;
    margin: 12px 0px;
    border-radius: 86px;
}
.btn-danger {
    color:#EB0913;
  background-color: transparent;
    border-color:#EB0913;
}
/*--------------------------testimonial end---------------------------------------*/

/*-----------------common page header start-------------------*/

.common-header.logo, .main-nav, .menu-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

/*.common-header.header-menu-area {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  background:#ffffff;
}*/

.common-header .main-nav {
  float: right;
}

.menu-btn-wrap {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.common-header .main-nav > ul > li {
  display: inline-block;
  position: relative;
  padding: 47px 23px;
}



.common-header .menu-btn-wrap .menu-reg {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  color: #183B56;
  margin-right: 54px;
}

.common-header  .grid-item-wrap {
    position: relative;
    overflow: initial!important;
}
.common-header .grid-item {
    width: 100%;
    float: left;
    height: auto;
    padding: 0 0 20px;
    cursor: pointer;
}

.common-header .grid-image{
  /*  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);*/
    border-radius: 5px;
    transition: all .3s ease;
    position: relative;
    height: 445px;
}
.common-header .bg-overlay[data-style="4"] {
   background-image: url("assets/images/banner_img.html");

}
.common-header .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    z-index: 0;
    background: rgba(0,0,0,.59);
   
}
.common-header .bg-overlay img {
  height: inherit;
}
.common-header .shape-divider {
    position: absolute;
    width: 100%;
    z-index: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    display: block;
}
.common-header .shape-divider svg {
    width: 100%;
    height: 100%;
    left: 50%;
    position: absolute;
    transform: translatex(-50%);
    bottom: -2px;
}

  .common-header .edu-hero-content{
    position: relative;
  }

  .common-header .edu-hero-style .edu-hero-content .edu-hero-title {
    font-weight: 700;
    font-size: 34px;
    line-height: 81px;
    color:#ffffff;
    font-family: "Poppins", sans-serif;
    padding-bottom: 9px;
}
  .common-header .edu-hero-style {
    overflow-x: hidden;
   padding: 150px 0px;
}
.common-header .edu-hero-style .edu-hero-content p {
    font-family: "Rubik", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 29px;
    color: #ffffff;
    padding-bottom: 22px;
}

.common-header .header-menu-area{
  width: 100% ;
  background-color: #ffffff;
}
.common-red{
  color: #EB0913 !important;
}
.common-blue{
  color: #2F327D !important;
}
/*-----------------common page header end-------------------*/

/*---------------------about page css start--------------------------*/
.about-section{
  padding: 80px 0px;
}

.about-section h2 {
    font-size: 32px;
    color: #2F327D;
    margin: 30px 0px;
}

.about-section h2 span
{
  color: #EB0913;
}
.text-justify{
text-align: justify;
}
.about-section .collaborate-info
{
  margin-right: 20px;
}
.exceptionally-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.exceptionally-wrap:hover img {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-filter: grayscale(0) blur(0px);
          filter: grayscale(0) blur(0px);
}

.exceptionally-wrap img {
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  -webkit-filter: grayscale(30%) blur(0.4px);
          filter: grayscale(30%) blur(0.4px);
}

.exceptionally-wrap .exceptionally-content {
  padding-left:36px;
}

.exceptionally-wrap .exceptionally-content .exceptionally-content-child {
  margin-bottom: 37px;
}

.exceptionally-wrap .exceptionally-content .exceptionally-content-child:last-child {
  margin-bottom: 0;
}

.exceptionally-wrap .exceptionally-content .exceptionally-content-child h2 {
 
 font-size: 25px;
    font-weight: 500;
  letter-spacing: 0em;
  color: #000000;

}


.exceptionally-wrap .exceptionally-content .exceptionally-content-child h2 i{
    font-size: 20px
    ;
    color: #ffffff;
    padding: 8px 10px;
    border-radius: 8px;
}

.ag-working-process {
 
  padding-top: 116px;
  padding-bottom:116px;
  background: #F8FCFD;
  
}
 
.ag-working-process h2 {
    font-size: 32px;
    color: #2F327D;
    margin: 30px 0px;
}

.ag-working-process h2 span
{
  color: #EB0913;
}

.ag-working-process .ag-process-disc .process-btn {
  margin-top: 48px;
}

.ag-working-process .ag-process-features-image {
  z-index: 2;
}

.ag-working-process .ag-process-features-image .client-group {
  position: absolute;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 17.4545px 29.0908px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 17.4545px 29.0908px rgba(0, 0, 0, 0.06);
  border-radius: 11.6363px;
  padding: 34px 34px;
  bottom: -60px;
  right: -60px;
}

.ag-working-process .ag-process-features-image .client-group.client-group2 {
  padding: 0;
}

.ag-working-process .ag-process-features-image .client-group h6 {
  font-family: "Circular Std medium";
  font-size: 18.6181px;
  color: #5A7184;
  padding-bottom: 14px;
  text-align: start;
}

.ag-working-process .ag-process-features-image .client-group img {
  max-width: 265px;
}

.ag-working-process .ag-process-features-image .process-animi-shape {
  bottom: -30px;
  left: -30px;
  z-index: -1;
  -webkit-animation: slide-top 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
          animation: slide-top 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
}

@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}

.ag-working-process .features-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: translate(95px, -60px);
          transform: translate(95px, -60px);
}

.ag-working-process .features-img-bg2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  -webkit-transform: translate(98px, -60px);
          transform: translate(98px, -60px);
}


/*---------------------about page css end--------------------------*/

/*---------------------------contact us page css start-------------------------*/
.contact-section{
  padding: 80px 0px;
}

.contact-section h2 {
    font-size: 32px;
    color: #2F327D;
    margin: 30px 0px;
}

.contact-section h2 span
{
  color: #EB0913;
}
.shop-check {
  display: block;
  position: relative;
  margin-top: 16px;
  margin-bottom: 45px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding-left: 23px;
  /* Create a custom checkbox */
}

.shop-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.shop-check .checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 15px;
  width: 15px;
  border-radius: 2px;
  border: 1px solid #eb282f;
  border-radius: 4px;
  /* Create the checkmark/indicator (hidden when not checked) */
}

.shop-check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 2px;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.shop-check input:checked ~ .checkmark {
  background-color: #EB0913;
}

/* Show the checkmark when checked */
.shop-check input:checked ~ .checkmark:after {
  display: block;
}

.broucher-input , .contact-input {
  position: relative;
}

.contact-input .form-message ,.broucher-input .form-message{
  position: absolute;
  left: 0;
  top: 102%;
}

.contact-input .form-message.error ,.broucher-input .form-message.error{
  color: red;
}

.contact-input .form-message.success ,.broucher-input .form-message.success {
  color: green;
}

.contact-input h1,.broucher-input h1 {

  font-style: normal;
  font-size: 30px;
  color: #3B3B3B;
  margin-bottom: 39px;
}

.contact-input textarea, .contact-input input ,.broucher-input textarea, .broucher-input input, .broucher-input .select-option{
  width: 100%;
  border: 1.5px solid rgba(90, 113, 132, 0.25);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 8px;
  padding: 15px 20px;
}

.contact-input textarea::-webkit-input-placeholder, .contact-input input::-webkit-input-placeholder ,
.broucher-input textarea::-webkit-input-placeholder, .broucher-input input::-webkit-input-placeholder {
  color: #5A7184;
}

.contact-input textarea:-ms-input-placeholder, .contact-input input:-ms-input-placeholder,
.broucher-input textarea:-ms-input-placeholder, .broucher-input input:-ms-input-placeholder {
  color: #5A7184;
}

.contact-input textarea::-ms-input-placeholder, .contact-input input::-ms-input-placeholder ,
.broucher-input textarea::-ms-input-placeholder, .broucher-input input::-ms-input-placeholder{
  color: #5A7184;
}

.contact-input textarea::placeholder, .contact-input input::placeholder ,
.broucher-input textarea::placeholder, .broucher-input input::placeholder {
  color: #5A7184;
}

.contact-input input, {
  margin-bottom: 46px;
}
.broucher-input .select-option {
  margin-bottom: 25px;
}
.broucher-input input {
  margin-bottom: 26px;
}
.contact-input .contact-btn-wrap button,
.broucher-input .contact-btn-wrap button
  border: none;
}

.location-map {
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
}

.location-map iframe {
  height: 100%;
  width: 100%;
}

.cart-wrap .single-cart {
  margin-bottom: 24px;
  border: 2px solid rgba(102, 159, 246, 0.3);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-filter: drop-shadow(2px 12px 70px rgba(0, 0, 0, 0.08));
          filter: drop-shadow(2px 12px 70px rgba(0, 0, 0, 0.08));
  border-radius: 12px;
  padding: 20px 30px;
  position: relative;
}

.cart-wrap .single-cart::before {
  width: 2px;
  height: 32px;
  position: absolute;
  content: '';
  background: #eb282f;
  left: -2px;
  -webkit-animation: cart-anm-t-b 4s alternate linear infinite;
          animation: cart-anm-t-b 4s alternate linear infinite;
}


.cart-wrap .single-cart:last-child {
  margin-bottom: 0;
}

.cart-wrap .single-cart .cart-form {
  position: relative;
  overflow: hidden;
}

.cart-wrap .single-cart .cart-form i {
  position: absolute;
  color: #EB0913;
  font-size: 18px;
  right: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cart-wrap .single-cart .cart-title {
  border-bottom: 2px solid rgba(90, 113, 132, 0.2);
  padding-bottom: 17px;
  margin-bottom: 26px;
}

.cart-wrap .single-cart .cart-title h2 {
  
  font-style: normal;
  font-size: 26px;
  color: #2f327d;
}


.cart-wrap .single-cart .cart-post .cart-post-content h4 a:hover {
  color: #EB0913;
}

.cart-wrap .single-cart .cart-post .cart-post-content p {
  font-size: 14px;
  line-height: 18px;
  color: #5A7184;
  margin-top: 8px;
}

.cart-wrap .single-cart .comment-box {
  border-bottom: 2px solid rgba(90, 113, 132, 0.2);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.cart-wrap .single-cart .comment-box:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.cart-wrap .single-cart .comment-box h4 {
  font-family: "Circular Std medium";
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #3B3B3B;
  -webkit-transition: .4s;
  transition: .4s;
}

.cart-wrap .single-cart .comment-box h4:hover {
  color: #EB0913;
}

.cart-wrap .single-cart .comment-box h4 span {
  font-size: 12px;
  color: #5A7184;
}

.cart-wrap .single-cart .keywords-tag ul li {
  background: rgba(90, 113, 132, 0.1);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1;
  color: #5A7184;
  margin: 0px 9px 12px 0px;
  display: inline-block;
  padding: 10px 17px;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

.cart-wrap .single-cart .keywords-tag ul li:hover {
  color: #FFFFFF;
  background: #EB0913;
}

.cart-wrap .single-cart .contact-details {
  border-bottom: 2px solid rgba(90, 113, 132, 0.2);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.cart-wrap .single-cart .contact-details:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.cart-wrap .single-cart .contact-details .contact-details-title h3 {
   
    font-style: normal;
    font-size: 20px;
    color: #3B3B3B;
    margin-bottom: 14px;
}

.cart-wrap .single-cart .contact-details .contact-details-info ul li {
  color: #5A7184;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}

.cart-wrap .single-cart .contact-details .contact-details-info ul li:hover {
  color: #29343d;
}

.cart-wrap .single-cart .contact-details .contact-details-info ul li:hover i {
  color: #992900;
}

.cart-wrap .single-cart .contact-details .contact-details-info ul li:last-child {
  margin-bottom: 0;
}

.cart-wrap .single-cart .contact-details .contact-details-info ul li i {
  font-size: 20px;
  color: #eb282f;
  margin-right: 15px;
  -webkit-transition: color .25s ease-in-out;
  transition: color .25s ease-in-out;
}

@-webkit-keyframes cart-anm-t-b {
  0% {
    top: 18px;
  }
  100% {
    top: calc(100% - 50px);
  }
}

@keyframes cart-anm-t-b {
  0% {
    top: 18px;
  }
  100% {
    top: calc(100% - 50px);
  }
}
.location-map {
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
}

/*---------------------------contact us page css end-------------------------*/

/*---------------------courses page css start-------------------------*/
.broucher_btn {
  background-color: #0B14F0A1;
  border: none;
  color: white;
  padding: 9px 30px;
  font-size: 16px;
  cursor: pointer;
  border-radius:37px;
  width: 100%;
}

.broucher_btn:hover {
  background-color: #0209bb;
  border: none;
  color: white;
  padding: 9px 30px;
  font-size: 16px;
  cursor: pointer;
  border-radius:37px;
  width: 100%;
}
.courser_para{
 text-align: justify;
    word-spacing: -1px;  
        display: -webkit-box;
    -webkit-line-clamp:6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
 #courses_broucher_modal .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    margin: 13px;
    color: #fffff;
    /* color: aliceblue; */
    background-color: #656bf6;
    /* border-bottom: 1px solid #dee2e6; */
    border-radius: 12px;
    /* border-top-left-radius: calc(.3rem - 1px); */
    /* border-top-right-radius: calc(.3rem - 1px); */
}  

#courses_broucher_modal .modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    color: #ffff;
}
/*---------------------courses page css end-------------------------*/


/*--------------------------career page css start--------------------------------------*/
 .career-section{
  padding: 80px 0px;
}

.career-section h2 {
    font-size: 32px;
    color: #2F327D;
    margin: 10px 0px;
}

.career-section h2 span
{
  color: #EB0913;
}

 .careerImg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  padding: 40px 0px;
}

/*--------------------------career page css end--------------------------------------*/
/*-------------------------services page css start-------------------------*/
.service-section{
  padding: 80px 0px;
   overflow-x: hidden;
   position: relative;
}
.ml-10{
  margin-left: 10px;
}

.service-section h2 {
    font-size: 32px;
    color: #2F327D;
    margin: 10px 0px;
}

.service-section h2 span
{
  color: #EB0913;
}

.work-mixi .mix {
  display: none;
}

 
.process-row-gap {
    margin-top: 50px;
}

.service-section .ag-process-features-image {
  z-index: 2;
}

.service-section .ag-process-features-image .client-group {
  position: absolute;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 17.4545px 29.0908px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 17.4545px 29.0908px rgba(0, 0, 0, 0.06);
  border-radius: 11.6363px;
  padding: 34px 34px;
  bottom: -60px;
  right: -60px;
}

.service-section .ag-process-features-image .client-group.client-group2 {
  padding: 0;
}

.service-section .ag-process-features-image .client-group h6 {

  font-size: 18.6181px;
  color: #5A7184;
  padding-bottom: 14px;
  text-align: start;
}

.service-section .ag-process-features-image .client-group img {
  max-width: 265px;
}

.service-section .ag-process-features-image .process-animi-shape {
  bottom: -30px;
  left: -30px;
  z-index: -1;
  -webkit-animation: slide-top 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
          animation: slide-top 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
}

@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}

.service-section .features-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: translate(-120px, -60px);
          transform: translate(-120px, -60px);
}

.service-section .features-img-bg2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  -webkit-transform: translate(98px, -60px);
          transform: translate(98px, -60px);
}
.service-section .ag-section-title {
    font-weight: 900;
    font-size: 50px;
    line-height: 60px;
    text-align: center;
    color: #183B56;
}

img {
    max-width: 100%;
    height: auto;
}
.process-btn .btn-fill {
background-color: #0B14F0A1;
    border: none;
    color: white;
    padding: 9px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 37px;
    width: 100%;
}
/*-------------------ForeignLang css start-------------------------*/
.ForeignLang-section{
  padding: 80px 0px;
}

.ForeignLang-style .ForeignLang-title {
  padding-bottom: 60px;
}

.ForeignLang-card {
  background: #FFFFFF;
  -webkit-box-shadow: 5px 30px 56.1276px rgba(55, 55, 55, 0.08);
          box-shadow: 5px 30px 56.1276px rgba(55, 55, 55, 0.08);
  border-radius: 16.8383px;
  padding: 30px 30px;
  padding-bottom: 50px;
}
.icon{
  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;
    width: 120px;
    height: 120px;
    /*background: rgba(82, 211, 253, 0.1);*/
    border-radius: 20px;
    -webkit-transition: all .3s;
    transition: all .3s;
}


.ForeignLang-card:hover .icon {
  background: rgba(82, 211, 253, 0.3);
  -webkit-transform: translate3d(0, -3px, 0);
          transform: translate3d(0, -3px, 0);
}


.ForeignLang-card .ForeignLang-info .ForeignLang-title {

  font-size: 20px;
  color: #183B56;
  padding-top: 37px;
}

.ForeignLang-card .ForeignLang-info .ForeignLang-subtitle {
    padding: 12px 0px;
    color: #fffff;
    color: #595959ba;
}
.ForeignLang-card .ForeignLang-info p {
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    color: #5A7184;
    padding-bottom: 18px;
    text-align: justify;
}

.width-80{
  width: 80%;
}
/*-------------------ForeignLang css end-------------------------*/
.main-nav > ul > li.has-child-menu:after {
    position: absolute;
    right: 2px;
    top: 45px;
    font-family: "boxicons";
    content: "";
    font-size: 20px;
    color: #183b56a3;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.overflow-hidden{
  overflow: hidden;
}

.nice-select {
    /* -webkit-tap-highlight-color: transparent; */
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 16px !important; 
    font-weight: normal;
    /* height: 41px; */
    line-height: 0px !important;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
    padding:26px 20px !important;
}

/*.broucher_btn:disabled
{
background-color: red
}
*/


/* <------ Footer link social----------> */

.footer-social-area ul li a {
  width: 40px;
  height: 40px;
  font-size: 15px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color:#252641;
  background-color: rgba(255, 255, 255, .2);
  margin-right: 5px;
  display: flex;
  margin-top: 20px;
  
  
}

 .footer-social-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px
}


 .footer-social-area span {
  color: var(--whiteColor);
  width: 80px;
  margin-right: 10px;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2)
}

 .footer-social-area ul {
  margin: 0;
  padding: 0;
  list-style: none
}


.footer-social-area ul li {
  display: inline-block
}


 .footer-social-area ul li a {
  width: 40px;
  height: 40px;
  font-size: 15px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color:#252641;
  background-color:white;
  margin-right: 5px
}


 .footer-social-area ul li a:hover {
  border-radius: 35%;
  color:#fff;
  background-color:#EB0913;
}







/*============================whatapp button css==================================*/

/* 
a:link,
a:visited {
  color: #ffff;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
} */

h1 {
  font-size: 20px;
  text-align: center;
  display: block;
  background: linear-gradient(to right top, #6f96f3, #164ed2);
  padding: 20px;
  color: #fff;
  border-radius: 50px;
}

/* CSS Multiple Whatsapp Chat */
.whatsapp-name {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 0.5;
}

#whatsapp-chat {
  box-sizing: border-box !important;
  outline: none !important;
  position: fixed;
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  bottom: 13px;
    right: 20px;
  overflow: hidden;
  z-index: 99;
  animation-name: showchat;
  animation-duration: 1s;
  transform: scale(1);
}

a.blantershow-chat {
    /* background: #009688; */
    /* background: #fff; */
    color: #404040;
    position: fixed;
    display: flex;
    font-weight: 400;
    justify-content: space-between;
    z-index: 98;
    bottom: 31px;
    right: 67px;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    /* box-shadow: 0 1px 15px rgb(32 33 36 / 28%); */
}

a.blantershow-chat svg {
  transform: scale(1.2);
  margin: 0 10px 0 0;
}

.header-chat {
  /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
  background: #009688;
  background: #095e54;
  color: #fff;
  padding: 20px;
}

.header-chat h3 {
  margin: 0 0 10px;
}

.header-chat p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.info-avatar {
  position: relative;
}

.info-avatar img {
 
  
  width: 70px;
  float: left;
  margin: 0 10px 0 0;
}

a.informasi {
  padding: 20px;
  display: block;
  overflow: hidden;
  animation-name: showhide;
  animation-duration: 0.5s;
}

a.informasi:hover {
  background: #f1f1f1;
}

.info-chat span {
  display: block;
}

#get-label,
span.chat-label {
  font-size: 12px;
  color: #888;
}

#get-nama,
span.chat-nama {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #222;
}

#get-label,
#get-nama {
  color: #fff;
}

span.my-number {
  display: none;
}

/* .blanter-msg {
  color: #444;
  padding: 20px;
  font-size: 12.5px;
  text-align: center;
  border-top: 1px solid #ddd;
} */
textarea#chat-input {
    border: none;
    font-family: "Arial", sans-serif;
    width: 100%;
    height: 42px;
    outline: none;
    resize: none;
    padding: 10px;
    font-size: 14px;
}
a#send-it {
    width: 30px;
    font-weight: 700;
    padding: 10px 10px 0;
    background: #eee;
    /* border-radius: 10px; */
}
a#send-it svg {
  fill: #a6a6a6;
  height: 24px;
  width: 24px;
}

.first-msg {
  background: transparent;
  padding: 30px;
  text-align: center;
}
.first-msg span {
  background: #e2e2e2;
  color: #333;
  font-size: 14.2px;
  line-height: 1.7;
  border-radius: 10px;
  padding: 15px 20px;
  display: inline-block;
}

.start-chat .blanter-msg {
  display: flex;
}

#get-number {
  display: none;
}

a.close-chat {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #fff;
  font-size: 30px;
}

@keyframes ZpjSY {
  0% {
    background-color: #b6b5ba;
  }
  15% {
    background-color: #111111;
  }
  25% {
    background-color: #b6b5ba;
  }
}
@keyframes hPhMsj {
  15% {
    background-color: #b6b5ba;
  }
  25% {
    background-color: #111111;
  }
  35% {
    background-color: #b6b5ba;
  }
}
@keyframes iUMejp {
  25% {
    background-color: #b6b5ba;
  }
  35% {
    background-color: #111111;
  }
  45% {
    background-color: #b6b5ba;
  }
}
@keyframes showhide {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes showchat {
  from {
    transform: scale(0);
    opacity: 0;
  }
}
@media screen and (max-width: 480px) {
  #whatsapp-chat {
    width: auto;
    left: 5%;
    right: 5%;
    font-size: 80%;
  }
}
.hide {
  display: none;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

.show {
  display: block;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

.whatsapp-message-container {
  display: flex;
  z-index: 1;
}

.whatsapp-message {
  padding: 7px 14px 6px;
  background-color: white;
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
}

.whatsapp-chat-body {
  padding: 20px 20px 20px 10px;
  background-color: #e6ddd4;
  position: relative;
}
.whatsapp-chat-body::before {
  display: block;
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0.08;
  background-image: url("../../../elfsight.com/assets/chats/patterns/whatsapp.png");
}

.dAbFpq {
  display: flex;
  z-index: 1;
}

.eJJEeC {
  background-color: white;
  width: 52.5px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  margin-left: 10px;
  opacity: 0;
  transition: all 0.1s ease 0s;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}

.hFENyl {
  position: relative;
  display: flex;
}

.ixsrax {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  background-color: #9e9da2;
  animation-name: ZpjSY;
}

.dRvxoz {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  background-color: #b6b5ba;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  animation-name: hPhMsj;
}

.kAZgZq {
  padding: 7px 14px 6px;
  background-color: white;
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
}
.kAZgZq::before {
  position: absolute;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  top: 0px;
  left: -12px;
  width: 12px;
  height: 19px;
}

.bMIBDo {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}

.iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: #111111;
}

.iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: #111111;
}

.cqCDVm {
  text-align: right;
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  color: rgba(17, 17, 17, 0.5);
  margin-right: -8px;
  margin-bottom: -4px;
}


/*============================whatapp button css==================================*/

#callme {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 70px;
  height: 70px;
  cursor: pointer;
  z-index: 99990;
}
#callme #callmeMain {
  -moz-border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  border-radius: 50% !important;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: rgb(207,8,8);
  width: 70px;
  height: 70px;
  -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
  -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
  animation: zcwmini2 1.5s 0s ease-out infinite;
}
#callme #callmeMain:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("https://res.cloudinary.com/dglv3fims/image/upload/v1668592876/cal_swjmmc.png");
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-animation: zcwphone2 1.5s linear infinite;
  -moz-animation: zcwphone2 1.5s linear infinite;
  animation: zcwphone2 1.5s linear infinite;
}
@-webkit-keyframes zcwphone {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-moz-keyframes zcwphone {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@keyframes zcwphone {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-webkit-keyframes zcwphone2 {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-moz-keyframes zcwphone2 {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@keyframes zcwphone2 {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-webkit-keyframes zcwmini {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-moz-keyframes zcwmini {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@keyframes zcwmini {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-webkit-keyframes zcwmini2 {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-moz-keyframes zcwmini2 {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@keyframes zcwmini2 {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}

#social_side_links {
  position: fixed;
bottom: 23px;
  left: -21px;
padding:0px;
list-style: none;
z-index: 99;
}

#social_side_links li a {display: block;}

#social_side_links li a img {
  display: block;
  max-width:100%;
padding:7px;
-webkit-transition:  background .2s ease-in-out;
-moz-transition:  background .2s ease-in-out;
-o-transition:  background .2s ease-in-out;
transition:  background .2s ease-in-out;
}

#social_side_links li a:hover img {background: rgba(0, 0, 0, .2);}