/*--------------------------------------------------------------*/
/* GENERAL:                                                     */
/*--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #272829;
}

a {
    color: #743ad5;
    text-decoration: none;
}
  
a:hover {
    color: #d53a9d;
    text-decoration: none;
}
  
h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
}

.dashed {
	border:#666 1.6px dashed;
	border-style: none none dashed;
	color:#FFFFFF;
	margin-top: 5px !important;
	margin-bottom: 5px !important;
}

.stack-color{
    color: #743ad5;
}

.text-right{
	text-align: right !important;
}


.text-left{
	text-align: left !important;
}


.text-center{
	text-align: center !important;
}

.first-color {
	color: #5D5C61 !important;
}

.secondary-color {
	color: #45505b !important;
}

.tertiary-color{
	color: #7395AE !important;
}

.fourth-color {
	color: #938e94 !important;
}
/*--------------------------------------------------------------*/


/*--------------------------------------------------------------*/
/* OVERWRITE BOOTSTRAP RULE:                                    */
/*--------------------------------------------------------------*/
.badge-secondary{
	background-color: #938e9483;
}
/*--------------------------------------------------------------*/


/*--------------------------------------------------------------*/
/* BACK TO TOP:                                                 */
/*--------------------------------------------------------------*/
a.back-to-top{
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 5px;
    text-align: center;
    font-size: 22px;
    line-height: 1.1;
    border-radius: 25px;
    border: 3px solid #d53a9d;
    background-color: rgb(250, 250, 250, 0.7);
}

a.back-to-top:hover{
    border: 3px solid #743ad5;
}
/*--------------------------------------------------------------*/


/*--------------------------------------------------------------*/
/* PRE LOADER:                                                  */
/*--------------------------------------------------------------*/
#divPreloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}
  
#divPreloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #d53a9d;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}
  
@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
  
@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------------------*/


/*--------------------------------------------------------------*/
/* SECTIONS:                                                    */
/*--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

section.dark{
    background-color: #1e1e2f;
    color: #ddd;
}

section.medium{
    background-color: #1e1e2f09;
}
  
.section-title {
    text-align: center;
    padding-bottom: 30px;
}
  
.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #45505b;
}
  
.section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}
  
.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #743ad5 0%, #d53a9d 100%);
    bottom: 0;
    left: calc(50% - 20px);
}
  
.section-title p {
    margin-bottom: 0;
}

.section-title h2.dark {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #bbb;
}
/*--------------------------------------------------------------*/


/*--------------------------------------------------------------*/
/* HEADER SECTION:                                              */
/*--------------------------------------------------------------*/
#secHeader {
    width: 100%;
    height: 100vh;
    background: url("../img/banner.jpg") top right no-repeat;
    background-size: cover;
    position: relative;
}
  
@media (min-width: 992px) {
    #secHeader {
        padding-left: 160px;
    }
}
  
#secHeader:before {
    content: "";
    background: #27293de0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.box {
    margin-left: 30px;
    width: 750px;
    height: 750px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.box .title {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
}

.box .title .block {
    width: 0%;
    height: inherit;
    background: #ffb510;
    position: absolute;
    animation: mainBlock 2s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
    display: flex;
}

.box .title h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 56px;
    color: #ddd;

    -webkit-animation: mainFadeIn 2s forwards;
    -o-animation: mainFadeIn 2s forwards;
    animation: mainFadeIn 2s forwards;
    animation-delay: 1.6s;
    opacity: 0;
    display: flex;
    align-items: baseline;
    position: relative;
}

.box .title h1 span {
    width: 0px;
    height: 0px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #ffb510;
    -webkit-animation: load 0.6s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
    animation: popIn 0.8s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
    animation-delay: 2s;
    margin-left: 5px;
    margin-top: -10px;
    position: absolute;
    bottom: 13px;
    right: -12px;
}

.box .role {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 30px;
    
}

.box .role .block {
    width: 0%;
    height: inherit;
    background: #e91e63;
    position: absolute;
    margin-top: 20px;
    animation: secBlock 2s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
    animation-delay: 2s;
    display: flex;
}

.box .role p {
    animation: secFadeIn 2s forwards;
    animation-delay: 3.2s;
    opacity: 0;
}
  
@keyframes mainBlock {
    0% {
      width: 0%;
      left: 0;
    }
    50% {
      width: 100%;
      left: 0;
    }
    100% {
      width: 0;
      left: 100%;
    }
}

@keyframes secBlock {
    0% {
      width: 0%;
      left: 0;
    }
    50% {
      width: 100%;
      left: 0;
    }
    100% {
      width: 0;
      left: 100%;
    }
}

@keyframes mainFadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

