/*=========================================
  AIRPORT TRAINING INSTITUTE
  Premium UI Design System
=========================================*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===========================
   CSS VARIABLES
=========================== */

:root{

    --primary:#0B2C5D;
    --secondary:#D4A017;
    --sky:#49A9FF;

    --white:#ffffff;
    --light:#F6F8FB;
    --text:#1F2937;

    --border:#E5E7EB;

    --shadow:
        0 10px 40px rgba(0,0,0,.08);

    --shadow-hover:
        0 25px 60px rgba(0,0,0,.15);

    --glass:
        rgba(255,255,255,.18);

    --glass-border:
        rgba(255,255,255,.30);

    --radius-sm:12px;
    --radius:20px;
    --radius-lg:32px;

    --transition:.35s ease;

}

/* ===========================
RESET
=========================== */

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Inter',sans-serif;

background:#fff;

color:var(--text);

line-height:1.7;

overflow-x:hidden;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

color:inherit;

transition:var(--transition);

}

ul{

list-style:none;

}

.container{

width:min(1200px,92%);

margin:auto;

}

section{

padding:100px 0;

}

h1,h2,h3,h4,h5{

font-family:'Poppins',sans-serif;

color:var(--primary);

font-weight:700;

line-height:1.2;

}

h1{

font-size:64px;

}

h2{

font-size:46px;

margin-bottom:18px;

}

h3{

font-size:28px;

}

p{

font-size:17px;

color:#4B5563;

}

/* ===========================
BUTTONS
=========================== */

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

padding:15px 32px;

border-radius:50px;

font-weight:600;

transition:.35s;

cursor:pointer;

}

.btn-gold{

background:linear-gradient(135deg,#D4A017,#f0ca4b);

color:#fff;

box-shadow:0 15px 35px rgba(212,160,23,.35);

}

.btn-gold:hover{

transform:translateY(-5px);

}

.btn-outline{

border:2px solid rgba(255,255,255,.4);

color:#fff;

backdrop-filter:blur(12px);

}

.btn-outline:hover{

background:#fff;

color:var(--primary);

}

/* ===========================
PRELOADER
=========================== */

#preloader{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:#fff;

z-index:99999;

display:flex;

align-items:center;

justify-content:center;

}

.loader{

display:flex;

gap:12px;

}

.loader span{

width:14px;

height:14px;

background:var(--secondary);

border-radius:50%;

animation:bounce .8s infinite alternate;

}

.loader span:nth-child(2){

animation-delay:.2s;

}

.loader span:nth-child(3){

animation-delay:.4s;

}

@keyframes bounce{

to{

transform:translateY(-14px);

}

}

/* ===========================
SCROLL PROGRESS
=========================== */

.scroll-progress{

position:fixed;

left:0;

top:0;

height:4px;

background:linear-gradient(to right,var(--secondary),var(--sky));

width:0;

z-index:999999;

}

/* ===========================
HEADER
=========================== */

.header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

transition:.4s;

padding:20px 0;

}

.header.scrolled{

background:rgba(11,44,93,.85);

backdrop-filter:blur(20px);

box-shadow:0 15px 30px rgba(0,0,0,.10);

padding:14px 0;

}

.header .container{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo img{

height:62px;

}

.navbar ul{

display:flex;

gap:34px;

align-items:center;

}

.navbar a{

font-weight:600;

color:#fff;

position:relative;

}

.navbar a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:var(--secondary);

transition:.35s;

}

.navbar a:hover::after,

.navbar .active::after{

width:100%;

}

.header-right{

display:flex;

align-items:center;

gap:18px;

}

.phone-btn{

padding:12px 18px;

background:rgba(255,255,255,.15);

border:1px solid rgba(255,255,255,.2);

backdrop-filter:blur(14px);

color:#fff;

border-radius:40px;

font-weight:600;

}

.apply-btn{

padding:14px 28px;

background:linear-gradient(135deg,#D4A017,#F8C851);

border-radius:40px;

color:#fff;

font-weight:700;

box-shadow:0 15px 35px rgba(212,160,23,.35);

}

.apply-btn:hover{

transform:translateY(-4px);

}

.mobile-toggle{

display:none;

background:none;

border:none;

font-size:26px;

color:#fff;

cursor:pointer;

}

/* ===========================
SECTION TITLE
=========================== */

.section-tag{

display:inline-block;

padding:8px 18px;

background:rgba(212,160,23,.15);

color:var(--secondary);

border-radius:30px;

font-size:14px;

font-weight:700;

margin-bottom:18px;

}

.section-title{

max-width:650px;

margin-bottom:60px;

}

/* ===========================
GLASS CARD
=========================== */

.glass{

background:rgba(255,255,255,.18);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.28);

border-radius:24px;

box-shadow:0 20px 40px rgba(0,0,0,.08);

}

