/*====================================================
    BARAN APP LANDING PAGE
    Main Style Sheet
=====================================================*/


/*====================================================
    ROOT VARIABLES
=====================================================*/



:root {


    --primary-color: #009688;

    --primary-dark: #00796b;

    --secondary-color: #ff9800;

    --sky-color: #e8f8f7;

    --dark-color: #12343b;

    --text-color: #52606d;

    --iran-green: #009688;

    --iran-orange: #ff9800;

    --cream-color:#fffaf2;

    --white-color: #ffffff;

    --light-color: #F5FBFC;

    --border-color:
    rgba(0,184,176,.15);


    --shadow:
    0 20px 60px rgba(7,59,76,.08);


    --shadow-hover:
    0 25px 80px rgba(0,184,176,.22);


    --radius-sm: 14px;

    --radius-md: 22px;

    --radius-lg: 35px;


    --transition:
    all .35s ease;

}



/*====================================================
    RESET
=====================================================*/


* {

    margin:0;

    padding:0;

    box-sizing:border-box;

}


html {

    scroll-behavior:smooth;

}


body {

    font-family:
    "Vazirmatn",
    sans-serif;

    direction:rtl;

	background:#F8FCFD;

    color:var(--text-color);

    overflow-x:hidden;

}


img {

    max-width:100%;

    height:auto;

}


a {

    text-decoration:none;

    transition:var(--transition);

}


ul {

    list-style:none;

    padding:0;

    margin:0;

}


p {

    line-height:2;

    font-size:15px;

}


h1,
h2,
h3,
h4,
h5,
h6 {

    color:var(--dark-color);

    font-weight:700;

}


/*====================================================
    BACKGROUND EFFECTS
=====================================================*/


.bg-circle {

    position:absolute;

    border-radius:50%;

    filter:blur(80px);

    z-index:-1;

    opacity:.55;

}


.bg-circle-1 {

    width:500px;

    height:500px;

    background:#BDF5F3;

    top:-150px;

    right:-100px;

}


.bg-circle-2 {

    width:400px;

    height:400px;

    background:#D7F1FF;

    left:-120px;

    top:650px;

}


.bg-circle-3 {

    width:300px;

    height:300px;

    background:#FFF0C8;

    right:30%;

    bottom:500px;

}



/*====================================================
    SECTION GENERAL
=====================================================*/


section {

    position:relative;

    padding:100px 0;

}


.section-title {

    text-align:center;

    max-width:750px;

    margin:0 auto 60px;

}


.section-title span,
.section-badge {

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:
    rgba(18,184,181,.1);

    color:var(--primary-color);

    padding:8px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}


.section-title h2 {

    font-size:42px;

    line-height:1.5;

    margin-bottom:20px;

}


.section-title p {

    color:#6b7280;

}


/*====================================================
    HEADER
=====================================================*/


.main-header {

    position:fixed;

    top:0;

    right:0;

    width:100%;

    z-index:999;

    padding:20px 0;

    transition:var(--transition);

}


.main-header.scrolled {

    background:
    rgba(255,255,255,.88);

    backdrop-filter:blur(15px);

    box-shadow:
    0 10px 40px rgba(0,0,0,.06);

    padding:12px 0;

}


.navbar-brand {

    display:flex;

    align-items:center;

    gap:12px;

    color:var(--dark-color);

    font-size:26px;

    font-weight:800;

}


.navbar-brand img {

    width:45px;

    height:45px;

}


.navbar-brand:hover {

    color:var(--primary-color);

}


.nav-link {

    color:#334155;

    font-size:15px;

    font-weight:500;

    margin:0 10px;

    position:relative;

}


.nav-link::after {

    content:"";

    position:absolute;

    bottom:-8px;

    right:0;

    width:0;

    height:2px;

    background:var(--primary-color);

    transition:.3s;

}


.nav-link:hover,
.nav-link.active {

    color:var(--primary-color);

}


.nav-link:hover::after,
.nav-link.active::after {

    width:100%;

}

/*====================================================
    HEADER ACTION
=====================================================*/


.header-action {

    margin-right:20px;

}



.navbar-toggler {

    display:none;

}



@media(max-width:991px){


    .navbar-toggler {

        display:block;

        background:none;

    }



    .header-action {

        margin-right:0;

        margin-top:15px;

    }


}


