/**
* Template Name: Groovin
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/groovin-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/  C0C3CC
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #333333;
}

a {
  color: #0B0F35;
  text-decoration: none;
}

a:hover {
  /*color: #74c92d;*/
}

#main{
  background: #C0C3CC;
  color: black;
}
p{
/*  color: #000;
*/}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'EB Garamond', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.profile-link{
}
.profile-link:hover{
    color: #0B0F35;
    text-decoration: underline;

}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0B0F35;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #0B0F35;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.primary{
  color: #0B0F35;
}

.bg-primary{
  background: #0B0F35;
}

.bg-color{
  background: #0B0F35;
  color: white;
}

.bg-color:hover{
 /* background: #0B0F35;
  color: white;*/
  border: 1px solid #0B0F35 ;
}

.cta-row{
  background-size: cover;
  
  border-radius: 15px;
  color: white;
  background: linear-gradient(90deg, rgba(11,15,53,1) , rgba(11,15,53,1) ),url("../img/cta-2.jpg") no-repeat top ;
}

.cta .btn2{
  border: 1px solid white;
}

.cta-col{
  
  padding: 45px;
}
.cta-col2{
  background: linear-gradient(90deg, rgba(11,15,53,.2) , rgba(11,15,53,1) ),url("../img/cta-1.jpg") no-repeat top ;
  background-size: cover;
    color: white;
  top: -50px;
  height: 100%;
  width: 100%;
  border-radius: 15px;
  margin-left: -20px;

}

.mybtn{
  background: #0B0F35;
  color: #fff;
}

.mybtn:hover{
  background: #fff;
  color: #0B0F35;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #0B0F35;
  transition: all 0.5s;
  z-index: 997;
  height: 94px;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 48px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 22px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  font-family: 'roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
/*  text-transform: uppercase;
*/  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #f3f3f3;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 12px;
  border-radius: 4px;
  color: #fff;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  border: 2px solid #f3f3f3;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #f3f3f3;
}

.navbar .getstarted:hover:before,
.navbar li:hover>.getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 22px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;

}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0B0F35;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #0B0F35;
  text-decoration: underline;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #f3f3f3;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0B0F35;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #0B0F35;
}

.navbar-mobile>ul>li {
  white-space: nowrap;
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #f3f3f3;
  padding-left: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #f3f3f3;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
/* ---------- Nested dropdown: force open to the LEFT ---------- */
/* Put this at the end of your stylesheet so it overrides earlier rules */

.navbar .dropdown .dropdown > ul,
.navbar .dropdown .dropdown ul {
  position: absolute;
  top: 0;
  left: auto !important;
  right: 100% !important;       /* open to the left of the parent */
  margin-right: 4px;
  visibility: hidden;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
  z-index: 9999;
}

/* Show when hovering or focusing (keyboard accessible) */
.navbar .dropdown .dropdown:hover > ul,
.navbar .dropdown .dropdown:focus-within > ul {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* make sure nested items look same as first-level items */
.navbar .dropdown .dropdown ul a {
  padding: 10px 20px;
  color: #0B0F35;
}

/* If you had the media-query override earlier, neutralize it here */
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown > ul,
  .navbar .dropdown .dropdown ul {
    left: auto !important;
    right: 100% !important;
  }
}

/* Optional: active thumbnail-like highlight for the hovered nested link */
.navbar .dropdown .dropdown ul li:hover > a {
  text-decoration: underline;
}

/* MOBILE OVERRIDE FOR NESTED DROPDOWNS */
@media (max-width: 991px) {
  /* Top-level dropdown already handled in navbar-mobile */
  
  .navbar-mobile .dropdown .dropdown > ul {
    position: static !important;      /* inline in flow */
    opacity: 1 !important;            /* fully visible when toggled */
    visibility: visible !important;   /* visible */
    transform: none !important;       /* remove translate */
    max-height: 0;                    /* collapsed by default */
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  /* When active (via JS toggle) */
  .navbar-mobile .dropdown .dropdown-active {
    max-height: 500px; /* big enough to show all items */
  }

  /* Ensure links inside nested dropdown are styled like normal mobile links */
  .navbar-mobile .dropdown .dropdown ul a {
    padding-left: 40px; /* indent for nested level */
    color: #0B0F35;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(17, 17, 17, 0.8);
  overflow: hidden;
  padding: 0;

}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.5 ease-in;
}

#hero .carousel-item::before {
  content: "";
  background:url('../img/wintrust-hero.png') no-repeat center;
  background-size: cover; 
  position: absolute;
  background: rgb(11,15,53);
  background: linear-gradient(90deg, rgba(11,15,53,1) 0%, rgba(11,15,53,.9) 28%,rgba(11,15,53,.9) 60%, rgba(11,15,53,.9) 100%);
  
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .hero-container{
/*    background:url('../img/hh.jpg') no-repeat center;
*/
}

#hero .carousel-container {
  display: flex;
  justify-content: left;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  text-align: left;
  max-width: 650px;
  margin: 9vw;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  margin-top: 90px;
  font-size: 68px;
  font-weight: bold;
}

#hero h2 span {
  color: #f3f3f3;
}

