
/* ==========================================
   ClickService 2.0
========================================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  color:#1d2939;
  background:#f6f8fc;
  line-height:1.7;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

.container{
  width:100%;
  max-width:1320px;
  margin:0 auto;
  padding-left:20px;
  padding-right:20px;
  box-sizing:border-box;
}

section{
  padding:100px 0;
}

.section-badge{

  display:inline-flex;
  align-items:center;

  padding:8px 18px;

  background:#eef4ff;

  color:#2563eb;

  border-radius:40px;

  font-weight:700;

  margin-bottom:20px;

}

.section-head{

  text-align:center;

  margin-bottom:70px;

}

.section-head h2{

  font-size:46px;

  margin-bottom:20px;

}

.section-head p{

  max-width:760px;

  margin:auto;

  color:#667085;

  font-size:18px;

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

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:#fff;
  z-index:1000;

  box-shadow:none;
  border-bottom:1px solid #ececec;
}

.header .container{
  height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
  text-decoration:none;
}

.logo-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.logo-name{
  display:flex;
  align-items:center;
  line-height:1;
  font-weight:800;
}

.logo-name .black{
  color:#111827;
  font-size:34px;
}

.logo-name .blue{
  color:#2563EB;
  font-size:34px;
}

.logo-subtitle{
  margin-top:4px;
  color:#7A8599;
  font-size:14px;
  font-weight:500;
}

.logo img,
.logo-icon{
    width:46px;
    height:46px;
    min-width:46px;
    min-height:46px;
    flex-shrink:0;
}

.logo{
  gap:8px;
}

.logo-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.logo-name{
  display:flex;
  align-items:center;
  line-height:1;
  white-space:nowrap;
}

.logo-name span{
  font-size:24px;
  font-weight:800;
}

.logo-subtitle{
  font-size:10px;
  margin-top:2px;
  line-height:1.2;
}

.logo-icon{
  overflow:visible;
}

.menu ul{
  display:flex;
  align-items:center;
  gap:40px;
}

.menu a{

  position:relative;

  font-size:16px;

  font-weight:600;

  transition:.3s;

}

.menu a::after{

  content:"";

  position:absolute;

  left:0;

  bottom:-8px;

  width:0;

  height:3px;

  border-radius:20px;

  background:#2563eb;

  transition:.3s;

}

.menu a:hover::after,
.menu a.active::after{

  width:100%;

}

.header-right{

  display:flex;

  align-items:center;

  gap:15px;

}

.telegram-button,
.max-button{

  display:flex;

  align-items:center;

  gap:10px;

  padding:12px 18px;

  border-radius:50px;

  background:#eef4ff;

  transition:.3s;

}

.telegram-button:hover,
.max-button:hover{

  transform:translateY(-3px);

  box-shadow:0 10px 25px rgba(37,99,235,.18);

}

.telegram-button img,
.max-button img{

  width:28px;

}

.header-contact{

  display:flex;

  flex-direction:column;

}

.header-contact a{

  font-weight:700;

  font-size:17px;

}

.header-contact span{

  color:#667085;

  font-size:14px;

}

/* ===== Burger ===== */

.burger{
  display:none;
  width:48px;
  height:48px;
  border:none;
  border-radius:12px;
  background:#f3f6fc;
  cursor:pointer;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  transition:.3s;
}

.burger:hover{
  background:#e7eefc;
}

.burger span{
  width:24px;
  height:3px;
  background:#2563EB;
  border-radius:20px;
  transition:.3s;
}
/* ==========================
   HERO
========================== */