/*====================================================
    BUTTONS
=====================================================*/


.btn-download {

    display:inline-flex;

    align-items:center;

    gap:8px;

	background:
	linear-gradient(
	135deg,
	#009688,
	#00796b
	);

    color:#fff;

    padding:13px 28px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    box-shadow:
    0 12px 30px rgba(18,184,181,.25);

}


.btn-download:hover {

    background:var(--primary-dark);

    color:#fff;

    transform:translateY(-3px);

}


.hero-buttons {

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:35px;

}


.hero-buttons a,
.download-buttons a {

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-height:52px;

    padding:0 25px;

    border-radius:14px;

    font-weight:600;

    transition:var(--transition);

}


.btn-google {

    background:#0b172a;

    color:#fff;

}


.btn-google:hover {

    background:#000;

    color:#fff;

    transform:translateY(-3px);

}


.btn-bazaar {

    background:#ff9800;

    color:#fff;

}


.btn-bazaar:hover {

    background:#09966d;

    color:#fff;

    transform:translateY(-3px);

}


.btn-direct {

    background:rgba(18,184,181,.1);

    color:var(--primary-color);

}


.btn-direct:hover {

    background:var(--primary-color);

    color:#fff;

    transform:translateY(-3px);

}



/*====================================================
    HERO SECTION
=====================================================*/


.hero {

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:150px;

    overflow:hidden;

    background:

	linear-gradient(
	135deg,
	#ffffff 0%,
	#effaf8 55%,
	#fff8ed 100%
	);

}


.hero-content {

    position:relative;

    z-index:2;

}


.hero-badge {

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    background:
    rgba(18,184,181,.1);

    color:var(--primary-color);

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}


.hero-title {

	font-size:58px;

	line-height:1.45;

	font-weight:900;

    margin-bottom:25px;

    letter-spacing:-1px;

}


.hero-title span {

    color:var(--primary-color);

    position:relative;

}


.hero-title span::after {

    content:"";

    position:absolute;

    bottom:5px;

    right:0;

    width:100%;

    height:10px;

    background:

	rgba(255,152,0,.20);

    z-index:-1;

    border-radius:20px;

}


.hero-description {

    font-size:18px;

    max-width:600px;

    color:#64748b;

    line-height:2.2;

}


/*====================================================
    HERO STATS
=====================================================*/


.hero-stats {

    display:flex;

    gap:45px;

    margin-top:45px;

}


.stat-item {

    display:flex;

    flex-direction:column;

}


.stat-item strong {

    font-size:32px;

    color:var(--dark-color);

    line-height:1.2;

}


.stat-item span {

    color:#64748b;

    font-size:14px;

}



/*====================================================
    HERO VISUAL
=====================================================*/


.hero-visual {

    position:relative;

    min-height:720px;

    display:flex;

    justify-content:center;

    align-items:center;

}


.phone-frame {

    position:relative;

    z-index:5;

    width:320px;

    height:650px;

    border-radius:45px;

    padding:10px;

    background:

    linear-gradient(

    145deg,

    #1e293b,

    #0f172a

    );

    box-shadow:

    0 50px 100px rgba(0,0,0,.2);

    transform:

    rotate(-5deg);

}


.phone {

    width:100%;

    height:100%;

    border-radius:38px;

    overflow:hidden;

    background:#fff;

}


.phone img {

    width:100%;

    height:100%;

    object-fit:cover;

}


.phone-shadow {

    position:absolute;

    bottom:-80px;

    left:10%;

    width:80%;

    height:60px;

    background:

    rgba(18,184,181,.3);

    filter:blur(35px);

    z-index:-1;

}



/*====================================================
    FLOATING WEATHER CARDS
=====================================================*/


.floating-card {

    position:absolute;

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px;

	background:

	rgba(255,255,255,.92);

	border:

	1px solid rgba(0,150,136,.15);

    backdrop-filter:blur(20px);

    border-radius:22px;

    box-shadow:

    0 20px 50px rgba(0,0,0,.08);

    z-index:10;

}


.floating-card small {

    display:block;

    color:#64748b;

}


.floating-card h5 {

    margin:3px 0;

    font-size:24px;

}


.floating-card span {

    font-size:12px;

    color:#64748b;

}


