*, *::before, *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

:root {
    --main-color : #af355a;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body {
    font-family: cairo;
    background-color: #ffd1b3;
}

header {
    width: 100%;
    padding: 15px 10px;
    position: fixed;
    z-index: 100;
}

.container {
    margin: 0 auto;
}

header .container {
    /* max-width: 1300px; */
    height: 50px;
    padding: 5px 10px;
    background-color: #f2f2f2;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-shadow: 0 0 2px 0px #00000044;
}

.icon-menu {
    position: relative;
    width: 25px;
    height: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
}


.icon {
    width: 100%;
    height: 2px;
    background-color: black;
    margin-bottom: 4px;
    transition: 0.3s;
    position: absolute;
}

.icon:nth-child(1) {
    transform: translateY(7px);
}

.icon:nth-child(3) {
    transform: translateY(-7px);
}

.icon.active:nth-child(1) {
    transform: rotate(40deg);
}
.icon.active:nth-child(2) {
    display: none;
}
.icon.active:nth-child(3) {
    transform: rotate(-40deg);
}


nav {
    visibility: hidden;
    position: absolute;
    right: 1%;
    top: calc(100% + 10px);
    width: 150px;
    background-color: #f2f2f2;
    box-shadow: 0 0 2px 0px #00000044;
    padding: 15px 20px;
    opacity: 0;
    border-radius: 9px;
}

.active-nav {
    transition: .5s opacity;
    visibility: visible;
    opacity: 1;
}

nav::before {
    content: '';
    position: absolute;
    border: 10px solid;
    border-color: #eee transparent transparent transparent ;
    top: -10px;
    right: 5%;
}

nav .menu li{
    margin: 8px 0;
    font-size: 18px;
    transition: 0.3s transform;
}


nav .menu li:hover{
    transform: translateX(9px);
    text-decoration: underline;
}

.background-img {
    background-image: linear-gradient(to bottom, #8880ff41, #ffd1b3)
    , url(../image/76.jpg);
    width: 100%;
    height: 700px;
    background-size: cover;
    position: relative;
}

.landing {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    text-align: center;
    margin: 15px 5px;
    font-size: 20px;
    max-width: 800px;
    min-width: 350px;
}

.landing h1 {
    color: var(--main-color);
}

.landing p {
    color: #353441;
}

.features .container{
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill ,minmax(300px,1fr));
    grid-gap: 50px;
}

.features .feat {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 5px 20px;
}

.features .feat i{
    font-size: 70px;
    background-image: radial-gradient(circle at 10.2% 55.8%, #f7638f 0%, #e63b90 46.2%, var(--main-color) 90.1%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.features .feat h2{
    color: #353441;
    margin: 10px 0;
}

.features .feat p {
    color: #353441;
    margin: 5px 0;
    font-size: 17px;
}


.special-heading h1{
    text-align: center;
    color: #F6F6F6;
    font-size: 70px;
    margin: 10px 5px;
}

.special-heading h1 + p{
    text-align: center;
    color: #364F6B;
    font-size: 16px;
    position: relative;
    top: -37px;
}

.services-content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.services-start {
    display: grid;
    width: 900px;
    grid-template-columns: repeat(auto-fill, minmax(335px ,1fr));
    gap: 40px 20px;
}

.services-end {
    background: url(../image/76.jpg);
    width: 300px;
    height: 300px;
    background-position: center;
    background-size: cover;
    position: relative;
    border-radius: 5px;
}

.services-end::before {
    content: '';
    width: 150px;
    height: calc(100% + 80px);
    background-color: #F6F6F6;
    position: absolute;
    top: -40px;
    right: -50px;
    z-index: -1;
    border-radius: 5px;
}

.col {
    display: flex;
    gap: 5px 25px;
    align-items: center;
}

.col-icon i {
    font-size: 60px;
    background-image: radial-gradient(circle at 10.2% 55.8%, #f7638f 0%, #e63b90 46.2%, var(--main-color) 90.1%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.col-text {
    padding: 2px 5px;
}

.col-text h3 {
    color: #353441;
    font-size: 28px;
    margin: 8px 5px;
}

.col-text p {
    color: #5e5d68;
    margin: 8px 5px;
}

.content-card {
    margin: 0 12px;
}

.card-imge {
    width: 100%;
    height: 100%;
    box-shadow: 0 0 2px 0px #00000044;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.card-imge img {
    object-fit: cover;
}

.card-imge::before {
    content: '';
    position: absolute;
    width: 103%;
    height: 103%;
    border: 3px solid #f2f2f2c4;
    border-radius: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    transition: .4s ;
}

.card-imge:hover::before {
    width: 95%;
    height: 95%;
    --vv: 1.9;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-card {
    display: grid;
    grid-template-columns: repeat(auto-fill , minmax(300px ,1fr));
    gap: 31px;
}

.card-text {
    margin: 18px 5px;
}

.card-text h3 {
    color: #353441;
    margin: 0 0 9px 0;
}

.card-text a + p {
    color: #353441;
    margin: 0 2px 9px;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    margin: 50px 15px;
}

.img-content {
    width: 300px;
}

.info-content {
    max-width: 600px;
}

.cont-img {
    width: 250px;
    height: 350px;
    position: relative;
    margin: 0 auto;
}

.cont-img img {
    overflow: hidden;
    border-radius: 9px;
}

.cont-img::before {
    content: '';
    width: 80px;
    height: calc(100% + 60px);
    top: -30px;
    left: -20px;
    position: absolute;
    background-color: #f2f2f2;
    z-index: -1;
}

.cont-img::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 100%;
    color: var(--main-color);
    z-index: -1;
    border-left: 60px solid var(--main-color);
    border-bottom: 60px solid var(--main-color);
    top: -30px;
    right: -80px;
}

.info-content hr {
    margin: 25px 0;
    height: 2px;
    background: #af355a;
    border: none;
    border-radius: 2px;
    width: 60%;
}

.text-info :first-child {
    font-size: 18px;
    color: #353441;
    font-weight: bold;
    line-height: 1.5;
    word-spacing: 4px;
}

.text-info :last-child {
    font-size: 16px;
    color: #66544d;
    word-spacing: 4px;
}

.contact-content {
    margin: 15px auto 50px;
    text-align: center;
}

.contact-email {
    margin: 0 auto 30px ;
}

.contact-email h1  {
    color: #353441;
    font-size: 40px;
}

.contact-email a {
    margin: 0 25px;
    font-size: 28px;
    font-weight: bold;
    color: #af355a;
    text-decoration: none;
}

.icon-social {
    display: flex;
    justify-content: center ;
    align-items: center;
    gap: 15px;
    color: #353441;
}

.icon-social samp {
    font-family: cairo;
    word-spacing: 2px;
    font-weight: 600;
}

.icon-social :last-child i {
    margin: 0 5px;
    font-size: 22px;
    color: #353441;
    transition: 0.4s color;
}

.icon-social :last-child i:hover {
    color: #af355a;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    word-spacing: 2px;
    background-color: #af355a;
    height: 70px;

}

.footer a {
    color: #353441;
    font-weight: bold;
    margin: 0 6px;
}