/* ===========================
COMMON CARD
=========================== */

.card{

background:#fff;

border-radius:24px;

padding:35px;

box-shadow:var(--shadow);

transition:.35s;

}

.card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-hover);

}

/* ===========================
ANIMATIONS
=========================== */

.reveal{

opacity:0;

transform:translateY(70px);

transition:1s;

}

.reveal.active{

opacity:1;

transform:none;

}

.float{

animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-14px);

}

100%{

transform:translateY(0);

}

}

/*=========================================================
 HERO SECTION
=========================================================*/

.hero{

position:relative;

min-height:100vh;

display:flex;

align-items:center;

overflow:hidden;

background:
linear-gradient(rgba(8,30,66,.65),rgba(8,30,66,.72)),
url('../images/hero.jpg') center center/cover no-repeat;

}

.hero::before{

content:"";

position:absolute;

left:-250px;

top:-250px;

width:650px;

height:650px;

background:radial-gradient(circle,
rgba(74,169,255,.35),
transparent 70%);

filter:blur(20px);

animation:float 8s ease-in-out infinite;

}

.hero::after{

content:"";

position:absolute;

right:-200px;

bottom:-180px;

width:600px;

height:600px;

background:radial-gradient(circle,
rgba(212,160,23,.30),
transparent 70%);

filter:blur(25px);

animation:float 10s ease-in-out infinite;

}

.hero .container{

position:relative;

z-index:5;

display:grid;

grid-template-columns:1.1fr .9fr;

gap:70px;

align-items:center;

}

/*===================================
LEFT
===================================*/

.hero-content{

color:#fff;

}

.hero-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:10px 20px;

border-radius:50px;

background:rgba(255,255,255,.15);

border:1px solid rgba(255,255,255,.2);

backdrop-filter:blur(20px);

font-weight:600;

margin-bottom:30px;

}

.hero h1{

font-size:72px;

color:#fff;

margin-bottom:25px;

line-height:1.08;

}

.hero h1 span{

color:#F8D34B;

}

.hero p{

font-size:19px;

color:#E7EEF9;

max-width:650px;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

margin-bottom:40px;

}

/*===================================
TRUST BADGES
===================================*/

.trust-row{

display:flex;

flex-wrap:wrap;

gap:18px;

}

.trust-item{

display:flex;

align-items:center;

gap:12px;

padding:14px 20px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.15);

border-radius:50px;

backdrop-filter:blur(20px);

color:#fff;

font-weight:600;

}

.trust-item i{

color:#F7C948;

}

/*===================================
RIGHT SIDE
===================================*/

.hero-right{

position:relative;

display:flex;

justify-content:center;

align-items:center;

}

.hero-image{

position:relative;

width:100%;

max-width:520px;

border-radius:35px;

overflow:hidden;

box-shadow:

0 35px 80px rgba(0,0,0,.35);

}

.hero-image img{

width:100%;

display:block;

transition:.6s;

}

.hero-image:hover img{

transform:scale(1.08);

}

/*===================================
FLOATING CARDS
===================================*/

.floating-card{

position:absolute;

padding:20px 25px;

border-radius:22px;

background:rgba(255,255,255,.16);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.20);

color:#fff;

box-shadow:

0 20px 40px rgba(0,0,0,.18);

animation:float 5s ease-in-out infinite;

}

.floating-card h3{

font-size:30px;

color:#fff;

margin-bottom:5px;

}

.floating-card p{

color:#fff;

font-size:15px;

margin:0;

}

.card-top{

top:-20px;

left:-40px;

}

.card-middle{

bottom:70px;

right:-40px;

animation-delay:1s;

}

.card-bottom{

bottom:-30px;

left:30px;

animation-delay:2s;

}

/*===================================
AIRPLANE ROUTE
===================================*/

.plane-route{

position:absolute;

top:18%;

left:0;

width:100%;

height:100%;

pointer-events:none;

overflow:hidden;

}

.plane-route svg{

position:absolute;

width:100%;

height:100%;

}

.plane-icon{

position:absolute;

top:18%;

left:-100px;

font-size:42px;

color:#fff;

animation:planeFly 14s linear infinite;

filter:drop-shadow(0 10px 20px rgba(0,0,0,.35));

}

@keyframes planeFly{

0%{

transform:
translateX(-120px)
translateY(40px)
rotate(10deg);

}

50%{

transform:
translateX(60vw)
translateY(-20px)
rotate(2deg);

}

100%{

transform:
translateX(120vw)
translateY(-90px)
rotate(-5deg);

}

}