.hero{
  padding-top:150px;
  padding-bottom:100px;
  background:linear-gradient(180deg,#f8fbff 0%,#eef4ff 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
  align-items:center;
  width:100%;
}

.hero-badge{

  display:inline-flex;

  align-items:center;

  padding:10px 18px;

  border-radius:40px;

  background:#dbeafe;

  color:#2563eb;

  font-weight:700;

  margin-bottom:25px;

}

.hero h1{

  font-size:58px;

  line-height:1.08;

  margin-bottom:25px;

  font-weight:800;

}

.hero h1 span{

  color:#2563eb;

  display:block;

}

.hero p{

  font-size:20px;

  color:#667085;

  max-width:620px;

  margin-bottom:40px;

}

.hero-buttons{

  display:flex;

  gap:18px;

  margin-bottom:40px;

}

.btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:18px 34px;

  border-radius:16px;

  font-weight:700;

  transition:.3s;

}

.btn-blue{

  background:#2563eb;

  color:#fff;

}

.btn-blue:hover{

  transform:translateY(-4px);

  box-shadow:0 15px 35px rgba(37,99,235,.25);

}

.btn-white{

  background:#fff;

  border:2px solid #2563eb;

  color:#2563eb;

}

.btn-white:hover{

  background:#2563eb;

  color:#fff;

}

.hero-list{

  display:grid;

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

  gap:18px;

}

.hero-list div{

  display:flex;

  align-items:center;

  gap:10px;

  font-weight:600;

}

.hero-list i{

  color:#2563eb;

}

.hero-image{

  display:flex;

  justify-content:center;

}

.hero-image img{

  width:100%;

  max-width:650px;

  border-radius:26px;

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

}
/* ==========================
   SERVICES
========================== */

.services{
  background:#ffffff;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  width:100%;
}

.service-card{

  background:#fff;

  border-radius:24px;

  padding:35px;

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

  transition:.35s;

  border:1px solid #eef2f7;

  position:relative;

  overflow:hidden;

}

.service-card::before{

  content:"";

  position:absolute;

  left:0;
  top:0;

  width:100%;
  height:5px;

  background:#2563eb;

  transform:scaleX(0);

  transition:.35s;

}

.service-card:hover{

  transform:translateY(-10px);

  box-shadow:0 25px 55px rgba(37,99,235,.18);

}

.service-card:hover::before{

  transform:scaleX(1);

}

.service-icon{

  width:75px;
  height:75px;

  border-radius:18px;

  background:#eef4ff;

  display:flex;

  align-items:center;

  justify-content:center;

  margin-bottom:25px;

}

.service-icon i{

  font-size:34px;

  color:#2563eb;

}

.service-card h3{

  font-size:24px;

  margin-bottom:18px;

  color:#1d2939;

}

.service-card p{

  color:#667085;

  line-height:1.8;

  font-size:16px;

}
/* ==========================
   ABOUT
========================== */

.about{

  background:#f7faff;

}

.about-grid{

  display:grid;

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

  gap:70px;

  align-items:center;

  width:100%;

}

.about-content h3{

  font-size:38px;

  margin-bottom:25px;

  line-height:1.3;

}

.about-content p{

  font-size:18px;

  color:#667085;

  margin-bottom:20px;

}

.about-features{

  display:grid;

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

  gap:18px;

  margin-top:35px;

}

.about-features div{

  display:flex;

  align-items:center;

  gap:12px;

  font-weight:600;

}

.about-features i{

  color:#2563eb;

  font-size:18px;

}

.stats{

  display:grid;

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

  gap:22px;

}

.stat-box{

  background:#fff;

  padding:35px;

  border-radius:24px;

  text-align:center;

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

  transition:.3s;

}

.stat-box:hover{

  transform:translateY(-8px);

}

.stat-box h3{

  font-size:48px;

  color:#2563eb;

  margin-bottom:10px;

}

.stat-box span{

  color:#667085;

  font-size:17px;

}
/* ==========================
   CONTACTS
========================== */

.contacts{
  background:#ffffff;
}

.contacts-grid{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:50px;
  align-items:stretch;
  width:100%;
}

