@font-face {
    font-family: Mont;
    font-weight: medium;
    src: url("../fonts/MontDemo-ExtraLight.otf") format("opentype");
}

@font-face {
    font-family: Mont;
    font-weight: bold;
    src: url("../fonts/MontDemo-Heavy.ttf") format("opentype");
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-500%);
    }
    100% {
        transform: translateY(0);
    }
}

.slideInFromTop {
    animation: 1.2s ease-out 0s 1 slideInFromTop;
    -moz-animation: 1.2s ease-out 0s 1 slideInFromTop;
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(500%);
    }
    100% {
        transform: translateY(0);
    }
}

.slideInFromBottom {
    animation: 1.2s ease-out 0s 1 slideInFromBottom;
    -moz-animation: 1.2s ease-out 0s 1 slideInFromBottom;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.slideInFromLeft {
    animation: 1.5s ease-out 0s 1 slideInFromLeft;
    -moz-animation: 1.5s ease-out 0s 1 slideInFromLeft;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
    }
    50% {
        transform: translateX(0);
    }
}

.slideInFromRight {
    animation: 2s ease-out 0s slideInFromRight;
    -moz-animation: 2s ease-out 0s slideInFromRight;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translate3d(0, 0, 0);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
    80% {
        opacity: 1;
        transform: scale(0.89);
    }
    100% {
        opacity: 1;
        transform: scale(1) translate3d(0, 0, 0);
    }
}