#hero p {
  animation-delay: 0.4s;
  margin: 0 0 30px 0 ;
  color: #C0C3CC;
  text-align: left;

}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #f3f3f3;
}

#hero .btn-get-started {
  font-family: 'EB Garamond', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #0B0F35;
  animation-delay: 0.8s;
  text-transform: uppercase;
  border: 2px solid white;
  background: white;
}

#hero .btn-get-started:hover {
  background: #0B0F35;
  border-color: #fff;
  color: white;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #C0C3CC;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #0B0F35;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.section-top {
  height: 400px;
  width: 100%;
  background-image:
  linear-gradient(to bottom,  rgba(11,15,53,1) 0%, rgba(11,15,53,.8) 28%,rgba(11,15,53,.7) 60%, rgba(11,15,53,.9) 100%),
  url('../img/h3.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 210px;
}

.section-top h2{
  color: #C0C3CC;
  font-size: 60px;
}


.about .content {
  padding: 30px 0;
}

.about-items h4{
  font-size: 25px;
  font-weight: 900;
}

#about-page .top-title{
  font-size: 40px;
  font-weight: 900;
  opacity: 1;
  margin-bottom: 60px;
  color: #0B0F35;
}

.section-title h5{
  font-family: 'EB Garamond', sans-serif;
  color: #0B0F35;
  font-size: 28px;
  font-weight: 900;
  margin-top: 80px;
  
}


.section-title  .top{
  font-size: 60px;
  opacity: .12;
  margin-bottom: -122px;
}

.about-items span{
  font-size: 40px;
  background: #0B0F35;
  padding: 20px;
  color: #C0C3CC;
}

.about-items::before{
  background: #C0C3CC;
  width:200px ;


}

/*.about-n{
  background: #f2f2f2;
  width:140px ;
  height: 140px;
  position: absolute;
}*/

#about-page{

  font-size: 18px;
}

#about-page .first-p{
  font-size: 18px;
/*  color: #0B0F35;
*/}

.about-line{
  width: 65px;
  height: 2px;
  background: #0B0F35;
  margin-left:48%;
}

.about-line2{
  width: 32px;
  height: 2px;
  background: #0B0F35;
  margin-left: 16.6vw;
}

.about .content h3 {
  font-weight: 900;
  font-size: 50px;
  line-height: 52px;
  color: #0B0F35;
}

.about .content p {
  margin-bottom: 0;
}

.about .content .icon-box {
  margin-top: 25px;
}

.about .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.about .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #0B0F35;
}

.about .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.about .image {
  background: url("../img/logo.png") center center no-repeat;
  background-size: 70%;
  min-height: 400px;
}

@media (max-width: 991px) {
  .about .image {
    text-align: center;
  }

  .about .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}