.contact-card{

  background:#ffffff;

  color:#1d2939;

  border-radius:28px;

  padding:40px;

  border:1px solid #e5e7eb;

  box-shadow:0 12px 30px rgba(0,0,0,.06);

  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  height:auto;
  padding:40px;
  padding-bottom:30px;

}

.contact-card h3{

  font-size:30px;

  margin-bottom:35px;

  color:#111827;

}

.contact-item{

  display:flex;

  align-items:flex-start;

  gap:18px;

  margin-bottom:28px;

}

.contact-item i{

  width:54px;

  height:54px;

  display:flex;

  align-items:center;

  justify-content:center;

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

  border-radius:16px;

  font-size:22px;

}
.contact-item i{

  background:#f3f4f6;

  color:#2563eb;

}
.contact-item strong{

  display:block;

  margin-bottom:6px;

  font-size:18px;

}

.contact-item a{

  color:#1d2939;

  opacity:1;

}
.contact-form{
  background:#fff;
  border-radius:28px;
  padding:50px;
  box-shadow:0 18px 45px rgba(37,99,235,.08);
}

.contact-form h3{
  font-size:54px;
  font-weight:800;
  color:#16243d;
  margin-bottom:16px;
  line-height:1.15;
}

.contact-form p{
  font-size:20px;
  color:#667085;
  margin-bottom:36px;
  line-height:1.7;
}

.contact-form input,
.contact-form textarea{

  width:100%;

  padding:18px 22px;

  border:1px solid #d9e2f2;

  border-radius:16px;

  margin-bottom:18px;

  font-size:16px;

  transition:.3s;

  margin-bottom:22px;

}

.contact-form input:focus,
.contact-form textarea:focus{

  outline:none;

  border-color:#2563eb;

  box-shadow:0 0 0 4px rgba(37,99,235,.12);

}

.contact-form textarea{

  height:150px;
min-height:150px;
resize:vertical;

}