@keyframes popIn {
    0% {
      width: 0px;
      height: 0px;
      background: #e9d856;
      border: 0px solid #ddd;
      opacity: 0;
    }
    50% {
      width: 10px;
      height: 10px;
      background: #e9d856;
      opacity: 1;
      bottom: 45px;
    }
    65% {
      width: 7px;
      height: 7px;
      bottom: 0px;
      width: 15px;
    }
    80% {
      width: 10px;
      height: 10px;
      bottom: 20px;
    }
    100% {
      width: 9px;
      height: 9px;
      background: #e9d856;
      border: 0px solid #222;
      bottom: 18px;
      right: -15px;
    }
}

@keyframes secFadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

#secHeader p {
    color: #45505b;
    margin: 15px 0 0 0;
    font-size: 26px;
    font-family: "Poppins", sans-serif;
}
  
#secHeader p span {
    color: #ffb510;
    letter-spacing: 1px;
}
  
#secHeader .social-links {
    margin-top: 20px;
}

#secHeader .social-links a {
    font-size: 20px;
    display: inline-block;
    color: #888;
    line-height: 1;
    margin-right: 20px;
    transition: 0.3s;
}
  
#secHeader .social-links a:hover {
    color: #743ad5;
}

@media (max-width: 992px) {
    #secHeader h1 {
        font-size: 32px;
        line-height: 36px;
    }
    #secHeader p {
        margin-top: 10px;
        font-size: 20px;
        line-height: 24px;
    }
}
/*--------------------------------------------------------------*/


/*--------------------------------------------------------------*/
/* ABOUT SECTION:                                               */
/*--------------------------------------------------------------*/
.avatar {
    vertical-align: middle;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 15px;
    margin-top: -20px;
}

.about-text {
    margin-top: 15px;
}

#secAbout .content h3 {
    font-weight: 700;
    font-size: 26px;
    color: #728394;
}
  
#secAbout .content ul {
    list-style: none;
    padding: 0;
}
  
#secAbout .content ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
  
#secAbout .content ul strong {
    margin-right: 10px;
}
  
#secAbout .content ul i {
    font-size: 16px;
    margin-right: 5px;
    color: #d53a9d;
    line-height: 0;
}
  
#secAbout .content p:last-child {
    margin-bottom: 0;
}
/*--------------------------------------------------------------*/