/*Insurance-------------------------------------------------*/

 .hr{
  margin: 60px 0;
  width: 100%;
}


.insurance-page{
}

.myimg{
 width: 100%;
  border-radius: 20px;
  height: ;
  margin-top: 20px;
  /*margin-left: -160px;
  margin-top: -25px;
*/ /* box-shadow: 2px 0 12px rgba(0, 0, 0, 0.43);*/
}

.insurance-card .card-inside{
/*  border: 1px solid #C0C3CC;
*/  max-width: 1100px;
  padding: 40px;
  margin-left:0px;
  border-radius: 0px;
/*  border-bottom:1px solid #C0C3CC;
*/  

}

.service-title h5{
  font-size: 70px;
  color:;
  font-weight: 600;
  line-height: 42px;
  margin-left: 45px;
  color: #0B0F35;
}

.service-title h6{
  font-size: 30px;
  color:;
  opacity: 1;
  color: #0B0F35;
}

.service-title h3{
  font-size: 200px;
  opacity: .25;
  line-height: 85px;
  color: #0B0F35;


}

.myimg img{
  border-radius: 20px;

}

.content-paragraph{
  margin-top: 160px;
  padding-top: 15px;
/*  border-top:1px solid #C0C3CC;
*/    
    padding: 30px;

}

.content-paragraph .icon{
  width: 400px;
  height: 400px;
  margin-left: 200px;
  margin-top: 150px;
/*  background: #e1e1e1;
*//*  margin-top: 100px;
*/  border-radius: 50%;
  /*padding-right: -200px;*/
  border: 1px solid #0B0F35;
}

.icon-div{
  padding-right: -200px;
  overflow: hidden;
  float: right;
  width: 360px;
  height: 284px;
  margin-top: -290px;


}

.icon-div i{
  font-size: 37px;
  padding-left:111px;
  padding-top: 90px;
  color: #0B0F35;
  opacity: 1;
  position: ;
}

.content-paragraph .list{

/*  margin-left: 350px;
*/
  font-size: 19px;

  line-height: 20px;
  margin-top: 20px;
/*  opacity: .5;
*/  font-weight: 500;
/*  background: #f3f3f3;
*/  padding: 20px;

}


.content-paragraph .list li{
 color: #000;
/* background: #f4f4f4;
*/ 
/* border: 1px solid #a3a3a3;
*/ padding:8px 10px;
 border-radius: 18px;
 margin-bottom: 10px;
 width: 58%;


}

.content-paragraph .fa-chevron-right{
  color: #C0C3CC;
/*  border: 1px solid;
*/  padding: 10px;
  border-radius: 50%;
}

ul{
  list-style: none;
}

.d-large{
  display: block;
  display: flex;
  justify-content: center;
}

.d-small{
 display: none;
}

@media (max-width: 980px) {
   .d-large{
      display: none;
    }

    .d-small{
     display: block;

    }


    .content-paragraph .list li{
     color: #C0C3CC;
    /* background: #f4f4f4;
    */ 
    /* border: 1px solid #a3a3a3;
    */ 
     padding:8px 10px;
     border-radius: 18px;
     margin-bottom: 10px;
     width: 98%;


    }


    .content-paragraph{
      margin-top: 10px;
      padding-top: 15px;
    /*  border-top:1px solid #C0C3CC;
    */    
        padding: 8px;

    }

    .icon-div{
      margin-top: -260px;
      
    }



}


/*End Insurance --------------------------------------------

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 0 0 30px 0;
}

.counts .count-box {
  padding: 30px;
  width: 100%;
}

.counts h3{
   font-size: 44px;
   color: #000;
   margin-left: 140px;
   margin-top: -50px;
}

.counts .count-box i {
  display: block;
  font-size: 44px;
  color: #0B0F35;
  float: left;
  line-height: 0;
}

.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #0B0F35;
  margin-left: 60px;
}

.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: 'EB Garamond', sans-serif;
  font-size: 18px;
  color: #000;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #0B0F35;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #0B0F35;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 75px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}


/*attorney col ------------------------------------------------*/