.floating-icon {

    width:55px;

    height:55px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

    rgba(18,184,181,.12);

    color:var(--primary-color);

    font-size:25px;

}


.floating-weather {

    top:80px;

    right:0;

}


.floating-air {

    bottom:180px;

    left:0;

}


.floating-rain {

    bottom:40px;

    right:30px;

}
/*====================================================
    GLASS DOWNLOAD CARD
=====================================================*/


.glass-download-card {

    position:absolute;

    bottom:20px;

    left:-70px;

    width:290px;

    padding:18px;

    background:

    rgba(255,255,255,.75);

    backdrop-filter:

    blur(20px);

    border-radius:25px;

    border:

    1px solid rgba(255,255,255,.9);

    box-shadow:

    0 25px 60px rgba(0,0,0,.1);

    z-index:15;

}


.glass-download-card img {

    width:75px;

    height:75px;

    border-radius:12px;

}


.glass-download-card h6 {

    font-size:16px;

    margin-bottom:5px;

}


.glass-download-card p {

    font-size:12px;

    line-height:1.8;

    margin:0;

    color:#64748b;

}



/*====================================================
    TRUST SECTION
=====================================================*/


.trust-section {

    padding-top:30px;

}


.trust-box {

    height:100%;

    padding:35px 30px;

    background:#fff;

    border-radius:30px;

    box-shadow:

    0 15px 50px rgba(0,0,0,.06);

    text-align:center;

    transition:var(--transition);

}


.trust-box:hover {

    transform:translateY(-10px);

    box-shadow:

    var(--shadow-hover);

}


.trust-icon {

    width:75px;

    height:75px;

    margin:0 auto 25px;

    border-radius:25px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

    linear-gradient(

    135deg,

    rgba(18,184,181,.15),

    rgba(29,155,240,.15)

    );

    color:var(--primary-color);

    font-size:32px;

}


.trust-box h3 {

    font-size:22px;

    margin-bottom:15px;

}


.trust-box p {

    margin:0;

}



/*====================================================
    FEATURES
=====================================================*/


.features-section {

    background:

    linear-gradient(

    180deg,

    #ffffff,

    #f7fcfd

    );

}


.feature-card {

    height:100%;

    padding:35px 30px;

    background:#fff;

    border-radius:30px;
	position:relative;
	overflow:hidden;
    border:

    1px solid rgba(18,184,181,.08);

    box-shadow:

    0 15px 45px rgba(0,0,0,.04);

    transition:var(--transition);

}

.feature-card::before{

	content:"";

	position:absolute;

	top:0;

	right:0;

	width:80px;

	height:80px;

	background:

	rgba(255,152,0,.08);

	border-radius:0 0 0 80px;

}

.feature-card:hover {

    transform:

    translateY(-12px);

    box-shadow:

    var(--shadow-hover);

    border-color:

    rgba(18,184,181,.25);

}


.feature-icon {

    width:70px;

    height:70px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

    background:

    rgba(18,184,181,.1);

    color:var(--primary-color);

    font-size:30px;

}


.feature-card h4 {

    font-size:22px;

    margin-bottom:15px;

}


.feature-card p {

    margin:0;

    color:#64748b;

}



/*====================================================
    APP SHOWCASE
=====================================================*/


.app-showcase {

    overflow:hidden;

}


.section-heading {

    font-size:42px;

    line-height:1.5;

    margin-bottom:25px;

}


.section-heading span {

    color:var(--primary-color);

}


.section-description {

    color:#64748b;

    margin-bottom:35px;

}



.app-list {

    display:flex;

    flex-direction:column;

    gap:25px;

}


.app-list-item {

    display:flex;

    gap:18px;

    align-items:flex-start;

}


.list-icon {

    flex-shrink:0;

    width:38px;

    height:38px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

    rgba(18,184,181,.12);

    color:var(--primary-color);

}


.app-list-item h5 {

    font-size:18px;

    margin-bottom:5px;

}


.app-list-item p {

    font-size:14px;

    margin:0;

}


/*====================================================
    MOBILE APP SHOWCASE
=====================================================*/


.mobile-gallery {

    position:relative;

    height:650px;

    display:flex;

    justify-content:center;

    align-items:center;

}



