  
/*=================================
	About Three Css
===================================*/
.about-three {
    position: relative;
    display: block;
    padding: 70px 0px 120px;
    z-index: 1;
}

.about-three__img {
    position: relative;
    display: block;
    padding-top: 30px;
    z-index: 1;
}

.about-three__img .shape1 {
    position: absolute;
    top: 64px;
    left: 272px;
    z-index: -1;
    opacity: .3;
}

.about-three__img::before {
    position: absolute;
    top: 0;
    left: -40px;
    bottom: -30px;
    width: 190px;
    background: #e8f0f8;
    border-radius: 2px;
    content: "";
    z-index: -1;
    border-bottom-left-radius: 25px;
    border-top-left-radius: 25px;
    /* opacity: .3; */
}

.about-three__img1 {
    position: relative;
    display: block;
    max-width: 340px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    z-index: 2;
}

.about-three__img1 img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.0);
    border-radius: 25px;
    height: 500px;
}

.about-three__img2 {
    position: absolute;
    top: 140px;
    right: 0;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
}

.about-three__img2 img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.0);
    border-radius: 25px;
    height: 500px;
}

.about-three__img-icon-box {
    position: absolute;
    left: 260px;
    bottom: 10px;
    border-radius: 50%;
    z-index: 5;
}

.about-three__img-icon-box::before {
    position: absolute;
    top: -35px;
    left: -35px;
    bottom: -35px;
    right: -35px;
    background: var(--thm-primary);
    border-radius: 50%;
    content: "";
    z-index: -1;
}

.about-three__img-icon-box .round-text {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.about-three__img-icon-box .round-text .curved-circle-3 {
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 600;
}

.about-three__img-icon-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: #011c39;
    border-radius: 50%;
}

.about-three__content {
    position: relative;
    display: block;
    margin-left: 20px;
}

.about-three__content .sec-title-style3 {
    padding-bottom: 25px;
}

.about-three__content-text {
    position: relative;
    display: block;
}

.about-three__content-text p {
    font-weight: 500;
    margin: 0;
    margin-bottom: 10px;
}

.about-three__content-list {
    position: relative;
    display: block;
    margin-top: 40px;
}

.about-three__content-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 42px;
}

.about-three__content-list li:last-child {
    margin-bottom: 0;
}

.about-three__content-list li .icon-box {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    z-index: 1;
}

.about-three__content-list li .icon-box::before {
    position: absolute;
    right: 0px;
    bottom: 0px;
    border-bottom: 60px solid #f3f3f3;
    border-left: 60px solid transparent;
    width: 60px;
    content: "";
}

.about-three__content-list li .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 50px;
    line-height: 50px;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.about-three__content-list li:hover .icon-box span {
    color: var(--thm-black);
    transform: rotateY(180deg);
}

.about-three__content-list li .text-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 25px;
}

.about-three__content-list li .text-box h3 {
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.about-three__content-list li .text-box p {
    font-weight: 500;
}

.about-three__content-bottom {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.about-three__content-bottom .btn-box {
    position: relative;
    display: block;
}

.about-three__content-bottom .btn-box .thm-btn::before {
    background: var(--thm-black);
}

.about-three__content-bottom .author-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 30px;
    flex: 1;
}

.about-three__content-bottom .author-box .img-box {
    position: relative;
    display: block;
    width: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.about-three__content-bottom .author-box .img-box img {
    width: 100%;
}

.about-three__content-bottom .author-box .text-box {
    position: relative;
    display: block;
    margin-left: 15px;
}

.about-three__content-bottom .author-box .text-box p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.about-three__content-bottom .author-box .text-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}

.about-three__content-bottom .author-box .text-box h3 a {
    color: var(--thm-black);
}

.about-three__content-bottom .author-box .text-box h3 a:hover {
    color: var(--thm-primary);
}


/***********team*******/


/*======================================
 Team Three Css
========================================*/
.team-three {
    position: relative;
    display: block;
    padding: 80px 0px 0px;
    background: var(--thm-white);
    overflow: hidden;
    z-index: 1;
}

.team-three__shape1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0.06;
    z-index: -1;
}

.team-three__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 57px;
}

.team-three__top .sec-title-style3 {
    padding-bottom: 0px;
}

.team-three__top .btn-box {
    position: relative;
    display: block;
    top: -13px;
}

.team-three__top .btn-box .thm-btn::before {
    background-color: var(--thm-black);
}

.team-three__top .btn-box .thm-btn:hover {
    color: var(--thm-white);
}

.team-three__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.team-three__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 25px;
    z-index: 1;
}

.team-three__single-img::before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.team-three__single:hover .team-three__single-img::before,
.team-three__single.active .team-three__single-img::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.team-three__single-img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.team-three__single:hover .team-three__single-img img {
    transform: scale(1);
}

.team-three__single-content {
    position: relative;
    display: block;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: -40px;
    border-radius: 25px;
    background: var(--thm-white);
    box-shadow: 0px 4px 4px 0px rgba(18, 18, 20, 0.06);
    padding: 22px 10px 10px;
    transition: all 400ms linear;
    transition-delay: 0.1s;
    z-index: 3;
    overflow: hidden;
}

.team-three__single:hover .team-three__single-content,
.team-three__single.active .team-three__single-content {
    padding-bottom: 45px;
}

.team-three__single-content h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1792ce;
}

.team-three__single-content h3 a {
    color: var(--thm-black);
}

.team-three__single-content h3 a:hover {
    color: var(--thm-primary);
}

.team-three__single-content p {
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    color: var(--thm-heading-font-color);
}

.team-three__single-content .social-links {
    position: relative; /* Ù„Ù… ØªØ¹Ø¯ Ù…Ø·Ù„ÙˆØ¨Ø© Ø£Ù† ØªÙƒÙˆÙ† absolute */
    bottom: auto;
    right: auto;
    text-align: center;
    color: var(--thm-primary);
    width: 100%;
    padding: 9px 5px;
    background-color: var(--thm-white);
    /* border-top: 1px solid #eee; */
    /* border-radius: 0 0 25px 25px; */
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(0);
    transition: all 400ms ease-in-out;
}


.team-three__single:hover .team-three__single-content .social-links,
.team-three__single.active .team-three__single-content .social-links {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 0.4s;
}

.social-links p {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: var(--thm-paragraph-color);
    margin-bottom: 10px;
    word-break: break-word;  
}

 
.social-links *:last-child {
    margin-bottom: 0;
}

 .team-three__single:hover .team-three__single-content {
    padding-bottom: 20px;  
}

.team-three__single:hover .team-three__single-content .social-links {
    opacity: 1;
    max-height: 600px;  
    transition-delay: 0.2s;
}

 
 