.attorney-col{
  margin-bottom: 70px;
}

.attorney-col h4{
  color: #0B0F35;
}

.col2{
  padding-top: 60px;

}

.col1{

  padding-top: 60px;
}

.col-line{
  height: 2px;
  width: 116%;
  background: #0B0F35;
  margin-bottom: -6px;
  opacity: .22;
}

.col-circle{
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #0B0F35;
/*  position: absolute;
*/  margin-left: 115%;
  padding-left: -30px;
  padding-bottom: 3px;
  opacity: .3;
}

.col-line2{
  height: 2px;
  width: 116%;
  background: #0B0F35;
  margin-bottom: -6px;
  margin-left: -15%;
  opacity: .22;
}

.col-circle2{
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #0B0F35;
  margin-left: -15%;
  padding-right: -30px;
  padding-bottom: 3px;
  opacity: .3;
}


@media (max-width: 768px) {

    .attorney-col{
      margin-bottom: 80px;
    }

    .col2{
      padding-top: 10px;

    }

    .col1{

      padding-top: 0px;
    }


    .col-line{
      height: 2px;
      width: 97%;
      background: #0B0F35;
      margin-bottom: -6px;
    }

    .col-circle{
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: #0B0F35;
    /*  position: absolute;
    */  margin-left: 97%;
      padding-left: -30px;
      padding-bottom: 3px;

    }

    .col-line2{
      height: 2px;
      width: 96%;
      background: #0B0F35;
      margin-bottom: -6px;
      margin-left:3%;
    }

    .col-circle2{
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: #0B0F35;
    /*  position: absolute;
    */  margin-left: 2%;
      padding-right: -30px;
      padding-bottom: 3px;

    }

}


@media (min-width: 768px )and  (max-width: 1024px) {

    .attorney-col{
      margin-bottom: 80px;
    }

    .col2{
      padding-top: 10px;

    }

    .col1{

      padding-top: 0px;
    }


    .col-line{
      height: 2px;
      width: 97%;
      background: #0B0F35;
      margin-bottom: -6px;
    }

    .col-circle{
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: #0B0F35;
    /*  position: absolute;
    */  margin-left: 97%;
      padding-left: -30px;
      padding-bottom: 3px;

    }

    .col-line2{
      height: 2px;
      width: 96%;
      background: #0B0F35;
      margin-bottom: -6px;
      margin-left:3%;
    }

    .col-circle2{
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: #0B0F35;
    /*  position: absolute;
    */  margin-left: 2%;
      padding-right: -30px;
      padding-bottom: 3px;

    }

}


/*--end attorney-col ---------------------------------------------*/

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services span{
/*  position: absolute;
*/  display: flex;
  justify-content: center;
  font-size: 25px;
  /*margin-top: 190px;*/
  font-weight: 300;
  /*margin-left: -210px;*/
  color: #0B0F35;
}

.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
 
  margin-bottom: 20px;
  border-radius: 50%;
  transition: 0.5s;
  color: #0B0F35;
  overflow: hidden;
/*  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.13);
*/}

.services .icon i {
  font-size: 36px;
  line-height: 0;
}

.services .icon1 {
  width: 230px;
  height: 230px;
}

.services .icon2 {
  width: 280px;
  height: 280px;
  margin-top: -36px;
}