/* تمام موبایل‌ها */

.gallery-phone {

    position:absolute;

    width:270px;

    height:560px;

    padding:8px;

    background:#111827;

    border-radius:40px;

    box-shadow:

    0 35px 80px rgba(0,0,0,.18);

    transition:

    .5s ease;

    overflow:hidden;

}



.gallery-phone img {

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:34px;

}



/* موبایل وسط */


.gallery-phone.center {

    position:relative;

    z-index:5;

    transform:

    translateY(-10px);

}



/* موبایل سمت راست */


.gallery-phone.left {

    right:8%;

    z-index:3;

    transform:

    rotate(12deg)

    scale(.85);

    opacity:.9;

}



/* موبایل سمت چپ */


.gallery-phone.right {

    left:8%;

    z-index:3;

    transform:

    rotate(-12deg)

    scale(.85);

    opacity:.9;

}



/* افکت حرکت */


.mobile-gallery:hover .gallery-phone.left {


    transform:

    rotate(8deg)

    translateX(-25px)

    scale(.88);


}



.mobile-gallery:hover .gallery-phone.right {


    transform:

    rotate(-8deg)

    translateX(25px)

    scale(.88);


}



.mobile-gallery:hover .gallery-phone.center {


    transform:

    translateY(-25px)

    scale(1.03);


}




/* انعکاس پایین گوشی */


.gallery-phone::after {


    content:"";


    position:absolute;


    bottom:-40px;


    left:10%;


    width:80%;


    height:40px;


    background:

    rgba(18,184,181,.35);


    filter:

    blur(30px);


}


/*====================================================
    NUMBERS / STATISTICS
=====================================================*/


.numbers-section {

    background:

    linear-gradient(

    135deg,

    #f3fcff,

    #ffffff

    );

}


.number-box {

    text-align:center;

    padding:40px 25px;

    background:#fff;

    border-radius:30px;

    box-shadow:

    0 15px 45px rgba(0,0,0,.05);

    transition:var(--transition);

}


.number-box:hover {

    transform:translateY(-8px);

    box-shadow:

    var(--shadow-hover);

}


.number-box h2 {

    font-size:48px;

    color:var(--primary-color);

    margin-bottom:10px;

}


.number-box span {

    color:#64748b;

    font-size:15px;

}



/*====================================================
    REVIEWS
=====================================================*/


.reviews-section {

    background:#fff;

}


.review-card {

    height:100%;

    padding:35px;

    border-radius:30px;

    background:

    linear-gradient(

    145deg,

    #ffffff,

    #f8fcfd

    );

    border:

    1px solid rgba(18,184,181,.08);

    box-shadow:

    0 15px 45px rgba(0,0,0,.05);

    transition:var(--transition);

}


.review-card:hover {

    transform:translateY(-10px);

    box-shadow:

    var(--shadow-hover);

}


.review-stars {

    display:flex;

    gap:5px;

    color:#ffc107;

    margin-bottom:20px;

}


.review-card p {

    color:#475569;

    margin-bottom:30px;

}


.review-user {

    display:flex;

    align-items:center;

    gap:15px;

}


.avatar {

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

    var(--primary-color);

    color:#fff;

    border-radius:50%;

    font-size:22px;

    font-weight:700;

}


.review-user strong {

    display:block;

    font-size:16px;

}


.review-user span {

    display:block;

    font-size:13px;

    color:#64748b;

}



/*====================================================
    FAQ
=====================================================*/


.faq-section {

    background:

    #f7fcfd;

}


.accordion {

    display:flex;

    flex-direction:column;

    gap:15px;

}


.accordion-item {

    border:none;

    border-radius:20px!important;

    overflow:hidden;

    background:#fff;

    box-shadow:

    0 10px 35px rgba(0,0,0,.05);

}


.accordion-button {

    padding:25px;

    font-size:16px;

    font-weight:600;

    color:var(--dark-color);

    background:#fff;

}


.accordion-button:not(.collapsed) {

    color:var(--primary-color);

    background:#fff;

    box-shadow:none;

}


.accordion-button:focus {

    box-shadow:none;

}


.accordion-body {

    padding:

    0 25px 25px;

    color:#64748b;

    line-height:2;

}



/*====================================================
    DOWNLOAD SECTION
=====================================================*/