/*--------------------------------------------------------------*/
/* CALLOUT:                                                     */
/*--------------------------------------------------------------*/
.callout {
    padding: 20px;
    border: 1px solid;
    -o-border-image: linear-gradient(to right, #743ad5 0%, #d53a9d 100%);
       border-image: linear-gradient(to right, #743ad5 0%, #d53a9d 100%);
    border-image-slice: 1;
    background: #27293d;
    color: #ddd;
}

.callout h4 {
    color: #d53a9d;
}

.callout table{
    color: #ddd;
    border-color: #45505b;
}
/*--------------------------------------------------------------*/


/*--------------------------------------------------------------*/
/* TIMELINE:                                                    */
/*--------------------------------------------------------------*/
.main-timeline {
    position: relative;
}

.main-timeline:before {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background: #c6c6c6;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.main-timeline .timeline {
    margin-bottom: 40px;
    position: relative;
}

.main-timeline .timeline:after {
    content: "";
    display: block;
    clear: both;
}

.main-timeline .icon {
    width: 18px;
    height: 18px;
    line-height: 18px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.main-timeline .icon:before,
.main-timeline .icon:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.33s ease-out 0s;
}

.main-timeline .icon:before {
    background: #fff;
    border: 2px solid #733ad580;
    left: -3px;
}

.main-timeline .icon:after {
    border: 2px solid #d53a9c81;
    left: 3px;
}

.main-timeline .timeline:hover .icon:before {
    left: 3px;
}

.main-timeline .timeline:hover .icon:after {
    left: -3px;
}

.main-timeline .date-content {
    width: 50%;
    float: left;
    margin-top: 22px;
    position: relative;
}

.main-timeline .date-content:before {
    content: "";
    width: 36.5%;
    height: 2px;
    background: #c6c6c6;
    margin: auto 0;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
}

.main-timeline .date-outer {
    width: 125px;
    height: 125px;
    font-size: 16px;
    text-align: center;
    margin: auto;
    z-index: 1;
}

.main-timeline .date-outer:before,
.main-timeline .date-outer:after {
    content: "";
    width: 125px;
    height: 125px;
    margin: 0 auto;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.33s ease-out 0s;
}

.main-timeline .date-outer:before {
    background: #fff;
    border: 2px solid #733ad580;
    left: -6px;
}

.main-timeline .date-outer:after {
    border: 2px solid #d53a9c81;
    left: 6px;
}

.main-timeline .timeline:hover .date-outer:before {
    left: 6px;
}

.main-timeline .timeline:hover .date-outer:after {
    left: -6px;
}

.main-timeline .date {
    width: 100%;
    margin: auto;
    position: absolute;
    top: 23%;
    left: 0;
}

.main-timeline .month {
    font-size: 23px;
    font-weight: 700;
	color: #a7adba;
}

.main-timeline .year {
    display: block;
    font-size: 23px;
    font-weight: 700;
    color: #65737e;
    line-height: 36px;
}

.main-timeline .timeline-content {
    width: 50%;
    padding: 20px 0 20px 50px;
    float: right;
}

.main-timeline .tm-title {
    font-size: 19px;
    font-weight: 700;
    line-height: 24px;
    margin: 0 0 15px 0;
}

.main-timeline .description {
    margin-bottom: 0;
	font-size: 17px;
}

.main-timeline .timeline:nth-child(2n) .date-content {
    float: right;
}

.main-timeline .timeline:nth-child(2n) .date-content:before {
    left: 10px;
}

.main-timeline .timeline:nth-child(2n) .timeline-content {
    padding: 20px 50px 20px 0;
    text-align: right;
}

@media only screen and (max-width: 991px) {
    .main-timeline .date-content {
        margin-top: 35px;
    }
    .main-timeline .date-content:before {
        width: 22.5%;
    }
    .main-timeline .timeline-content {
        padding: 10px 0 10px 30px;
    }
    .main-timeline .tm-title {
        font-size: 17px;
    }
    .main-timeline .timeline:nth-child(2n) .timeline-content {
        padding: 10px 30px 10px 0;
    }
}

@media only screen and (max-width: 767px) {
    .main-timeline:before {
        margin: 0;
        left: 7px;
    }
    .main-timeline .timeline {
        margin-bottom: 20px;
    }
    .main-timeline .timeline:last-child {
        margin-bottom: 0;
    }
    .main-timeline .icon {
        margin: auto 0;
    }
    .main-timeline .date-content {
        width: 95%;
        float: right;
        margin-top: 0;
    }
    .main-timeline .date-content:before {
        display: none;
    }
    .main-timeline .date-outer {
        width: 110px;
        height: 110px;
    }
    .main-timeline .date-outer:before,
    .main-timeline .date-outer:after {
        width: 110px;
        height: 110px;
    }
    .main-timeline .date {
        top: 30%;
    }
    .main-timeline .year {
        font-size: 24px;
    }
    .main-timeline .timeline-content,
    .main-timeline .timeline:nth-child(2n) .timeline-content {
        width: 95%;
        text-align: left;
        padding: 10px 0;
    }
    .main-timeline .tm-title {
        margin-bottom: 10px
    }
}
/*--------------------------------------------------------------*/


/*--------------------------------------------------------------*/
/* EDUCATION SECTION:                                           */
/*--------------------------------------------------------------*/
.card-bordered {
    border: 2px solid;
    -o-border-image: linear-gradient(to right, #733ad55e 0%, #d53a9c63 80%);
       border-image: linear-gradient(to right, #733ad55e 0%, #d53a9c63 80%);
    border-image-slice: 1;
}

.card-main {
    font-size: 16px;
    color: #27293d;
}

.education-card {
	margin-bottom: 15px;
}

.badge-education {
	background-color: #27293d8c !important;
}
/*--------------------------------------------------------------*/


/*--------------------------------------------------------------*/
/* EVENTS SECTION:                                              */
/*--------------------------------------------------------------*/
.eventsTable{
    background: #272d3d;
    text-align: center;
    padding: 0 5px 7px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.eventsTable .eventsTable-header{
    padding: 10px 0;
}

.eventsTable{
    color: #fff;
    position: relative;
}
.duration{
    color: #ffb510;
    font-size: 20px;
}
.eventsTable .event-content{
    background: #fff;
    padding: 15px 0;
    border-radius: 5px;
	margin-bottom: 3px;
}
.eventsTable .event-content ul{
    padding: 0 5px;
    margin: 10px 0 10px;
    list-style: none;
}
.eventsTable .event-content ul li{
    color: #777;
    font-size: 16px;
    text-align: center;
    padding: 3px;
    position: relative;
}

.assistance-type{
	font-size: 16px;
    color:  #27293db7;
}

.badge-event {
	background-color: #7395ae6c !important;
}
/*--------------------------------------------------------------*/


/*--------------------------------------------------------------*/
/* PROJECTS:                                                    */
/*--------------------------------------------------------------*/
.project-img {
    width: 100%;
}
/*--------------------------------------------------------------*/


/*--------------------------------------------------------------*/
/* FOOTER:                                                      */
/*--------------------------------------------------------------*/
.footer-links a {
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    margin-right: 20px;
    transition: 0.3s;
    color: #ffb510;
}
/*--------------------------------------------------------------*/