.contact-form button{

  width:100%;

  border:none;

  cursor:pointer;

  margin-top:20px;

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

.footer{

  background:#0f172a;

  color:#fff;

  padding:80px 0 30px;

}

.footer-grid{

  display:grid;

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

  gap:50px;

  margin-bottom:60px;

}

.footer-logo{

  width:180px;

  margin-bottom:25px;

}

.footer-about p{

  color:#cbd5e1;

  line-height:1.9;

}

.footer h3{

  margin-bottom:20px;

  font-size:22px;

}

.footer-links,
.footer-services,
.footer-contact{

  display:flex;

  flex-direction:column;

  gap:15px;

}

.footer a{

  color:#cbd5e1
}
/* ===================================
   TABLET
=================================== */

@media (max-width:1100px){

  .header-right{
  
      display:none;
  
  }
  
  .hero-grid{
  
      grid-template-columns:1fr;
  
      gap:60px;
  
  }
  
  .hero-content{
  
      text-align:center;
  
  }
  
  .hero p{
  
      margin:auto auto 35px;
  
  }
  
  .hero-buttons{
  
      justify-content:center;
  
  }
  
  .hero-list{
  
      justify-content:center;
  
  }
  
  .services-grid{
  
      grid-template-columns:repeat(2,1fr);
  
  }
  
  .contacts-grid{
  
      grid-template-columns:1fr;
  
  }
  
  .footer-grid{
  
      grid-template-columns:repeat(2,1fr);
  
  }
  
  }
 /* ===================================
   MOBILE
=================================== */

@media (max-width:768px){

  .container{
      padding:0 20px;
  }

  .header{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      z-index:1000;
  }

  .header .container{
    height:74px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

  .logo img{
    height:48px;
    width:auto;
    max-width:none;
}
.burger{
  display:flex;
  z-index:1002;
  flex-shrink:0;
}

  .header-right{
      display:none;
  }

  .menu{
    position:fixed;
    top:0;
    right:-340px;
    width:320px;
    max-width:85%;
    height:100vh;

    background:#ffffff;

    border-left:1px solid #eef2f7;

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

    transition:right .35s ease;

    padding:85px 22px 25px;

    z-index:1001;

    overflow-y:auto;
}

  .menu.active{
      right:0;
  }

  .menu ul{
    display:flex;
    flex-direction:column;
    gap:12px;
    padding:0;
}

.menu a{
  display:flex;
  align-items:center;

  height:54px;

  padding:0 18px;

  border-radius:14px;

  font-size:18px;

  font-weight:600;

  transition:.25s;
}

.menu a:hover{
  background:#eef4ff;
  color:#2563EB;
}

.menu ul{
  margin-top:10px;
}

.menu li{
  width:100%;
}

.office-title h2{
  display:block;
  font-size:38px;
  line-height:1.2;
  text-align:center;
}

.office-title h2 span{
  display:inline;
}

.office-icon{
  display:none;
}

  /* HERO */

  .hero{
    margin-top:82px;      /* высота шапки */
    padding-top:30px;
    padding-bottom:100px;
    background:linear-gradient(180deg,#f8fbff 0%,#eef4ff 100%);
}

  .hero-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:35px;
  }

  .hero-content{
      order:2;
      text-align:center;
  }

  .hero-image{
      order:1;
      text-align:center;
  }

  .hero-image img{
    width:100%;
    max-width:380px;
    margin:0 auto;
}

  .hero h1{
      font-size:38px;
      line-height:1.2;
  }

  .hero p{
    font-size:17px;
    line-height:1.7;
    margin:0 auto;
    max-width:340px;
}

  .hero-buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
    margin:30px 0;
}

.btn{
  width:100%;
  max-width:330px;
}

  .hero-list{
      grid-template-columns:1fr;
  }

  /* Услуги */

  .services-grid{
      grid-template-columns:1fr;
  }

  /* О компании */

  .about-grid{
      grid-template-columns:1fr;
  }

  .about-features{
      grid-template-columns:1fr;
  }

  /* Статистика */

  .stats{
      grid-template-columns:1fr;
  }

  /* Контакты */

  .contacts-grid,
  .contact-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:25px;
  }

  /* Карта */

  .office-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:25px;
      width:100%;
  }

  .office-card{
      width:100%;
  }

  .office-map{
      width:100%;
  }

  .office-map iframe{
      width:100%;
      height:320px;
      border-radius:20px;
  }

  /* Footer */

  .footer-grid{
      grid-template-columns:1fr;
      text-align:center;
      gap:35px;
  }

}
  
/* ==========================
   FLOATING BUTTONS
========================== */

.floating-phone,
.floating-max,
.floating-telegram{

    position:fixed;
    right:25px;

    width:62px;
    height:62px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

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

    transition:.3s;

    z-index:998;
}

/* Телефон */

.floating-phone{

    bottom:190px;

    background:#2563EB;

}

.floating-phone i{

    color:#fff;
    font-size:28px;

}

/* MAX */

.floating-max{

    bottom:110px;

    background:#fff;

}

.floating-max img{

    width:34px;
    height:34px;

}

/* Telegram */

.floating-telegram{

    bottom:30px;

    background:#2563EB;

}

.floating-telegram i{

    color:#fff;
    font-size:28px;

}

/* Эффект при наведении */

.floating-phone:hover,
.floating-max:hover,
.floating-telegram:hover{

    transform:translateY(-6px) scale(1.06);

    box-shadow:0 22px 45px rgba(0,0,0,.25);

}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

    .floating-phone,
    .floating-max,
    .floating-telegram{

        width:56px;
        height:56px;

        right:18px;

    }

    /* Телефон сверху */

    .floating-phone{

        bottom:164px;

    }

    /* MAX посередине */

    .floating-max{

        bottom:92px;

    }

    .floating-max img{

        width:30px;
        height:30px;

    }

    /* Telegram снизу */

    .floating-telegram{

        bottom:20px;

    }

    .floating-phone i,
    .floating-telegram i{

        font-size:24px;

    }

}
/* ==========================
   MENU OVERLAY
========================== */