.bounceIn {
    animation-name: bounceIn;
    animation-duration: 2000ms;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

.logoAnchor img {
    width: 200px;
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #fff;
    z-index: 100000;
}

.preloader img {
    width: 100%;
}

.HamMenuRow {
    position: fixed;
    width: 101%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 9999;
}

.menuLeftCol {
    background: #171e26;
}

.menuRightCol {
    background: url(../assets/img/cols2bg.jpg);
    background-color: #FFF;
}

@media screen and (min-width:220px) {
    .MenuOuterCol_Logo {
        display: table;
        width: 100%;
        height: 100%;
    }
    .colLogo_Container {
        width: 100%;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
    }
}

.MenuOuterCol_Logo img {
    width: 70% !important;
}

.leftMainMenu li {
    list-style: none;
}

.leftMainMenu li {
    text-align: left !important;
    margin-top: 50px;
    margin-bottom: 50px;
}

.leftMainMenu li a {
    font-size: 2.3em;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    color: #fff;
    width: auto;
    display: inline-block;
    margin-bottom: 0;
    z-index: 0;
}

@media screen and (min-width:990px) {
    .leftMainMenu {
        padding-left: 60px !important;
    }
    .leftBottomMenu {
        padding-left: 60px !important;
    }
}

.leftMainMenu li a {
    text-decoration: none;
}


/*
.leftMainMenu li a > span:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: -1px;
  content: "";
  display: block;
  height: 4px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.leftMainMenu li a > span:hover:after { 
  width: 100%; 
  left: 0; 
}
*/

.leftMainMenu li a span:after {
    width: 0%;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50%;
    z-index: -1;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.leftMainMenu .homeLi a>span:hover:after {
    background-color: #b70024;
    width: 100%;
    left: 0;
}

.leftMainMenu .workLi a>span:hover:after {
    background-color: #8f0038;
    width: 100%;
    left: 0;
}

.leftMainMenu .methodLi a>span:hover:after {
    background-color: #4c2bd0;
    width: 100%;
    left: 0;
}

.leftBottomMenu {
    margin-top: 60px !important;
}

.leftBottomMenu li {
    list-style: none;
}

.leftBottomMenu li {
    text-align: left !important;
    margin-top: 20px;
    margin-bottom: 20px;
}

.leftBottomMenu li a {
    font-size: 26px;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 1.5rem;
    position: relative;
    color: #fff;
    width: auto;
    display: inline-block;
    margin-bottom: 0;
    z-index: 0;
}

.leftBottomMenu li a {
    text-decoration: none;
}


/*
.leftBottomMenu li a > span:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: -1px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.leftBottomMenu li a > span:hover:after { 
  width: 100%; 
  left: 0; 
}

*/

.leftBottomMenu li a>span:after {
    width: 0%;
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    height: 25%;
    z-index: -1;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.leftBottomMenu .below_workli a>span:hover:after {
    background-color: #b70024;
    width: 100%;
    left: 0;
}

.leftBottomMenu .below_alwaysli a>span:hover:after {
    background-color: #8f0038;
    width: 100%;
    left: 0;
}

.leftBottomMenu .below_givingli a>span:hover:after {
    background-color: #4c2bd0;
    width: 100%;
    left: 0;
}

.closeDiv {
    text-align: right;
}

.closeDiv span {
    font-size: 20px;
}

.closeDiv img {
    width: 40px !important;
    position: relative;
    top: 30px;
    right: 40px;
    cursor: pointer;
}

.HamMenuRow {
    display: none;
}

.HamMenuPara {
    margin-bottom: 0px;
    width: 100%;
    text-align: right;
}

.HamMenuPara img {
    width: 30px;
}

.HamMenuPara img {
    cursor: pointer;
}

@media screen and (max-width:990px) {
    .HamMenuRow {
        width: 104%;
    }
    .dontshowinmobile {
        display: none;
    }
    .menuRightCol {
        height: auto;
    }
    .MenuOuterCol_Logo img {
        position: relative;
        top: -40px;
        width: 70% !important;
    }
    .leftBottomMenu {
        margin-top: 60px !important;
    }
    .closeDiv img {
        width: 30px !important;
        position: relative;
        top: 10px;
        right: 9px;
    }
}

@media screen and (max-width:768px) {
    .HamMenuRow .menuRightCol {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .HamMenuRow .menuLeftCol {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

@media screen and (min-width:769px) and (min-width:990px) {
    .HamMenuRow .menuRightCol {
        width: 60% !important;
        flex: 0 0 60% !important;
        max-width: 60% !important;
    }
    .HamMenuRow .menuLeftCol {
        width: 40% !important;
        flex: 0 0 40% !important;
        max-width: 40% !important;
    }
}

@media screen and (min-width:990px) {
    .dontshowindesktop {
        display: none;
    }
}

.video-background-holder {
    position: relative;
    background-color: black;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

@media screen and (max-width:990px) {
    .video-background-holder {
        height: calc(100vh - 30px);
    }
}

.video-background-holder video {
    position: absolute;
    top: 60%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.video-background-content {
    position: relative;
    z-index: 2;
}

.video-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: 1;
}

@media screen and (min-width:990px) {
    .video-background-holder {
        margin-top: -112px;
    }
}

.BannerHeading {
    text-align: center;
    font-size: 5em;
    font-weight: 700;
    line-height: 1.3em;
}

.BannerSubHeading {
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 20px !important;
}

@media screen and (max-width:990px) {
    .HamMenuPara {
        position: absolute;
        right: 30px;
    }
    #mainNav {
        background-color: #000;
        padding: 2px 20px !important;
    }
    .BannerHeading {
        font-size: 40px;
    }
    .BannerSubHeading {
        font-size: 16px;
        margin-top: 20px;
    }
    .navbar-toggler {
        display: none;
    }
}

.featureHeading {
    display: table;
    width: 100%;
    height: 100%;
}

.Featyredonheads {
    display: table-cell;
    vertical-align: middle;
    font-size: 26px;
    font-weight: 800;
    text-align: right;
}

.Featyredonheads span {
    padding-bottom: 4px;
    padding-left: 10px;
    font-family: 'Montserrat';
}

@media screen and (min-width:990px) {
    .BannerSubHeading {
        width: 70%;
        margin: 0px auto;
    }
    .Featyredonheads {
        position: relative;
        top: 10px;
    }
}

.slick-slide {
    margin: 0px 20px;
    font-size: 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.pageSections {
    padding: 40px 0px 40px 0px;
}

@media screen and (max-width:990px) {
    .mobilecarousel {
        margin-top: 25px;
    }
}

@media screen and (min-width:770px) and (max-width:990px) {
    .Featyredonheads {
        font-size: 24px;
    }
    .mobilecarousel {
        margin-top: 0px;
    }
}

@media screen and (min-width:990px) {
    .featureHeading {
        position: relative;
        top: -10px;
    }
}

.featured {
    background-color: #f9f9f9;
}

.featured .col-sm-12:first-child {
    padding-left: 0px !important
}

.pageSectionsMore {
    padding: 40px 0px;
}

.CommonHeading {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    width: 100%;
    font-family: Mont;
    margin-top: 20px;
}

.meetFriendsHeads {
    font-size: 3vw !important;
}

.CommonSubHeading {
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
    margin-top: 0px;
    color: #515151;
}

.addWingsRows {
    margin-top: 50px;
}

.addWingsRowsUL {
    padding: 14px 29px !important;
    margin-bottom: 0px !important;
    background: #fff;
    z-index: 1000;
    position: relative;
}

.addWingsRowsUL li:nth-child(1) {
    color: #212529 !important;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.addWingsRowsUL li {
    list-style: none;
}

.arowrightImg img {
    width: 24px;
}

.addingWingsimgDiv>img {
    width: 100%;
}

.addingWingsimgDiv {
    box-shadow: 0px 0px 6px #e1dff2;
}

@media screen and (min-width:990px) {
    .addWingsRows .col-md-6:first-child {
        width: 48%;
        margin-right: 2%;
        flex: 0 0 48%;
    }
    .addWingsRows .col-md-6:last-child {
        width: 48%;
        margin-left: 2%;
        flex: 0 0 48%;
    }
}

.addingWingsimgDiv:hover .arowrightImg img,
.DownloadmediaBtn a:hover .imageArrow {
    animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {
    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }
    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

@media screen and (min-width:990px) {
    .addWingsInnerRows .col-md-6:first-child {
        padding-right: 0px;
        margin-right: 0px !important;
    }
    .addWingsInnerRows .col-md-6:last-child {
        padding-left: 0px;
        margin-left: 0px !important;
    }
}

.addingWingsimgDiv {
    display: table;
    height: 100%;
    width: 100%;
}

.addWingsRowsUL {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

.arowrightImg {
    margin-top: 10px;
}

.MissionRow .MissionRowImg {
    width: 100%;
}

.CommonHeading2 {
    font-size: 2.2rem;
    font-weight: bolder;
    width: 100%;
    line-height: 1.3em;
    text-align: center;
    font-family: Mont;
}

.MissionContOuterSection {
    display: table;
    height: 100%;
    width: 100%;
}

.MissionContinnerSection {
    display: table-cell;
    vertical-align: middle;
}

.MissionPara {
    font-size: 20px;
    line-height: 35px;
    font-weight: 400 !important;
    color: #000;
}

@media screen and (min-width:990px) {
    .MissionPara {
        width: 100%;
    }
}

.DownloadMediaHeads {
    margin-bottom: 0px;
    font-size: 27px;
    font-weight: 500;
    color: #4026d4;
}

.DownloadmediaBtn {
    margin-bottom: 0px;
}

.DownloadmediaBtn .imageArrow {
    width: 22px;
    position: relative;
    top: -1px;
    left: 3px;
}

.DownloadmediaBtn a {
    color: #4026d4 !important;
    background: #f7f6fb;
    padding: 14px 30px;
    border-radius: 30px;
    border: 1px solid #4026d4;
    text-decoration: none;
    font-weight: 500;
}

@media screen and (min-width:990px) {
    .MissionRowCols1 {
        text-align: center;
    }
}

.Profileimage img {
    width: 100%;
}

.ourTeamSection {
    background-color: #fff;
}

.ourTeamRowMargin {
    margin-top: 25px;
}

@media screen and (min-width:990px) {
    .ProfileOuterData {
        display: table;
        height: 100%;
    }
    .ProfileInnerData {
        vertical-align: middle;
        display: table-cell;
    }
}

.ProfilePersonName {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 2px;
}

.ProfilePersonDesg {
    font-size: 18px;
    color: #4026d4;
    font-weight: 500;
}

.ProfilePersonDescr {
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.ProfilePersonDesg span {
    color: #f4623a;
}

.AboutUsPara {
    text-align: center;
    line-height: 1.6em;
    font-size: 18px;
    font-weight: 400;
}

@media screen and (min-width:990px) {
    .AboutUsPara {
        width: 80%;
        margin: 0px auto;
    }
}

.ContouterCont {
    display: table;
    width: 100%;
    height: 100%;
}

.ContinnerCont {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    border: 1px solid #d9d9d9;
    padding: 30px 30px 10px 30px;
}

.ContinnerCont img {
    width: 150px;
}

@media screen and (max-width:990px) {
    .ContinnerCont {
        padding: 30px 30px 30px 30px !important;
    }
}

.contactsRow {
    margin-top: 40px !important;
    background: #fff;
    box-shadow: 0px 0px 10px #dbd0d0;
}

@media screen and (min-width:990px) {
    .contactsRow {
        width: 80%;
        margin: 0px auto;
    }
}

.FormDiv {
    width: auto;
    display: inline-block;
    width: 100%;
}

.ContactForm input,
.ContactForm textarea {
    width: 100%;
    padding: 6px 10px;
    color: #000;
    margin-bottom: 10px;
    border: 1px solid #ced4da;
    margin-bottom: 20px;
    border-radius: 4px;
}

.ContactForm input:focus {
    border: 1px solid #4026d4 !important;
}

.ContactForm textarea:focus {
    border: 1px solid #4026d4 !important;
}

.SubmitButton {
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -moz-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -o-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -ms-linear-gradient(left, #ff483a 0, #3b29de 100%);
    color: #fff !important;
    padding: 14px 30px !important;
    border-radius: 3px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0px 6px 10px #b3add0;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-bottom: none !important;
    width: 40% !important;
}

.SubmitButton:hover {
    box-shadow: 0px 10px 20px 0px #9088bb !important;
}

.Contleftcols {
    padding: 40px 10px;
    background: #f7f6fb;
}

.Contrightcols {
    padding: 40px 10px;
}

a.read_more {
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -moz-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background-clip: border-box;
    background: -o-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -ms-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (min-width:990px) {
    .pageSectionsBottmMore {
        padding: 40px 0px 200px 0px;
    }
    .contactsRow {
        position: relative;
        top: -150px;
    }
}

.ContEmail {
    margin-top: 24px;
}

.ContEmail a {
    color: #4026d4;
    text-decoration: none;
}

.ProfileOuterData1 {
    display: table;
    height: 100%;
    width: 100%;
}

.ProfileInnerData1 {
    display: table-cell;
    vertical-align: middle;
}

@media screen and (min-width:990px) and (max-width:1450px) {
    .BannerHeading {
        font-size: 3.5em;
    }
    .BannerSubHeading {
        font-size: 18px;
    }
}

@media screen and (min-width:990px) and (max-width:1236px) {
    .Featyredonheads {
        font-size: 28px;
    }
}

@media screen and (min-width:990px) and (max-width:1290px) {
    .CommonHeading2 {
        font-size: 2rem;
    }
}

@media screen and (max-width:990px) {
    .BRsRemove {
        display: none;
    }
}

@media screen and (min-width:990px) and (max-width:1200px) {
    .leftMainMenu li a {
        font-size: 3.3em;
    }
    .leftBottomMenu li a {
        font-size: 22px;
    }
}

@media screen and (min-width:768px) and (max-width:770px) {
    .Featyredonheads {
        font-size: 22px;
    }
    .mobilecarousel {
        margin-top: 0px !important;
    }
}

@media screen and (min-width:768px) and (max-width:992px) {
    .DownloadmediaBtn a {
        padding: 14px 20px !important;
        font-size: 14px !important;
    }
}

@media screen and (max-width:990px) {
    .ContactSection {
        padding: 10px 20px 50px 20px;
    }
    .pageSectionsBottmMore {
        padding: 40px 0px !important;
    }
}

@media screen and (max-width:767px) {
    .Featyredonheads {
        text-align: center;
    }
    .Blogs {
        height: auto;
        padding: 6px 0 6px 9px !important;
        margin: 20px 10px 0px 10px !important;
        border: none !important;
        display: inline-block;
    }
    .Blogs::before {
        background-size: 12px !important;
        width: 20px !important;
        height: 20px !important;
        left: -12px !important;
        top: 20px !important;
    }
    .AbtSpan {
        top: -18px !important;
    }
}

@media screen and (min-width:768px) and (max-width:990px) {
    .addWingsInnerRows>.col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (min-width:990px) and (max-width: 1400px) {
    .addingWingsimgDiv {
        box-shadow: none;
    }
    .addWingsInnerRows {
        box-shadow: 0px 0px 6px #e1dff2 !important;
    }
}

@media screen and (min-width:768px) and (max-width:990px) {
    .RemoveFromtabs {
        display: none;
    }
}

@media screen and (min-width:768px) {
    .dont-showindesk {
        display: none;
    }
}

@media screen and (max-width:767px) {
    .CommonHeading {
        font-size: 2rem;
        line-height: 1.5em;
    }
    .CommonSubHeading {
        line-height: 1.5em;
    }
    .RemoveFromtabs {
        display: none;
    }
    .addWingsRows>.col-md-6 {
        margin-bottom: 50px !important;
    }
    .addWingsRows:last-child {
        margin-top: 0px !important;
    }
    .addWingsRows:last-child>.col-md-6:last-child {
        margin-bottom: 0px !important;
    }
    .addWingsRowsUL li {
        text-align: center;
    }
    .CommonHeading2 {
        font-size: 2rem;
        text-align: center;
        line-height: 1.4em;
    }
    .MissionPara {
        font-size: 18px;
        text-align: center;
    }
    .pageSectionsMore {
        padding: 40px 0px;
    }
    .DownloadMediaHeads {
        text-align: center;
    }
    .DownloadmediaBtn {
        margin-top: 40px;
        text-align: center;
    }
    .pageSections {
        padding: 40px 0px 50px 0px;
    }
    .DownloadMediaHeads {
        font-size: 20px;
    }
    .DownloadmediaBtn a {
        font-size: 14px;
    }
    .ourTeamRowMargin {
        margin-top: 30px;
    }
    .dont-showinmob {
        display: none;
    }
    .ProfilePersonName {
        text-align: center;
    }
    .ProfilePersonDesg {
        text-align: center;
    }
    .ProfilePersonDescr {
        text-align: center;
    }
    .ProfileInnerData {
        margin-top: -15px;
    }
}

@media screen and (min-width:768px) {
    .ShowHrMobile {
        display: none;
    }
}

.ShowHrMobile {
    margin: 30px 0px 20px 0px;
    border: 0.2px solid #c1bcf1;
}

@media screen and (min-width:575px) and (max-width:768px) {
    .addingWingsimgDiv {
        box-shadow: none;
    }
    .addWingsInnerRows {
        box-shadow: 0px 0px 6px #e1dff2;
    }
}

.Featyredonheads::before {
    content: '';
    border-left: 5px solid #ff483a;
    border-left-style: solid;
    border-left-width: 5px;
    border-left-width: 5px;
    border-left-style: solid;
    border-image: linear-gradient(to bottom, #ff483a, #3b29de) 1 100%;
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: linear-gradient(to right, #ff483a 0, #3b29de 100%);
    background: -moz-linear-gradient(left, #ff483a 0, #3b29de 100%);
}

.AddingWingsRow {
    margin-top: 50px;
}

.twoimgDiv img {
    width: 100%;
}

@media screen and (min-width:990px) {
    .makeRightsimgpara img {
        width: 60%;
    }
    .makeRightsimgpara {
        text-align: left;
    }
    .makeRightsimgpara2 img {
        width: 50%;
    }
    .makeRightsimgpara2 {
        text-align: center;
        position: absolute;
        bottom: 0px;
        right: 5%;
        height: 220px;
        background: #f7f6fb;
        width: 50%;
        box-shadow: 0px 0px 10px #bdbdbd;
        padding: 10px;
    }
}

.imgpara {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.desctext {
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    display: inline-block;
    font-size: 17px;
    color: #fff;
    margin-bottom: 0px;
    padding: 10px 10px 10px 20px;
    font-weight: 500;
    position: absolute;
    bottom: 0px;
}

.desctext2 {
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    display: inline-block;
    font-size: 17px;
    color: #fff;
    margin-bottom: 0px;
    padding: 10px 10px 10px 20px;
    font-weight: 500;
    position: absolute;
    bottom: 15px;
    right: 0px;
    text-align: left;
}

.makeRightsimgpara img,
.makeRightsimgpara2 img {
    box-shadow: 0px 0px 10px #bdbdbd;
}

.desctextleft {
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    display: inline-block;
    font-size: 17px;
    color: #fff;
    margin-bottom: 0px;
    padding: 10px 20px 10px 20px;
    font-weight: 500;
    position: absolute;
    bottom: 0px;
    right: 0px;
    text-align: right;
}

.desctextleft2 {
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    display: inline-block;
    font-size: 17px;
    color: #fff;
    margin-bottom: 0px;
    padding: 10px 20px 10px 20px;
    font-weight: 500;
    position: absolute;
    bottom: 15px;
    left: 0px;
    text-align: right;
    width: 50%;
}

.AddingWingsRow .col-md-6 {
    padding: 0px;
}

@media screen and (min-width:990px) {
    .desctext {
        width: 60%;
    }
    .desctext2 {
        width: 50%;
    }
    .makeLeftimgpara .imgpara img {
        width: 60%;
    }
    .makeLeftimgpara .imgpara {
        text-align: right;
    }
    .desctextleft {
        width: 60%;
    }
    .makeLeftimgpara2 img {
        width: 50%;
    }
    .makeLeftimgpara2 {
        text-align: center;
        position: absolute;
        bottom: 0px;
        left: 5%;
        height: 220px;
        background: #f7f6fb;
        width: 50%;
        box-shadow: 0px 0px 10px #bdbdbd;
        padding: 10px;
    }
}

.makeLeftimgpara img,
.makeLeftimgpara2 img {
    box-shadow: 0px 0px 10px #bdbdbd;
}

.wantotocnnpara {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 1.6em;
    margin-top: 20px !important;
}

@media screen and (min-width:990px) {
    .wantotocnnpara {
        width: 60%;
        margin: 0px auto;
    }
}

.DownloadMediakitbtn {
    text-align: center;
    margin-top: 50px;
}

.DownloadMediakitbtn a {
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -moz-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -o-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -ms-linear-gradient(left, #ff483a 0, #3b29de 100%);
    color: #fff;
    padding: 18px 30px;
    border-radius: 3px;
    font-weight: 500;
    text-decoration: none;
}

.DownloadMediakitbtn a:hover {
    box-shadow: 0px 10px 20px 0px #9088bb !important;
}

.DownloadMediakitbtn a img {
    width: 22px;
    position: relative;
    top: -1px;
    left: 3px;
}

@media screen and (min-width:990px) {
    .innerRowwantto {
        width: 100%;
        margin: 0px auto;
        box-shadow: 0px 6px 30px 0px rgba(24, 32, 111, 0.14);
        padding-bottom: 35px;
        background-color: #fff;
    }
    .CommonHeading {
        position: relative;
        top: -18px;
    }
    .outerRowwantto {
        width: 80%;
        margin: 0px auto;
        padding: 50px 0px 20px 0px;
    }
}

.CommonHeadingwant {
    font-size: 2.5rem !important;
}

.addingWingImg img {
    width: 100%;
}

.addingWingsText_bottomRight {
    position: absolute;
    bottom: 15px;
    right: 40px;
    font-size: 25px;
    font-weight: 800;
    font-family: 'Lato';
    text-align: right;
    letter-spacing: 1px;
}

.makeSmall {
    font-size: 16px;
}

.addingWingsText_topRight {
    position: absolute;
    top: 15px;
    right: 40px;
    font-size: 25px;
    font-weight: 800;
    font-family: 'Lato';
    text-align: right;
    letter-spacing: 1px;
}

@media screen and (min-width:990px) {
    .outerRidge {
        display: table;
        height: 100%;
        width: 100%;
    }
    .innerRidge {
        display: table-cell;
        vertical-align: middle;
    }
}

.profileName {
    font-size: 1.3em;
    font-weight: 600;
}

.profileDesg {
    font-weight: 500;
}

.makeRightsimgpara2:hover {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: transform 0.5s ease-in-out;
    -moz-transition: transform 0.5s ease-in-out;
    -ms-transition: transform 0.5s ease-in-out;
}

.makeLeftimgpara2:hover {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: transform 0.5s ease-in-out;
    -moz-transition: transform 0.5s ease-in-out;
    -ms-transition: transform 0.5s ease-in-out;
}

.commonShowDiv {
    position: fixed;
    height: 100%;
    top: 0;
    left: 0px;
    width: 101.2%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

.makeColswhite {
    background-color: #fff;
}

.person-photo1 {
    background-image: url(../assets/img/slide-profile-image1.jpg);
    height: 100vh;
    min-height: auto;
    background-position: 50%;
    background-size: cover;
}

.person-photo2 {
    background-image: url(../assets/img/slide-profile-image2.jpg);
    height: 100vh;
    min-height: auto;
    background-position: 50%;
    background-size: cover;
}

.innerPhotoCols {
    padding: 0px !important;
}

.slidePersonHeads {
    font-size: 2.2em;
    font-weight: bold;
    font-family: Mont;
    color: #da281c;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

@media screen and (min-width:990px) {
    .makeColswhite .innerRidge {
        padding-left: 30px !important;
    }
    .slidePersonContent {
        padding-right: 50px;
    }
}

.slidePersonDesg {
    font-size: 20px;
    font-weight: 500;
}

.slidePersonContent {
    line-height: 1.6em;
    font-size: 16px;
    font-weight: 300;
}

.l-swipe-panel__close {
    background-color: #da281c;
    color: #da281c;
    cursor: pointer;
    font-family: Gotham-Medium, sans-serif;
    font-size: 12px;
    height: 39px;
    left: 0;
    letter-spacing: .02em;
    line-height: 21px;
    overflow: hidden;
    position: absolute;
    text-transform: uppercase;
    top: -39px;
    width: 39px;
    z-index: 1;
}

.l-swipe-panel__close::after,
.l-swipe-panel__close::before {
    background-color: #fff;
    content: "";
    height: 2px;
    left: 8px;
    position: absolute;
    top: 18px;
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 60%;
}

.l-swipe-panel__close {
    color: #da281c;
    cursor: pointer;
    font-family: Gotham-Medium, sans-serif;
    font-size: 12px;
    letter-spacing: .02em;
    line-height: 21px;
    text-transform: uppercase;
}

.l-swipe-panel__close::after {
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.l-swipe-panel__close::after,
.l-swipe-panel__close::before {
    background-color: #fff;
    content: "";
    height: 2px;
    left: 8px;
    position: absolute;
    top: 18px;
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 60%;
}

.l-swipe-panel__close {
    color: #da281c;
    cursor: pointer;
    font-family: Gotham-Medium, sans-serif;
    font-size: 12px;
    letter-spacing: .02em;
    line-height: 21px;
    text-transform: uppercase;
}

.l-swipe-panel__close::after {
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media screen and (min-width:768px) {
    .l-swipe-panel__close {
        left: 0;
        top: 0;
    }
}

.commonShowDiv {
    display: none;
}

.ShowSlideDiv_Tabassum {
    display: none;
    overflow: hidden;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
}

.ShowSlideDiv_Khasif {
    display: none;
}

.selected {
    animation: slide-in 0.5s forwards;
    -webkit-animation: slide-in 0.5s forwards;
    display: flex;
}

.dismiss {
    animation: slide-out 0.5s forwards;
    -webkit-animation: slide-out 0.5s forwards;
    display: flex;
}

@media screen and (max-width: 990px) {
    .dismiss {
        left: 13px !important;
    }
}

@keyframes slide-in {
    0% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(0%);
    }
}

@-webkit-keyframes slide-in {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes slide-out {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(100%);
    }
}

@-webkit-keyframes slide-out {
    0% {
        -webkit-transform: translateX(0%);
    }
    100% {
        -webkit-transform: translateX(100%);
    }
}

.DownloadMediakitbtn a {
    box-shadow: 0px 6px 10px #b3add0;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: block;
}

.post_text {
    text-align: justify;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 20px;
}

.post-text:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.Blogs {
    border-top: 2px solid #d9d9db;
    border-left: 2px solid #d9d9db;
    color: black;
    position: relative;
    width: 100%;
    padding: 45px 0 16px 9px;
    margin: 0px 0 24px 0;
}

.Blogs::before {
    content: '';
    position: absolute;
    width: 23px;
    height: 23px;
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: linear-gradient(to right, #ff483a 0, #3b29de 100%);
    background: -moz-linear-gradient(left, #ff483a 0, #3b29de 100%);
    left: -12px;
    top: 60px;
    border-radius: 50%;
    border-color: white;
    border: 3px solid white;
}

.card-title a {
    color: black;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 700;
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -moz-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background-clip: border-box;
    background: -o-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -ms-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.25rem;
}

.card-img-top {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.card-small-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
}

.AbtSpan {
    display: inline-block;
    padding-bottom: 0px;
    background: linear-gradient(to left, #ff483a, #3b29de);
    background-size: 100% 5px;
    background-position: bottom 0 left 0, bottom 5px left 0;
    background-repeat: no-repeat;
}

.AbtSpan {
    margin-left: 10px;
    position: relative;
    top: -15px;
}

.wanttoconect {
    padding-top: 0px !important;
    padding-bottom: 50px !important;
}

.sticky-box {
    bottom: 50%;
    left: 0;
    position: fixed;
    background: linear-gradient(to left, #ff483a, #3b29de);
    transform: rotate( -90deg);
    transform-origin: right, top;
    -ms-transform: rotate(-90deg);
    -ms-transform-origin: right, top;
    -webkit-transform: rotate( -90deg);
    -webkit-transform-origin: right, top;
}

.wrapper {}

.sticky-box .wrapper a {
    text-decoration: none;
}

.sticky-box .wrapper p {
    font-weight: 700;
    font-size: 1.2em;
    z-index: 11;
    padding: .375em 0.25em;
    color: white;
    margin-bottom: 0;
}

@media screen and (min-width:990px) {
    .addWingsSection {
        padding-bottom: 30px !important;
    }
}

.contact_form_container .contact_title {
    position: absolute;
    top: -20px;
    background: white;
    padding: 0 20px;
}

.contact_title {
    font-size: 30px;
    color: #000000;
    line-height: normal;
    display: inline-block;
    position: relative;
    top: 18px;
    left: 20px;
    background: #fff;
}

.contact_title span {
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    position: relative;
}

.AbtSpanheads {
    text-align: left;
}

@media screen and (min-width:990px) {
    .ContactSection {
        padding-top: 30px;
        padding-bottom: 110px;
    }
    .contactRow {
        width: 100%;
        margin: 0px auto;
    }
}

.Contacttext {
    font-size: 5vw;
    font-weight: 900;
    line-height: 1.3em;
    font-family: Mont;
}

.lovesustxt {
    font-size: 5vw;
    font-weight: 900;
    line-height: 1.3em;
    font-family: Mont;
}

.wantConnect {
    background-color: #fff;
}

.profileHeadingImg {
    text-align: center;
}

.profileHeadingImg img {
    width: 34%;
}

@media screen and (min-width:990px) {
    .profileHeadingImg {
        margin-bottom: -130px;
    }
    .logoContainer {
        width: 90% !important;
        max-width: 90% !important;
    }
}

.bottomText {
    font-size: 20px;
    line-height: 1.7em;
    font-weight: 500;
    margin-top: 40px;
}

@media screen and (min-width:990px) {
    .makeImageRights .col-md-3 {
        width: 20% !important;
        flex: 0 0 20%;
        max-width: 20%;
        padding-left: 2px;
        padding-right: 2px;
    }
}

.friendsImg {
    width: 170px;
    position: relative;
    top: -5px;
}

.meetFriendsHeads {
    line-height: 1.3em !important;
    font-family: 'Bowlby One', cursive;
}

@media screen and (min-width:990px) {
    .ourTeamRowMargin {
        margin-top: -12%;
    }
}

.makeRightsimgpara2 {
    background-image: url('../assets/img/colsimg.jpg');
    cursor: pointer;
}

.makeLeftimgpara2 {
    background-image: url('../assets/img/colsimg.jpg');
    cursor: pointer;
}

.profileName {
    display: inline-block;
    padding-bottom: 3px;
    background: linear-gradient(to left, #ff483a, #3b29de);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
    background-size: 100% 1px;
    background-position: bottom 0 left 0, bottom 5px left 0;
    background-repeat: no-repeat;
    padding-bottom: 10px;
}

@media screen and (min-width:990px) and (max-width:1400px) {
    .Featyredonheads {
        font-size: 23px !important
    }
}

.logoContainer .slider .innerRidge {
    height: 60px;
    text-align: center;
    font-size: inherit;
    font-weight: 600;
    padding: 10px !important;
    color: #b3b3b3;
}

.mapimgcol img {
    width: 100%;
}

.addingWingsheads {
    text-align: left !important;
}

.CommonSubHeading {
    margin-top: -15px;
    text-align: left !important;
}

.wantotocnnparaLeft {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    line-height: 1.6em;
    margin-top: 20px !important;
}

.innerCountDiv {
    font-size: 30px;
    font-weight: 600;
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -moz-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background-clip: border-box;
    background: -o-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -ms-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countHeads {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.countsDesc {
    font-size: 14px;
    font-weight: 400;
}

.countplus {
    font-size: 24px;
}

.abtmapbelowRow {
    margin-top: 60px;
}

.bottomTextroll {
    font-size: 18px;
    line-height: 1.7em;
    font-weight: bold;
    margin-top: 30px;
    font-family: Mont;
}

@media screen and (min-width:990px) {
    .meetFriendsHeadsHideDesk {
        display: none;
    }
}

@media screen and (max-width:990px) {
    .video-background-holder video {
        width: 100%;
        top: 50%;
        left: 50%;
    }
    .video-background-holder {
        height: 29%;
    }
    .addingWingsheads,
    .wantotocnnparaLeft {
        text-align: center !important;
    }
    .abtmapbelowRow {
        padding: 0px 20px;
        text-align: center;
    }
    .abtmapbelowRow .col-md-3 {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .wanttoconect {
        padding: 0px 20px;
    }
    .meetFriendsHeadsHideMob {
        display: none;
    }
    .meetFriendsHeadsHideDesk img {
        width: 30%;
        position: relative;
        top: 5px;
    }
    .meetFriendsHeadsHideDesk {
        font-size: 7vw !important;
    }
    .rmvbrmob {
        display: none;
    }
    .makeRightsimgpara2,
    .makeLeftimgpara2 {
        text-align: center;
    }
    .ourTeamRow {
        padding: 0px 20px;
    }
    .ourTeamRow .innerRidge {
        padding: 10px 0px;
    }
    .col_Tabassum {
        margin-bottom: 30px;
        box-shadow: 0px 0px 10px #ddd;
    }
    .col_Kashif {
        margin-bottom: 30px;
        box-shadow: 0px 0px 10px #ddd;
    }
    .ourTeamRow .imgpara {
        margin-top: 15px;
    }
    .AbtSpanheads {
        text-align: center;
        margin-top: 10px;
    }
    .MissionRow .MissionRowImg {
        width: 80%;
    }
    .MissionRow .innerRidge {
        text-align: center;
    }
    .Contacttext {
        margin-bottom: 0px !important;
        font-size: 8vw;
        text-align: center;
    }
    .bottomText {
        text-align: center;
        margin-top: 15px;
    }
    .bottomTextroll {
        text-align: center;
        margin-top: 15px;
    }
    .ContactSection {
        margin-bottom: 40px;
    }
    .SubmitButton {
        width: 100% !important;
        margin-bottom: 0px !important;
    }
    .commonShowDiv .col-sm-12 {
        padding: 20px;
        text-align: center;
    }
    .commonShowDiv .col-md-2 {
        background-color: #fff;
    }
    .l-swipe-panel__close {
        right: 0px !important;
        left: auto !important;
    }
    .commonShowDiv {
        overflow: scroll !important;
    }
    .leftMainMenu li a {
        font-size: 7vw;
    }
    .HamMenuRow {
        overflow-x: scroll !important;
    }
    .ourReach {
        text-align: center !important;
        margin-top: 10px !important;
    }
    .addingWingsheads {
        margin-top: 60px;
    }
    .ourTeamSection {
        padding-bottom: 10px !important;
    }
    .lovesustxt {
        margin-bottom: 0px !important;
        font-size: 8vw;
        text-align: center;
    }
    .spanLovesUs {
        background-size: 100% 5px !important;
        line-height: 1.2em;
    }
    .SocialLinksUl li a {
        width: 30px !important;
        height: 30px !important;
    }
    .SocialLinksUl li a .fa {
        line-height: 28px !important;
    }
    .SocialLinksUl {
        padding-left: 40px !important;
    }
}

.DigitalFea {
    font-family: Kanit;
    font-weight: 900;
    letter-spacing: 1px;
}

.pageSectionsFeatured {
    padding: 20px 0px 20px 0px;
}

.ourReach {
    font-size: 1.7rem;
    font-weight: bold;
    text-align: left;
    width: 100%;
    font-family: Mont;
    margin-top: -15px;
    color: #a4a4a4;
}

.ourReach span {
    display: inline-block;
    padding-bottom: 0px;
    background: linear-gradient(to left, #ff483a, #3b29de);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
    background-size: 100% 5px;
    background-position: bottom 0 left 0, bottom 5px left 0;
    background-repeat: no-repeat;
}

.starNote {
    font-size: 14px;
    text-align: center;
    margin-top: 6px;
    margin-bottom: 5px !important;
    color: #aaa;
}

.starNote2 {
    font-size: 14px;
    text-align: center;
    margin-top: 6px;
    margin-bottom: 5px !important;
    color: #aaa;
}

.spanLovesUs {
    display: inline-block;
    background: linear-gradient(to left, #ff483a, #3b29de);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
    background-size: 100% 10px;
    background-position: bottom 0 left 0, bottom 5px left 0;
    background-repeat: no-repeat;
}

.ourTeamSection {
    padding: 40px 0px 60px 0px;
}

.MissionSection {
    padding: 60px 0px 80px 0px;
}

.bottomTextroll img {
    width: 25px;
    position: relative;
    left: -5px;
    transition-delay: 0s;
    transition-duration: 1s;
}

.bottomTextroll:hover img {
    left: 5px;
}

.SocialLinksUl li a .fa {
    color: #fff;
    line-height: 38px;
}

.SocialLinksUl li a {
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
}

.SocialLinksUl {
    padding-left: 60px;
    margin-top: 60px;
    text-align: left;
}

.SocialLinksUl li {
    display: inline-block;
    margin-right: 20px;
}

.slidePersonHeads img {
    width: 35px;
}

.lovesustxt {
    line-height: 1em;
}

@media screen and (min-width:990px) and (max-width:1220px) {
    .Featyredonheads span {
        font-size: 22px !important;
    }
}

@media screen and (min-width:990px) {
    .leftBottomMenu {
        margin-top: 100px !important;
    }
}

@media screen and (max-width: 990px) {
    .hideinmobileprof {
        display: none;
    }
}

@media screen and (min-width: 990px) {
    .hideinDeskprof {
        display: none;
    }
}

.profileLinks {
    padding: 0px;
}

.profileLinks img {
    width: 36px;
}

.profileLinks li {
    list-style: none;
    display: inline-block;
    margin-right: 15px;
}

@media screen and (min-width: 650px) and (max-width:989px) {
    .ContentContact .Contacttext,
    .ContentContact .lovesustxt {
        font-size: 6vw;
    }
}

@media screen and (min-width: 768px) and (max-width: 990px) {
    .AbtSpanheads {
        font-size: inherit !important;
    }
    .MissionPara {
        line-height: 1.5em;
        font-size: 16px;
    }
    .MissionRow .outerRidge {
        display: table;
        height: 100%;
        width: 100%;
    }
    .MissionRow .innerRidge {
        display: table-cell;
        vertical-align: middle;
    }
    .innerRowwantto {
        width: 100%;
        margin: 0px auto;
        box-shadow: 0px 6px 30px 0px rgba(24, 32, 111, 0.14);
        padding-bottom: 35px;
        background-color: #fff;
    }
    .CommonHeading {
        position: relative;
        top: -18px;
    }
    .col_Tabassum {
        flex: 0 0 48%;
        max-width: 48%;
        margin-right: 2%
    }
    .col_Kashif {
        flex: 0 0 48%;
        max-width: 48%;
        margin-left: 2%
    }
}

.btn-DownloadMediakitbtn {
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -moz-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -o-linear-gradient(left, #ff483a 0, #3b29de 100%);
    background: -ms-linear-gradient(left, #ff483a 0, #3b29de 100%);
    color: #fff;
    padding: 6px 30px;
    border-radius: 3px;
    font-weight: 500;
    text-decoration: none;
}

.blink_me {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}