/*===================================
GLASS STATS
===================================*/

.hero-stats{

margin-top:55px;

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

}

.hero-stat{

padding:25px;

border-radius:24px;

background:rgba(255,255,255,.13);

border:1px solid rgba(255,255,255,.16);

backdrop-filter:blur(18px);

text-align:center;

}

.hero-stat h3{

font-size:34px;

color:#fff;

margin-bottom:10px;

}

.hero-stat span{

font-size:15px;

color:#EAF1FA;

}

/*===================================
SCROLL DOWN
===================================*/

.scroll-down{

position:absolute;

left:50%;

bottom:25px;

transform:translateX(-50%);

color:#fff;

font-size:14px;

letter-spacing:2px;

text-transform:uppercase;

}

.scroll-down::after{

content:"";

display:block;

width:2px;

height:55px;

margin:auto;

margin-top:12px;

background:#fff;

animation:scrollLine 1.4s infinite;

}

@keyframes scrollLine{

0%{

opacity:0;

transform:translateY(-12px);

}

100%{

opacity:1;

transform:translateY(12px);

}

}


/*==================================================
WHY CHOOSE US
==================================================*/

.why-us{

background:var(--light);

position:relative;

overflow:hidden;

}

.why-us::before{

content:"";

position:absolute;

right:-180px;

top:-120px;

width:420px;

height:420px;

border-radius:50%;

background:rgba(74,169,255,.08);

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.why-card{

background:#fff;

padding:40px 30px;

border-radius:28px;

text-align:left;

box-shadow:var(--shadow);

transition:.4s;

position:relative;

overflow:hidden;

}

.why-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(90deg,var(--secondary),var(--sky));

transform:scaleX(0);

transform-origin:left;

transition:.45s;

}

.why-card:hover::before{

transform:scaleX(1);

}

.why-card:hover{

transform:translateY(-14px);

box-shadow:0 35px 70px rgba(0,0,0,.15);

}

.why-icon{

width:72px;

height:72px;

display:flex;

align-items:center;

justify-content:center;

border-radius:22px;

font-size:30px;

background:linear-gradient(135deg,#0B2C5D,#1F4E91);

color:#fff;

margin-bottom:25px;

box-shadow:0 18px 40px rgba(11,44,93,.25);

}

.why-card h3{

font-size:22px;

margin-bottom:15px;

}

.why-card p{

font-size:15px;

}


/*==================================================
COURSES
==================================================*/

.courses{

background:#fff;

position:relative;

}

.course-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:60px;

}

.course-card{

background:#fff;

border-radius:30px;

overflow:hidden;

box-shadow:var(--shadow);

transition:.45s;

}

.course-card:hover{

transform:translateY(-15px);

box-shadow:0 35px 75px rgba(0,0,0,.16);

}

.course-image{

position:relative;

overflow:hidden;

height:260px;

}

.course-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.7s;

}

.course-card:hover .course-image img{

transform:scale(1.12);

}

.course-image::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:100%;

height:100%;

background:linear-gradient(transparent,rgba(11,44,93,.70));

}

.course-content{

padding:30px;

}

.course-content h3{

margin-bottom:15px;

font-size:25px;

}

.course-content p{

margin-bottom:20px;

}

.course-highlights{

margin-bottom:30px;

}

.course-highlights li{

padding:8px 0;

display:flex;

gap:10px;

align-items:center;

font-size:15px;

}

.course-highlights i{

color:var(--secondary);

}

.learn-btn{

display:inline-flex;

gap:10px;

align-items:center;

font-weight:700;

color:var(--primary);

}

.learn-btn i{

transition:.35s;

}

.learn-btn:hover i{

transform:translateX(6px);

}


/*==================================================
ABOUT SECTION
==================================================*/