.menu-overlay{

  position:fixed;

  inset:0;

  background:rgba(15,23,42,.45);

  opacity:0;

  visibility:hidden;

  transition:.35s;

  z-index:999;

}

.menu-overlay.active{

  opacity:1;

  visibility:visible;

}
/* ===========================
      Наш офис
===========================*/

.office-map{
  padding:100px 0;
  background:#f7faff;
}

.office-grid{
  display:grid;
  grid-template-columns:380px 1fr;
  gap:40px;
  margin-top:50px;
}

.office-card{
  background:#fff;
  border-radius:24px;
  padding:35px;
  box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.office-card h3{
  font-size:28px;
  margin-bottom:30px;
  color:#2563eb;
}

.office-item{
  margin-bottom:28px;
}

.office-item strong{
  display:block;
  margin-bottom:8px;
  color:#1d2939;
  font-size:17px;
}

.office-item span,
.office-item a{
  color:#667085;
  text-decoration:none;
  line-height:1.7;
}

.office-item a:hover{
  color:#2563eb;
}

.route-button{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:35px;
  padding:16px;
  border-radius:14px;
  background:#2563eb;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

.route-button:hover{
  background:#1d4ed8;
  transform:translateY(-3px);
}

.map-box{
  overflow:hidden;
  border-radius:24px;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
  background:#fff;
  height:550px;
}

@media(max-width:992px){

.office-grid{
  grid-template-columns:1fr;
}

.office-card{
  order:2;
}

.map-box{
  order:1;
  min-height:420px;
}

}
.office-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:10px 18px;

  background:#eaf2ff;

  color:#2563eb;

  border-radius:40px;

  font-weight:700;

  margin-bottom:25px;
}/* =====================
   Заголовок карты
===================== */

.office-title{
  text-align:center;
  margin-bottom:55px;
}

.office-title h2{
  display:block;
  text-align:center;
  font-size:54px;
  font-weight:800;
  color:#16243d;
  line-height:1.2;
  margin-bottom:18px;
}
.office-title h2 span{
  color:#2563eb;
}

.office-title h2 span{
  color:#2563eb;
}

.office-icon{
  display:none;
}
.office-title p{
  max-width:720px;
  margin:0 auto;

  font-size:19px;
  line-height:1.8;
  color:#667085;
}
  /*==========================
Успешная отправка
==========================*/

.success-modal{

  position:fixed;
  inset:0;

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

  display:flex;
  justify-content:center;
  align-items:center;

  opacity:0;
  visibility:hidden;

  transition:.35s;

  z-index:9999;

}

.success-modal.show{

  opacity:1;
  visibility:visible;

}

.success-box{

  width:430px;

  background:#fff;

  border-radius:24px;

  padding:45px;

  text-align:center;

  animation:popup .35s;

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

}

.success-icon{

  width:80px;
  height:80px;

  margin:auto;

  border-radius:50%;

  background:#22c55e;

  color:#fff;

  font-size:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:25px;

}

.success-box h3{

  font-size:32px;
  margin-bottom:15px;

}

.success-box p{

  color:#6b7280;
  line-height:1.7;
  margin-bottom:35px;

}

.success-box button{

  border:none;

  background:#2563eb;

  color:#fff;

  padding:15px 35px;

  border-radius:12px;

  font-size:17px;

  cursor:pointer;

  transition:.25s;

}

.success-box button:hover{

  background:#1d4ed8;

}

@keyframes popup{

  from{

      transform:scale(.8);

      opacity:0;

  }

  to{

      transform:scale(1);

      opacity:1;

  }

}

/* ==========================
   COMPANY INFO
========================== */

.company-info{

  padding:90px 0;

  background:#f7faff;

}

.company-info h2{

  text-align:center;

  font-size:42px;

  margin-bottom:50px;

  color:#16243d;

}

.company-grid{

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:30px;

}

.company-card{

  background:#fff;

  padding:40px;

  border-radius:22px;

  box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.company-card h3{

  font-size:28px;

  margin-bottom:25px;

  color:#2563eb;

}

.company-card p{

  margin-bottom:18px;

  color:#475467;

  line-height:1.7;

}

.company-card a{

  display:block;

  margin-bottom:16px;

  color:#2563eb;

  text-decoration:none;

  font-weight:600;

}

.company-card a:hover{

  text-decoration:underline;

}

@media(max-width:768px){

.company-grid{

  grid-template-columns:1fr;

}

.company-info{

  padding:70px 0;

}

.company-info h2{

  font-size:34px;

}

}
/* ==========================
   DOCUMENT PAGES
========================== */

.document-page{

  background:#f6f9ff;

  padding:80px 0;

  min-height:100vh;

}

.document-card{

  background:#fff;

  max-width:900px;

  margin:auto;

  padding:60px;

  border-radius:24px;

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

}

.document-card h1{

  font-size:42px;

  color:#16243d;

  margin-bottom:35px;

}

.document-card h2{

  margin-top:40px;

  margin-bottom:18px;

  color:#2563eb;

}

.document-card p{

  line-height:1.9;

  color:#475467;

}

.document-card li{

  margin-bottom:12px;

  color:#475467;

}

.back-button{

  display:inline-block;

  margin-bottom:30px;

  color:#2563eb;

  text-decoration:none;

  font-weight:700;

}

.back-button:hover{

  text-decoration:underline;

}
/* ==========================
   COOKIE
========================== */

.cookie-banner{

  position:fixed;

  left:30px;

  right:30px;

  bottom:25px;

  background:#16243d;

  color:#fff;

  padding:18px 25px;

  border-radius:18px;

  display:flex;

  justify-content:space-between;

  align-items:center;

  gap:20px;

  z-index:9999;

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

}

.cookie-text{

  font-size:15px;

  line-height:1.6;

}

.cookie-text a{

  color:#3b82f6;

  text-decoration:none;

  font-weight:700;

}

.cookie-text a:hover{

  text-decoration:underline;

}

#acceptCookies{

  background:#2563eb;

  color:#fff;

  border:none;

  padding:12px 28px;

  border-radius:12px;

  font-size:15px;

  cursor:pointer;

  transition:.3s;

  font-weight:700;

}

#acceptCookies:hover{

  background:#1d4ed8;

}

