@font-face {
    font-family: metropolis;
    src: url(./assets/fonts/Metropolis-Medium.otf);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --color-background: #fce0ef;
    --color-primary: #ed017f;
    --color-white: #ffffff;
    --color-black: #343434;
    --color-heading: #363940;
    --color-lightblack: #999999;
    --color-darkblack: #676767;
    --font-MetroPolis: Metropolis;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: var(--font-MetroPolis), sans-serif;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
ul {
    list-style-type: none;
}
.primary-btn {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 18px 29.64px 16.17px 30.2px;
    border-radius: 4px;
    letter-spacing: 2px;
    transform: all 600ms linear;
    position: relative;
}
.primary-btn:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.title1 {
    font-size: 57px;
    line-height: 1.19;
    font-family: var(--font-MetroPolis), sans-serif;
}
.title2 {
    font-size: 36px;
    font-weight: 700;
}
.container {
    max-width: 1396px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
/* .col50 {
    width: 50%;
    padding: 0 15px;
} */
.col60 {
    width: calc(8.33% * 8);
    padding: 0 15px;
}
.col50 {
    width: calc(8.33% * 6);
    padding: 0 15px;
}
.col40 {
    width: calc(8.33% * 4);
    padding: 0 15px;
}
.col25 {
    width: calc(8.33% * 3);
    padding: 0 15px;
}
.col20 {
    width: 20%;
    padding: 0 15px;
}

/*Header Section Start*/
header {
    padding: 21px 0;
}
nav,
.navbar-collapsed,
.navbar-collapsed > ul,
.nav-btn {
    display: flex;
    align-items: center;
}
.navbar-collapsed {
    flex-grow: 1;
}
.navbar-collapsed > ul {
    margin: 0 auto;
}
.menu {
    display: none;
}
.nav-items {
    margin-right: 41.6px;
}
.nav-links {
    font-size: 12px;
    font-weight: 600;
    color: black;
    text-transform: uppercase;
    position: relative;
}
.nav-links::after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    display: none;
}
.nav-links:hover::after {
    display: block !important;
}
.srch-btn {
    margin-right: 27px;
    transition: 0.3s linear;
}
.srch-btn:hover {
    transform: scale(1.2);
}
/*Banner Section Starts here*/
.banner-section {
    padding: 30px 0 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-section .row {
    align-items: center;
}
.banner-section .title1 {
    max-width: 431px;
}
.banner-section p {
    margin: 23px 0 38px;
    max-width: 391px;
    font-size: 16px;
    font-weight: 500;
}
.banner-btn,
.banner-social-links > ul {
    display: flex;
    align-items: center;
}
.banner-btn {
    margin-bottom: 51px;
}
.banner-btn .primary-btn {
    padding: 13px 22px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}
.secondary-btn {
    margin-left: 20px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    padding: 13px 20px;
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}
.secondary-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.banner-social-links .tel {
    font-size: 17px;
    font-weight: 600;
}
.banner-social-links > ul > li {
    margin-right: 16px;
}
.banner-social-links > ul > li:first-child {
    margin-right: 44px;
    position: relative;
}
.banner-social-links > ul > li:first-child::after {
    content: "";
    width: 1px;
    background: rgba(0, 0, 0);
    position: absolute;
    top: 0;
    bottom: 0;
    right: -22px;
}
.banner-social-links i{
    margin-right: 10px;
    color: var(--color-primary);
}
.banner-social-links .banner-link-items {
    transition: 0.3s linear;
}
.banner-social-links .banner-link-items:hover {
    transform: scale(1.2);
}
.banner-img {
    max-width: 905px;
    position: relative;
}
.banner-img::after {
    content: "";
    position: absolute;
    height: 71px;
    width: 197.57px;
    border-radius: 55px;
    box-shadow: 4px 4px 58px rgba(0, 0, 0, 12%);
    left: 77.19px;
    top: 0;
    background: url(./assets/images/Frame\ 2\ \(1\).png) center/contain no-repeat;
}
.banner-img::before {
    content: "";
    position: absolute;
    height: 71px;
    width: 197.57px;
    border-radius: 55px;
    box-shadow: 4px 4px 58px rgba(0, 0, 0, 12%);
    right: 82.83px;
    top: 112px;
    background: url(./assets/images/Frame\ 3.png) center/contain no-repeat;
}
.banner-img > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*Customer Experience Section Start*/

.customer-experience-section {
    padding: 100px 0;
}
.customer-header {
    text-align: center;
}
.customer-header p {
    margin-top: 18px;
    margin-bottom: 78px;
}
.card {
    margin-bottom: 16px;
}
.card:hover{
    /* transform: scale(1.1);  */
    filter: grayscale(100%);
    animation: flip 2s infinite;
}
.card-img > img:hover{
    animation: flip 2s infinite;
}
.card > h3 {
    margin-bottom: 10px;
    margin-top: 18px;
    font-size: 22px;
    font-weight: 700;
}
.card p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71;
}
.card-icon > img {
    width: 37px;
    height: 100%;
    object-fit: contain;
}

/*Our Service Section Start*/

.our-service-section {
    padding: 100px 0;
    background: #fce0ef;
}
.service-header .title2 {
    margin-bottom: 18px;
}

.service-card {
    max-width: 254px;
    margin: 0 auto;
}

.card-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
}
.card-img>img:hover{
    transition: all ease-in;
    transform: scale(1.1);

}
.card-link {
    display: flex;
    align-items: flex-end;
}
.card-link > a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-link > h3 {
    margin-top: 22px;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
}
.service-header {
    text-align: center;
    margin-bottom: 66px;
}
/*Result Section*/
.result-section {
    padding: 106px 0;
}