.download-section {

    padding-top:80px;

}


.download-box {

    position:relative;

    overflow:hidden;

    padding:70px;

    border-radius:45px;

    background:

    linear-gradient(

    135deg,

    #12b8b5,

    #1d9bf0

    );

    color:#fff;

}


.download-box::before {

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    background:

    rgba(255,255,255,.12);

    top:-120px;

    left:-100px;

}


.download-box h2 {

    position:relative;

    color:#fff;

    font-size:42px;

    line-height:1.5;

    margin-bottom:20px;

}


.download-box p {

    position:relative;

    color:

    rgba(255,255,255,.85);

    max-width:600px;

}


.download-buttons {

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:35px;

}


.download-box .btn-google {

    background:#fff;

    color:#111;

}


.download-box .btn-bazaar {

    background:#0b172a;

}


.download-box .btn-direct {

    background:

    rgba(255,255,255,.18);

    color:#fff;

}


.qr-card {

    position:relative;

    background:

    rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    padding:30px;

    border-radius:30px;

}


.qr-card img {

    width:180px;

    height:180px;

    background:#fff;

    padding:10px;

    border-radius:20px;

}


.qr-card p {

    margin-top:20px;

    color:#fff;

}



/*====================================================
    FOOTER
=====================================================*/


.main-footer {

	background:

	linear-gradient(
	135deg,
	#12343b,
	#062c30
	);

    padding:90px 0 30px;

    color:#cbd5e1;

}


.footer-logo {

    width:60px;

    margin-bottom:20px;

}


.main-footer p {

    color:#94a3b8;

}


.main-footer h5 {

    color:#fff;

    margin-bottom:25px;

    font-size:18px;

}


.main-footer ul li {

    margin-bottom:12px;

    color:#94a3b8;

}


.main-footer ul li a {

    color:#94a3b8;

}


.main-footer ul li a:hover {

    color:var(--primary-color);

}


.social-links {

    display:flex;

    gap:12px;

    margin-top:25px;

}


.social-links a {

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

    rgba(255,255,255,.08);

    color:#fff;

}


.social-links a:hover {

    background:

    var(--primary-color);

}


.footer-bottom {

    display:flex;

    justify-content:space-between;

    padding-top:25px;

    margin-top:40px;

    border-top:

    1px solid rgba(255,255,255,.1);

}


.footer-bottom p {

    font-size:13px;

    margin:0;

}
/*====================================================
    ANIMATIONS & EFFECTS
=====================================================*/


.fade-up {

    opacity:0;

    transform:

    translateY(40px);

    transition:

    opacity .8s ease,

    transform .8s ease;

}


.fade-up.show {

    opacity:1;

    transform:

    translateY(0);

}


.zoom-in {

    opacity:0;

    transform:

    scale(.85);

    transition:

    opacity .8s ease,

    transform .8s ease;

}


.zoom-in.show {

    opacity:1;

    transform:

    scale(1);

}



/*====================================================
    FLOATING ANIMATION
=====================================================*/


@keyframes floating {


    0% {

        transform:translateY(0);

    }


    50% {

        transform:translateY(-15px);

    }


    100% {

        transform:translateY(0);

    }


}


.floating-card {

    animation:

    floating 5s ease-in-out infinite;

}


.floating-air {

    animation-delay:1s;

}


.floating-rain {

    animation-delay:2s;

}



/*====================================================
    PHONE ANIMATION
=====================================================*/


.phone-frame {

    animation:

    phoneMove 6s ease-in-out infinite;

}


@keyframes phoneMove {


    0% {

        transform:

        rotate(-5deg)

        translateY(0);

    }


    50% {

        transform:

        rotate(-3deg)

        translateY(-15px);

    }


    100% {

        transform:

        rotate(-5deg)

        translateY(0);

    }

}



/*====================================================
    HOVER EFFECTS
=====================================================*/


.feature-card,
.trust-box,
.review-card,
.number-box {

    cursor:pointer;

}


.feature-card:hover .feature-icon,
.trust-box:hover .trust-icon {

    transform:

    rotate(8deg)

    scale(1.1);

}


.feature-icon,
.trust-icon {

    transition:

    .35s ease;

}



/*====================================================
    BACK TO TOP
=====================================================*/