.services:hover .icon {
  box-shadow: 0;
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 10px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.services .title a {
  color: #444444;
  transition: 0.3s;
}

.services .title a:hover {
  color: #0B0F35;
}

/*.services .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #0B0F35;
  bottom: 0;
  left: calc(50% - 25px);
}*/

.services .description {
  line-height: 24px;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  border-radius: 20px;
  background-image:
  linear-gradient(to bottom,  rgba(255, 255, 255, 1) , rgba(255, 255, 255, 0.91)),
  url('../img/h3.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left;

}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color:#0B0F35;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #333333;
}

.why-us .box p {
  color: #333333;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: #0B0F35;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #0B0F35;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(42, 42, 42, 0.7);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(42, 42, 42, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #0B0F35;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0B0F35;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0B0F35;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(42, 42, 42, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  
  padding: 60px 0;
}

.mycard{
  transition: .3s ease;
  width:94%; height:300px; 
  background: none; 
  border:none;
  cursor: pointer;
}

.mycard:hover{
  transform: scale(1.06);
}

.mycard00{
  transition: .3s ease;
  background: none; 
  border:none;
  cursor: pointer;
}

.mycard00:hover{
  transform: scale(1.06);
}

.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
}

.team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

.team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  color: #0B0F35;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f7f7f7;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #0B0F35;
}

.pricing .box h4 {
  font-size: 42px;
  color: #0B0F35;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #0B0F35;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #0B0F35;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 4px;
  border: 2px solid #0B0F35;
  color: #0B0F35;
  font-size: 14px;
  font-weight: 400;
  font-family: 'EB Garamond', sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #0B0F35;
  color: #fff;
}

.pricing .recommended {
  background: #0B0F35;
}

.pricing .recommended h3,
.pricing .recommended h4,
.pricing .recommended h4 span,
.pricing .recommended ul,
.pricing .recommended ul .na {
  color: #fff;
}

.pricing .recommended .btn-buy {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: #fff;
  border-color: #fff;
  color: #0B0F35;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #9cdc66;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #0B0F35;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}


#contact-form {
  padding: 50px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.1);

}

#contact-form input{
  padding: 10px;
  margin: 10px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid grey;
}

#contact-form textarea{
  padding: 10px;
  margin: 10px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid grey;
  height: 200px;

}

.contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #0B0F35;
}

.contact .contact-info address,
.contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

.contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

.contact .contact-info a {
  color: #000;
}

.contact .contact-info a:hover {
  color: #0B0F35;
}

.contact .contact-address,
.contact .contact-phone,
.contact .contact-email {
  margin-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: ;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  height: auto;
  padding: 10px 15px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #0B0F35;
}

.contact .php-email-form button[type=submit] {
  background: #0B0F35;
  border: 0;
  padding: 10px 30px 12px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: ;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }

  .contact .contact-address,
  .contact .contact-phone,
  .contact .contact-email {
    padding: 20px 0;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #C0C3CC;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}


.breadcrumb-item  {
  color: #C0C3CC;
}

.breadcrumbs ol li+li {
  padding-left: 10px; 
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #C0C3CC;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0B0F35;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 16px;
}

#footer .footer-top {
  background: #0B0F35;
  border-bottom: 1px solid #2f2f2f;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'EB Garamond', sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #0B0F35;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid white;

}

#footer .footer-top .social-links a:hover {
  background: #0B0F35;
  color: #fff;
  border: 1px solid white;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex; color: #fff;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: white;
  text-decoration: underline;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #0B0F35;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: ;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px; color: #fff;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}


/*supplies -------------------------------------*/
.card-s{
  box-shadow: rgba(00, 00, 00, 0.15) 0px 7px 29px 0px;

/*  background: none;
*/  cursor: pointer;
  
}

.card-s p{
  white-space: pre-line;
  /*line-height:34px;*/
  color: #000;

}

.card-s h3{
  padding: 25px 15px 15px 0;
/*  border-bottom: 1px solid #0B0F35;
*/
  font-family: roboto, 'sans-serif;';
  margin-bottom: -30px;

}

/*.card-s:hover{
  box-shadow: rgba(255, 255, 255, 0.4) 0px 7px 29px 0px;

}*/

.card-s li{
  margin: 8px 0;
  list-style: lower-roman;
  color: #000;
}

.card{
  background: none;
  border: 1px solid #C0C3CC;
}