/* 
Theme Name: Leadee
Version: 2.0
Author: Asad Ali @Leadee
*/

.nav{
    filter: drop-shadow(0 8px 10px #E5E5E51a);
}

body{
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    background-color: whitesmoke !important;
}

/* width */
::-webkit-scrollbar {
    width: 7px;
}
  
  /* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
   
  /* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 1rem; 
}
  
  /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
    width: 10px;
}

.text-primary {color: #274FF1 !important;}
.list-reset {
    list-style-type: none;
    padding-left: 0;
}

.list-reset * {
    padding-bottom: 0.5rem;
}

.border-light{
    border-width: 0.25px;
    border-color: #c0c0c0;
    padding: 1rem 0;
}

.tab-desc-icon {
    background-color: #ddeff6;
    padding: 1rem;
    border-radius: 50%;
}

.wp-block-navigation__responsive-container-content, .wp-block-navigation__responsive-container-close {
    padding: 2rem;
    justify-items: start !important;
    text-align: left !important;
}

.wp-block-navigation__submenu-container {
    padding: 1rem !important;
    margin: 0.5rem !important;
    border-radius: 1rem !important;
    background-color: white !important;
    min-width: 20rem !important;
}

.wp-block-button__link:hover {
    background-color: #274FF1;
    color: white;
    transition: 0.2s ease-in;
    border-color: #274FF1;
}

.heading-span {color: #274FF1}
.icon-span {
    font-size: 2rem;
    line-height: 0px;
    font-weight: 100;
}

.padding-left{padding-left: 1rem;}
.padding-right{padding-right: 1rem;}
.margin-right{margin-right: 1rem;}
.icon-with-bg {
    color: white;
    background-color: #274FF1;
    padding: 0.2rem 0.5rem;
    border-radius: 100%;
    font-size: 1rem;
    text-align: center;
}

.glass-blur-dark {
    border-radius: 2rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.row-wrap {
    display: flex;
    overflow-x: wrap;
}

form{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
}

input,textarea, select {
    padding: 1rem;
    border: 1px solid #c0c0c0;
    border-radius: 1rem;
    outline: none;
    font-family: inherit;
}

input:nth-child(-n + 3) {
    margin: 1rem 0 0 0;
}

textarea{
    resize: none;
    min-height: 10vh;
}


input:focus, textarea:focus{
    border-color: #3454D1;
}

label {display: none;}

button{
    padding: 1rem;
    background-color: #3454D1;
    color: white;
    transition: 0.3s ease-in;
    font-size: 1rem;
    font-family: inherit;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #274FF1;
    color: white;
}

.iti__country-list {
    padding: 1rem;
    background: white;
    border-radius: 1rem;
}

.no-overflow{overflow: hidden;}

.card-image-height {
    height: 320px;
}

.card-image-height img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

select {
    font-family: inherit;
    cursor: pointer;
    width: 312px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
  
option {
    padding: 2rem;
    background-color: #fff;
    border-radius: 1rem;
}

/* Tab */
.tab-link.active {
    color: #274FF1;
}

.tab-link:hover {color: #fff;}
.tab-link:active {color: #fff;}
/* tab content hide */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.pill {font-size: 0.9rem !important}

.service-card {
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    color: #274FF1 !important;
    border-color: #274FF1 !important;
    transform: translateY(-15px);
    cursor: pointer;
}


@media only screen and (max-width: 600px) {
    .card-image-height {
        height: 240px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .team-img{
        width: auto !important;
    }

    .pill {
        font-size: 0.6rem !important;
    }
  }