.back-to-top {

    position:fixed;

    bottom:30px;

    left:30px;

    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

    var(--primary-color);

    color:#fff;

    font-size:22px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

    box-shadow:

    0 15px 35px rgba(18,184,181,.3);

}


.back-to-top.show {

    opacity:1;

    visibility:visible;

}


.back-to-top:hover {

    background:

    var(--primary-dark);

    transform:

    translateY(-5px);

}



/*====================================================
    LOADING
=====================================================*/


body {

    opacity:1;

    transition:.3s;

}


body:not(.loaded) {

    opacity:.8;

}



/*====================================================
    SELECTION
=====================================================*/


::selection {

    background:

    var(--primary-color);

    color:#fff;

}



/*====================================================
    SCROLLBAR
=====================================================*/


::-webkit-scrollbar {

    width:10px;

}


::-webkit-scrollbar-track {

    background:#f1f5f9;

}


::-webkit-scrollbar-thumb {

    background:

    var(--primary-color);

    border-radius:20px;

}



/*====================================================
    UTILITY CLASSES
=====================================================*/


.text-primary {

    color:

    var(--primary-color)!important;

}


.bg-primary-soft {

    background:

    rgba(18,184,181,.1);

}


.rounded-large {

    border-radius:

    var(--radius-lg);

}


.shadow-custom {

    box-shadow:

    var(--shadow);

}

@media(max-width:768px){


.hero-title{

font-size:38px;

}


.hero-description{

font-size:15px;

}


.hero-stats{

gap:20px;

flex-wrap:wrap;

}


.phone-frame{

width:280px;

height:570px;

}


.floating-card{

transform:scale(.85);

}


.section-title h2,
.section-heading{

font-size:32px;

}


.download-box{

padding:35px 25px;

}


}


/*====================================================
 WEATHER CARDS SECTION
=====================================================*/


.weather-cards-section {

    background:
    linear-gradient(
    180deg,
    #ffffff,
    #f5fcff
    );

}



.weather-card-gallery {

    position:relative;

    height:650px;

}



.weather-card-gallery img {

    position:absolute;

    width:260px;

    border-radius:25px;

    box-shadow:
    0 30px 70px rgba(0,0,0,.15);

    transition:.5s ease;

}




.weather-card-gallery img:nth-child(1){

    right:20%;

    top:20px;

    transform:
    rotate(8deg);

}



.weather-card-gallery img:nth-child(2){

    left:10%;

    top:70px;

    transform:
    rotate(-10deg);

}



.weather-card-gallery img:nth-child(3){

    right:5%;

    bottom:60px;

    transform:
    rotate(-8deg);

}



.weather-card-gallery img:nth-child(4){

    left:25%;

    bottom:20px;

    transform:
    rotate(12deg);

}



.weather-card-gallery img:nth-child(5){

    right:40%;

    top:120px;

    z-index:5;

}




.weather-card-gallery img:hover {

    transform:
    translateY(-15px)
    scale(1.05)
    rotate(0);

    z-index:20;

}


/*==========================================
VIDEO SECTION
==========================================*/

.video-section{

    padding:120px 0;

    background:#fff;

}

.video-preview{

    position:relative;

    max-width:420px;

    cursor:pointer;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 25px 70px rgba(0,0,0,.12);

    transition:.35s;

}

.video-preview:hover{

    transform:translateY(-10px);

}

.video-preview img{

    width:100%;

    display:block;

}

.video-play{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:90px;

    height:90px;

    border-radius:50%;

    background:rgba(18,184,181,.95);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

    box-shadow:0 15px 40px rgba(18,184,181,.45);

    transition:.35s;

}

.video-preview:hover .video-play{

    transform:translate(-50%,-50%) scale(1.1);

}

#videoModal iframe{

    border:0;

}

@media(min-width:992px){

.video-preview{

    margin-left:0;

    margin-right:auto;

}

}

.icon-rubika {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('../icons/rubika.svg') center/contain no-repeat;
}

.icon-bale {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('../icons/bale.svg') center/contain no-repeat;
}

.icon-instagram {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('../icons/instagram.svg') center/contain no-repeat;
}

.icon-telegram {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('../icons/telegram.svg') center/contain no-repeat;
}

/*====================================================
    END STYLE
=====================================================*/