.about-home{

background:var(--light);

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.about-image{

position:relative;

}

.about-image img{

border-radius:35px;

box-shadow:0 30px 70px rgba(0,0,0,.18);

}

.about-floating{

position:absolute;

right:-25px;

bottom:35px;

padding:25px;

border-radius:25px;

background:#fff;

box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.about-floating h3{

font-size:40px;

color:var(--secondary);

margin-bottom:5px;

}

.about-list{

margin-top:30px;

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

}

.about-list li{

display:flex;

gap:12px;

align-items:flex-start;

font-weight:600;

}

.about-list i{

color:var(--secondary);

margin-top:4px;

}


/*==================================================
CAREER TIMELINE
==================================================*/

.career{

background:#fff;

}

.timeline{

margin-top:70px;

position:relative;

}

.timeline::before{

content:"";

position:absolute;

left:50%;

top:0;

width:4px;

height:100%;

background:linear-gradient(var(--secondary),var(--sky));

transform:translateX(-50%);

}

.timeline-item{

width:50%;

padding:25px 45px;

position:relative;

}

.timeline-item:nth-child(odd){

left:0;

text-align:right;

}

.timeline-item:nth-child(even){

left:50%;

}

.timeline-box{

background:#fff;

padding:30px;

border-radius:24px;

box-shadow:var(--shadow);

transition:.35s;

}

.timeline-box:hover{

transform:translateY(-10px);

box-shadow:0 30px 60px rgba(0,0,0,.14);

}

.timeline-icon{

position:absolute;

top:35px;

right:-22px;

width:46px;

height:46px;

background:var(--secondary);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:18px;

}

.timeline-item:nth-child(even) .timeline-icon{

left:-22px;

}


/*==================================================
TRAINING PROCESS
==================================================*/

.process{

background:var(--light);

}

.process-grid{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:25px;

margin-top:60px;

}

.process-card{

background:#fff;

padding:35px 20px;

border-radius:24px;

text-align:center;

box-shadow:var(--shadow);

position:relative;

transition:.35s;

}

.process-card:hover{

transform:translateY(-10px);

}

.process-card::after{

content:"";

position:absolute;

right:-14px;

top:50%;

width:28px;

height:3px;

background:var(--secondary);

}

.process-card:last-child::after{

display:none;

}

.process-number{

width:56px;

height:56px;

margin:auto;

margin-bottom:20px;

border-radius:50%;

background:linear-gradient(135deg,var(--primary),#295da8);

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

font-weight:700;

}

.process-card h3{

font-size:20px;

margin-bottom:10px;

}

.process-card p{

font-size:14px;

}

/*==================================================
STATISTICS
==================================================*/

.statistics{

background:
linear-gradient(rgba(11,44,93,.95),rgba(11,44,93,.95)),
url('../images/about.jpg') center/cover;

color:#fff;

position:relative;

overflow:hidden;

}

.statistics::before{

content:"";

position:absolute;

left:-150px;

top:-150px;

width:420px;

height:420px;

background:rgba(255,255,255,.05);

border-radius:50%;

}

.statistics::after{

content:"";

position:absolute;

right:-120px;

bottom:-120px;

width:320px;

height:320px;

background:rgba(212,160,23,.12);

border-radius:50%;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

position:relative;

z-index:2;

}

.stat-card{

background:rgba(255,255,255,.08);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.15);

padding:45px 25px;

border-radius:28px;

text-align:center;

transition:.35s;

}

.stat-card:hover{

transform:translateY(-12px);

background:rgba(255,255,255,.14);

}

.stat-card h2{

font-size:56px;

color:#fff;

margin-bottom:10px;

}

.stat-card span{

font-size:17px;

color:#E5EEF7;

}


/*==================================================
GALLERY
==================================================*/

.gallery{

background:#fff;

}

.gallery-grid{

column-count:3;

column-gap:25px;

margin-top:60px;

}

.gallery-item{

position:relative;

margin-bottom:25px;

overflow:hidden;

border-radius:26px;

cursor:pointer;

break-inside:avoid;

box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.gallery-item img{

width:100%;

display:block;

transition:.8s;

}

.gallery-item:hover img{

transform:scale(1.12);

}

.gallery-overlay{

position:absolute;

inset:0;

background:linear-gradient(

transparent,

rgba(11,44,93,.85)

);

display:flex;

align-items:flex-end;

padding:30px;

opacity:0;

transition:.4s;

}

.gallery-item:hover .gallery-overlay{

opacity:1;

}

.gallery-overlay h3{

color:#fff;

font-size:24px;

}


/*==================================================
TESTIMONIALS
==================================================*/

.testimonials{

background:var(--light);

overflow:hidden;

}

.testimonial-slider{

display:flex;

gap:30px;

margin-top:60px;

overflow-x:auto;

scroll-behavior:smooth;

padding-bottom:15px;

}

.testimonial-slider::-webkit-scrollbar{

display:none;

}

.testimonial-card{

min-width:380px;

padding:35px;

border-radius:28px;

background:rgba(255,255,255,.75);

backdrop-filter:blur(18px);

box-shadow:0 25px 50px rgba(0,0,0,.08);

transition:.35s;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.student{

display:flex;

align-items:center;

gap:18px;

margin-bottom:25px;

}

.student img{

width:75px;

height:75px;

border-radius:50%;

object-fit:cover;

}

.student h4{

margin-bottom:5px;

}

.rating{

color:#FFC107;

margin-bottom:18px;

}

.testimonial-card p{

font-style:italic;

}


/*==================================================
FAQ
==================================================*/

.faq{

background:#fff;

}

.faq-wrapper{

max-width:900px;

margin:60px auto 0;

}

.faq-item{

margin-bottom:18px;

border-radius:22px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

background:#fff;

}

.faq-question{

padding:25px 30px;

cursor:pointer;

display:flex;

justify-content:space-between;

align-items:center;

font-size:20px;

font-weight:600;

}

.faq-question i{

transition:.35s;

}

.faq-answer{

max-height:0;

overflow:hidden;

transition:.45s;

padding:0 30px;

}

.faq-item.active .faq-answer{

max-height:300px;

padding:0 30px 30px;

}

.faq-item.active .faq-question i{

transform:rotate(180deg);

}


/*==================================================
CTA
==================================================*/

.cta{

padding:120px 0;

background:

linear-gradient(

135deg,

#0B2C5D,

#1E4D8E

);

position:relative;

overflow:hidden;

text-align:center;

}

.cta::before{

content:"";

position:absolute;

left:-150px;

bottom:-150px;

width:450px;

height:450px;

background:rgba(255,255,255,.05);

border-radius:50%;

}

.cta h2{

color:#fff;

font-size:52px;

margin-bottom:25px;

}

.cta p{

color:#EAF0F7;

font-size:19px;

margin-bottom:40px;

max-width:700px;

margin-inline:auto;

}


/*==================================================
CONTACT
==================================================*/

.contact-preview{

background:var(--light);

}

.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

}

.contact-card{

background:#fff;

padding:40px;

border-radius:28px;

box-shadow:var(--shadow);

}

.contact-card ul{

display:flex;

flex-direction:column;

gap:18px;

margin-top:25px;

}

.contact-card li{

display:flex;

align-items:center;

gap:16px;

font-size:17px;

}

.contact-card i{

width:50px;

height:50px;

background:var(--primary);

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

}

.map-placeholder{

height:450px;

border-radius:30px;

overflow:hidden;

background:#dfe8f2;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

font-weight:700;

color:var(--primary);

}


/*==================================================
LIGHTBOX
==================================================*/

.lightbox{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.92);

display:flex;

justify-content:center;

align-items:center;

opacity:0;

visibility:hidden;

transition:.35s;

z-index:99999;

}

.lightbox.active{

opacity:1;

visibility:visible;

}

.lightbox img{

max-width:90%;

max-height:90%;

border-radius:20px;

box-shadow:0 35px 70px rgba(0,0,0,.4);

}

.lightbox-close{

position:absolute;

right:40px;

top:25px;

font-size:48px;

color:#fff;

cursor:pointer;

}


/*==================================================
FOOTER
==================================================*/

.footer{

background:#071C3A;

color:#fff;

}

.footer-cta{

padding:80px 0;

border-bottom:1px solid rgba(255,255,255,.08);

}

.footer-cta-content{

display:flex;

justify-content:space-between;

align-items:center;

gap:50px;

}

.footer-cta h2{

color:#fff;

margin:15px 0;

}

.footer-cta p{

color:#D4DCE8;

}

.footer-main{

padding:80px 0;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:40px;

}

.footer-logo{

height:70px;

margin-bottom:25px;

}

.footer-col h4{

color:#fff;

margin-bottom:25px;

}

.footer-col ul{

display:flex;

flex-direction:column;

gap:15px;

}

.footer-col li{

color:#D4DCE8;

}

.footer-col a:hover{

color:var(--secondary);

}

.footer-social{

display:flex;

gap:15px;

margin-top:30px;

}

.footer-social a{

width:46px;

height:46px;

border-radius:50%;

background:rgba(255,255,255,.08);

display:flex;

align-items:center;

justify-content:center;

transition:.35s;

}

.footer-social a:hover{

background:var(--secondary);

transform:translateY(-5px);

}

.footer-bottom{

padding:25px 0;

border-top:1px solid rgba(255,255,255,.08);

}

.footer-bottom-flex{

display:flex;

justify-content:space-between;

align-items:center;

color:#D4DCE8;

}


/*==================================================
SCROLL TOP
==================================================*/

#scrollTop{

position:fixed;

right:30px;

bottom:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:linear-gradient(135deg,#D4A017,#F5C542);

color:#fff;

font-size:20px;

cursor:pointer;

display:none;

z-index:999;

box-shadow:0 15px 35px rgba(0,0,0,.18);

transition:.35s;

}

#scrollTop:hover{

transform:translateY(-6px) rotate(360deg);

}