.cookie-hidden{

  display:none;

}

@media(max-width:768px){

.cookie-banner{

  left:15px;

  right:15px;

  bottom:15px;

  flex-direction:column;

  text-align:center;

}

}

/* ==========================
   РЕКВИЗИТЫ КОМПАНИИ
========================== */

.company-details{
  margin-top:60px;
  padding-top:40px;
  border-top:1px solid rgba(255,255,255,.15);
}

.company-details h3{
  color:#fff;
  font-size:28px;
  margin-bottom:25px;
}

.company-table{
  width:100%;
  border-collapse:collapse;
  background:rgba(255,255,255,.05);
  border-radius:14px;
  overflow:hidden;
}

.company-table td{
  padding:16px 18px;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:#e6ebff;
  vertical-align:top;
}

.company-table td:first-child{
  width:35%;
  font-weight:700;
  color:#ffffff;
  background:rgba(255,255,255,.04);
}

.company-table tr:last-child td{
  border-bottom:none;
}

@media(max-width:768px){

.company-table,
.company-table tbody,
.company-table tr,
.company-table td{
  display:block;
  width:100%;
}

.company-table td:first-child{
  background:transparent;
  padding-bottom:4px;
}

.company-table td{
  border:none;
  padding:8px 15px;
}

.company-table tr{
  margin-bottom:20px;
  padding-bottom:15px;
  border-bottom:1px solid rgba(255,255,255,.12);
}

}