/* ==========================================
   TLK Enterprise Website
========================================== */


/* ==========================================
   Global
========================================== */

html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Segoe UI", Arial, sans-serif;
    background:#082B45;
    color:#fff;
}


/* ==========================================
   Home Page
========================================== */


/* ---------- Hero ---------- */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:170px 40px 100px;
    padding:120px 8%;
    position:relative;
    background:
    linear-gradient(
        90deg,
        rgba(8,43,69,.88) 0%,
        rgba(8,43,69,.78) 35%,
        rgba(8,43,69,.45) 70%,
        rgba(8,43,69,.25) 100%
    ),
    url("images/hero-bg.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

.hero-content{
    max-width:560px;
    z-index:2;
}

/* Logo Image */

.hero-content img{
    width:220px;
    height:auto;
    display:block;
    margin:0 auto;
    animation:float 4s ease-in-out infinite;
}

.hero h1{
    font-family:'Montserrat', sans-serif;
    font-size:60px;
    font-weight:700;
    line-height:1.1;
    color:#fff;
    margin-bottom:18px;
    letter-spacing:-1px;

}

.hero h2{
    font-size:28px;
    color:#22C55E;
    margin-bottom:20px;
    font-weight:600;
}

.hero p{
    font-size:18px;
    line-height:1.8;
    color:#D9E8F5;
    margin-bottom:35px;
}

.hero-logo{
    margin-bottom:25px;

}

.hero-logo img{
    width:120px;

}

.hero .btn{
    padding:16px 34px;
    font-size:17px;
}


/* ==========================================
   Buttons
========================================== */

.btn{
    position:relative;
    overflow:hidden;
    display:inline-block;
    padding:15px 35px;
    margin:15px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    transition:.35s;
}

.btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        to right,
        rgba(255,255,255,0),
        rgba(255,255,255,.45),
        rgba(255,255,255,0)
    );

    transform:skewX(-25deg);
    transition:.6s;
}

.btn:hover::before{
    left:140%;
}

.btn-primary{
    background:#00B7FF;
    color:#fff;
}

.btn-primary:hover{
    background:#0098D4;
}

.btn-outline{
    background:#25D366;
    border:2px solid #25D366;
    color:#fff;
}

.btn-outline:hover{
    background:#1EBE5D;
    border-color:#1EBE5D;
}


/* ==========================================
   What We Do
========================================== */

.what-we-do{
    background:#F8FAFC;
    color:#082B45;
    text-align:center;
    padding:100px 40px;
}

.what-we-do h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
}

.what-we-do p{
    max-width:800px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
    color:#4A5568;
}

/* ---------- Service Cards ---------- */

.services{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    max-width:1000px;
    margin:60px auto 0;
}

.service-card{
    background:#fff;
    max-width:430px;
    min-height:220px;
    margin:0 auto;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    opacity:0;
    transform:translateY(40px);
    transition:
        opacity .6s ease,
        transform .6s ease,
        box-shadow .3s ease;
}

.service-card:nth-child(5){
    grid-column:1 / 3;
    justify-self:center;
}

.service-card i{
    font-size:24px;
    color:#0D6EFD;
    margin-bottom:15px;
}


/* ==========================================
   Services Page
========================================== */

.service-detail{
    max-width:1200px;
    width:100%;
    margin:0 auto;
    padding:90px 40px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:60px;
}

.service-detail:not(:last-child){
    border-bottom:1px solid rgba(255,255,255,.04);
}

.service-detail.reverse{
    flex-direction:row-reverse;
}

/* ---------- Text --------- */
.service-text{
    flex:1;
    max-width:650px;
}

.service-text h2{
    font-size:46px;
}

.service-text p{
    margin-bottom:20px;
    font-size:18px;
    line-height:1.8;
    color:#d7e4ef;
}

.service-text ul{
    margin-top:0;
    padding-left:20px;
}

.service-text li{
    margin-bottom:18px;
    font-size:17px;
    line-height:1.8;
}

/* ---------- Image ---------- */

.service-image{
    width:360px;
    height:360px;

    display:flex;
    justify-content:center;
    align-items:center;
}

