/* @import 'https://fonts.googleapis.com/css?family=Lora:400,400i,700|Raleway:300,600,700,900'; */
@import 'ionicons.min.css';

/* ============================= */
/* Font */
/* ============================= */

@font-face {
    font-family: 'Vazir';
    src: url('../vazir.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ============================= */
/* Global Settings */
/* ============================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vazir',system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    direction: rtl;
    text-align: right;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Vazir', 'Raleway', sans-serif;
    text-transform: none;
    font-weight: 900;
    color: #424242;
    margin-bottom: 35px;
    margin-top: 0;
    line-height: 1.7;
}

h1 {
    font-size: 45px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 21px;
}

p {
    font-size: 16px;
    font-style: normal;
    color: #818181;
    line-height: 2;
}

a {
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

section {
    text-align: center;
}

img {
    max-width: 100%;
}

.blockquote p {
    font-size: 32px;
    line-height: 45px;
    padding-right: 30px;
    padding-left: 0;
    border-right: 3px solid #424242;
    border-left: 0;
    color: #424242;
}

.title {
    position: relative;
    margin-bottom: 100px;
}

.title:after {
    content: '';
    height: 5px;
    width: 40px;
    background-color: #62aa94;
    position: absolute;
    top: 81px;
    left: calc(50% - 20px);
}

/* ============================= */
/* Bootstrap Overrides */
/* ============================= */

.navbar-vira {
    background-image: none;
    background-color: #000;
    background: #000;
    margin-bottom: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

/* Transparent navbar only on index page (inside header) */
.header .navbar-vira {
    background-color: transparent;
    background: transparent;
}

.form-control option {
    color: #424242;
}

.form-control {
    border-radius: 0;
    padding: 25px;
    font-size: 18px;
    font-style: normal;
    background-color: transparent;
    color: #424242;
    margin-bottom: 30px;
    border-color: #51c2b9;
    text-align: right;
}

.form-control:focus {
    border-color: #51c2b9;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(81, 194, 185, 0.6);
}

.form-control::-webkit-input-placeholder {
    color: #999;
}

.form-control:-moz-placeholder {
    color: #999;
}

.form-control::-moz-placeholder {
    color: #999;
}

.form-control:-ms-input-placeholder {
    color: #999;
}

.form-control::placeholder {
    color: #999;
}

/* ============================= */
/* Helper Classes */
/* ============================= */

.mt80 {
    margin-top: 80px;
}

.mb80 {
    margin-bottom: 80px;
}

.mr60 {
    margin-left: 60px;
    margin-right: 0;
}

.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.bg-img div {
    z-index: 1;
    position: relative;
}

.bg-img:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    right: 0;
    left: auto;
    top: 0;
}

.section {
    padding: 100px 0;
}

/* ============================= */
/* Header Video */
/* ============================= */

.header {
    height: 100vh;
    min-height: 659px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.video-header {
    background: #000;
}

.header-video {
    position: absolute;
    top: 50%;
    right: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(50%, -50%);
    z-index: 0;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.52);
    z-index: 1;
}

.header nav,
.header .container {
    position: relative;
    z-index: 2;
}

/* ============================= */
/* Header Navbar */
/* ============================= */

.header-nav {
    width: 100%;
    min-height: 82px;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.logo {
    flex-shrink: 0;
}

.logo a {
    font-family: 'Vazir', 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
}

.logo a:hover {
    color: #51c2b9;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 34px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-menu li {
    list-style: none;
}

.header-menu li a {
    font-family: 'Vazir', 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
    white-space: nowrap;
}

.header-menu li a:hover {
    color: #51c2b9;
}

.nav-toggle {
    display: none;
}

.mobile-menu-btn {
    display: none;
    width: 34px;
    height: 26px;
    cursor: pointer;
    position: relative;
    margin: 0;
    z-index: 5;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    margin-bottom: 7px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span:last-child {
    margin-bottom: 0;
}

/* ============================= */
/* Intro */
/* ============================= */

.intro-box {
    height: calc(100vh - 82px);
    display: table;
    text-align: center;
    width: 100%;
}

.intro {
    display: table-cell;
    vertical-align: middle;
}

.header h1 {
    margin: 0;
    font-family: 'Raleway', 'Vazir', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.header h1,
.header p {
    color: #fff;
}

.header p {
    font-family: 'Vazir', 'Raleway', sans-serif;
    font-size: 32px;
    color: #fff;
    padding-top: 15px;
    padding-bottom: 40px;
    font-style: normal;
}

.header .vira-btn {
    border-color: #fff;
    color: #fff;
    font-style: normal;
    letter-spacing: 0;
}

.header .vira-btn:hover {
    background-color: #fff;
    color: #424242;
}

/* ============================= */
/* Cards */
/* ============================= */

.vira-card {
    text-align: center;
}

.vira-card .vira-card-header {
    margin-bottom: 45px;
}

.vira-card .vira-card-header .card-icon {
    border: 1px solid #51c2b9;
    border-radius: 100%;
    display: inline-block;
    height: 120px;
    width: 120px;
    line-height: 120px;
    position: relative;
}

.vira-card .vira-card-header .card-icon .fa {
    margin-top: 45px;
    font-size: 30px;
}

.vira-card .vira-card-header .card-icon:after {
    content: '';
    height: 100px;
    width: 100px;
    background-color: #51c2b9;
    border-radius: 100%;
    position: absolute;
    top: 9px;
    right: 9px;
    left: auto;
}

.vira-card .vira-card-header .card-icon span {
    color: #fff;
    font-size: 45px;
    position: relative;
    z-index: 1;
}

.vira-card .vira-card-content h3 {
    position: relative;
    margin-bottom: 60px;
}

.vira-card .vira-card-content h3:after {
    content: '';
    height: 1px;
    width: 44px;
    background-color: #62aa94;
    position: absolute;
    top: 52px;
    left: calc(50% - 22px);
}

.vira-card .vira-card-content p {
    font-size: 15px;
}

/* ============================= */
/* Buttons */
/* ============================= */

.vira-btn {
    border-color: #51c2b9;
    font-style: normal;
    color: #51c2b9;
    border-radius: 0;
    letter-spacing: 0;
    padding: 15px 60px;
    margin-bottom: 30px;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

.vira-btn:hover {
    background-color: #51c2b9;
    color: #fff;
}

.solid {
    background-color: #51c2b9;
    color: #fff;
}

.solid:hover {
    background-color: #fff;
    color: #51c2b9;
}

.small-btn {
    padding: 10px 130px;
}

/* ============================= */
/* About */
/* ============================= */

.about {
    background-color: #f8f8f8;
}

.about img {
    margin: 30px auto;
    display: block;
}

.about p {
    max-width: 820px;
    margin: 0 auto 24px auto;
    font-size: 17px;
    line-height: 2.2;
    color: #555;
}

.about span {
    font-family: 'Vazir', 'Raleway', sans-serif;
    font-weight: 600;
	display: block;
    margin-top: 35px;
    font-size: 18px;
    font-weight: 900;
    color: #18005c;
}

/* ============================= */
/* Expertise */
/* ============================= */

.expert {
    background-color: #f8f8f8;
}

.expert p {
    line-height: 2.2;
    color: #424242;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 20px 0;
}

.expert .owl-carousel .owl-item {
    text-align: center;
    display: block;
}

.expert .owl-carousel .owl-item .item {
    display: block;
    padding: 30px 20px;
}

.expert .owl-carousel .owl-item .item p {
    display: block;
    visibility: visible;
}

.expert .section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expert .bg-img {
    background-image: url(../images/2.jpg);
    background-position: center;
    height: 100%;
    min-height: 500px;
}

.expert .bg-img:after {
    display: none;
}

.expert .section {
    padding-right: 30px;
    padding-left: 30px;
}

/* ============================= */
/* Quote */
/* ============================= */

.vira-quote {
    background-image: url(../images/3.jpg);
    color: #fff;
    font-style: normal;
}

.vira-quote p {
    font-size: 32px;
    color: #fff;
}

.vira-quote .quote {
    margin-bottom: 40px;
}

.vira-quote .author {
    font-size: 21px;
    margin-bottom: 40px;
}

/* ============================= */
/* Work */
/* ============================= */

.work img {
    width: 100%;
}

/* ============================= */
/* Watch */
/* ============================= */

.watch {
    background-image: url(../images/imagesee.png);
    font-style: normal;
    font-size: 32px;
    color: #fff;
    padding: 150px 0;
}

.watch a {
    border: 2px solid #fff;
    margin-left: 10px;
    margin-right: 10px;
    line-height: 70px;
    border-radius: 100%;
    width: 70px;
    height: 70px;
    padding: 0;
    font-size: 21px;
    color: #fff;
}

.watch a:hover,
.watch a:active,
.watch a:focus {
    background-color: #fff;
    color: #424242;
}

/* ============================= */
/* Subscribe */
/* ============================= */

.subscribe {
    background-image: url(../images/11.jpg);
}

.subscribe .vira-btn {
    margin-bottom: 0;
    color: #424242;
    font-weight: 700;
    border-color: #fff;
    background-color: #fff;
}

.subscribe .vira-btn:hover {
    background-color: transparent;
    color: #fff;
}

.subscribe p {
    color: #fff;
    font-size: 32px;
    margin-bottom: 35px;
}

.subscribe .form-control {
    width: 320px;
    margin-bottom: 0;
    border-color: #fff;
    color: #fff;
}

/* ============================= */
/* Contact */
/* ============================= */

.contact .vira-card {
    background-color: #f8f8f8;
    padding: 35px 20px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 45px;
    min-height: 230px;
}

.contact .vira-card .vira-card-header {
    margin-bottom: 15px;
    font-size: 21px;
    color: #51c2b9;
}

.contact .vira-card .vira-card-content h3 {
    letter-spacing: 0;
    margin-bottom: 45px;
}

.contact .vira-card .vira-card-content h3:after {
    top: 40px;
}

.contact .vira-card .vira-card-content p {
    font-size: 17px;
}

/* ============================= */
/* Social Icons */
/* ============================= */

.social-icons ul {
    text-align: center;
    padding-right: 0;
    padding-left: 0;
    display: inline-block;
}

.social-icons ul a li {
    display: inline-block;
    list-style-type: none;
    border: 2px solid #51c2b9;
    margin-left: 10px;
    margin-right: 0;
    background-color: #51c2b9;
    color: #fff;
    font-size: 18px;
    line-height: 32px;
    width: 36px;
}

.social-icons ul a li:last-child {
    margin-left: 0;
}

.social-icons ul a:hover li {
    color: #51c2b9;
    background-color: #fff;
}

/* ============================= */
/* Footer */
/* ============================= */

.footer {
    background-color: #202020;
    text-align: center;
    padding: 60px 0;
}

.footer span {
    color: #51c2b9;
}

.footer p {
    font-size: 21px;
    color: #fff;
    margin-bottom: 0;
}

.footer a {
    color: #fff;
}

/* ============================= */
/* Animations */
/* ============================= */

.vira-card .vira-card-header .card-icon:after {
    transition: all 0.3s ease-in-out;
}

.vira-card:hover .vira-card-header .card-icon:after {
    height: 120px;
    width: 120px;
    top: -1px;
    right: -1px;
    left: auto;
}

.owl-theme .owl-dots .owl-dot span {
    background-color: #51c2b9;
    margin: 5px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #51c2b9;
    height: 14px;
    width: 14px;
    margin: 3px;
}

/* ============================= */
/* Tablet */
/* ============================= */

@media (max-width: 991px) {
    .header-menu {
        gap: 22px;
    }

    .header-menu li a {
        font-size: 13px;
    }
}

/* ============================= */
/* Mobile */
/* ============================= */

@media (max-width: 767px) {

    .section {
        padding: 70px 0;
    }

    .header {
        min-height: 100vh;
    }

    .header-nav {
        min-height: 76px;
        padding: 18px 0;
        position: relative;
    }

    .logo a {
        font-size: 22px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-menu {
        position: absolute;
        top: 76px;
        right: 0;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 0;
        margin: 0;
        background-color: rgba(12, 12, 12, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-top: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
    }

    .header-menu li {
        width: 100%;
        text-align: center;
    }

    .header-menu li a {
        display: block;
        width: 100%;
        padding: 16px 20px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header-menu li:last-child a {
        border-bottom: none;
    }

    .nav-toggle:checked ~ .header-menu {
        max-height: 420px;
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle:checked + .mobile-menu-btn span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .nav-toggle:checked + .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked + .mobile-menu-btn span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .intro-box {
        height: calc(100vh - 76px);
    }

    .header h1 {
        font-size: 38px;
    }

    .header p {
        font-size: 24px;
    }

    .vira-btn {
        padding: 14px 45px;
    }

    .vira-card {
        margin-bottom: 60px;
    }

    .subscribe .form-control {
        width: 100%;
        margin-bottom: 20px;
    }

    .watch {
        font-size: 24px;
    }

    .vira-quote p {
        font-size: 24px;
    }
}
.purpose .row.mt80 {
    margin-top: 60px;
}

.purpose .vira-card {
    min-height: 390px;
}

.purpose .vira-card-content p {
    max-width: 310px;
    margin: 0 auto;
    line-height: 2.1;
}

@media (max-width: 767px) {
    .purpose .row.mt80 {
        margin-top: 0;
    }

    .purpose .vira-card {
        min-height: auto;
    }
}