.best-result {
    text-align: center;
}

.best-result > h2 {
    margin-bottom: 20px;
}

.best-result > p {
    margin-bottom: 84px;
}

.result-section .row {
    row-gap: 55px;
}

.result {
    max-width: 172px;
    margin: 0 auto;
}

.result:hover > .result-number {
    color: var(--color-primary);
}

.result-number {
    font-size: 40px;
    font-family:var(--font-MetroPolis);
    margin-bottom: 8px;
    color: var(--color-heading);
}

.result-desc {
    font-family: var(--font-MetroPolis);
    text-transform: uppercase;
    color: var(--tertiary-color);
}
/*Footer Section*/
.footer-section{
    margin: 87px 0;
}
.footer-header p, .footer-header>ul{
    max-width: 180px;
    font-size: 14px;
    font-family: var(--font-MetroPolis);
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 20px;
    color: rgba(0, 0, 0, 60%);
}
.footer-header ul{
    margin-top: 16px;
}
.footer-header ul li{
    margin-bottom: 10px;
}
.footer-header a:hover{
    transform: scale(1.1);
    color: var(--color-primary);
}
.footer-title{
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-MetroPolis);

}
.footer-social-links > ul {
    display: flex;
    align-items: center;
}
.footer-link-items{
    margin-right: 16px;
    transition: 0.3 linear;
}
.footer-link-items:hover{
    transform: scale(1.2);
}
.contact-icon {
  display: flex;
  align-items: center;
  margin-top: 70px;
}
.contact-icon>svg{
    margin-right: 11px;
}
.contact-icon>svg:hover{
    transform: scale(1.2);
}
.contact-icon span{
    font-size: 17px;
    font-weight: 600;
    font-family: var(--font-MetroPolis);
}
.contact-icon span:hover{
    transform: scale(1.1);
    color: var(--color-primary);
}




/*Media Queries*/
@media screen and (max-width: 1200px) {
    /*Global Declaration*/
    .col66 {
        width: 100%;
    }
    .col25 {
        width: 50%;
    }
    

  /*Banner Section*/
    .banner-section .row {
        flex-wrap: wrap-reverse;
    }
    .banner-section .title1 {
        font-size: 32px;
    }
    
    /*Customer Experience Section*/
    .card {
        margin-bottom: 2px;
    }

    .card > h3 {
        margin-bottom: 7px;
        margin-top: 10px;
        font-size: 12px;
    }

    .customer-header p {
        margin-top: 10px;
        margin-bottom: 50px;
    }
    .card p{
        margin-bottom: 30px;
    }
    /*Our Service Section*/
    .service-card .card-link{
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 992px) {
    /*Header Section Section*/
    .menu {
        display: block;
        margin-left: auto;
        color: var(--color-primary);
    }
    .menu:hover{
        transform: scale(1.5);
        filter: grayscale(1);
    }
    .navbar-collapsed {
        display: none;
    }
    /*Customer Experience Section*/
    .customer-header .title2 {
        font-size: 25px;
    }
}
@media screen and (max-width: 768px) {
    .our-service-section .col25 {
        width: 100%;
    }
    /*Banner Section*/
    .banner-section .title1 {
        font-size: 25px;
    }
   .banner-img::after {
        left: -43px;
    }
    .banner-img::before {
        right: -10px;
    }
    .banner-img::after, .banner-img::before {
        transform: scale(0.6);
    }
    /*Customer Experience Section*/
    .customer-header .title2 {
        font-size: 20px;
    }

    /*Result Section*/
    .result-section {
        padding: 53px 0;
    }
    .result-section .row {
       row-gap: 25px;
    }
    .result-number {
        font-size: 28px;
    }
    .result-desc {
        font-size: 12px;
    }

    
}
@media screen and (max-width: 576px) {
    /*Banner Section*/
    .banner-section  .title1 {
        font-size: 20px;
    }
    .banner-btn .primary-btn {
        padding: 10px 15px;
        font-size: 7px;
    }
    .banner-btn .secondary-btn {
        padding: 10px 15px;
        font-size: 7px;
    }
    .banner-header{
        width: 100%;
        margin-top: 10px;
    }
    .col40{
        width: 100%;
    }
    .col60{
        width: 100%;
        margin-top: 50px;
    }
    /*Customer Experience Section*/
    .customer-experience-section{
        padding: 40px 0;
    }
    /*Footer Section*/
    .col20{
        width: 50%;
    }
    .contact-icon{
        margin-top: 20px;
    }
}
@media screen and (max-width:320px){
    /*Banner Section*/
    .banner-section .title{
        font-size: 10px;
    }
    .banner-btn .primary-btn {
        padding: 5px 5px;
        font-size: 7px;
    }
    .banner-btn .secondary-btn {
        padding: 5px 5px;
        font-size: 7px;
    }
    .col40{
        width: 100%;
    }
    .col60{
        width: 100%;
        margin-top: 50px;
    }
    /*Footer Section*/
    .col20{
        width:100%;
      
    }
    .contact-icon{
        margin-top: 20px;
    }

}