.service-image-img{
    width:100%;
    height:100%;
    object-fit:contain;

    display:block;
    border-radius:18px;
    transition:.35s ease;
    filter:drop-shadow(0 20px 35px rgba(0,0,0,.12));
}

/* ==========================================
   Why Choose
========================================== */

.why-choose{
    background:#082B45;
    color:#fff;
    text-align:center;
    padding:60px 40px;
}

.why-choose h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
}

.why-choose p{
    max-width:750px;
    margin:0 auto 60px;
    font-size:20px;
    line-height:1.8;
    color:#D9E8F5;
}

/* ---------- Why Items ---------- */

.why-items{
    max-width:900px;
    margin:60px auto;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:25px;
    padding:35px 0;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.why-item:last-child{
    border-bottom:none;
}

.why-icon{
    width:50px;
    flex-shrink:0;
    font-size:34px;
    text-align:center;
    transition:.3s ease;
}

.why-text{
    text-align:left;
}

.why-text h3{
    margin-bottom:12px;
    font-size:26px;
    color:#fff;
}

.why-text p{
    margin:0;
    font-size:18px;
    line-height:1.8;
    color:#D9E8F5;
}

/* ==========================================
   Home Contact Section
========================================== */

.contact{
    background:#082B45;
    color:#fff;
    text-align:center;
    padding:30px 40px 50px;
}

.contact-hero h1{
    font-size:46px;
    line-height:1.15;
    margin-bottom:18px;
}

.contact-hero p{
    font-size:18px;
    line-height:1.8;
    color:#D5E3EF;
}

.contact h2{
    font-size:46px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.contact > p{
    max-width:620px;
    margin:0 auto 50px;
    font-size:17px;
    line-height:1.8;
    color:#D9E8F5;
}

/* ---------- Contact Info ---------- */

.contact-info{
    max-width:360px;
    margin:0 auto;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:6px 0;
    border:none;
    transition:.35s;
}

.contact-item:last-child{
    border-bottom:none;
}

.contact-item h3{
    font-size:30px;
    margin-bottom:10px;
    display:none;
}

.contact-item h3 i{
    width:26px;
    margin-right:12px;
    color:#25D366;
    text-align:center;
}

.contact-item p{
    font-size:15px;
    color:#fff;
    font-weight:500;
}

.contact-note{
    margin:60px 0 40px;
    color:#D9E8F5;
}

.contact a{
    color:#D9E8F5;
    text-decoration:none;
    transition:.3s;
}

.contact a:hover{
    color:#25D366;
}

.contact .btn{
    margin-top:18px;
    padding:16px 38px;
    font-size:17px;
    border-radius:999px;
}

.contact-item i{
    font-size:16px;
    width:28px;
    color:#25D366;
}

.contact-quick{
    margin-top:30px;
}

.contact-quick p{
    margin:10px 0;
    font-size:17px;
    color:#D9E8F5;
}

.contact-quick i{
    width:22px;
    margin-right:10px;
    color:#25D366;
}

.contact-quick a{
    color:#D9E8F5;
    text-decoration:none;
}

.contact-quick a:hover{
    color:#25D366;
}

/* ==========================================
   Footer
========================================== */

.footer{
    background:#fff;
    border-top:1px solid #E5E7EB;
    text-align:center;
    padding:18px 20px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-tagline{
    font-size:13px;
    color:#6B7280;
    font-weight:500;
    margin-bottom:5px;
}

.footer-content{
    max-width:420px;
    margin:0 auto;
}

.footer-brands{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    margin-bottom:5px;
}

.footer-brands img{
    height:42px;
    width:auto;
    opacity:.95;
    transition:.3s;
}

.footer-brands img:hover{
    transform:translateY(-1px);
    opacity:1;
}

.footer-brand-row{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin:5px 0;
}

.brand-line{
    flex:1;
    max-width:100px;
    height:1px;
    background:#D9DEE6;
}

.copyright{
    font-size:11px;
    color:#B8C0CC;
    margin-top:5px;
    line-height:1.6;
}


/* ==========================================
   Animations
========================================== */

/* ---------- Hover ---------- */

.service-card:hover{
    transform:translateY(-8px) scale(1.015);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.service-image-img:hover{
    transform:translateY(-6px) scale(1.02);
    filter:drop-shadow(0 24px 45px rgba(0,0,0,.18));
}

.service-card.show{
    opacity:1;
    transform:translateY(0);
}

.btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.why-item:hover{
    transform:translateX(8px);
}

.why-item:hover .why-icon{
    transform:scale(1.15);
}

.why-item:hover h3{
    color:#25D366;
}

.contact-item:hover{
    transform:translateX(8px);
}


/* ---------- Scroll Reveal ---------- */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}


/* ---------- Floating Logo ---------- */

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }

}

/* ==========================================
   Navigation
========================================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 60px;
    background:transparent;
    z-index:999;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:.4s ease;
}

.navbar.scrolled{
    background:rgba(8,43,69,.85);
    backdrop-filter:blur(10px);
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

/* ---------- Logo ---------- */

.nav-logo{
    color:#fff;
    font-size:28px;
    font-weight:800;
    transition:.3s;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:12px;
    letter-spacing:1px;
}

.nav-logo:hover{
    color:#2FD366;
    letter-spacing:1px;
}

.nav-logo img{
    width:48px;
    height:48px;
}

.nav-logo span{
    font-size:28px;
    font-weight:800;
}

/* ---------- Menu ---------- */

.nav-menu{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-menu a{
    position:relative;
    padding:5px 0;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.nav-menu a::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-6px;
    width:0;
    height:2px;
    background:#2FD366;
    transform:translateX(-50%);
    transition:.3s;
}

.nav-menu a:hover{
    color:#2FD366;
}

.nav-menu a:hover::after,
.nav-menu a.active::after{
    width:100%;
}

.nav-menu a.active{
    color:#2FD366;
}

/* ---------- Hamburger ---------- */

.hamburger{
    display:none;
}

/* ==========================================
   Services Page
========================================== */

/* ---------- Hero ---------- */

.page-hero{
    min-height:70vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:120px 20px 80px;
    text-align:center;
    color:#fff;
    background:linear-gradient(
        135deg,
        #12314D 0%,
        #173B59 100%
    );
}

.page-hero-content{
    max-width:700px;
}

.page-hero h1{
    margin-bottom:25px;
    font-size:58px;
    font-weight:700;
}

.page-hero p{
    margin-bottom:40px;
    font-size:22px;
    line-height:1.8;
    opacity:.9;
}

.page-hero .btn{
    padding:16px 40px;
    font-size:18px;
}

/* ---------- Service Navigation ---------- */

.service-nav{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    padding:40px 20px;
    background:#F7F9FC;
}

.service-nav a{
    display:inline-block;
    padding:12px 24px;
    border-radius:999px;
    background:#fff;
    color:#0B3558;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.service-nav a:hover{
    background:#0D6EFD;
    color:#fff;
    transform:translateY(-3px);
}
/* ==========================================
   About Page
========================================== */

/* ---------- Hero ---------- */

.about-hero{
    min-height:40vh;
    background:linear-gradient(
        180deg,
        #183D5D 0%,
        #123555 100%
    );
}

/* ---------- About Section ---------- */

.about-section{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    max-width:1200px;
    margin:-70px auto 0;
    padding:80px 40px;
    background:#173B5B;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
}

/* ---------- Text ---------- */

.about-text{
    flex:1;
}

.section-label{
    display:inline-block;
    margin-bottom:15px;
    color:#19C37D;
    font-size:14px;
    font-weight:600;
}

.about-text h2{
    margin-bottom:25px;
    color:#fff;
    font-size:42px;
    line-height:1.3;
}

.about-text p{
    margin-bottom:20px;
    color:#D7DDE7;
    font-size:18px;
    line-height:1.9;
}

/* ---------- Image ---------- */

.about-image{
    flex:0 0 400px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.about-image-wrapper{
    width:360px;
    height:360px;

    display:flex;
    justify-content:center;
    align-items:center;
}

.about-image img{
    width:360px;
    height:360px;
    display:block;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

/* ==========================================
   Why Choose Us
========================================== */

.why-us{
    max-width:1200px;
    margin:120px auto;
    padding:0 30px
}

/* ---------- Section Title ---------- */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:#21D07A;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-title h2{
    margin:15px 0;
    color:#fff;
    font-size:42px;
}

.section-title p{
    max-width:650px;
    margin:0 auto;
    color:#C8D4DF;
    line-height:1.8;
}

/* ---------- Why Cards ---------- */

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.why-card{
    padding:35px;
    background:#21476D;
    border-radius:20px;
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.3);
}

.why-card i{
    margin-bottom:20px;
    color:#21D07A;
    font-size:40px;
}

.why-card h3{
    margin-bottom:15px;
    color:#fff;
    font-size:24px;
}

.why-card p{
    color:#C8D4DF;
    line-height:1.8;
}

/* ==========================================
   Contact Page
========================================== */

/* ---------- Hero ---------- */

.contact-hero{
    min-height:auto;
    padding:120px 30px 40px;
}


/* ---------- Contact Layout ---------- */

.contact-section{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
    max-width:1200px;
    margin:30px auto 50px;
    padding:40px 30px;
}

.contact-info{
    flex:1.2;
}

.contact-form{
    flex:1;
    display:flex;
    align-items:flex-start;
}

/* ---------- Contact Text ---------- */

.contact-info h2{
    margin:15px 0 20px;
    color:#fff;
    font-size:30px;
}

.contact-info > p{
    margin-bottom:30px;
    color:#C8D4DF;
    line-height:1.8;
}

/* ---------- Contact Items ---------- */

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:15px;
    padding-bottom:15px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.contact-item:last-child{
    padding-bottom:0;
    border-bottom:none;
}

.contact-item i{
    margin-top:5px;
    color:#21D07A;
    font-size:38px;
}

.contact-item h3{
    margin-bottom:8px;
    color:#fff;
}

.contact-item p{
    color:#C8D4DF;
    line-height:1.7;
}

/* Clickable text */

.contact-text-link,
.contact-text-link:link,
.contact-text-link:visited{
    color:#C8D4DF;
    text-decoration:none;
    transition:.3s ease;
}

.contact-text-link:hover{
    color:#21D07A;
    text-decoration:underline;
}

.contact-text-link:active{
    color:#21D07A;
}

/* ---------- Image ---------- */

.contact-form .image-placeholder{
    height:520px;
}

/* ==========================================
   Contact Form
========================================== */

.contact-form-box{
    width:100%;
    padding:40px;
    background:#23496B;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.contact-form iframe{
    width:100%;
    height:720px;
    border:none;
}

/* ---------- Form Group ---------- */

.form-group{
    display:flex;
    flex-direction:column;
    margin-bottom:12px;
    min-height:120px;
}

.form-group label{
    margin-bottom:8px;
    color:#fff;
    font-size:14px;
    font-weight:600;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:12px 16px;
    border:none;
    border-radius:10px;
    background:#F5F7FA;
    font-family:inherit;
    font-size:15px;
    transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus{
    outline:none;
    background:#fff;
    box-shadow:0 0 0 3px rgba(33,208,122,.25);
}

.form-group textarea{
    min-height:100px;
    resize:vertical;
}

/* ---------- Submit Button ---------- */

.submit-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#21D07A;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    background:#19B867;
    transform:translateY(-2px);
}

/* ---------- Mobile Menu ---------- */

/* ==========================================
   Responsive (Mobile)
========================================== */

@media (max-width:768px){

/* ---------- Home ---------- */

.hero{
    min-height:100vh;
    padding:90px 25px 70px;
}

.hero-content{
    margin-top:30px;
}

.hero-content img{
    display:block;
    width:160px;
    height:auto;
    margin:65px auto 20px;
}

.hero h1{
    font-size:40px;
    line-height:1.15;
    margin-bottom:12px;
}

.hero h2{
    font-size:18px;
    line-height:1.45;
    margin-bottom:18px;
}

.hero p{
    font-size:16px;
    line-height:1.8;
    margin:0 auto 30px;
    max-width:320px;
}

.hero-buttons{
    flex-direction:column;
    gap:15px;
}

.hero-buttons .btn{
    width:100%;
    max-width:280px;
    margin:0 auto;
}


/* ---------- Buttons ---------- */

.btn{
    width:100%;
    max-width:300px;
    padding:12px 18px;
    font-size:15px;
    border-radius:12px;
}

/* ---------- Navigation ---------- */

.hamburger{
    display:block;
    font-size:30px;
    color:#fff;
    cursor:pointer;
    transition:.3s;
    flex-shrink:0;
}

.hamburger:hover{
    color:#2FD366;
}

.navbar{
    padding:20px;
    overflow:visible;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.nav-logo{
    font-size:28px;
    white-space:nowrap;
    flex:1;
    font-weight:800;
}

.nav-menu{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:25px;
    padding:30px 0;
    background:#082B45;
    opacity:0;
    visibility:hidden;
    transform:translateY(-20px);
    transition:.35s ease;
}

.nav-menu.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* ---------- Home Content ---------- */

.what-we-do{
    padding:70px 25px;
}

.what-we-do h2{
    font-size:32px;
}

.services{
    grid-template-columns:1fr;
    gap:20px;
}

.service-card{
    max-width:100%;
    padding:30px;
    margin-bottom:20px;
}

.service-card:nth-child(5){
    grid-column:auto;
    justify-self:stretch;
}


/* ---------- Why Choose ---------- */

.why-choose{
    padding:70px 25px;
}

.why-choose h2{
    font-size:36px;
}

.why-items{
    width:100%;
}

.why-item{
    gap:18px;
}

.why-icon{
    width:40px;
    font-size:28px;
}

.why-grid{
    grid-template-columns:1fr;
}


/* ---------- Home Contact ---------- */

.contact{
    padding:70px 25px 40px;
}

.contact h2{
    font-size:34px;
    line-height:1.2;
}

.contact p{
    font-size:18px;
}

/* ---------- Footer ---------- */

.footer{
    width:100%;
    max-width:none;
    margin:0;
    padding:22px 18px;
}

.footer-content{
    max-width:100%;
}

.footer-brands{
    gap:20px;
    margin-bottom:5px;
}


.footer-brands img{
    height:34px;
}

.brand-line{
    max-width:45px;
}


.footer-tagline{
    font-size:12px;
}

.footer-brand-row{
    gap:12px;
}

.copyright{
    font-size:10px;
}

/* ---------- About ---------- */

.page-hero{
    min-height:auto;
    padding:85px 22px 25px;
    
}

.page-hero-content{
    max-width:650px;
    margin:0 auto;
}

.about-hero{
    min-height:auto;
}

.about-section{
    margin-top:0;
    flex-direction:column;
    gap:40px;
    padding:60px 25px;
    text-align:center;
    display:flex;
}

.about-image{
    width:100%;
    flex:none;
}

.about-image img{
    width:100%;
    max-width:280px;
    height:auto;
}

.about-hero h1{
    font-size:34px;
    margin-bottom:20px;
}

.about-hero p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:0;
}

.about-image-wrapper{
    width:100%;
    display:flex;
    justify-content:center;
}

/* ---------- Services ---------- */

.service-detail,
.service-detail.reverse{
    flex-direction:column;
    gap:40px;
    padding:55px 22px;
    text-align:center;
}

.service-text h2{
    font-size:32px;
    line-height:1.25;
}

.service-text p{
    font-size:18px;
}

.service-text ul{
    display:inline-block;
    text-align:left;
}

.service-detail .service-image{
    display:none;
}

.service-tabs{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-top:-25px;
    padding:10px 18px;
}

.service-tabs a{
    font-size:15px;
}


/* ---------- Contact Page ---------- */

.contact-section{
    flex-direction:column;
    margin:-20px auto 50px;
    gap:40px;
}

.contact-info,
.contact-form{
    width:100%;
}

.contact-hero{
    min-height:auto;
    padding:90px 22px 20px;
}

.contact-hero h1{
    font-size:34px;
}

.contact-hero p{
    font-size:18px;
    margin-bottom:0;
}

.contact-item h3{
    font-size:16px;
}

.contact-item p{
    font-size:15px;
    line-height:1.6;
}

.contact-item i{
    font-size:24px;
}

}
